Mercurial > vim
annotate src/testdir/test_utf8_comparisons.vim @ 34780:54890be01c00 v9.1.0265
patch 9.1.0265: console dialog cannot save unnamed buffers
Commit: https://github.com/vim/vim/commit/df46115fc839c8912ed60646e86a412e5180ba1d
Author: glepnir <glephunter@gmail.com>
Date: Thu Apr 4 22:23:29 2024 +0200
patch 9.1.0265: console dialog cannot save unnamed buffers
Problem: console dialog cannot save unnamed buffers
Solution: set bufname before save (glepnir). Define dialog_con_gui
to test for GUI+Console dialog support, use it to skip
the test when the GUI feature has been defined.
Note: The dialog_changed() function will also try to call the
browse_save_fname() function, when FEAT_BROWSE is defined (which is only
defined in a GUI build of Vim). This will eventually lead to a call of
do_browse(), which causes an error message if a GUI is not currently
running (see the TODO: in do_browse()) and will then lead to a failure
in Test_goto_buf_with_onfirm().
Therefore, we must disable the Test_goto_buf_with_onfirm(), when the
dialog_con_gui feature is enabled (which basically means dialog feature
for GUI and Console builds, in contrast to the dialog_con and dialog_gui
feature).
(Previously this wasn't a problem, because the test aborted in the YES
case for the :confirm :b XgotoConf case and did therefore not run into
the browse function call)
closes: #14398
Signed-off-by: glepnir <glephunter@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 04 Apr 2024 23:45:02 +0200 |
parents | be4389b04043 |
children |
rev | line source |
---|---|
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
1 " Tests for case-insensitive UTF-8 comparisons (utf_strnicmp() in mbyte.c) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
2 " Also test "g~ap". |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
3 |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
4 func Ch(a, op, b, expected) |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
5 call assert_equal(eval(printf('"%s" %s "%s"', a:a, a:op, a:b)), a:expected, |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
6 \ printf('"%s" %s "%s" should return %d', a:a, a:op, a:b, a:expected)) |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
7 endfunc |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
8 |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
9 func Chk(a, b, result) |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
10 if a:result == 0 |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
11 call Ch(a:a, '==?', a:b, 1) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
12 call Ch(a:a, '!=?', a:b, 0) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
13 call Ch(a:a, '<=?', a:b, 1) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
14 call Ch(a:a, '>=?', a:b, 1) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
15 call Ch(a:a, '<?', a:b, 0) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
16 call Ch(a:a, '>?', a:b, 0) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
17 elseif a:result > 0 |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
18 call Ch(a:a, '==?', a:b, 0) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
19 call Ch(a:a, '!=?', a:b, 1) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
20 call Ch(a:a, '<=?', a:b, 0) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
21 call Ch(a:a, '>=?', a:b, 1) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
22 call Ch(a:a, '<?', a:b, 0) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
23 call Ch(a:a, '>?', a:b, 1) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
24 else |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
25 call Ch(a:a, '==?', a:b, 0) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
26 call Ch(a:a, '!=?', a:b, 1) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
27 call Ch(a:a, '<=?', a:b, 1) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
28 call Ch(a:a, '>=?', a:b, 0) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
29 call Ch(a:a, '<?', a:b, 1) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
30 call Ch(a:a, '>?', a:b, 0) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
31 endif |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
32 endfunc |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
33 |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
34 func Check(a, b, result) |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
35 call Chk(a:a, a:b, a:result) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
36 call Chk(a:b, a:a, -a:result) |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
37 endfunc |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
38 |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
39 func LT(a, b) |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
40 call Check(a:a, a:b, -1) |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
41 endfunc |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
42 |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
43 func GT(a, b) |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
44 call Check(a:a, a:b, 1) |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
45 endfunc |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
46 |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
47 func EQ(a, b) |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
48 call Check(a:a, a:b, 0) |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
49 endfunc |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
50 |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
51 func Test_comparisons() |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
52 call EQ('', '') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
53 call LT('', 'a') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
54 call EQ('abc', 'abc') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
55 call EQ('Abc', 'abC') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
56 call LT('ab', 'abc') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
57 call LT('AB', 'abc') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
58 call LT('ab', 'aBc') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
59 call EQ('\xd0\xb9\xd1\x86\xd1\x83\xd0\xba\xd0\xb5\xd0\xbd', '\xd0\xb9\xd0\xa6\xd0\xa3\xd0\xba\xd0\x95\xd0\xbd') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
60 call LT('\xd0\xb9\xd1\x86\xd1\x83\xd0\xba\xd0\xb5\xd0\xbd', '\xd0\xaf\xd1\x86\xd1\x83\xd0\xba\xd0\xb5\xd0\xbd') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
61 call EQ('\xe2\x84\xaa', 'k') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
62 call LT('\xe2\x84\xaa', 'kkkkkk') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
63 call EQ('\xe2\x84\xaa\xe2\x84\xaa\xe2\x84\xaa', 'kkk') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
64 call LT('kk', '\xe2\x84\xaa\xe2\x84\xaa\xe2\x84\xaa') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
65 call EQ('\xe2\x84\xaa\xe2\x84\xa6k\xe2\x84\xaak\xcf\x89', 'k\xcf\x89\xe2\x84\xaakk\xe2\x84\xa6') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
66 call EQ('Abc\x80', 'AbC\x80') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
67 call LT('Abc\x80', 'AbC\x81') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
68 call LT('Abc', 'AbC\x80') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
69 call LT('abc\x80DEF', 'abc\x80def') " case folding stops at the first bad character |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
70 call LT('\xc3XYZ', '\xc3xyz') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
71 call EQ('\xef\xbc\xba', '\xef\xbd\x9a') " FF3A (upper), FF5A (lower) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
72 call GT('\xef\xbc\xba', '\xef\xbc\xff') " first string is ok and equals \xef\xbd\x9a after folding, second string is illegal and was left unchanged, then the strings were bytewise compared |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
73 call LT('\xc3', '\xc3\x83') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
74 call EQ('\xc3\xa3xYz', '\xc3\x83XyZ') |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
75 for n in range(0x60, 0xFF) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
76 call LT(printf('xYz\x%.2X', n-1), printf('XyZ\x%.2X', n)) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
77 endfor |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
78 for n in range(0x80, 0xBF) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
79 call EQ(printf('xYz\xc2\x%.2XUvW', n), printf('XyZ\xc2\x%.2XuVw', n)) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
80 endfor |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
81 for n in range(0xC0, 0xFF) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
82 call LT(printf('xYz\xc2\x%.2XUvW', n), printf('XyZ\xc2\x%.2XuVw', n)) |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
83 endfor |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
84 endfunc |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
85 |
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
86 " test that g~ap changes one paragraph only. |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
87 func Test_gap() |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
88 new |
18736
97d534e17874
patch 8.1.2358: tests fail on Cirrus CI for FreeBSD
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
89 " setup text |
97d534e17874
patch 8.1.2358: tests fail on Cirrus CI for FreeBSD
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
90 call feedkeys("iabcd\<cr>\<cr>defg", "tx") |
97d534e17874
patch 8.1.2358: tests fail on Cirrus CI for FreeBSD
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
91 " modify only first line |
97d534e17874
patch 8.1.2358: tests fail on Cirrus CI for FreeBSD
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
92 call feedkeys("gg0g~ap", "tx") |
11603
4e66689bced6
patch 8.0.0684: old style tests are not nice
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
93 call assert_equal(["ABCD", "", "defg"], getline(1,3)) |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
11603
diff
changeset
|
94 endfunc |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
95 |
34344
be4389b04043
patch 9.1.0105: Style: typos found
Christian Brabandt <cb@256bit.org>
parents:
34336
diff
changeset
|
96 " test that g~, ~ and gU correctly upper-cases ß |
34336
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
97 func Test_uppercase_sharp_ss() |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
98 new |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
99 call setline(1, repeat(['ß'], 4)) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
100 |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
101 call cursor(1, 1) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
102 norm! ~ |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
103 call assert_equal('ẞ', getline(line('.'))) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
104 norm! ~ |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
105 call assert_equal('ß', getline(line('.'))) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
106 |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
107 call cursor(2, 1) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
108 norm! g~l |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
109 call assert_equal('ẞ', getline(line('.'))) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
110 norm! g~l |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
111 call assert_equal('ß', getline(line('.'))) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
112 |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
113 call cursor(3, 1) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
114 norm! gUl |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
115 call assert_equal('ẞ', getline(line('.'))) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
116 norm! vgU |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
117 call assert_equal('ẞ', getline(line('.'))) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
118 norm! vgu |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
119 call assert_equal('ß', getline(line('.'))) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
120 norm! gul |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
121 call assert_equal('ß', getline(line('.'))) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
122 |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
123 call cursor(4, 1) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
124 norm! vgU |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
125 call assert_equal('ẞ', getline(line('.'))) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
126 norm! vgu |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
127 call assert_equal('ß', getline(line('.'))) |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
128 bw! |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
129 endfunc |
d2ad8733db75
patch 9.1.0101: upper-case of German sharp s should be U+1E9E
Christian Brabandt <cb@256bit.org>
parents:
21765
diff
changeset
|
130 |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
131 " vim: shiftwidth=2 sts=2 expandtab |