neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

xslt.vim (516B)


      1 " Vim filetype plugin file
      2 " Language:		XSLT
      3 " Maintainer:		Doug Kearns <dougkearns@gmail.com>
      4 " Previous Maintainer:	Dan Sharp
      5 " Last Change:		2022 Apr 25
      6 
      7 if exists("b:did_ftplugin")
      8  finish
      9 endif
     10 
     11 runtime! ftplugin/xml.vim ftplugin/xml_*.vim ftplugin/xml/*.vim
     12 
     13 let b:did_ftplugin = 1
     14 
     15 " Change the :browse e filter to primarily show xsd-related files.
     16 if (has("gui_win32") || has("gui_gtk")) && exists("b:browsefilter")
     17  let b:browsefilter = "XSLT Files (*.xsl, *.xslt)\t*.xsl;*.xslt\n" . b:browsefilter
     18 endif