1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-03-21 17:25:11 +01:00
vim/runtime/ftplugin/xslt.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
516 B
VimL
Raw Permalink Normal View History

2004-06-13 20:20:40 +00:00
" Vim filetype plugin file
2022-04-27 15:25:03 +01:00
" Language: XSLT
" Maintainer: Doug Kearns <dougkearns@gmail.com>
" Previous Maintainer: Dan Sharp
" Last Change: 2022 Apr 25
2004-06-13 20:20:40 +00:00
2022-04-27 15:25:03 +01:00
if exists("b:did_ftplugin")
finish
endif
2004-06-13 20:20:40 +00:00
runtime! ftplugin/xml.vim ftplugin/xml_*.vim ftplugin/xml/*.vim
let b:did_ftplugin = 1
" Change the :browse e filter to primarily show xsd-related files.
2022-04-27 15:25:03 +01:00
if (has("gui_win32") || has("gui_gtk")) && exists("b:browsefilter")
let b:browsefilter = "XSLT Files (*.xsl, *.xslt)\t*.xsl;*.xslt\n" . b:browsefilter
2004-06-13 20:20:40 +00:00
endif