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

" Manual indenting and literal tabs for CSVs
setlocal noautoindent
setlocal noexpandtab
let b:undo_indent
      \ = 'setlocal autoindent< expandtab<'