annotate runtime/ftplugin/xslt.vim @ 20059:de756b3f4dee
v8.2.0585
patch 8.2.0585: Vim9: # comment not recognized after :vim9script
Commit: https://github.com/vim/vim/commit/7a09224583b2ad0d9d0648b53cc2d989d45ae96e
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Apr 16 22:10:49 2020 +0200
patch 8.2.0585: Vim9: # comment not recognized after :vim9script
Problem: Vim9: # comment not recognized after :vim9script.
Solution: Check script type. Make comment after ":echo" work. And in
several other places.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Thu, 16 Apr 2020 22:15:04 +0200 |
parents |
7bc41231fbc7 |
children |
c968191a8557 |
rev |
line source |
7
|
1 " Vim filetype plugin file
|
|
2 " Language: xslt
|
2034
|
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
|
7
|
6
|
|
7 if exists("b:did_ftplugin") | finish | endif
|
|
8
|
|
9 runtime! ftplugin/xml.vim ftplugin/xml_*.vim ftplugin/xml/*.vim
|
|
10
|
|
11 let b:did_ftplugin = 1
|
|
12
|
|
13 " Change the :browse e filter to primarily show xsd-related files.
|
|
14 if has("gui_win32") && exists("b:browsefilter")
|
15
|
15 let b:browsefilter="XSLT Files (*.xsl,*.xslt)\t*.xsl;*.xslt\n" . b:browsefilter
|
7
|
16 endif
|