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

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