xslt.vim 539 B

1234567891011121314151617
  1. " Vim filetype plugin file
  2. " Language: xslt
  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. runtime! ftplugin/xml.vim ftplugin/xml_*.vim ftplugin/xml/*.vim
  8. let b:did_ftplugin = 1
  9. " Change the :browse e filter to primarily show xsd-related files.
  10. if has("gui_win32") && exists("b:browsefilter")
  11. let b:browsefilter="XSLT Files (*.xsl,*.xslt)\t*.xsl;*.xslt\n" . b:browsefilter
  12. endif