annotate runtime/ftplugin/xslt.vim @ 30946:1819fe895aea v9.0.0807

patch 9.0.0807: with 'smoothscroll' typing "0" may not go to the first column Commit: https://github.com/vim/vim/commit/d5337efece7c68e9b4ce864532ea49b02453b674 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 20 20:15:47 2022 +0100 patch 9.0.0807: with 'smoothscroll' typing "0" may not go to the first column Problem: With 'smoothscroll' typing "0" may not go to the first column. Solution: Recompute w_cline_height when needed. Do not scroll up when it would move the cursor.
author Bram Moolenaar <Bram@vim.org>
date Thu, 20 Oct 2022 21:30:04 +0200
parents 4d76b3e07c07
children 8ae680be2a51
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 " Vim filetype plugin file
28620
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28010
diff changeset
2 " Language: XSLT
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28010
diff changeset
3 " Maintainer: Doug Kearns <dougkearns@gmail.com>
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28010
diff changeset
4 " Previous Maintainer: Dan Sharp
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28010
diff changeset
5 " Last Change: 2022 Apr 25
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6
28620
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28010
diff changeset
7 if exists("b:did_ftplugin")
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28010
diff changeset
8 finish
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28010
diff changeset
9 endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 runtime! ftplugin/xml.vim ftplugin/xml_*.vim ftplugin/xml/*.vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 let b:did_ftplugin = 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 " Change the :browse e filter to primarily show xsd-related files.
28620
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28010
diff changeset
16 if (has("gui_win32") || has("gui_gtk")) && exists("b:browsefilter")
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28010
diff changeset
17 let b:browsefilter = "XSLT Files (*.xsl,*.xslt)\t*.xsl;*.xslt\n" . b:browsefilter
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 endif