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

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

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