dtd.vim 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. " Vim filetype plugin file
  2. " Language: dtd
  3. " Maintainer: Dan Sharp <dwsharp at users dot sourceforge dot net>
  4. " Last Changed: 20 Jan 2009
  5. " URL: http://dwsharp.users.sourceforge.net/vim/ftplugin
  6. if exists("b:did_ftplugin") | finish | endif
  7. let b:did_ftplugin = 1
  8. " Make sure the continuation lines below do not cause problems in
  9. " compatibility mode.
  10. let s:save_cpo = &cpo
  11. set cpo-=C
  12. setlocal commentstring=<!--%s-->
  13. setlocal comments=s:<!--,m:\ \ \ \ \ ,e:-->
  14. setlocal formatoptions-=t
  15. if !exists("g:ft_dtd_autocomment") || (g:ft_dtd_autocomment == 1)
  16. setlocal formatoptions+=croql
  17. endif
  18. if exists("loaded_matchit")
  19. let b:match_words = '<!--:-->,<!:>'
  20. endif
  21. " Change the :browse e filter to primarily show Java-related files.
  22. if has("gui_win32")
  23. let b:browsefilter="DTD Files (*.dtd)\t*.dtd\n" .
  24. \ "XML Files (*.xml)\t*.xml\n" .
  25. \ "All Files (*.*)\t*.*\n"
  26. endif
  27. " Undo the stuff we changed.
  28. let b:undo_ftplugin = "setlocal commentstring< comments< formatoptions<" .
  29. \ " | unlet! b:matchwords b:browsefilter"
  30. " Restore the saved compatibility options.
  31. let &cpo = s:save_cpo
  32. unlet s:save_cpo