annotate runtime/ftplugin/xslt.vim @ 31437:ede2bd5f3426
v9.0.1051
patch 9.0.1051: after a failed CTRL-W ] next command splits window
Commit: https://github.com/vim/vim/commit/cb94c910706fdd575cc25797d7858e084f1e3524
Author: Rob Pilling <robpilling@gmail.com>
Date: Tue Dec 13 12:26:09 2022 +0000
patch 9.0.1051: after a failed CTRL-W ] next command splits window
Problem: After a failed CTRL-W ] next command splits window.
Solution: Reset postponed_split. (Rob Pilling, closes https://github.com/vim/vim/issues/11698)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Tue, 13 Dec 2022 13:30:04 +0100 |
parents |
4d76b3e07c07 |
children |
8ae680be2a51 |
rev |
line source |
7
|
1 " Vim filetype plugin file
|
28620
|
2 " Language: XSLT
|
|
3 " Maintainer: Doug Kearns <dougkearns@gmail.com>
|
|
4 " Previous Maintainer: Dan Sharp
|
|
5 " Last Change: 2022 Apr 25
|
7
|
6
|
28620
|
7 if exists("b:did_ftplugin")
|
|
8 finish
|
|
9 endif
|
7
|
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.
|
28620
|
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
|
7
|
18 endif
|