tpope / vim-markdown

Vim Markdown runtime files
1.22k stars 191 forks source link

How to disable syntax concealing? #197

Closed john-cj closed 2 years ago

john-cj commented 2 years ago

Here is my test .vimrc:

unlet! skip_defaults_vim
source $VIMRUNTIME/defaults.vim
let g:markdown_syntax_conceal = 0

And here is my test.md:

this is a list

* foo ~~strike out~~ bar
* baz *italic* zab

And here is how gVim shows it:

image

Notice the strikeout text is really striked out, whereas I suppose that because of let g:markdown_syntax_conceal = 0 it should not be that. So what I need to do to disable it?

john-cj commented 2 years ago

ok, I need a break. Concealing seems to be a completely different thing (English is not my primary language), though I still don't understand how it works.