summaryrefslogtreecommitdiff
path: root/share/examples
diff options
context:
space:
mode:
authorEitan Adler <eadler@FreeBSD.org>2012-11-01 19:11:19 +0000
committerEitan Adler <eadler@FreeBSD.org>2012-11-01 19:11:19 +0000
commitf7a4177fe2ccca9b2cc542e9e4c424201fbfd5f8 (patch)
treee154915242e6f50c8f8c4fa9eb7cf32cd7a312e1 /share/examples
parent9e90a2b026f8c15eb5d197631dd321e2a1c06981 (diff)
Update vim examples from sgml to xml
Approved by: bcr (mentor)
Notes
svn path=/head/; revision=39906
Diffstat (limited to 'share/examples')
-rw-r--r--share/examples/vim/edit-sgml.vim11
1 files changed, 0 insertions, 11 deletions
diff --git a/share/examples/vim/edit-sgml.vim b/share/examples/vim/edit-sgml.vim
deleted file mode 100644
index 703ab82a9e..0000000000
--- a/share/examples/vim/edit-sgml.vim
+++ /dev/null
@@ -1,11 +0,0 @@
-" 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