summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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