annotate runtime/ftplugin/xslt.vim @ 28582:278a14b00896
v8.2.4815
patch 8.2.4815: cannot build with older GTK version
Commit: https://github.com/vim/vim/commit/d42b83942e6741de2bb630ee17a2e9fcc03d6b43
Author: Ernie Rael <errael@raelity.com>
Date: Sat Apr 23 19:52:23 2022 +0100
patch 8.2.4815: cannot build with older GTK version
Problem: Cannot build with older GTK version.
Solution: Use gtk_window_get_size() instead of gdk_window_get_width() and
gdk_window_get_height(). (Ernie Rael, closes #10257)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 23 Apr 2022 21:00:03 +0200 |
parents |
c968191a8557 |
children |
4d76b3e07c07 |
rev |
line source |
7
|
1 " Vim filetype plugin file
|
|
2 " Language: xslt
|
28010
|
3 "
|
|
4 " This runtime file is looking for a new maintainer.
|
|
5 "
|
|
6 " Former maintainer: Dan Sharp
|
2034
|
7 " Last Changed: 20 Jan 2009
|
7
|
8
|
|
9 if exists("b:did_ftplugin") | finish | 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") && exists("b:browsefilter")
|
15
|
17 let b:browsefilter="XSLT Files (*.xsl,*.xslt)\t*.xsl;*.xslt\n" . b:browsefilter
|
7
|
18 endif
|