lervag / wiki-ft.vim

Simple Vim filetype plugin for wiki-files
MIT License
14 stars 5 forks source link

Breakindent does not work #3

Closed cristobaltapia closed 3 years ago

cristobaltapia commented 3 years ago

I don't know why, but the breakindent option of vim has no effect when using this filetype plugin.

lervag commented 3 years ago

Perhaps because of set nowrap (done by wiki-ft.vim)? (I believe there may be one or more options set by ftplugin/wiki.vim (wiki-ft.vim, that is) that are probably opinionated and should not be set by the ftplugin itself.)

lervag commented 3 years ago

https://github.com/lervag/wiki-ft.vim/blob/03a6e366065af6c507589466dc3a5ac1401cce6d/ftplugin/wiki.vim#L11-L25

cristobaltapia commented 3 years ago

Thanks! Setting the wrap options makes breakindent work again.

lervag commented 3 years ago

Great :)