Mercurial > vim
annotate src/testdir/test_spell.vim @ 18271:b506809f5d38 v8.1.2130
patch 8.1.2130: MSVC build fails
Commit: https://github.com/vim/vim/commit/073e779640d089445c7289393db94d1ceb4ddb17
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Oct 10 13:39:08 2019 +0200
patch 8.1.2130: MSVC build fails
Problem: MSVC build fails.
Solution: Add the source file name explicitly.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 10 Oct 2019 13:45:04 +0200 |
parents | 57b18521216f |
children | fc68850c5233 |
rev | line source |
---|---|
10950
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
1 " Test spell checking |
17653
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
2 " Note: this file uses latin1 encoding, but is used with utf-8 encoding. |
10950
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
3 |
17089
8e9e9124c7a2
patch 8.1.1544: some balloon tests don't run when they can
Bram Moolenaar <Bram@vim.org>
parents:
17049
diff
changeset
|
4 source check.vim |
8e9e9124c7a2
patch 8.1.1544: some balloon tests don't run when they can
Bram Moolenaar <Bram@vim.org>
parents:
17049
diff
changeset
|
5 CheckFeature spell |
10950
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
6 |
11824
b276c1e73c27
patch 8.0.0792: spell test leaves files behind
Christian Brabandt <cb@256bit.org>
parents:
11551
diff
changeset
|
7 func TearDown() |
b276c1e73c27
patch 8.0.0792: spell test leaves files behind
Christian Brabandt <cb@256bit.org>
parents:
11551
diff
changeset
|
8 set nospell |
b276c1e73c27
patch 8.0.0792: spell test leaves files behind
Christian Brabandt <cb@256bit.org>
parents:
11551
diff
changeset
|
9 call delete('Xtest.aff') |
b276c1e73c27
patch 8.0.0792: spell test leaves files behind
Christian Brabandt <cb@256bit.org>
parents:
11551
diff
changeset
|
10 call delete('Xtest.dic') |
b276c1e73c27
patch 8.0.0792: spell test leaves files behind
Christian Brabandt <cb@256bit.org>
parents:
11551
diff
changeset
|
11 call delete('Xtest.latin1.add') |
b276c1e73c27
patch 8.0.0792: spell test leaves files behind
Christian Brabandt <cb@256bit.org>
parents:
11551
diff
changeset
|
12 call delete('Xtest.latin1.add.spl') |
b276c1e73c27
patch 8.0.0792: spell test leaves files behind
Christian Brabandt <cb@256bit.org>
parents:
11551
diff
changeset
|
13 call delete('Xtest.latin1.spl') |
b276c1e73c27
patch 8.0.0792: spell test leaves files behind
Christian Brabandt <cb@256bit.org>
parents:
11551
diff
changeset
|
14 call delete('Xtest.latin1.sug') |
b276c1e73c27
patch 8.0.0792: spell test leaves files behind
Christian Brabandt <cb@256bit.org>
parents:
11551
diff
changeset
|
15 endfunc |
b276c1e73c27
patch 8.0.0792: spell test leaves files behind
Christian Brabandt <cb@256bit.org>
parents:
11551
diff
changeset
|
16 |
10950
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
17 func Test_wrap_search() |
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
18 new |
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
19 call setline(1, ['The', '', 'A plong line with two zpelling mistakes', '', 'End']) |
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
20 set spell wrapscan |
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
21 normal ]s |
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
22 call assert_equal('plong', expand('<cword>')) |
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
23 normal ]s |
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
24 call assert_equal('zpelling', expand('<cword>')) |
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
25 normal ]s |
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
26 call assert_equal('plong', expand('<cword>')) |
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
27 bwipe! |
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
28 set nospell |
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
29 endfunc |
11394
a2124e9bbb6a
patch 8.0.0582: illegal memory access with z= command
Christian Brabandt <cb@256bit.org>
parents:
10950
diff
changeset
|
30 |
13088
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
31 func Test_curswant() |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
32 new |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
33 call setline(1, ['Another plong line', 'abcdefghijklmnopq']) |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
34 set spell wrapscan |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
35 normal 0]s |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
36 call assert_equal('plong', expand('<cword>')) |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
37 normal j |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
38 call assert_equal(9, getcurpos()[2]) |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
39 normal 0[s |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
40 call assert_equal('plong', expand('<cword>')) |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
41 normal j |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
42 call assert_equal(9, getcurpos()[2]) |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
43 |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
44 normal 0]S |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
45 call assert_equal('plong', expand('<cword>')) |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
46 normal j |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
47 call assert_equal(9, getcurpos()[2]) |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
48 normal 0[S |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
49 call assert_equal('plong', expand('<cword>')) |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
50 normal j |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
51 call assert_equal(9, getcurpos()[2]) |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
52 |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
53 normal 1G0 |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
54 call assert_equal('plong', spellbadword()[0]) |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
55 normal j |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
56 call assert_equal(9, getcurpos()[2]) |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
57 |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
58 bwipe! |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
59 set nospell |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
60 endfunc |
3dd37eec73f0
patch 8.0.1419: cursor column is not updated after ]s
Christian Brabandt <cb@256bit.org>
parents:
12694
diff
changeset
|
61 |
11394
a2124e9bbb6a
patch 8.0.0582: illegal memory access with z= command
Christian Brabandt <cb@256bit.org>
parents:
10950
diff
changeset
|
62 func Test_z_equal_on_invalid_utf8_word() |
a2124e9bbb6a
patch 8.0.0582: illegal memory access with z= command
Christian Brabandt <cb@256bit.org>
parents:
10950
diff
changeset
|
63 split |
a2124e9bbb6a
patch 8.0.0582: illegal memory access with z= command
Christian Brabandt <cb@256bit.org>
parents:
10950
diff
changeset
|
64 set spell |
a2124e9bbb6a
patch 8.0.0582: illegal memory access with z= command
Christian Brabandt <cb@256bit.org>
parents:
10950
diff
changeset
|
65 call setline(1, "\xff") |
a2124e9bbb6a
patch 8.0.0582: illegal memory access with z= command
Christian Brabandt <cb@256bit.org>
parents:
10950
diff
changeset
|
66 norm z= |
a2124e9bbb6a
patch 8.0.0582: illegal memory access with z= command
Christian Brabandt <cb@256bit.org>
parents:
10950
diff
changeset
|
67 set nospell |
a2124e9bbb6a
patch 8.0.0582: illegal memory access with z= command
Christian Brabandt <cb@256bit.org>
parents:
10950
diff
changeset
|
68 bwipe! |
a2124e9bbb6a
patch 8.0.0582: illegal memory access with z= command
Christian Brabandt <cb@256bit.org>
parents:
10950
diff
changeset
|
69 endfunc |
11434
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
70 |
14370
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
71 " Test spellbadword() with argument |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
72 func Test_spellbadword() |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
73 set spell |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
74 |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
75 call assert_equal(['bycycle', 'bad'], spellbadword('My bycycle.')) |
18017
988e5a868b60
patch 8.1.2004: more functions can be used as methods
Bram Moolenaar <Bram@vim.org>
parents:
17653
diff
changeset
|
76 call assert_equal(['another', 'caps'], 'A sentence. another sentence'->spellbadword()) |
14370
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
77 |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
78 set spelllang=en |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
79 call assert_equal(['', ''], spellbadword('centre')) |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
80 call assert_equal(['', ''], spellbadword('center')) |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
81 set spelllang=en_us |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
82 call assert_equal(['centre', 'local'], spellbadword('centre')) |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
83 call assert_equal(['', ''], spellbadword('center')) |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
84 set spelllang=en_gb |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
85 call assert_equal(['', ''], spellbadword('centre')) |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
86 call assert_equal(['center', 'local'], spellbadword('center')) |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
87 |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
88 " Create a small word list to test that spellbadword('...') |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
89 " can return ['...', 'rare']. |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
90 e Xwords |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
91 insert |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
92 foo |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
93 foobar/? |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
94 . |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
95 w! |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
96 mkspell! Xwords.spl Xwords |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
97 set spelllang=Xwords.spl |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
98 call assert_equal(['foobar', 'rare'], spellbadword('foo foobar')) |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
99 |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
100 " Typo should not be detected without the 'spell' option. |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
101 set spelllang=en_gb nospell |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
102 call assert_equal(['', ''], spellbadword('centre')) |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
103 call assert_equal(['', ''], spellbadword('My bycycle.')) |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
104 call assert_equal(['', ''], spellbadword('A sentence. another sentence')) |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
105 |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
106 call delete('Xwords.spl') |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
107 call delete('Xwords') |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
108 set spelllang& |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
109 set spell& |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
110 endfunc |
ceeeeb6b1fb0
patch 8.1.0200: spellbadword() not tested
Christian Brabandt <cb@256bit.org>
parents:
13088
diff
changeset
|
111 |
11434
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
112 func Test_spellreall() |
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
113 new |
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
114 set spell |
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
115 call assert_fails('spellrepall', 'E752:') |
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
116 call setline(1, ['A speling mistake. The same speling mistake.', |
11551
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
117 \ 'Another speling mistake.']) |
11434
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
118 call feedkeys(']s1z=', 'tx') |
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
119 call assert_equal('A spelling mistake. The same speling mistake.', getline(1)) |
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
120 call assert_equal('Another speling mistake.', getline(2)) |
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
121 spellrepall |
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
122 call assert_equal('A spelling mistake. The same spelling mistake.', getline(1)) |
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
123 call assert_equal('Another spelling mistake.', getline(2)) |
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
124 call assert_fails('spellrepall', 'E753:') |
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
125 set spell& |
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
126 bwipe! |
b3815e491811
patch 8.0.0601: no test coverage for :spellrepall
Christian Brabandt <cb@256bit.org>
parents:
11394
diff
changeset
|
127 endfunc |
11551
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
128 |
14654
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
129 func Test_spellinfo() |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
130 new |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
131 |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
132 set enc=latin1 spell spelllang=en |
18269
57b18521216f
patch 8.1.2129: using hard coded executable path in test
Bram Moolenaar <Bram@vim.org>
parents:
18017
diff
changeset
|
133 call assert_match("^\nfile: " .. $VIMRUNTIME .. "/spell/en.latin1.spl\n$", execute('spellinfo')) |
14654
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
134 |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
135 set enc=cp1250 spell spelllang=en |
18269
57b18521216f
patch 8.1.2129: using hard coded executable path in test
Bram Moolenaar <Bram@vim.org>
parents:
18017
diff
changeset
|
136 call assert_match("^\nfile: " .. $VIMRUNTIME .. "/spell/en.ascii.spl\n$", execute('spellinfo')) |
14654
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
137 |
15607
2dcaa860e3fc
patch 8.1.0811: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
14654
diff
changeset
|
138 set enc=utf-8 spell spelllang=en |
18269
57b18521216f
patch 8.1.2129: using hard coded executable path in test
Bram Moolenaar <Bram@vim.org>
parents:
18017
diff
changeset
|
139 call assert_match("^\nfile: " .. $VIMRUNTIME .. "/spell/en.utf-8.spl\n$", execute('spellinfo')) |
14654
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
140 |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
141 set enc=latin1 spell spelllang=en_us,en_nz |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
142 call assert_match("^\n" . |
18269
57b18521216f
patch 8.1.2129: using hard coded executable path in test
Bram Moolenaar <Bram@vim.org>
parents:
18017
diff
changeset
|
143 \ "file: " .. $VIMRUNTIME .. "/spell/en.latin1.spl\n" . |
57b18521216f
patch 8.1.2129: using hard coded executable path in test
Bram Moolenaar <Bram@vim.org>
parents:
18017
diff
changeset
|
144 \ "file: " .. $VIMRUNTIME .. "/spell/en.latin1.spl\n$", execute('spellinfo')) |
14654
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
145 |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
146 set spell spelllang= |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
147 call assert_fails('spellinfo', 'E756:') |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
148 |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
149 set nospell spelllang=en |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
150 call assert_fails('spellinfo', 'E756:') |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
151 |
16277
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
152 call assert_fails('set spelllang=foo/bar', 'E474:') |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
153 call assert_fails('set spelllang=foo\ bar', 'E474:') |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
154 call assert_fails("set spelllang=foo\\\nbar", 'E474:') |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
155 call assert_fails("set spelllang=foo\\\rbar", 'E474:') |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
156 call assert_fails("set spelllang=foo+bar", 'E474:') |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
157 |
14654
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
158 set enc& spell& spelllang& |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
159 bwipe |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
160 endfunc |
5a384b3806ec
patch 8.1.0340: no test for :spellinfo
Christian Brabandt <cb@256bit.org>
parents:
14370
diff
changeset
|
161 |
11551
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
162 func Test_zz_basic() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
163 call LoadAffAndDic(g:test_data_aff1, g:test_data_dic1) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
164 call RunGoodBad("wrong OK puts. Test the end", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
165 \ "bad: inputs comment ok Ok. test d\xE9\xF4l end the", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
166 \["Comment", "deol", "d\xE9\xF4r", "input", "OK", "output", "outputs", "outtest", "put", "puts", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
167 \ "test", "testen", "testn", "the end", "uk", "wrong"], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
168 \[ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
169 \ ["bad", ["put", "uk", "OK"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
170 \ ["inputs", ["input", "puts", "outputs"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
171 \ ["comment", ["Comment", "outtest", "the end"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
172 \ ["ok", ["OK", "uk", "put"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
173 \ ["Ok", ["OK", "Uk", "Put"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
174 \ ["test", ["Test", "testn", "testen"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
175 \ ["d\xE9\xF4l", ["deol", "d\xE9\xF4r", "test"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
176 \ ["end", ["put", "uk", "test"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
177 \ ["the", ["put", "uk", "test"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
178 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
179 \ ) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
180 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
181 call assert_equal("gebletegek", soundfold('goobledygoook')) |
18017
988e5a868b60
patch 8.1.2004: more functions can be used as methods
Bram Moolenaar <Bram@vim.org>
parents:
17653
diff
changeset
|
182 call assert_equal("kepereneven", 'kóopërÿnôven'->soundfold()) |
11551
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
183 call assert_equal("everles gesvets etele", soundfold('oeverloos gezwets edale')) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
184 endfunc |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
185 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
186 " Postponed prefixes |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
187 func Test_zz_prefixes() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
188 call LoadAffAndDic(g:test_data_aff2, g:test_data_dic1) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
189 call RunGoodBad("puts", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
190 \ "bad: inputs comment ok Ok end the. test d\xE9\xF4l", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
191 \ ["Comment", "deol", "d\xE9\xF4r", "OK", "put", "input", "output", "puts", "outputs", "test", "outtest", "testen", "testn", "the end", "uk", "wrong"], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
192 \ [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
193 \ ["bad", ["put", "uk", "OK"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
194 \ ["inputs", ["input", "puts", "outputs"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
195 \ ["comment", ["Comment"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
196 \ ["ok", ["OK", "uk", "put"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
197 \ ["Ok", ["OK", "Uk", "Put"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
198 \ ["end", ["put", "uk", "deol"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
199 \ ["the", ["put", "uk", "test"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
200 \ ["test", ["Test", "testn", "testen"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
201 \ ["d\xE9\xF4l", ["deol", "d\xE9\xF4r", "test"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
202 \ ]) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
203 endfunc |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
204 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
205 "Compound words |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
206 func Test_zz_compound() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
207 call LoadAffAndDic(g:test_data_aff3, g:test_data_dic3) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
208 call RunGoodBad("foo m\xEF foobar foofoobar barfoo barbarfoo", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
209 \ "bad: bar la foom\xEF barm\xEF m\xEFfoo m\xEFbar m\xEFm\xEF lala m\xEFla lam\xEF foola labar", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
210 \ ["foo", "m\xEF"], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
211 \ [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
212 \ ["bad", ["foo", "m\xEF"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
213 \ ["bar", ["barfoo", "foobar", "foo"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
214 \ ["la", ["m\xEF", "foo"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
215 \ ["foom\xEF", ["foo m\xEF", "foo", "foofoo"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
216 \ ["barm\xEF", ["barfoo", "m\xEF", "barbar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
217 \ ["m\xEFfoo", ["m\xEF foo", "foo", "foofoo"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
218 \ ["m\xEFbar", ["foobar", "barbar", "m\xEF"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
219 \ ["m\xEFm\xEF", ["m\xEF m\xEF", "m\xEF"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
220 \ ["lala", []], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
221 \ ["m\xEFla", ["m\xEF", "m\xEF m\xEF"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
222 \ ["lam\xEF", ["m\xEF", "m\xEF m\xEF"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
223 \ ["foola", ["foo", "foobar", "foofoo"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
224 \ ["labar", ["barbar", "foobar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
225 \ ]) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
226 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
227 call LoadAffAndDic(g:test_data_aff4, g:test_data_dic4) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
228 call RunGoodBad("word util bork prebork start end wordutil wordutils pro-ok bork borkbork borkborkbork borkborkborkbork borkborkborkborkbork tomato tomatotomato startend startword startwordword startwordend startwordwordend startwordwordwordend prebork preborkbork preborkborkbork nouword", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
229 \ "bad: wordutilize pro borkborkborkborkborkbork tomatotomatotomato endstart endend startstart wordend wordstart preborkprebork preborkpreborkbork startwordwordwordwordend borkpreborkpreborkbork utilsbork startnouword", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
230 \ ["bork", "prebork", "end", "pro-ok", "start", "tomato", "util", "utilize", "utils", "word", "nouword"], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
231 \ [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
232 \ ["bad", ["end", "bork", "word"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
233 \ ["wordutilize", ["word utilize", "wordutils", "wordutil"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
234 \ ["pro", ["bork", "word", "end"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
235 \ ["borkborkborkborkborkbork", ["bork borkborkborkborkbork", "borkbork borkborkborkbork", "borkborkbork borkborkbork"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
236 \ ["tomatotomatotomato", ["tomato tomatotomato", "tomatotomato tomato", "tomato tomato tomato"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
237 \ ["endstart", ["end start", "start"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
238 \ ["endend", ["end end", "end"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
239 \ ["startstart", ["start start"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
240 \ ["wordend", ["word end", "word", "wordword"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
241 \ ["wordstart", ["word start", "bork start"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
242 \ ["preborkprebork", ["prebork prebork", "preborkbork", "preborkborkbork"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
243 \ ["preborkpreborkbork", ["prebork preborkbork", "preborkborkbork", "preborkborkborkbork"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
244 \ ["startwordwordwordwordend", ["startwordwordwordword end", "startwordwordwordword", "start wordwordwordword end"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
245 \ ["borkpreborkpreborkbork", ["bork preborkpreborkbork", "bork prebork preborkbork", "bork preborkprebork bork"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
246 \ ["utilsbork", ["utilbork", "utils bork", "util bork"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
247 \ ["startnouword", ["start nouword", "startword", "startborkword"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
248 \ ]) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
249 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
250 endfunc |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
251 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
252 "Test affix flags with two characters |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
253 func Test_zz_affix() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
254 call LoadAffAndDic(g:test_data_aff5, g:test_data_dic5) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
255 call RunGoodBad("fooa1 fooa\xE9 bar prebar barbork prebarbork startprebar start end startend startmiddleend nouend", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
256 \ "bad: foo fooa2 prabar probarbirk middle startmiddle middleend endstart startprobar startnouend", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
257 \ ["bar", "barbork", "end", "fooa1", "fooa\xE9", "nouend", "prebar", "prebarbork", "start"], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
258 \ [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
259 \ ["bad", ["bar", "end", "fooa1"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
260 \ ["foo", ["fooa1", "fooa\xE9", "bar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
261 \ ["fooa2", ["fooa1", "fooa\xE9", "bar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
262 \ ["prabar", ["prebar", "bar", "bar bar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
263 \ ["probarbirk", ["prebarbork"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
264 \ ["middle", []], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
265 \ ["startmiddle", ["startmiddleend", "startmiddlebar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
266 \ ["middleend", []], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
267 \ ["endstart", ["end start", "start"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
268 \ ["startprobar", ["startprebar", "start prebar", "startbar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
269 \ ["startnouend", ["start nouend", "startend"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
270 \ ]) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
271 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
272 call LoadAffAndDic(g:test_data_aff6, g:test_data_dic6) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
273 call RunGoodBad("meea1 meea\xE9 bar prebar barbork prebarbork leadprebar lead end leadend leadmiddleend", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
274 \ "bad: mee meea2 prabar probarbirk middle leadmiddle middleend endlead leadprobar", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
275 \ ["bar", "barbork", "end", "lead", "meea1", "meea\xE9", "prebar", "prebarbork"], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
276 \ [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
277 \ ["bad", ["bar", "end", "lead"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
278 \ ["mee", ["meea1", "meea\xE9", "bar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
279 \ ["meea2", ["meea1", "meea\xE9", "lead"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
280 \ ["prabar", ["prebar", "bar", "leadbar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
281 \ ["probarbirk", ["prebarbork"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
282 \ ["middle", []], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
283 \ ["leadmiddle", ["leadmiddleend", "leadmiddlebar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
284 \ ["middleend", []], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
285 \ ["endlead", ["end lead", "lead", "end end"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
286 \ ["leadprobar", ["leadprebar", "lead prebar", "leadbar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
287 \ ]) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
288 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
289 call LoadAffAndDic(g:test_data_aff7, g:test_data_dic7) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
290 call RunGoodBad("meea1 meea\xE9 bar prebar barmeat prebarmeat leadprebar lead tail leadtail leadmiddletail", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
291 \ "bad: mee meea2 prabar probarmaat middle leadmiddle middletail taillead leadprobar", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
292 \ ["bar", "barmeat", "lead", "meea1", "meea\xE9", "prebar", "prebarmeat", "tail"], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
293 \ [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
294 \ ["bad", ["bar", "lead", "tail"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
295 \ ["mee", ["meea1", "meea\xE9", "bar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
296 \ ["meea2", ["meea1", "meea\xE9", "lead"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
297 \ ["prabar", ["prebar", "bar", "leadbar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
298 \ ["probarmaat", ["prebarmeat"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
299 \ ["middle", []], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
300 \ ["leadmiddle", ["leadmiddlebar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
301 \ ["middletail", []], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
302 \ ["taillead", ["tail lead", "tail"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
303 \ ["leadprobar", ["leadprebar", "lead prebar", "leadbar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
304 \ ]) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
305 endfunc |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
306 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
307 func Test_zz_NOSLITSUGS() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
308 call LoadAffAndDic(g:test_data_aff8, g:test_data_dic8) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
309 call RunGoodBad("foo bar faabar", "bad: foobar barfoo", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
310 \ ["bar", "faabar", "foo"], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
311 \ [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
312 \ ["bad", ["bar", "foo"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
313 \ ["foobar", ["faabar", "foo bar", "bar"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
314 \ ["barfoo", ["bar foo", "bar", "foo"]], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
315 \ ]) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
316 endfunc |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
317 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
318 " Numbers |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
319 func Test_zz_Numbers() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
320 call LoadAffAndDic(g:test_data_aff9, g:test_data_dic9) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
321 call RunGoodBad("0b1011 0777 1234 0x01ff", "", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
322 \ ["bar", "foo"], |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
323 \ [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
324 \ ]) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
325 endfunc |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
326 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
327 function FirstSpellWord() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
328 call feedkeys("/^start:\n", 'tx') |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
329 normal ]smm |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
330 let [str, a] = spellbadword() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
331 return str |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
332 endfunc |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
333 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
334 function SecondSpellWord() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
335 normal `m]s |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
336 let [str, a] = spellbadword() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
337 return str |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
338 endfunc |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
339 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
340 "Test with SAL instead of SOFO items; test automatic reloading |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
341 func Test_zz_sal_and_addition() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
342 set enc=latin1 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
343 set spellfile= |
11824
b276c1e73c27
patch 8.0.0792: spell test leaves files behind
Christian Brabandt <cb@256bit.org>
parents:
11551
diff
changeset
|
344 call writefile(g:test_data_dic1, "Xtest.dic") |
11551
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
345 call writefile(g:test_data_aff_sal, "Xtest.aff") |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
346 mkspell! Xtest Xtest |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
347 set spl=Xtest.latin1.spl spell |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
348 call assert_equal('kbltykk', soundfold('goobledygoook')) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
349 call assert_equal('kprnfn', soundfold('kóopërÿnôven')) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
350 call assert_equal('*fls kswts tl', soundfold('oeverloos gezwets edale')) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
351 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
352 "also use an addition file |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
353 call writefile(["/regions=usgbnz", "elequint/2", "elekwint/3"], "Xtest.latin1.add") |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
354 mkspell! Xtest.latin1.add.spl Xtest.latin1.add |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
355 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
356 bwipe! |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
357 call setline(1, ["start: elequint test elekwint test elekwent asdf"]) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
358 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
359 set spellfile=Xtest.latin1.add |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
360 call assert_equal("elekwent", FirstSpellWord()) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
361 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
362 set spl=Xtest_us.latin1.spl |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
363 call assert_equal("elequint", FirstSpellWord()) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
364 call assert_equal("elekwint", SecondSpellWord()) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
365 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
366 set spl=Xtest_gb.latin1.spl |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
367 call assert_equal("elekwint", FirstSpellWord()) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
368 call assert_equal("elekwent", SecondSpellWord()) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
369 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
370 set spl=Xtest_nz.latin1.spl |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
371 call assert_equal("elequint", FirstSpellWord()) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
372 call assert_equal("elekwent", SecondSpellWord()) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
373 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
374 set spl=Xtest_ca.latin1.spl |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
375 call assert_equal("elequint", FirstSpellWord()) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
376 call assert_equal("elekwint", SecondSpellWord()) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
377 endfunc |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
378 |
16279
36d97f2a4c2b
patch 8.1.1144: too strict checking of the 'spellfile' option
Bram Moolenaar <Bram@vim.org>
parents:
16277
diff
changeset
|
379 func Test_spellfile_value() |
36d97f2a4c2b
patch 8.1.1144: too strict checking of the 'spellfile' option
Bram Moolenaar <Bram@vim.org>
parents:
16277
diff
changeset
|
380 set spellfile=Xdir/Xtest.latin1.add |
36d97f2a4c2b
patch 8.1.1144: too strict checking of the 'spellfile' option
Bram Moolenaar <Bram@vim.org>
parents:
16277
diff
changeset
|
381 set spellfile=Xdir/Xtest.utf-8.add,Xtest_other.add |
36d97f2a4c2b
patch 8.1.1144: too strict checking of the 'spellfile' option
Bram Moolenaar <Bram@vim.org>
parents:
16277
diff
changeset
|
382 endfunc |
36d97f2a4c2b
patch 8.1.1144: too strict checking of the 'spellfile' option
Bram Moolenaar <Bram@vim.org>
parents:
16277
diff
changeset
|
383 |
12694
514c1741ab8c
patch 8.0.1225: no check for spell region being zero
Christian Brabandt <cb@256bit.org>
parents:
11824
diff
changeset
|
384 func Test_region_error() |
514c1741ab8c
patch 8.0.1225: no check for spell region being zero
Christian Brabandt <cb@256bit.org>
parents:
11824
diff
changeset
|
385 messages clear |
514c1741ab8c
patch 8.0.1225: no check for spell region being zero
Christian Brabandt <cb@256bit.org>
parents:
11824
diff
changeset
|
386 call writefile(["/regions=usgbnz", "elequint/0"], "Xtest.latin1.add") |
514c1741ab8c
patch 8.0.1225: no check for spell region being zero
Christian Brabandt <cb@256bit.org>
parents:
11824
diff
changeset
|
387 mkspell! Xtest.latin1.add.spl Xtest.latin1.add |
514c1741ab8c
patch 8.0.1225: no check for spell region being zero
Christian Brabandt <cb@256bit.org>
parents:
11824
diff
changeset
|
388 call assert_match('Invalid region nr in Xtest.latin1.add line 2: 0', execute('messages')) |
514c1741ab8c
patch 8.0.1225: no check for spell region being zero
Christian Brabandt <cb@256bit.org>
parents:
11824
diff
changeset
|
389 call delete('Xtest.latin1.add') |
514c1741ab8c
patch 8.0.1225: no check for spell region being zero
Christian Brabandt <cb@256bit.org>
parents:
11824
diff
changeset
|
390 call delete('Xtest.latin1.add.spl') |
514c1741ab8c
patch 8.0.1225: no check for spell region being zero
Christian Brabandt <cb@256bit.org>
parents:
11824
diff
changeset
|
391 endfunc |
514c1741ab8c
patch 8.0.1225: no check for spell region being zero
Christian Brabandt <cb@256bit.org>
parents:
11824
diff
changeset
|
392 |
11551
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
393 " Check using z= in new buffer (crash fixed by patch 7.4a.028). |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
394 func Test_zeq_crash() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
395 new |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
396 set maxmem=512 spell |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
397 call feedkeys('iasdz=:\"', 'tx') |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
398 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
399 bwipe! |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
400 endfunc |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
401 |
17653
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
402 " Check handling a word longer than MAXWLEN. |
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
403 func Test_spell_long_word() |
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
404 set enc=utf-8 |
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
405 new |
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
406 call setline(1, "d\xCC\xB4\xCC\xBD\xCD\x88\xCD\x94a\xCC\xB5\xCD\x84\xCD\x84\xCC\xA8\xCD\x9Cr\xCC\xB5\xCC\x8E\xCD\x85\xCD\x85k\xCC\xB6\xCC\x89\xCC\x9D \xCC\xB6\xCC\x83\xCC\x8F\xCC\xA4\xCD\x8Ef\xCC\xB7\xCC\x81\xCC\x80\xCC\xA9\xCC\xB0\xCC\xAC\xCC\xA2\xCD\x95\xCD\x87\xCD\x8D\xCC\x9E\xCD\x99\xCC\xAD\xCC\xAB\xCC\x97\xCC\xBBo\xCC\xB6\xCC\x84\xCC\x95\xCC\x8C\xCC\x8B\xCD\x9B\xCD\x9C\xCC\xAFr\xCC\xB7\xCC\x94\xCD\x83\xCD\x97\xCC\x8C\xCC\x82\xCD\x82\xCD\x80\xCD\x91\xCC\x80\xCC\xBE\xCC\x82\xCC\x8F\xCC\xA3\xCD\x85\xCC\xAE\xCD\x8D\xCD\x99\xCC\xBC\xCC\xAB\xCC\xA7\xCD\x88c\xCC\xB7\xCD\x83\xCC\x84\xCD\x92\xCC\x86\xCC\x83\xCC\x88\xCC\x92\xCC\x94\xCC\xBE\xCC\x9D\xCC\xAF\xCC\x98\xCC\x9D\xCC\xBB\xCD\x8E\xCC\xBB\xCC\xB3\xCC\xA3\xCD\x8E\xCD\x99\xCC\xA5\xCC\xAD\xCC\x99\xCC\xB9\xCC\xAE\xCC\xA5\xCC\x9E\xCD\x88\xCC\xAE\xCC\x9E\xCC\xA9\xCC\x97\xCC\xBC\xCC\x99\xCC\xA5\xCD\x87\xCC\x97\xCD\x8E\xCD\x94\xCC\x99\xCC\x9D\xCC\x96\xCD\x94\xCC\xAB\xCC\xA7\xCC\xA5\xCC\x98\xCC\xBB\xCC\xAF\xCC\xABe\xCC\xB7\xCC\x8E\xCC\x82\xCD\x86\xCD\x9B\xCC\x94\xCD\x83\xCC\x85\xCD\x8A\xCD\x8C\xCC\x8B\xCD\x92\xCD\x91\xCC\x8F\xCC\x81\xCD\x95\xCC\xA2\xCC\xB9\xCC\xB2\xCD\x9C\xCC\xB1\xCC\xA6\xCC\xB3\xCC\xAF\xCC\xAE\xCC\x9C\xCD\x99s\xCC\xB8\xCC\x8C\xCC\x8E\xCC\x87\xCD\x81\xCD\x82\xCC\x86\xCD\x8C\xCD\x8C\xCC\x8B\xCC\x84\xCC\x8C\xCD\x84\xCD\x9B\xCD\x86\xCC\x93\xCD\x90\xCC\x85\xCC\x94\xCD\x98\xCD\x84\xCD\x92\xCD\x8B\xCC\x90\xCC\x83\xCC\x8F\xCD\x84\xCD\x81\xCD\x9B\xCC\x90\xCD\x81\xCC\x8F\xCC\xBD\xCC\x88\xCC\xBF\xCC\x88\xCC\x84\xCC\x8E\xCD\x99\xCD\x94\xCC\x99\xCD\x99\xCC\xB0\xCC\xA8\xCC\xA3\xCC\xA8\xCC\x96\xCC\x99\xCC\xAE\xCC\xBC\xCC\x99\xCD\x9A\xCC\xB2\xCC\xB1\xCC\x9F\xCC\xBB\xCC\xA6\xCD\x85\xCC\xAA\xCD\x89\xCC\x9D\xCC\x99\xCD\x96\xCC\xB1\xCC\xB1\xCC\x99\xCC\xA6\xCC\xA5\xCD\x95\xCC\xB2\xCC\xA0\xCD\x99 within") |
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
407 set spell spelllang=en |
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
408 redraw |
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
409 redraw! |
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
410 bwipe! |
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
411 set nospell |
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
412 endfunc |
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
413 |
11551
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
414 func LoadAffAndDic(aff_contents, dic_contents) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
415 set enc=latin1 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
416 set spellfile= |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
417 call writefile(a:aff_contents, "Xtest.aff") |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
418 call writefile(a:dic_contents, "Xtest.dic") |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
419 " Generate a .spl file from a .dic and .aff file. |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
420 mkspell! Xtest Xtest |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
421 " use that spell file |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
422 set spl=Xtest.latin1.spl spell |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
423 endfunc |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
424 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
425 func ListWords() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
426 spelldump |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
427 %yank |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
428 quit |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
429 return split(@", "\n") |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
430 endfunc |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
431 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
432 func TestGoodBadBase() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
433 exe '1;/^good:' |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
434 normal 0f:]s |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
435 let prevbad = '' |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
436 let result = [] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
437 while 1 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
438 let [bad, a] = spellbadword() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
439 if bad == '' || bad == prevbad || bad == 'badend' |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
440 break |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
441 endif |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
442 let prevbad = bad |
18017
988e5a868b60
patch 8.1.2004: more functions can be used as methods
Bram Moolenaar <Bram@vim.org>
parents:
17653
diff
changeset
|
443 let lst = bad->spellsuggest(3) |
11551
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
444 normal mm |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
445 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
446 call add(result, [bad, lst]) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
447 normal `m]s |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
448 endwhile |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
449 return result |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
450 endfunc |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
451 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
452 func RunGoodBad(good, bad, expected_words, expected_bad_words) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
453 bwipe! |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
454 call setline(1, ["good: ", a:good, a:bad, " badend "]) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
455 let words = ListWords() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
456 call assert_equal(a:expected_words, words[1:-1]) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
457 let bad_words = TestGoodBadBase() |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
458 call assert_equal(a:expected_bad_words, bad_words) |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
459 bwipe! |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
460 endfunc |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
461 |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
462 let g:test_data_aff1 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
463 \"SET ISO8859-1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
464 \"TRY esianrtolcdugmphbyfvkwjkqxz-\xEB\xE9\xE8\xEA\xEF\xEE\xE4\xE0\xE2\xF6\xFC\xFB'ESIANRTOLCDUGMPHBYFVKWJKQXZ", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
465 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
466 \"FOL \xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xDF\xFF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
467 \"LOW \xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xDF\xFF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
468 \"UPP \xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\xD0\xD1\xD2\xD3\xD4\xD5\xD6\xD8\xD9\xDA\xDB\xDC\xDD\xDE\xDF\xFF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
469 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
470 \"SOFOFROM abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xDF\xFF\xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\xD0\xD1\xD2\xD3\xD4\xD5\xD6\xD8\xD9\xDA\xDB\xDC\xDD\xDE\xBF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
471 \"SOFOTO ebctefghejklnnepkrstevvkesebctefghejklnnepkrstevvkeseeeeeeeceeeeeeeedneeeeeeeeeeepseeeeeeeeceeeeeeeedneeeeeeeeeeep?", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
472 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
473 \"MIDWORD\t'-", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
474 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
475 \"KEP =", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
476 \"RAR ?", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
477 \"BAD !", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
478 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
479 \"PFX I N 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
480 \"PFX I 0 in .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
481 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
482 \"PFX O Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
483 \"PFX O 0 out .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
484 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
485 \"SFX S Y 2", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
486 \"SFX S 0 s [^s]", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
487 \"SFX S 0 es s", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
488 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
489 \"SFX N N 3", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
490 \"SFX N 0 en [^n]", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
491 \"SFX N 0 nen n", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
492 \"SFX N 0 n .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
493 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
494 \"REP 3", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
495 \"REP g ch", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
496 \"REP ch g", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
497 \"REP svp s.v.p.", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
498 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
499 \"MAP 9", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
500 \"MAP a\xE0\xE1\xE2\xE3\xE4\xE5", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
501 \"MAP e\xE8\xE9\xEA\xEB", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
502 \"MAP i\xEC\xED\xEE\xEF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
503 \"MAP o\xF2\xF3\xF4\xF5\xF6", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
504 \"MAP u\xF9\xFA\xFB\xFC", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
505 \"MAP n\xF1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
506 \"MAP c\xE7", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
507 \"MAP y\xFF\xFD", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
508 \"MAP s\xDF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
509 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
510 let g:test_data_dic1 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
511 \"123456", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
512 \"test/NO", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
513 \"# comment", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
514 \"wrong", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
515 \"Comment", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
516 \"OK", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
517 \"uk", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
518 \"put/ISO", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
519 \"the end", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
520 \"deol", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
521 \"d\xE9\xF4r", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
522 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
523 let g:test_data_aff2 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
524 \"SET ISO8859-1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
525 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
526 \"FOL \xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xDF\xFF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
527 \"LOW \xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xDF\xFF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
528 \"UPP \xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\xD0\xD1\xD2\xD3\xD4\xD5\xD6\xD8\xD9\xDA\xDB\xDC\xDD\xDE\xDF\xFF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
529 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
530 \"PFXPOSTPONE", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
531 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
532 \"MIDWORD\t'-", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
533 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
534 \"KEP =", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
535 \"RAR ?", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
536 \"BAD !", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
537 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
538 \"PFX I N 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
539 \"PFX I 0 in .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
540 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
541 \"PFX O Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
542 \"PFX O 0 out [a-z]", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
543 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
544 \"SFX S Y 2", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
545 \"SFX S 0 s [^s]", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
546 \"SFX S 0 es s", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
547 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
548 \"SFX N N 3", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
549 \"SFX N 0 en [^n]", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
550 \"SFX N 0 nen n", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
551 \"SFX N 0 n .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
552 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
553 \"REP 3", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
554 \"REP g ch", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
555 \"REP ch g", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
556 \"REP svp s.v.p.", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
557 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
558 \"MAP 9", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
559 \"MAP a\xE0\xE1\xE2\xE3\xE4\xE5", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
560 \"MAP e\xE8\xE9\xEA\xEB", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
561 \"MAP i\xEC\xED\xEE\xEF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
562 \"MAP o\xF2\xF3\xF4\xF5\xF6", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
563 \"MAP u\xF9\xFA\xFB\xFC", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
564 \"MAP n\xF1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
565 \"MAP c\xE7", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
566 \"MAP y\xFF\xFD", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
567 \"MAP s\xDF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
568 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
569 let g:test_data_aff3 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
570 \"SET ISO8859-1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
571 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
572 \"COMPOUNDMIN 3", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
573 \"COMPOUNDRULE m*", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
574 \"NEEDCOMPOUND x", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
575 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
576 let g:test_data_dic3 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
577 \"1234", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
578 \"foo/m", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
579 \"bar/mx", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
580 \"m\xEF/m", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
581 \"la/mx", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
582 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
583 let g:test_data_aff4 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
584 \"SET ISO8859-1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
585 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
586 \"FOL \xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xDF\xFF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
587 \"LOW \xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xDF\xFF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
588 \"UPP \xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\xD0\xD1\xD2\xD3\xD4\xD5\xD6\xD8\xD9\xDA\xDB\xDC\xDD\xDE\xDF\xFF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
589 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
590 \"COMPOUNDRULE m+", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
591 \"COMPOUNDRULE sm*e", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
592 \"COMPOUNDRULE sm+", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
593 \"COMPOUNDMIN 3", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
594 \"COMPOUNDWORDMAX 3", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
595 \"COMPOUNDFORBIDFLAG t", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
596 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
597 \"COMPOUNDSYLMAX 5", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
598 \"SYLLABLE a\xE1e\xE9i\xEDo\xF3\xF6\xF5u\xFA\xFC\xFBy/aa/au/ea/ee/ei/ie/oa/oe/oo/ou/uu/ui", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
599 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
600 \"MAP 9", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
601 \"MAP a\xE0\xE1\xE2\xE3\xE4\xE5", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
602 \"MAP e\xE8\xE9\xEA\xEB", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
603 \"MAP i\xEC\xED\xEE\xEF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
604 \"MAP o\xF2\xF3\xF4\xF5\xF6", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
605 \"MAP u\xF9\xFA\xFB\xFC", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
606 \"MAP n\xF1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
607 \"MAP c\xE7", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
608 \"MAP y\xFF\xFD", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
609 \"MAP s\xDF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
610 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
611 \"NEEDAFFIX x", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
612 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
613 \"PFXPOSTPONE", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
614 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
615 \"MIDWORD '-", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
616 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
617 \"SFX q N 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
618 \"SFX q 0 -ok .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
619 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
620 \"SFX a Y 2", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
621 \"SFX a 0 s .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
622 \"SFX a 0 ize/t .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
623 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
624 \"PFX p N 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
625 \"PFX p 0 pre .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
626 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
627 \"PFX P N 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
628 \"PFX P 0 nou .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
629 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
630 let g:test_data_dic4 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
631 \"1234", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
632 \"word/mP", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
633 \"util/am", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
634 \"pro/xq", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
635 \"tomato/m", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
636 \"bork/mp", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
637 \"start/s", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
638 \"end/e", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
639 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
640 let g:test_data_aff5 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
641 \"SET ISO8859-1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
642 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
643 \"FLAG long", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
644 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
645 \"NEEDAFFIX !!", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
646 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
647 \"COMPOUNDRULE ssmm*ee", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
648 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
649 \"NEEDCOMPOUND xx", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
650 \"COMPOUNDPERMITFLAG pp", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
651 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
652 \"SFX 13 Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
653 \"SFX 13 0 bork .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
654 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
655 \"SFX a1 Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
656 \"SFX a1 0 a1 .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
657 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
658 \"SFX a\xE9 Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
659 \"SFX a\xE9 0 a\xE9 .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
660 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
661 \"PFX zz Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
662 \"PFX zz 0 pre/pp .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
663 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
664 \"PFX yy Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
665 \"PFX yy 0 nou .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
666 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
667 let g:test_data_dic5 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
668 \"1234", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
669 \"foo/a1a\xE9!!", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
670 \"bar/zz13ee", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
671 \"start/ss", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
672 \"end/eeyy", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
673 \"middle/mmxx", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
674 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
675 let g:test_data_aff6 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
676 \"SET ISO8859-1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
677 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
678 \"FLAG caplong", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
679 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
680 \"NEEDAFFIX A!", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
681 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
682 \"COMPOUNDRULE sMm*Ee", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
683 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
684 \"NEEDCOMPOUND Xx", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
685 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
686 \"COMPOUNDPERMITFLAG p", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
687 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
688 \"SFX N3 Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
689 \"SFX N3 0 bork .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
690 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
691 \"SFX A1 Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
692 \"SFX A1 0 a1 .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
693 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
694 \"SFX A\xE9 Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
695 \"SFX A\xE9 0 a\xE9 .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
696 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
697 \"PFX Zz Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
698 \"PFX Zz 0 pre/p .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
699 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
700 let g:test_data_dic6 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
701 \"1234", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
702 \"mee/A1A\xE9A!", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
703 \"bar/ZzN3Ee", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
704 \"lead/s", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
705 \"end/Ee", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
706 \"middle/MmXx", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
707 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
708 let g:test_data_aff7 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
709 \"SET ISO8859-1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
710 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
711 \"FLAG num", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
712 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
713 \"NEEDAFFIX 9999", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
714 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
715 \"COMPOUNDRULE 2,77*123", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
716 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
717 \"NEEDCOMPOUND 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
718 \"COMPOUNDPERMITFLAG 432", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
719 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
720 \"SFX 61003 Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
721 \"SFX 61003 0 meat .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
722 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
723 \"SFX 391 Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
724 \"SFX 391 0 a1 .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
725 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
726 \"SFX 111 Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
727 \"SFX 111 0 a\xE9 .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
728 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
729 \"PFX 17 Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
730 \"PFX 17 0 pre/432 .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
731 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
732 let g:test_data_dic7 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
733 \"1234", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
734 \"mee/391,111,9999", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
735 \"bar/17,61003,123", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
736 \"lead/2", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
737 \"tail/123", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
738 \"middle/77,1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
739 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
740 let g:test_data_aff8 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
741 \"SET ISO8859-1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
742 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
743 \"NOSPLITSUGS", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
744 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
745 let g:test_data_dic8 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
746 \"1234", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
747 \"foo", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
748 \"bar", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
749 \"faabar", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
750 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
751 let g:test_data_aff9 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
752 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
753 let g:test_data_dic9 = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
754 \"1234", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
755 \"foo", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
756 \"bar", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
757 \ ] |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
758 let g:test_data_aff_sal = [ |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
759 \"SET ISO8859-1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
760 \"TRY esianrtolcdugmphbyfvkwjkqxz-\xEB\xE9\xE8\xEA\xEF\xEE\xE4\xE0\xE2\xF6\xFC\xFB'ESIANRTOLCDUGMPHBYFVKWJKQXZ", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
761 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
762 \"FOL \xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xDF\xFF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
763 \"LOW \xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xDF\xFF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
764 \"UPP \xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\xD0\xD1\xD2\xD3\xD4\xD5\xD6\xD8\xD9\xDA\xDB\xDC\xDD\xDE\xDF\xFF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
765 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
766 \"MIDWORD\t'-", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
767 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
768 \"KEP =", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
769 \"RAR ?", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
770 \"BAD !", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
771 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
772 \"PFX I N 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
773 \"PFX I 0 in .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
774 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
775 \"PFX O Y 1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
776 \"PFX O 0 out .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
777 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
778 \"SFX S Y 2", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
779 \"SFX S 0 s [^s]", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
780 \"SFX S 0 es s", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
781 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
782 \"SFX N N 3", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
783 \"SFX N 0 en [^n]", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
784 \"SFX N 0 nen n", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
785 \"SFX N 0 n .", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
786 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
787 \"REP 3", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
788 \"REP g ch", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
789 \"REP ch g", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
790 \"REP svp s.v.p.", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
791 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
792 \"MAP 9", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
793 \"MAP a\xE0\xE1\xE2\xE3\xE4\xE5", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
794 \"MAP e\xE8\xE9\xEA\xEB", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
795 \"MAP i\xEC\xED\xEE\xEF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
796 \"MAP o\xF2\xF3\xF4\xF5\xF6", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
797 \"MAP u\xF9\xFA\xFB\xFC", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
798 \"MAP n\xF1", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
799 \"MAP c\xE7", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
800 \"MAP y\xFF\xFD", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
801 \"MAP s\xDF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
802 \"", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
803 \"SAL AH(AEIOUY)-^ *H", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
804 \"SAL AR(AEIOUY)-^ *R", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
805 \"SAL A(HR)^ *", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
806 \"SAL A^ *", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
807 \"SAL AH(AEIOUY)- H", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
808 \"SAL AR(AEIOUY)- R", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
809 \"SAL A(HR) _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
810 \"SAL \xC0^ *", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
811 \"SAL \xC5^ *", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
812 \"SAL BB- _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
813 \"SAL B B", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
814 \"SAL CQ- _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
815 \"SAL CIA X", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
816 \"SAL CH X", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
817 \"SAL C(EIY)- S", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
818 \"SAL CK K", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
819 \"SAL COUGH^ KF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
820 \"SAL CC< C", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
821 \"SAL C K", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
822 \"SAL DG(EIY) K", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
823 \"SAL DD- _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
824 \"SAL D T", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
825 \"SAL \xC9< E", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
826 \"SAL EH(AEIOUY)-^ *H", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
827 \"SAL ER(AEIOUY)-^ *R", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
828 \"SAL E(HR)^ *", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
829 \"SAL ENOUGH^$ *NF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
830 \"SAL E^ *", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
831 \"SAL EH(AEIOUY)- H", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
832 \"SAL ER(AEIOUY)- R", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
833 \"SAL E(HR) _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
834 \"SAL FF- _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
835 \"SAL F F", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
836 \"SAL GN^ N", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
837 \"SAL GN$ N", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
838 \"SAL GNS$ NS", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
839 \"SAL GNED$ N", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
840 \"SAL GH(AEIOUY)- K", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
841 \"SAL GH _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
842 \"SAL GG9 K", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
843 \"SAL G K", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
844 \"SAL H H", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
845 \"SAL IH(AEIOUY)-^ *H", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
846 \"SAL IR(AEIOUY)-^ *R", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
847 \"SAL I(HR)^ *", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
848 \"SAL I^ *", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
849 \"SAL ING6 N", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
850 \"SAL IH(AEIOUY)- H", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
851 \"SAL IR(AEIOUY)- R", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
852 \"SAL I(HR) _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
853 \"SAL J K", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
854 \"SAL KN^ N", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
855 \"SAL KK- _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
856 \"SAL K K", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
857 \"SAL LAUGH^ LF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
858 \"SAL LL- _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
859 \"SAL L L", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
860 \"SAL MB$ M", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
861 \"SAL MM M", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
862 \"SAL M M", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
863 \"SAL NN- _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
864 \"SAL N N", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
865 \"SAL OH(AEIOUY)-^ *H", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
866 \"SAL OR(AEIOUY)-^ *R", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
867 \"SAL O(HR)^ *", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
868 \"SAL O^ *", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
869 \"SAL OH(AEIOUY)- H", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
870 \"SAL OR(AEIOUY)- R", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
871 \"SAL O(HR) _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
872 \"SAL PH F", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
873 \"SAL PN^ N", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
874 \"SAL PP- _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
875 \"SAL P P", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
876 \"SAL Q K", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
877 \"SAL RH^ R", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
878 \"SAL ROUGH^ RF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
879 \"SAL RR- _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
880 \"SAL R R", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
881 \"SAL SCH(EOU)- SK", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
882 \"SAL SC(IEY)- S", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
883 \"SAL SH X", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
884 \"SAL SI(AO)- X", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
885 \"SAL SS- _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
886 \"SAL S S", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
887 \"SAL TI(AO)- X", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
888 \"SAL TH @", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
889 \"SAL TCH-- _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
890 \"SAL TOUGH^ TF", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
891 \"SAL TT- _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
892 \"SAL T T", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
893 \"SAL UH(AEIOUY)-^ *H", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
894 \"SAL UR(AEIOUY)-^ *R", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
895 \"SAL U(HR)^ *", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
896 \"SAL U^ *", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
897 \"SAL UH(AEIOUY)- H", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
898 \"SAL UR(AEIOUY)- R", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
899 \"SAL U(HR) _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
900 \"SAL V^ W", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
901 \"SAL V F", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
902 \"SAL WR^ R", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
903 \"SAL WH^ W", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
904 \"SAL W(AEIOU)- W", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
905 \"SAL X^ S", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
906 \"SAL X KS", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
907 \"SAL Y(AEIOU)- Y", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
908 \"SAL ZZ- _", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
909 \"SAL Z S", |
7798e9bcdb13
patch 8.0.0658: spell test is old style
Christian Brabandt <cb@256bit.org>
parents:
11434
diff
changeset
|
910 \ ] |