blob: 1a5ee628651d10522f4f667c8521c0f491f6a6cc [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim filetype plugin file
2" Language: xslt
Bram Moolenaar5c736222010-01-06 20:54:52 +01003" 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
Bram Moolenaar071d4272004-06-13 20:20:40 +00006
7if exists("b:did_ftplugin") | finish | endif
8
9runtime! ftplugin/xml.vim ftplugin/xml_*.vim ftplugin/xml/*.vim
10
11let b:did_ftplugin = 1
12
13" Change the :browse e filter to primarily show xsd-related files.
14if has("gui_win32") && exists("b:browsefilter")
Bram Moolenaar8299df92004-07-10 09:47:34 +000015 let b:browsefilter="XSLT Files (*.xsl,*.xslt)\t*.xsl;*.xslt\n" . b:browsefilter
Bram Moolenaar071d4272004-06-13 20:20:40 +000016endif