Merged from the latest developing branch.
[MacVim.git] / runtime / ftplugin / xslt.vim
blob958043274b7b1b149ff2ab672df37be09172fceb
1 " Vim filetype plugin file
2 " Language:     xslt
3 " Maintainer:   Dan Sharp <dwsharp at hotmail dot com>
4 " Last Changed: 2004 Jul 08
5 " URL:          http://mywebpage.netscape.com/sharppeople/vim/ftplugin
7 if exists("b:did_ftplugin") | finish | endif
9 runtime! ftplugin/xml.vim ftplugin/xml_*.vim ftplugin/xml/*.vim
11 let b:did_ftplugin = 1
13 " Change the :browse e filter to primarily show xsd-related files.
14 if has("gui_win32") && exists("b:browsefilter")
15     let  b:browsefilter="XSLT Files (*.xsl,*.xslt)\t*.xsl;*.xslt\n" . b:browsefilter
16 endif