aboutsummaryrefslogtreecommitdiff
path: root/share/examples/vim/edit-xml.vim
diff options
context:
space:
mode:
Diffstat (limited to 'share/examples/vim/edit-xml.vim')
-rw-r--r--share/examples/vim/edit-xml.vim11
1 files changed, 0 insertions, 11 deletions
diff --git a/share/examples/vim/edit-xml.vim b/share/examples/vim/edit-xml.vim
deleted file mode 100644
index 4fc41244c7..0000000000
--- a/share/examples/vim/edit-xml.vim
+++ /dev/null
@@ -1,11 +0,0 @@
-" 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