summaryrefslogtreecommitdiff
path: root/share/examples/vim/edit-sgml.vim
blob: 703ab82a9e6965714f1b5a8f2e448c3a48313c57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
" formatting SGML documents
" $FreeBSD$

if !exists("format_fdp_sgml")
  let format_fdp_sgml = 1
  " correction for highlighting special characters
  autocmd BufNewFile,BufRead *.sgml,*.ent,*.html syn match sgmlSpecial "&[^;]*;"

  " formatting FreeBSD SGML/Docbook
  autocmd BufNewFile,BufRead *.sgml,*.ent set autoindent formatoptions=tcq2l textwidth=70 shiftwidth=2 softtabstop=2 tabstop=8
endif