aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/help.vim
blob: eb5cea6409a8bccc3c2c8470adad5058e636070b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
" Extra configuration for Vim help files
if &filetype !=# 'help' || v:version < 700
  finish
endif

" If the buffer is modifiable and writable, we're writing documentation, not
" reading it; don't conceal characters
if &modifiable && !&readonly
  setlocal conceallevel=0
  let b:undo_ftplugin .= '|setlocal conceallevel<'
endif