doc/share/examples/vim/edit-xml.vim
Eitan Adler 9e90a2b026 Update vim examples from sgml to xml
Approved by:	bcr (mentor)
2012-11-01 19:11:14 +00:00

11 lines
392 B
VimL

" 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