vim-pandoc / vim-pandoc-syntax

pandoc markdown syntax, to be installed alongside vim-pandoc
MIT License
426 stars 61 forks source link

conceal? #282

Closed laoshaw closed 3 years ago

laoshaw commented 5 years ago

can I disable conceal?

also I try to highlight C inside fenced code block and it's not working.

can't use this easily, though I really like to use pandoc-vim-markdown stuff.

alerque commented 5 years ago
set conceallevel=0

let g:pandoc#syntax#codeblocks#embeds#langs = ['c']
netzego commented 3 years ago

Actually what you want to set is: let g:pandoc#syntax#conceal#use = 0 in your .vimrc.

laoshaw commented 3 years ago

that works for un-conceal Thanks!