aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/help.vim
blob: e21a52591cf248c424969ea3f5fe4700881796bb (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 has('conceal') && &modifiable && !&readonly
  setlocal conceallevel=0
  let b:undo_ftplugin .= '|setlocal conceallevel<'
endif