Mercurial > vim
annotate runtime/keymap/polish-slash.vim @ 33191:4efe5f797919 v9.0.1875
patch 9.0.1875: Vim9: improve test for disassemble + static
Commit: https://github.com/vim/vim/commit/28a60f898d5cd7023596b0e96a081b1573edc807
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Tue Sep 5 20:42:18 2023 +0200
patch 9.0.1875: Vim9: improve test for disassemble + static
Problem: Vim9: improve test for disassemble + static
Solution: Add a Vim9 script disassemble test for an interface with
static members
closes: #13037
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 05 Sep 2023 20:45:05 +0200 |
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 |