vim-pandoc / vim-rmarkdown

Rmarkdown support for vim
100 stars 26 forks source link

Is there a way to customize the concealment? #30

Closed dawsoneliasen closed 4 years ago

dawsoneliasen commented 4 years ago

For example, disabling the replacement of # with the section symbol.

BirgerNi commented 4 years ago

Concealing is handled by the vim-pandoc-syntax plugin. The docs are pretty good. You can put let g:pandoc#syntax#conceal#cchar_overrides = {'atx': '#'} in your .vimrc to keep the # section symbol.

dawsoneliasen commented 4 years ago

@BirgerNi Thank you very much! This should help a lot :)