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

" Set comment formats
setlocal comments=:#
setlocal formatoptions+=or
let b:undo_ftplugin = 'setlocal comments< formatoptions<'

" Fold based on indent level
setlocal foldmethod=indent
let b:undo_ftplugin .= '|setlocal foldmethod<'