Mercurial > vim
annotate runtime/keymap/polish-slash.vim @ 31168:25f6c7f77c70 v9.0.0918
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Commit: https://github.com/vim/vim/commit/0319306f20d2a5989d1f5639a47d77cebeac2f29
Author: Christopher Plewright <chris@createng.com>
Date: Tue Nov 22 12:58:27 2022 +0000
patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Problem: MS-Windows: modifier keys do not work with mouse scroll events.
Solution: Use K_SPECIAL instead of CSI for the modifier keys. (Christopher
Plewright, closes #11587)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 22 Nov 2022 14:00:04 +0100 |
parents | 8cd729851562 |
children |
rev | line source |
---|---|
99 | 1 " Polish letters under VIM >= 6 |
2 " Maintainer: HS6_06 <hs6_06@o2.pl> | |
3 " Last changed: 2005 Jan 12 | |
4 " Current version: 1.0.2 | |
856 | 5 " History: |
99 | 6 " 2005.01.12 1.0.2 keymap_name shortened, added Current version, History |
7 " 2005.01.10 1.0.1 un*x line ends for all files | |
8 " 2005.01.09 1.0.0 Initial release | |
9 | |
96 | 10 let encoding = &enc |
11 if encoding == 'latin1' | |
12 if has("unix") | |
13 let encoding = 'iso-8859-2' | |
14 else | |
15 let encoding = 'cp1250' | |
16 endif | |
17 endif | |
18 | |
19 if encoding == 'utf-8' | |
20 source <sfile>:p:h/polish-slash_utf-8.vim | |
21 elseif encoding == 'cp1250' | |
22 source <sfile>:p:h/polish-slash_cp1250.vim | |
23 elseif encoding == 'iso-8859-2' | |
24 source <sfile>:p:h/polish-slash_iso-8859-2.vim | |
25 else | |
26 source <sfile>:p:h/polish-slash_cp852.vim | |
27 endif |