diff options
-rw-r--r-- | vim/after/ftplugin/help.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/after/ftplugin/help.vim b/vim/after/ftplugin/help.vim index eb5cea64..e21a5259 100644 --- a/vim/after/ftplugin/help.vim +++ b/vim/after/ftplugin/help.vim @@ -5,7 +5,7 @@ endif " If the buffer is modifiable and writable, we're writing documentation, not " reading it; don't conceal characters -if &modifiable && !&readonly +if has('conceal') && &modifiable && !&readonly setlocal conceallevel=0 let b:undo_ftplugin .= '|setlocal conceallevel<' endif |