aboutsummaryrefslogtreecommitdiff
path: root/vim/indent/help.vim
blob: c49e1ced283c2d90c5980e30cd057c915d7ed51f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
" Only do this when not done yet for this buffer
if exists('b:did_indent')
  finish
endif
let b:did_indent = 1

" Use hard tabs for editing Vim help files
setlocal noexpandtab
setlocal shiftwidth=0
let b:undo_indent = 'setlocal expandtab< shiftwidth<'
if &softtabstop != -1
  let &softtabstop = &shiftwidth
  let b:undo_indent = 'setlocal softtabstop<'
endif