Mercurial > vim
annotate src/spell.c @ 28728:497e59c0bc45
Added tag v8.2.4888 for changeset 30862b2f74311077a42ffe41620f5e3d8893f8ac
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 06 May 2022 17:00:03 +0200 |
parents | 4dcccb2673fe |
children | ba81f4ed59e2 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9953
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
223 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * spell.c: code for spell checking | |
226 | 12 * |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
13 * See spellfile.c for the Vim spell file format. |
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
14 * |
300 | 15 * The spell checking mechanism uses a tree (aka trie). Each node in the tree |
16 * has a list of bytes that can appear (siblings). For each byte there is a | |
17 * pointer to the node with the byte that follows in the word (child). | |
324 | 18 * |
19 * A NUL byte is used where the word may end. The bytes are sorted, so that | |
20 * binary searching can be used and the NUL bytes are at the start. The | |
21 * number of possible bytes is stored before the list of bytes. | |
22 * | |
23 * The tree uses two arrays: "byts" stores the characters, "idxs" stores | |
24 * either the next index or flags. The tree starts at index 0. For example, | |
25 * to lookup "vi" this sequence is followed: | |
26 * i = 0 | |
27 * len = byts[i] | |
28 * n = where "v" appears in byts[i + 1] to byts[i + len] | |
29 * i = idxs[n] | |
30 * len = byts[i] | |
31 * n = where "i" appears in byts[i + 1] to byts[i + len] | |
32 * i = idxs[n] | |
33 * len = byts[i] | |
34 * find that byts[i + 1] is 0, idxs[i + 1] has flags for "vi". | |
300 | 35 * |
339 | 36 * There are two word trees: one with case-folded words and one with words in |
300 | 37 * original case. The second one is only used for keep-case words and is |
38 * usually small. | |
39 * | |
481 | 40 * There is one additional tree for when not all prefixes are applied when |
339 | 41 * generating the .spl file. This tree stores all the possible prefixes, as |
42 * if they were words. At each word (prefix) end the prefix nr is stored, the | |
43 * following word must support this prefix nr. And the condition nr is | |
44 * stored, used to lookup the condition that the word must match with. | |
45 * | |
300 | 46 * Thanks to Olaf Seibert for providing an example implementation of this tree |
47 * and the compression mechanism. | |
625 | 48 * LZ trie ideas: |
49 * http://www.irb.hr/hr/home/ristov/papers/RistovLZtrieRevision1.pdf | |
50 * More papers: http://www-igm.univ-mlv.fr/~laporte/publi_en.html | |
243 | 51 * |
52 * Matching involves checking the caps type: Onecap ALLCAP KeepCap. | |
53 * | |
236 | 54 * Why doesn't Vim use aspell/ispell/myspell/etc.? |
55 * See ":help develop-spell". | |
56 */ | |
57 | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
58 #define IN_SPELL_C |
223 | 59 #include "vim.h" |
60 | |
737 | 61 #if defined(FEAT_SPELL) || defined(PROTO) |
223 | 62 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
63 #ifndef UNIX // it's in os_unix.h for Unix |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
64 # include <time.h> // for time_t |
625 | 65 #endif |
66 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
67 #define REGION_ALL 0xff // word valid in all regions |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
68 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
69 // Result values. Lower number is accepted over higher one. |
27752
c1d1639b52dd
patch 8.2.4402: missing parenthesis may cause unexpected problems
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
70 #define SP_BANNED (-1) |
236 | 71 #define SP_OK 0 |
307 | 72 #define SP_RARE 1 |
73 #define SP_LOCAL 2 | |
74 #define SP_BAD 3 | |
236 | 75 |
323 | 76 /* |
236 | 77 * Structure to store info for word matching. |
78 */ | |
79 typedef struct matchinf_S | |
80 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
81 langp_T *mi_lp; // info for language and region |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
82 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
83 // pointers to original text to be checked |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
84 char_u *mi_word; // start of word being checked |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
85 char_u *mi_end; // end of matching word so far |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
86 char_u *mi_fend; // next char to be added to mi_fword |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
87 char_u *mi_cend; // char after what was used for |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
88 // mi_capflags |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
89 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
90 // case-folded text |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
91 char_u mi_fword[MAXWLEN + 1]; // mi_word case-folded |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
92 int mi_fwordlen; // nr of valid bytes in mi_fword |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
93 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
94 // for when checking word after a prefix |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
95 int mi_prefarridx; // index in sl_pidxs with list of |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
96 // affixID/condition |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
97 int mi_prefcnt; // number of entries at mi_prefarridx |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
98 int mi_prefixlen; // byte length of prefix |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
99 int mi_cprefixlen; // byte length of prefix in original |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
100 // case |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
101 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
102 // for when checking a compound word |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
103 int mi_compoff; // start of following word offset |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
104 char_u mi_compflags[MAXWLEN]; // flags for compound words used |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
105 int mi_complen; // nr of compound words used |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
106 int mi_compextra; // nr of COMPOUNDROOT words |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
107 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
108 // others |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
109 int mi_result; // result so far: SP_BAD, SP_OK, etc. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
110 int mi_capflags; // WF_ONECAP WF_ALLCAP WF_KEEPCAP |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
111 win_T *mi_win; // buffer being checked |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
112 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
113 // for NOBREAK |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
114 int mi_result2; // "mi_resul" without following word |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
115 char_u *mi_end2; // "mi_end" without following word |
236 | 116 } matchinf_T; |
117 | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
118 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
119 static int spell_mb_isword_class(int cl, win_T *wp); |
307 | 120 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
121 // mode values for find_word |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
122 #define FIND_FOLDWORD 0 // find word case-folded |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
123 #define FIND_KEEPWORD 1 // find keep-case word |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
124 #define FIND_PREFIX 2 // find word after prefix |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
125 #define FIND_COMPOUND 3 // find case-folded compound word |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
126 #define FIND_KEEPCOMPOUND 4 // find keep-case compound word |
339 | 127 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
128 static void find_word(matchinf_T *mip, int mode); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
129 static void find_prefix(matchinf_T *mip, int mode); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
130 static int fold_more(matchinf_T *mip); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
131 static void spell_load_cb(char_u *fname, void *cookie); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
132 static int count_syllables(slang_T *slang, char_u *word); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
133 static void clear_midword(win_T *buf); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
134 static void use_midword(slang_T *lp, win_T *buf); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
135 static int find_region(char_u *rp, char_u *region); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
136 static void spell_soundfold_sofo(slang_T *slang, char_u *inword, char_u *res); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
137 static void spell_soundfold_sal(slang_T *slang, char_u *inword, char_u *res); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
138 static void spell_soundfold_wsal(slang_T *slang, char_u *inword, char_u *res); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
139 static void dump_word(slang_T *slang, char_u *word, char_u *pat, int *dir, int round, int flags, linenr_T lnum); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
140 static linenr_T dump_prefixes(slang_T *slang, char_u *word, char_u *pat, int *dir, int round, int flags, linenr_T startlnum); |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
141 |
236 | 142 /* |
143 * Main spell-checking function. | |
300 | 144 * "ptr" points to a character that could be the start of a word. |
534 | 145 * "*attrp" is set to the highlight index for a badly spelled word. For a |
146 * non-word or when it's OK it remains unchanged. | |
236 | 147 * This must only be called when 'spelllang' is not empty. |
323 | 148 * |
385 | 149 * "capcol" is used to check for a Capitalised word after the end of a |
150 * sentence. If it's zero then perform the check. Return the column where to | |
151 * check next, or -1 when no sentence end was found. If it's NULL then don't | |
152 * worry. | |
323 | 153 * |
236 | 154 * Returns the length of the word in bytes, also when it's OK, so that the |
155 * caller can skip over the word. | |
156 */ | |
157 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
158 spell_check( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
159 win_T *wp, // current window |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
160 char_u *ptr, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
161 hlf_T *attrp, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
162 int *capcol, // column to check for Capital |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
163 int docount) // count good words |
236 | 164 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
165 matchinf_T mi; // Most things are put in "mi" so that it can |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
166 // be passed to functions quickly. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
167 int nrlen = 0; // found a number first |
385 | 168 int c; |
483 | 169 int wrongcaplen = 0; |
500 | 170 int lpi; |
625 | 171 int count_word = docount; |
20808
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
172 int use_camel_case = *wp->w_s->b_p_spo != NUL; |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
173 int camel_case = 0; |
236 | 174 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
175 // A word never starts at a space or a control character. Return quickly |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
176 // then, skipping over the character. |
307 | 177 if (*ptr <= ' ') |
178 return 1; | |
690 | 179 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
180 // Return here when loading language files failed. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
181 if (wp->w_s->b_langp.ga_len == 0) |
690 | 182 return 1; |
183 | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
184 CLEAR_FIELD(mi); |
236 | 185 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
186 // A number is always OK. Also skip hexadecimal numbers 0xFF99 and |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
187 // 0X99FF. But always do check spelling to find "3GPP" and "11 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
188 // julifeest". |
300 | 189 if (*ptr >= '0' && *ptr <= '9') |
190 { | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
191 if (*ptr == '0' && (ptr[1] == 'b' || ptr[1] == 'B')) |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
192 mi.mi_end = skipbin(ptr + 2); |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
193 else if (*ptr == '0' && (ptr[1] == 'x' || ptr[1] == 'X')) |
316 | 194 mi.mi_end = skiphex(ptr + 2); |
300 | 195 else |
344 | 196 mi.mi_end = skipdigits(ptr); |
835 | 197 nrlen = (int)(mi.mi_end - ptr); |
584 | 198 } |
346 | 199 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
200 // Find the normal end of the word (until the next non-word character). |
344 | 201 mi.mi_word = ptr; |
584 | 202 mi.mi_fend = ptr; |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
203 if (spell_iswordp(mi.mi_fend, wp)) |
344 | 204 { |
20808
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
205 int prev_upper; |
20810
f9245f58c134
patch 8.2.0957: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
20808
diff
changeset
|
206 int this_upper = FALSE; // init for gcc |
20808
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
207 |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
208 if (use_camel_case) |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
209 { |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
210 c = PTR2CHAR(mi.mi_fend); |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
211 this_upper = SPELL_ISUPPER(c); |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
212 } |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
213 |
344 | 214 do |
20808
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
215 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
216 MB_PTR_ADV(mi.mi_fend); |
20808
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
217 if (use_camel_case) |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
218 { |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
219 prev_upper = this_upper; |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
220 c = PTR2CHAR(mi.mi_fend); |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
221 this_upper = SPELL_ISUPPER(c); |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
222 camel_case = !prev_upper && this_upper; |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
223 } |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
224 } while (*mi.mi_fend != NUL && spell_iswordp(mi.mi_fend, wp) |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
225 && !camel_case); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
226 |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
227 if (capcol != NULL && *capcol == 0 && wp->w_s->b_cap_prog != NULL) |
385 | 228 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
229 // Check word starting with capital letter. |
455 | 230 c = PTR2CHAR(ptr); |
385 | 231 if (!SPELL_ISUPPER(c)) |
483 | 232 wrongcaplen = (int)(mi.mi_fend - ptr); |
385 | 233 } |
234 } | |
235 if (capcol != NULL) | |
236 *capcol = -1; | |
344 | 237 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
238 // We always use the characters up to the next non-word character, |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
239 // also for bad words. |
344 | 240 mi.mi_end = mi.mi_fend; |
241 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
242 // Check caps type later. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
243 mi.mi_capflags = 0; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
244 mi.mi_cend = NULL; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
245 mi.mi_win = wp; |
344 | 246 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
247 // case-fold the word with one non-word character, so that we can check |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
248 // for the word end. |
344 | 249 if (*mi.mi_fend != NUL) |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
250 MB_PTR_ADV(mi.mi_fend); |
344 | 251 |
24872
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
252 (void)spell_casefold(wp, ptr, (int)(mi.mi_fend - ptr), mi.mi_fword, |
344 | 253 MAXWLEN + 1); |
835 | 254 mi.mi_fwordlen = (int)STRLEN(mi.mi_fword); |
344 | 255 |
20808
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
256 if (camel_case) |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
257 // Introduce a fake word end space into the folded word. |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
258 mi.mi_fword[mi.mi_fwordlen - 1] = ' '; |
411348fb49ba
patch 8.2.0956: spell test fails
Bram Moolenaar <Bram@vim.org>
parents:
20786
diff
changeset
|
259 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
260 // The word is bad unless we recognize it. |
344 | 261 mi.mi_result = SP_BAD; |
492 | 262 mi.mi_result2 = SP_BAD; |
344 | 263 |
264 /* | |
265 * Loop over the languages specified in 'spelllang'. | |
625 | 266 * We check them all, because a word may be matched longer in another |
267 * language. | |
344 | 268 */ |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
269 for (lpi = 0; lpi < wp->w_s->b_langp.ga_len; ++lpi) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
270 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
271 mi.mi_lp = LANGP_ENTRY(wp->w_s->b_langp, lpi); |
500 | 272 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
273 // If reloading fails the language is still in the list but everything |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
274 // has been cleared. |
500 | 275 if (mi.mi_lp->lp_slang->sl_fidxs == NULL) |
276 continue; | |
277 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
278 // Check for a matching word in case-folded words. |
344 | 279 find_word(&mi, FIND_FOLDWORD); |
280 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
281 // Check for a matching word in keep-case words. |
344 | 282 find_word(&mi, FIND_KEEPWORD); |
283 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
284 // Check for matching prefixes. |
485 | 285 find_prefix(&mi, FIND_FOLDWORD); |
492 | 286 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
287 // For a NOBREAK language, may want to use a word without a following |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
288 // word as a backup. |
492 | 289 if (mi.mi_lp->lp_slang->sl_nobreak && mi.mi_result == SP_BAD |
290 && mi.mi_result2 != SP_BAD) | |
291 { | |
292 mi.mi_result = mi.mi_result2; | |
293 mi.mi_end = mi.mi_end2; | |
294 } | |
625 | 295 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
296 // Count the word in the first language where it's found to be OK. |
625 | 297 if (count_word && mi.mi_result == SP_OK) |
298 { | |
299 count_common_word(mi.mi_lp->lp_slang, ptr, | |
300 (int)(mi.mi_end - ptr), 1); | |
301 count_word = FALSE; | |
302 } | |
344 | 303 } |
304 | |
305 if (mi.mi_result != SP_OK) | |
306 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
307 // If we found a number skip over it. Allows for "42nd". Do flag |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
308 // rare and local words, e.g., "3GPP". |
344 | 309 if (nrlen > 0) |
346 | 310 { |
311 if (mi.mi_result == SP_BAD || mi.mi_result == SP_BANNED) | |
312 return nrlen; | |
313 } | |
344 | 314 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
315 // When we are at a non-word character there is no error, just |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
316 // skip over the character (try looking for a word after it). |
5477 | 317 else if (!spell_iswordp_nmw(ptr, wp)) |
243 | 318 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
319 if (capcol != NULL && wp->w_s->b_cap_prog != NULL) |
385 | 320 { |
321 regmatch_T regmatch; | |
6375 | 322 int r; |
385 | 323 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
324 // Check for end of sentence. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
325 regmatch.regprog = wp->w_s->b_cap_prog; |
385 | 326 regmatch.rm_ic = FALSE; |
6375 | 327 r = vim_regexec(®match, ptr, 0); |
328 wp->w_s->b_cap_prog = regmatch.regprog; | |
329 if (r) | |
385 | 330 *capcol = (int)(regmatch.endp[0] - ptr); |
331 } | |
332 | |
344 | 333 if (has_mbyte) |
474 | 334 return (*mb_ptr2len)(ptr); |
344 | 335 return 1; |
300 | 336 } |
483 | 337 else if (mi.mi_end == ptr) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
338 // Always include at least one character. Required for when there |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
339 // is a mixup in "midword". |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
340 MB_PTR_ADV(mi.mi_end); |
492 | 341 else if (mi.mi_result == SP_BAD |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
342 && LANGP_ENTRY(wp->w_s->b_langp, 0)->lp_slang->sl_nobreak) |
492 | 343 { |
344 char_u *p, *fp; | |
345 int save_result = mi.mi_result; | |
346 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
347 // First language in 'spelllang' is NOBREAK. Find first position |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
348 // at which any word would be valid. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
349 mi.mi_lp = LANGP_ENTRY(wp->w_s->b_langp, 0); |
500 | 350 if (mi.mi_lp->lp_slang->sl_fidxs != NULL) |
351 { | |
352 p = mi.mi_word; | |
353 fp = mi.mi_fword; | |
354 for (;;) | |
355 { | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
356 MB_PTR_ADV(p); |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
357 MB_PTR_ADV(fp); |
500 | 358 if (p >= mi.mi_end) |
359 break; | |
835 | 360 mi.mi_compoff = (int)(fp - mi.mi_fword); |
500 | 361 find_word(&mi, FIND_COMPOUND); |
362 if (mi.mi_result != SP_BAD) | |
363 { | |
364 mi.mi_end = p; | |
365 break; | |
366 } | |
367 } | |
368 mi.mi_result = save_result; | |
369 } | |
492 | 370 } |
243 | 371 |
344 | 372 if (mi.mi_result == SP_BAD || mi.mi_result == SP_BANNED) |
534 | 373 *attrp = HLF_SPB; |
344 | 374 else if (mi.mi_result == SP_RARE) |
534 | 375 *attrp = HLF_SPR; |
344 | 376 else |
534 | 377 *attrp = HLF_SPL; |
243 | 378 } |
379 | |
483 | 380 if (wrongcaplen > 0 && (mi.mi_result == SP_OK || mi.mi_result == SP_RARE)) |
381 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
382 // Report SpellCap only when the word isn't badly spelled. |
534 | 383 *attrp = HLF_SPC; |
483 | 384 return wrongcaplen; |
385 } | |
386 | |
300 | 387 return (int)(mi.mi_end - ptr); |
236 | 388 } |
389 | |
390 /* | |
300 | 391 * Check if the word at "mip->mi_word" is in the tree. |
339 | 392 * When "mode" is FIND_FOLDWORD check in fold-case word tree. |
393 * When "mode" is FIND_KEEPWORD check in keep-case word tree. | |
394 * When "mode" is FIND_PREFIX check for word after prefix in fold-case word | |
395 * tree. | |
300 | 396 * |
397 * For a match mip->mi_result is updated. | |
243 | 398 */ |
399 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
400 find_word(matchinf_T *mip, int mode) |
243 | 401 { |
324 | 402 idx_T arridx = 0; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
403 int endlen[MAXWLEN]; // length at possible word endings |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
404 idx_T endidx[MAXWLEN]; // possible word endings |
300 | 405 int endidxcnt = 0; |
406 int len; | |
407 int wlen = 0; | |
408 int flen; | |
409 int c; | |
410 char_u *ptr; | |
324 | 411 idx_T lo, hi, m; |
300 | 412 char_u *s; |
339 | 413 char_u *p; |
307 | 414 int res = SP_BAD; |
300 | 415 slang_T *slang = mip->mi_lp->lp_slang; |
416 unsigned flags; | |
417 char_u *byts; | |
324 | 418 idx_T *idxs; |
481 | 419 int word_ends; |
485 | 420 int prefix_found; |
492 | 421 int nobreak_result; |
481 | 422 |
423 if (mode == FIND_KEEPWORD || mode == FIND_KEEPCOMPOUND) | |
236 | 424 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
425 // Check for word with matching case in keep-case tree. |
300 | 426 ptr = mip->mi_word; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
427 flen = 9999; // no case folding, always enough bytes |
300 | 428 byts = slang->sl_kbyts; |
429 idxs = slang->sl_kidxs; | |
481 | 430 |
431 if (mode == FIND_KEEPCOMPOUND) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
432 // Skip over the previously found word(s). |
481 | 433 wlen += mip->mi_compoff; |
236 | 434 } |
435 else | |
436 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
437 // Check for case-folded in case-folded tree. |
300 | 438 ptr = mip->mi_fword; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
439 flen = mip->mi_fwordlen; // available case-folded bytes |
300 | 440 byts = slang->sl_fbyts; |
441 idxs = slang->sl_fidxs; | |
339 | 442 |
443 if (mode == FIND_PREFIX) | |
444 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
445 // Skip over the prefix. |
339 | 446 wlen = mip->mi_prefixlen; |
447 flen -= mip->mi_prefixlen; | |
448 } | |
481 | 449 else if (mode == FIND_COMPOUND) |
450 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
451 // Skip over the previously found word(s). |
481 | 452 wlen = mip->mi_compoff; |
453 flen -= mip->mi_compoff; | |
454 } | |
455 | |
243 | 456 } |
457 | |
300 | 458 if (byts == NULL) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
459 return; // array is empty |
236 | 460 |
461 /* | |
307 | 462 * Repeat advancing in the tree until: |
463 * - there is a byte that doesn't match, | |
464 * - we reach the end of the tree, | |
465 * - or we reach the end of the line. | |
236 | 466 */ |
300 | 467 for (;;) |
236 | 468 { |
346 | 469 if (flen <= 0 && *mip->mi_fend != NUL) |
339 | 470 flen = fold_more(mip); |
300 | 471 |
472 len = byts[arridx++]; | |
473 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
474 // If the first possible byte is a zero the word could end here. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
475 // Remember this index, we first check for the longest word. |
300 | 476 if (byts[arridx] == 0) |
477 { | |
307 | 478 if (endidxcnt == MAXWLEN) |
479 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
480 // Must be a corrupted spell file. |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
481 emsg(_(e_format_error_in_spell_file)); |
307 | 482 return; |
483 } | |
300 | 484 endlen[endidxcnt] = wlen; |
485 endidx[endidxcnt++] = arridx++; | |
486 --len; | |
487 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
488 // Skip over the zeros, there can be several flag/region |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
489 // combinations. |
300 | 490 while (len > 0 && byts[arridx] == 0) |
491 { | |
492 ++arridx; | |
493 --len; | |
494 } | |
495 if (len == 0) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
496 break; // no children, word must end here |
300 | 497 } |
498 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
499 // Stop looking at end of the line. |
300 | 500 if (ptr[wlen] == NUL) |
501 break; | |
502 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
503 // Perform a binary search in the list of accepted bytes. |
300 | 504 c = ptr[wlen]; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
505 if (c == TAB) // <Tab> is handled like <Space> |
346 | 506 c = ' '; |
300 | 507 lo = arridx; |
508 hi = arridx + len - 1; | |
509 while (lo < hi) | |
510 { | |
511 m = (lo + hi) / 2; | |
512 if (byts[m] > c) | |
513 hi = m - 1; | |
514 else if (byts[m] < c) | |
515 lo = m + 1; | |
516 else | |
517 { | |
518 lo = hi = m; | |
519 break; | |
236 | 520 } |
521 } | |
300 | 522 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
523 // Stop if there is no matching byte. |
300 | 524 if (hi < lo || byts[lo] != c) |
525 break; | |
526 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
527 // Continue at the child (if there is one). |
300 | 528 arridx = idxs[lo]; |
529 ++wlen; | |
530 --flen; | |
346 | 531 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
532 // One space in the good word may stand for several spaces in the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
533 // checked word. |
346 | 534 if (c == ' ') |
535 { | |
536 for (;;) | |
537 { | |
538 if (flen <= 0 && *mip->mi_fend != NUL) | |
539 flen = fold_more(mip); | |
540 if (ptr[wlen] != ' ' && ptr[wlen] != TAB) | |
541 break; | |
542 ++wlen; | |
543 --flen; | |
544 } | |
545 } | |
236 | 546 } |
547 | |
300 | 548 /* |
549 * Verify that one of the possible endings is valid. Try the longest | |
550 * first. | |
551 */ | |
552 while (endidxcnt > 0) | |
553 { | |
554 --endidxcnt; | |
555 arridx = endidx[endidxcnt]; | |
556 wlen = endlen[endidxcnt]; | |
236 | 557 |
300 | 558 if ((*mb_head_off)(ptr, ptr + wlen) > 0) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
559 continue; // not at first byte of character |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
560 if (spell_iswordp(ptr + wlen, mip->mi_win)) |
481 | 561 { |
492 | 562 if (slang->sl_compprog == NULL && !slang->sl_nobreak) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
563 continue; // next char is a word character |
481 | 564 word_ends = FALSE; |
565 } | |
566 else | |
567 word_ends = TRUE; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
568 // The prefix flag is before compound flags. Once a valid prefix flag |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
569 // has been found we try compound flags. |
485 | 570 prefix_found = FALSE; |
300 | 571 |
339 | 572 if (mode != FIND_KEEPWORD && has_mbyte) |
300 | 573 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
574 // Compute byte length in original word, length may change |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
575 // when folding case. This can be slow, take a shortcut when the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
576 // case-folded word is equal to the keep-case word. |
300 | 577 p = mip->mi_word; |
339 | 578 if (STRNCMP(ptr, p, wlen) != 0) |
579 { | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
580 for (s = ptr; s < ptr + wlen; MB_PTR_ADV(s)) |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
581 MB_PTR_ADV(p); |
835 | 582 wlen = (int)(p - mip->mi_word); |
339 | 583 } |
300 | 584 } |
236 | 585 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
586 // Check flags and region. For FIND_PREFIX check the condition and |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
587 // prefix ID. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
588 // Repeat this if there are more flags/region alternatives until there |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
589 // is a match. |
339 | 590 res = SP_BAD; |
591 for (len = byts[arridx - 1]; len > 0 && byts[arridx] == 0; | |
592 --len, ++arridx) | |
300 | 593 { |
594 flags = idxs[arridx]; | |
324 | 595 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
596 // For the fold-case tree check that the case of the checked word |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
597 // matches with what the word in the tree requires. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
598 // For keep-case tree the case is always right. For prefixes we |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
599 // don't bother to check. |
339 | 600 if (mode == FIND_FOLDWORD) |
300 | 601 { |
602 if (mip->mi_cend != mip->mi_word + wlen) | |
603 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
604 // mi_capflags was set for a different word length, need |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
605 // to do it again. |
300 | 606 mip->mi_cend = mip->mi_word + wlen; |
323 | 607 mip->mi_capflags = captype(mip->mi_word, mip->mi_cend); |
300 | 608 } |
609 | |
346 | 610 if (mip->mi_capflags == WF_KEEPCAP |
611 || !spell_valid_case(mip->mi_capflags, flags)) | |
339 | 612 continue; |
300 | 613 } |
236 | 614 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
615 // When mode is FIND_PREFIX the word must support the prefix: |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
616 // check the prefix ID and the condition. Do that for the list at |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
617 // mip->mi_prefarridx that find_prefix() filled. |
485 | 618 else if (mode == FIND_PREFIX && !prefix_found) |
481 | 619 { |
366 | 620 c = valid_word_prefix(mip->mi_prefcnt, mip->mi_prefarridx, |
390 | 621 flags, |
455 | 622 mip->mi_word + mip->mi_cprefixlen, slang, |
623 FALSE); | |
366 | 624 if (c == 0) |
339 | 625 continue; |
366 | 626 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
627 // Use the WF_RARE flag for a rare prefix. |
366 | 628 if (c & WF_RAREPFX) |
629 flags |= WF_RARE; | |
485 | 630 prefix_found = TRUE; |
339 | 631 } |
632 | |
492 | 633 if (slang->sl_nobreak) |
634 { | |
635 if ((mode == FIND_COMPOUND || mode == FIND_KEEPCOMPOUND) | |
636 && (flags & WF_BANNED) == 0) | |
637 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
638 // NOBREAK: found a valid following word. That's all we |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
639 // need to know, so return. |
492 | 640 mip->mi_result = SP_OK; |
641 break; | |
642 } | |
643 } | |
644 | |
645 else if ((mode == FIND_COMPOUND || mode == FIND_KEEPCOMPOUND | |
646 || !word_ends)) | |
481 | 647 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
648 // If there is no compound flag or the word is shorter than |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
649 // COMPOUNDMIN reject it quickly. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
650 // Makes you wonder why someone puts a compound flag on a word |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
651 // that's too short... Myspell compatibility requires this |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
652 // anyway. |
490 | 653 if (((unsigned)flags >> 24) == 0 |
654 || wlen - mip->mi_compoff < slang->sl_compminlen) | |
483 | 655 continue; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
656 // For multi-byte chars check character length against |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
657 // COMPOUNDMIN. |
500 | 658 if (has_mbyte |
501 | 659 && slang->sl_compminlen > 0 |
500 | 660 && mb_charlen_len(mip->mi_word + mip->mi_compoff, |
661 wlen - mip->mi_compoff) < slang->sl_compminlen) | |
662 continue; | |
483 | 663 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
664 // Limit the number of compound words to COMPOUNDWORDMAX if no |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
665 // maximum for syllables is specified. |
809 | 666 if (!word_ends && mip->mi_complen + mip->mi_compextra + 2 |
667 > slang->sl_compmax | |
490 | 668 && slang->sl_compsylmax == MAXWLEN) |
483 | 669 continue; |
670 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
671 // Don't allow compounding on a side where an affix was added, |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
672 // unless COMPOUNDPERMITFLAG was used. |
819 | 673 if (mip->mi_complen > 0 && (flags & WF_NOCOMPBEF)) |
674 continue; | |
675 if (!word_ends && (flags & WF_NOCOMPAFT)) | |
676 continue; | |
677 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
678 // Quickly check if compounding is possible with this flag. |
495 | 679 if (!byte_in_str(mip->mi_complen == 0 |
485 | 680 ? slang->sl_compstartflags |
681 : slang->sl_compallflags, | |
495 | 682 ((unsigned)flags >> 24))) |
481 | 683 continue; |
684 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
685 // If there is a match with a CHECKCOMPOUNDPATTERN rule |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
686 // discard the compound word. |
1762 | 687 if (match_checkcompoundpattern(ptr, wlen, &slang->sl_comppat)) |
688 continue; | |
689 | |
490 | 690 if (mode == FIND_COMPOUND) |
691 { | |
692 int capflags; | |
693 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
694 // Need to check the caps type of the appended compound |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
695 // word. |
490 | 696 if (has_mbyte && STRNCMP(ptr, mip->mi_word, |
697 mip->mi_compoff) != 0) | |
698 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
699 // case folding may have changed the length |
490 | 700 p = mip->mi_word; |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
701 for (s = ptr; s < ptr + mip->mi_compoff; MB_PTR_ADV(s)) |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
702 MB_PTR_ADV(p); |
490 | 703 } |
704 else | |
705 p = mip->mi_word + mip->mi_compoff; | |
706 capflags = captype(p, mip->mi_word + wlen); | |
707 if (capflags == WF_KEEPCAP || (capflags == WF_ALLCAP | |
708 && (flags & WF_FIXCAP) != 0)) | |
709 continue; | |
710 | |
711 if (capflags != WF_ALLCAP) | |
712 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
713 // When the character before the word is a word |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
714 // character we do not accept a Onecap word. We do |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
715 // accept a no-caps word, even when the dictionary |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
716 // word specifies ONECAP. |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
717 MB_PTR_BACK(mip->mi_word, p); |
5477 | 718 if (spell_iswordp_nmw(p, mip->mi_win) |
490 | 719 ? capflags == WF_ONECAP |
720 : (flags & WF_ONECAP) != 0 | |
721 && capflags != WF_ONECAP) | |
722 continue; | |
723 } | |
724 } | |
725 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
726 // If the word ends the sequence of compound flags of the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
727 // words must match with one of the COMPOUNDRULE items and |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
728 // the number of syllables must not be too large. |
483 | 729 mip->mi_compflags[mip->mi_complen] = ((unsigned)flags >> 24); |
730 mip->mi_compflags[mip->mi_complen + 1] = NUL; | |
731 if (word_ends) | |
732 { | |
733 char_u fword[MAXWLEN]; | |
734 | |
735 if (slang->sl_compsylmax < MAXWLEN) | |
736 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
737 // "fword" is only needed for checking syllables. |
483 | 738 if (ptr == mip->mi_word) |
24872
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
739 (void)spell_casefold(mip->mi_win, |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
740 ptr, wlen, fword, MAXWLEN); |
483 | 741 else |
742 vim_strncpy(fword, ptr, endlen[endidxcnt]); | |
743 } | |
744 if (!can_compound(slang, fword, mip->mi_compflags)) | |
745 continue; | |
746 } | |
1762 | 747 else if (slang->sl_comprules != NULL |
748 && !match_compoundrule(slang, mip->mi_compflags)) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
749 // The compound flags collected so far do not match any |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
750 // COMPOUNDRULE, discard the compounded word. |
1762 | 751 continue; |
481 | 752 } |
753 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
754 // Check NEEDCOMPOUND: can't use word without compounding. |
500 | 755 else if (flags & WF_NEEDCOMP) |
756 continue; | |
757 | |
492 | 758 nobreak_result = SP_OK; |
759 | |
481 | 760 if (!word_ends) |
761 { | |
492 | 762 int save_result = mip->mi_result; |
763 char_u *save_end = mip->mi_end; | |
501 | 764 langp_T *save_lp = mip->mi_lp; |
765 int lpi; | |
492 | 766 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
767 // Check that a valid word follows. If there is one and we |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
768 // are compounding, it will set "mi_result", thus we are |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
769 // always finished here. For NOBREAK we only check that a |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
770 // valid word follows. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
771 // Recursive! |
492 | 772 if (slang->sl_nobreak) |
773 mip->mi_result = SP_BAD; | |
481 | 774 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
775 // Find following word in case-folded tree. |
481 | 776 mip->mi_compoff = endlen[endidxcnt]; |
777 if (has_mbyte && mode == FIND_KEEPWORD) | |
778 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
779 // Compute byte length in case-folded word from "wlen": |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
780 // byte length in keep-case word. Length may change when |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
781 // folding case. This can be slow, take a shortcut when |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
782 // the case-folded word is equal to the keep-case word. |
481 | 783 p = mip->mi_fword; |
784 if (STRNCMP(ptr, p, wlen) != 0) | |
785 { | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
786 for (s = ptr; s < ptr + wlen; MB_PTR_ADV(s)) |
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
787 MB_PTR_ADV(p); |
835 | 788 mip->mi_compoff = (int)(p - mip->mi_fword); |
481 | 789 } |
790 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
791 #if 0 // Disabled, see below |
485 | 792 c = mip->mi_compoff; |
8956
d9e671c5afe6
commit https://github.com/vim/vim/commit/ba53435144f46eaaa53c63a62e748b3feee9742c
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
793 #endif |
483 | 794 ++mip->mi_complen; |
809 | 795 if (flags & WF_COMPROOT) |
796 ++mip->mi_compextra; | |
501 | 797 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
798 // For NOBREAK we need to try all NOBREAK languages, at least |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
799 // to find the ".add" file(s). |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
800 for (lpi = 0; lpi < mip->mi_win->w_s->b_langp.ga_len; ++lpi) |
501 | 801 { |
802 if (slang->sl_nobreak) | |
803 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
804 mip->mi_lp = LANGP_ENTRY(mip->mi_win->w_s->b_langp, lpi); |
501 | 805 if (mip->mi_lp->lp_slang->sl_fidxs == NULL |
806 || !mip->mi_lp->lp_slang->sl_nobreak) | |
807 continue; | |
808 } | |
809 | |
810 find_word(mip, FIND_COMPOUND); | |
811 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
812 // When NOBREAK any word that matches is OK. Otherwise we |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
813 // need to find the longest match, thus try with keep-case |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
814 // and prefix too. |
492 | 815 if (!slang->sl_nobreak || mip->mi_result == SP_BAD) |
816 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
817 // Find following word in keep-case tree. |
501 | 818 mip->mi_compoff = wlen; |
819 find_word(mip, FIND_KEEPCOMPOUND); | |
820 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
821 #if 0 // Disabled, a prefix must not appear halfway a compound word, |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
822 // unless the COMPOUNDPERMITFLAG is used and then it can't be a |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
823 // postponed prefix. |
501 | 824 if (!slang->sl_nobreak || mip->mi_result == SP_BAD) |
825 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
826 // Check for following word with prefix. |
501 | 827 mip->mi_compoff = c; |
828 find_prefix(mip, FIND_COMPOUND); | |
829 } | |
819 | 830 #endif |
492 | 831 } |
501 | 832 |
833 if (!slang->sl_nobreak) | |
834 break; | |
492 | 835 } |
483 | 836 --mip->mi_complen; |
809 | 837 if (flags & WF_COMPROOT) |
838 --mip->mi_compextra; | |
501 | 839 mip->mi_lp = save_lp; |
485 | 840 |
492 | 841 if (slang->sl_nobreak) |
842 { | |
843 nobreak_result = mip->mi_result; | |
844 mip->mi_result = save_result; | |
845 mip->mi_end = save_end; | |
846 } | |
847 else | |
848 { | |
849 if (mip->mi_result == SP_OK) | |
850 break; | |
851 continue; | |
852 } | |
481 | 853 } |
854 | |
339 | 855 if (flags & WF_BANNED) |
856 res = SP_BANNED; | |
857 else if (flags & WF_REGION) | |
858 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
859 // Check region. |
390 | 860 if ((mip->mi_lp->lp_region & (flags >> 16)) != 0) |
300 | 861 res = SP_OK; |
339 | 862 else |
863 res = SP_LOCAL; | |
300 | 864 } |
339 | 865 else if (flags & WF_RARE) |
866 res = SP_RARE; | |
307 | 867 else |
339 | 868 res = SP_OK; |
869 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
870 // Always use the longest match and the best result. For NOBREAK |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
871 // we separately keep the longest match without a following good |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
872 // word as a fall-back. |
492 | 873 if (nobreak_result == SP_BAD) |
874 { | |
875 if (mip->mi_result2 > res) | |
876 { | |
877 mip->mi_result2 = res; | |
878 mip->mi_end2 = mip->mi_word + wlen; | |
879 } | |
880 else if (mip->mi_result2 == res | |
881 && mip->mi_end2 < mip->mi_word + wlen) | |
882 mip->mi_end2 = mip->mi_word + wlen; | |
883 } | |
884 else if (mip->mi_result > res) | |
339 | 885 { |
886 mip->mi_result = res; | |
887 mip->mi_end = mip->mi_word + wlen; | |
888 } | |
351 | 889 else if (mip->mi_result == res && mip->mi_end < mip->mi_word + wlen) |
339 | 890 mip->mi_end = mip->mi_word + wlen; |
891 | |
492 | 892 if (mip->mi_result == SP_OK) |
339 | 893 break; |
300 | 894 } |
895 | |
492 | 896 if (mip->mi_result == SP_OK) |
300 | 897 break; |
898 } | |
236 | 899 } |
900 | |
323 | 901 /* |
1762 | 902 * Return TRUE if there is a match between the word ptr[wlen] and |
903 * CHECKCOMPOUNDPATTERN rules, assuming that we will concatenate with another | |
904 * word. | |
905 * A match means that the first part of CHECKCOMPOUNDPATTERN matches at the | |
906 * end of ptr[wlen] and the second part matches after it. | |
907 */ | |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17940
diff
changeset
|
908 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
909 match_checkcompoundpattern( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
910 char_u *ptr, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
911 int wlen, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
912 garray_T *gap) // &sl_comppat |
1762 | 913 { |
914 int i; | |
915 char_u *p; | |
916 int len; | |
917 | |
918 for (i = 0; i + 1 < gap->ga_len; i += 2) | |
919 { | |
920 p = ((char_u **)gap->ga_data)[i + 1]; | |
921 if (STRNCMP(ptr + wlen, p, STRLEN(p)) == 0) | |
922 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
923 // Second part matches at start of following compound word, now |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
924 // check if first part matches at end of previous word. |
1762 | 925 p = ((char_u **)gap->ga_data)[i]; |
1771 | 926 len = (int)STRLEN(p); |
1762 | 927 if (len <= wlen && STRNCMP(ptr + wlen - len, p, len) == 0) |
928 return TRUE; | |
929 } | |
930 } | |
931 return FALSE; | |
932 } | |
933 | |
934 /* | |
626 | 935 * Return TRUE if "flags" is a valid sequence of compound flags and "word" |
936 * does not have too many syllables. | |
482 | 937 */ |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17940
diff
changeset
|
938 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
939 can_compound(slang_T *slang, char_u *word, char_u *flags) |
483 | 940 { |
495 | 941 char_u uflags[MAXWLEN * 2]; |
942 int i; | |
943 char_u *p; | |
483 | 944 |
945 if (slang->sl_compprog == NULL) | |
946 return FALSE; | |
495 | 947 if (enc_utf8) |
948 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
949 // Need to convert the single byte flags to utf8 characters. |
495 | 950 p = uflags; |
951 for (i = 0; flags[i] != NUL; ++i) | |
11269
121d29004998
patch 8.0.0520: using a function pointer while the function is known
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
952 p += utf_char2bytes(flags[i], p); |
495 | 953 *p = NUL; |
954 p = uflags; | |
955 } | |
956 else | |
957 p = flags; | |
6375 | 958 if (!vim_regexec_prog(&slang->sl_compprog, FALSE, p, 0)) |
483 | 959 return FALSE; |
960 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
961 // Count the number of syllables. This may be slow, do it last. If there |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
962 // are too many syllables AND the number of compound words is above |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
963 // COMPOUNDWORDMAX then compounding is not allowed. |
483 | 964 if (slang->sl_compsylmax < MAXWLEN |
965 && count_syllables(slang, word) > slang->sl_compsylmax) | |
495 | 966 return (int)STRLEN(flags) < slang->sl_compmax; |
483 | 967 return TRUE; |
482 | 968 } |
969 | |
970 /* | |
1762 | 971 * Return TRUE if the compound flags in compflags[] match the start of any |
972 * compound rule. This is used to stop trying a compound if the flags | |
973 * collected so far can't possibly match any compound rule. | |
974 * Caller must check that slang->sl_comprules is not NULL. | |
975 */ | |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17940
diff
changeset
|
976 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
977 match_compoundrule(slang_T *slang, char_u *compflags) |
1762 | 978 { |
979 char_u *p; | |
980 int i; | |
981 int c; | |
982 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
983 // loop over all the COMPOUNDRULE entries |
1762 | 984 for (p = slang->sl_comprules; *p != NUL; ++p) |
985 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
986 // loop over the flags in the compound word we have made, match |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
987 // them against the current rule entry |
1762 | 988 for (i = 0; ; ++i) |
989 { | |
990 c = compflags[i]; | |
991 if (c == NUL) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
992 // found a rule that matches for the flags we have so far |
1762 | 993 return TRUE; |
994 if (*p == '/' || *p == NUL) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
995 break; // end of rule, it's too short |
1762 | 996 if (*p == '[') |
997 { | |
998 int match = FALSE; | |
999 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1000 // compare against all the flags in [] |
1762 | 1001 ++p; |
1002 while (*p != ']' && *p != NUL) | |
1003 if (*p++ == c) | |
1004 match = TRUE; | |
1005 if (!match) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1006 break; // none matches |
1762 | 1007 } |
1008 else if (*p != c) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1009 break; // flag of word doesn't match flag in pattern |
1762 | 1010 ++p; |
1011 } | |
1012 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1013 // Skip to the next "/", where the next pattern starts. |
1762 | 1014 p = vim_strchr(p, '/'); |
1015 if (p == NULL) | |
1016 break; | |
1017 } | |
1018 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1019 // Checked all the rules and none of them match the flags, so there |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1020 // can't possibly be a compound starting with these flags. |
1762 | 1021 return FALSE; |
1022 } | |
1023 | |
1024 /* | |
390 | 1025 * Return non-zero if the prefix indicated by "arridx" matches with the prefix |
1026 * ID in "flags" for the word "word". | |
366 | 1027 * The WF_RAREPFX flag is included in the return value for a rare prefix. |
351 | 1028 */ |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17940
diff
changeset
|
1029 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1030 valid_word_prefix( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1031 int totprefcnt, // nr of prefix IDs |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1032 int arridx, // idx in sl_pidxs[] |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1033 int flags, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1034 char_u *word, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1035 slang_T *slang, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1036 int cond_req) // only use prefixes with a condition |
351 | 1037 { |
1038 int prefcnt; | |
1039 int pidx; | |
6375 | 1040 regprog_T **rp; |
390 | 1041 int prefid; |
1042 | |
1043 prefid = (unsigned)flags >> 24; | |
351 | 1044 for (prefcnt = totprefcnt - 1; prefcnt >= 0; --prefcnt) |
1045 { | |
1046 pidx = slang->sl_pidxs[arridx + prefcnt]; | |
1047 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1048 // Check the prefix ID. |
351 | 1049 if (prefid != (pidx & 0xff)) |
1050 continue; | |
1051 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1052 // Check if the prefix doesn't combine and the word already has a |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1053 // suffix. |
390 | 1054 if ((flags & WF_HAS_AFF) && (pidx & WF_PFX_NC)) |
1055 continue; | |
1056 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1057 // Check the condition, if there is one. The condition index is |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1058 // stored in the two bytes above the prefix ID byte. |
6375 | 1059 rp = &slang->sl_prefprog[((unsigned)pidx >> 8) & 0xffff]; |
1060 if (*rp != NULL) | |
1061 { | |
1062 if (!vim_regexec_prog(rp, FALSE, word, 0)) | |
351 | 1063 continue; |
1064 } | |
455 | 1065 else if (cond_req) |
1066 continue; | |
1067 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1068 // It's a match! Return the WF_ flags. |
366 | 1069 return pidx; |
1070 } | |
1071 return 0; | |
351 | 1072 } |
1073 | |
1074 /* | |
339 | 1075 * Check if the word at "mip->mi_word" has a matching prefix. |
1076 * If it does, then check the following word. | |
1077 * | |
485 | 1078 * If "mode" is "FIND_COMPOUND" then do the same after another word, find a |
1079 * prefix in a compound word. | |
1080 * | |
339 | 1081 * For a match mip->mi_result is updated. |
1082 */ | |
1083 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1084 find_prefix(matchinf_T *mip, int mode) |
339 | 1085 { |
1086 idx_T arridx = 0; | |
1087 int len; | |
1088 int wlen = 0; | |
1089 int flen; | |
1090 int c; | |
1091 char_u *ptr; | |
1092 idx_T lo, hi, m; | |
1093 slang_T *slang = mip->mi_lp->lp_slang; | |
1094 char_u *byts; | |
1095 idx_T *idxs; | |
1096 | |
375 | 1097 byts = slang->sl_pbyts; |
1098 if (byts == NULL) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1099 return; // array is empty |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1100 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1101 // We use the case-folded word here, since prefixes are always |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1102 // case-folded. |
339 | 1103 ptr = mip->mi_fword; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1104 flen = mip->mi_fwordlen; // available case-folded bytes |
485 | 1105 if (mode == FIND_COMPOUND) |
1106 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1107 // Skip over the previously found word(s). |
485 | 1108 ptr += mip->mi_compoff; |
1109 flen -= mip->mi_compoff; | |
1110 } | |
339 | 1111 idxs = slang->sl_pidxs; |
1112 | |
1113 /* | |
1114 * Repeat advancing in the tree until: | |
1115 * - there is a byte that doesn't match, | |
1116 * - we reach the end of the tree, | |
1117 * - or we reach the end of the line. | |
1118 */ | |
1119 for (;;) | |
1120 { | |
1121 if (flen == 0 && *mip->mi_fend != NUL) | |
1122 flen = fold_more(mip); | |
1123 | |
1124 len = byts[arridx++]; | |
1125 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1126 // If the first possible byte is a zero the prefix could end here. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1127 // Check if the following word matches and supports the prefix. |
339 | 1128 if (byts[arridx] == 0) |
1129 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1130 // There can be several prefixes with different conditions. We |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1131 // try them all, since we don't know which one will give the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1132 // longest match. The word is the same each time, pass the list |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1133 // of possible prefixes to find_word(). |
339 | 1134 mip->mi_prefarridx = arridx; |
1135 mip->mi_prefcnt = len; | |
1136 while (len > 0 && byts[arridx] == 0) | |
1137 { | |
1138 ++arridx; | |
1139 --len; | |
1140 } | |
1141 mip->mi_prefcnt -= len; | |
1142 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1143 // Find the word that comes after the prefix. |
339 | 1144 mip->mi_prefixlen = wlen; |
485 | 1145 if (mode == FIND_COMPOUND) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1146 // Skip over the previously found word(s). |
485 | 1147 mip->mi_prefixlen += mip->mi_compoff; |
1148 | |
455 | 1149 if (has_mbyte) |
1150 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1151 // Case-folded length may differ from original length. |
485 | 1152 mip->mi_cprefixlen = nofold_len(mip->mi_fword, |
1153 mip->mi_prefixlen, mip->mi_word); | |
455 | 1154 } |
1155 else | |
485 | 1156 mip->mi_cprefixlen = mip->mi_prefixlen; |
339 | 1157 find_word(mip, FIND_PREFIX); |
1158 | |
1159 | |
1160 if (len == 0) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1161 break; // no children, word must end here |
339 | 1162 } |
1163 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1164 // Stop looking at end of the line. |
339 | 1165 if (ptr[wlen] == NUL) |
1166 break; | |
1167 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1168 // Perform a binary search in the list of accepted bytes. |
339 | 1169 c = ptr[wlen]; |
1170 lo = arridx; | |
1171 hi = arridx + len - 1; | |
1172 while (lo < hi) | |
1173 { | |
1174 m = (lo + hi) / 2; | |
1175 if (byts[m] > c) | |
1176 hi = m - 1; | |
1177 else if (byts[m] < c) | |
1178 lo = m + 1; | |
1179 else | |
1180 { | |
1181 lo = hi = m; | |
1182 break; | |
1183 } | |
1184 } | |
1185 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1186 // Stop if there is no matching byte. |
339 | 1187 if (hi < lo || byts[lo] != c) |
1188 break; | |
1189 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1190 // Continue at the child (if there is one). |
339 | 1191 arridx = idxs[lo]; |
1192 ++wlen; | |
1193 --flen; | |
1194 } | |
1195 } | |
1196 | |
1197 /* | |
1198 * Need to fold at least one more character. Do until next non-word character | |
626 | 1199 * for efficiency. Include the non-word character too. |
339 | 1200 * Return the length of the folded chars in bytes. |
1201 */ | |
1202 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1203 fold_more(matchinf_T *mip) |
339 | 1204 { |
1205 int flen; | |
1206 char_u *p; | |
1207 | |
1208 p = mip->mi_fend; | |
1209 do | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1210 MB_PTR_ADV(mip->mi_fend); |
16162
cd5c83115ec6
patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
1211 while (*mip->mi_fend != NUL && spell_iswordp(mip->mi_fend, mip->mi_win)); |
339 | 1212 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1213 // Include the non-word character so that we can check for the word end. |
339 | 1214 if (*mip->mi_fend != NUL) |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1215 MB_PTR_ADV(mip->mi_fend); |
339 | 1216 |
24872
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
1217 (void)spell_casefold(mip->mi_win, p, (int)(mip->mi_fend - p), |
339 | 1218 mip->mi_fword + mip->mi_fwordlen, |
1219 MAXWLEN - mip->mi_fwordlen); | |
835 | 1220 flen = (int)STRLEN(mip->mi_fword + mip->mi_fwordlen); |
339 | 1221 mip->mi_fwordlen += flen; |
1222 return flen; | |
1223 } | |
1224 | |
1225 /* | |
323 | 1226 * Check case flags for a word. Return TRUE if the word has the requested |
1227 * case. | |
1228 */ | |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17940
diff
changeset
|
1229 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1230 spell_valid_case( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1231 int wordflags, // flags for the checked word. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1232 int treeflags) // flags for the word in the spell tree |
323 | 1233 { |
389 | 1234 return ((wordflags == WF_ALLCAP && (treeflags & WF_FIXCAP) == 0) |
323 | 1235 || ((treeflags & (WF_ALLCAP | WF_KEEPCAP)) == 0 |
474 | 1236 && ((treeflags & WF_ONECAP) == 0 |
1237 || (wordflags & WF_ONECAP) != 0))); | |
323 | 1238 } |
1239 | |
351 | 1240 /* |
1241 * Return TRUE if spell checking is not enabled. | |
1242 */ | |
25567
0082503ff2ff
patch 8.2.3320: some local functions are not static
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1243 static int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1244 no_spell_checking(win_T *wp) |
498 | 1245 { |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
1246 if (!wp->w_p_spell || *wp->w_s->b_p_spl == NUL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
1247 || wp->w_s->b_langp.ga_len == 0) |
351 | 1248 { |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
1249 emsg(_(e_spell_checking_is_not_possible)); |
351 | 1250 return TRUE; |
1251 } | |
1252 return FALSE; | |
1253 } | |
300 | 1254 |
236 | 1255 /* |
1256 * Move to next spell error. | |
500 | 1257 * "curline" is FALSE for "[s", "]s", "[S" and "]S". |
1258 * "curline" is TRUE to find word under/after cursor in the same line. | |
483 | 1259 * For Insert mode completion "dir" is BACKWARD and "curline" is TRUE: move |
1260 * to after badly spelled word before the cursor. | |
495 | 1261 * Return 0 if not found, length of the badly spelled word otherwise. |
236 | 1262 */ |
1263 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1264 spell_move_to( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1265 win_T *wp, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1266 int dir, // FORWARD or BACKWARD |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1267 int allwords, // TRUE for "[s"/"]s", FALSE for "[S"/"]S" |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1268 int curline, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1269 hlf_T *attrp) // return: attributes of bad word or NULL |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1270 // (only when "dir" is FORWARD) |
236 | 1271 { |
249 | 1272 linenr_T lnum; |
1273 pos_T found_pos; | |
495 | 1274 int found_len = 0; |
236 | 1275 char_u *line; |
1276 char_u *p; | |
346 | 1277 char_u *endp; |
534 | 1278 hlf_T attr; |
236 | 1279 int len; |
5519 | 1280 #ifdef FEAT_SYN_HL |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
1281 int has_syntax = syntax_present(wp); |
5519 | 1282 #endif |
249 | 1283 int col; |
1284 int can_spell; | |
346 | 1285 char_u *buf = NULL; |
1286 int buflen = 0; | |
1287 int skip = 0; | |
385 | 1288 int capcol = -1; |
500 | 1289 int found_one = FALSE; |
1290 int wrapped = FALSE; | |
236 | 1291 |
498 | 1292 if (no_spell_checking(wp)) |
495 | 1293 return 0; |
236 | 1294 |
249 | 1295 /* |
1296 * Start looking for bad word at the start of the line, because we can't | |
817 | 1297 * start halfway a word, we don't know where it starts or ends. |
249 | 1298 * |
1299 * When searching backwards, we continue in the line to find the last | |
1300 * bad word (in the cursor line: before the cursor). | |
346 | 1301 * |
1302 * We concatenate the start of the next line, so that wrapped words work | |
1303 * (e.g. "et<line-break>cetera"). Doesn't work when searching backwards | |
1304 * though... | |
249 | 1305 */ |
498 | 1306 lnum = wp->w_cursor.lnum; |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10950
diff
changeset
|
1307 CLEAR_POS(&found_pos); |
236 | 1308 |
1309 while (!got_int) | |
1310 { | |
498 | 1311 line = ml_get_buf(wp->w_buffer, lnum, FALSE); |
346 | 1312 |
835 | 1313 len = (int)STRLEN(line); |
346 | 1314 if (buflen < len + MAXWLEN + 2) |
1315 { | |
1316 vim_free(buf); | |
1317 buflen = len + MAXWLEN + 2; | |
1318 buf = alloc(buflen); | |
1319 if (buf == NULL) | |
1320 break; | |
1321 } | |
1322 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1323 // In first line check first word for Capital. |
385 | 1324 if (lnum == 1) |
1325 capcol = 0; | |
1326 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1327 // For checking first word with a capital skip white space. |
385 | 1328 if (capcol == 0) |
12323
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1329 capcol = getwhitecols(line); |
835 | 1330 else if (curline && wp == curwin) |
1331 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1332 // For spellbadword(): check if first word needs a capital. |
12323
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1333 col = getwhitecols(line); |
835 | 1334 if (check_need_cap(lnum, col)) |
1335 capcol = col; | |
1336 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1337 // Need to get the line again, may have looked at the previous |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1338 // one. |
835 | 1339 line = ml_get_buf(wp->w_buffer, lnum, FALSE); |
1340 } | |
385 | 1341 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1342 // Copy the line into "buf" and append the start of the next line if |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1343 // possible. |
346 | 1344 STRCPY(buf, line); |
498 | 1345 if (lnum < wp->w_buffer->b_ml.ml_line_count) |
883 | 1346 spell_cat_line(buf + STRLEN(buf), |
1347 ml_get_buf(wp->w_buffer, lnum + 1, FALSE), MAXWLEN); | |
346 | 1348 |
1349 p = buf + skip; | |
1350 endp = buf + len; | |
1351 while (p < endp) | |
236 | 1352 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1353 // When searching backward don't search after the cursor. Unless |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1354 // we wrapped around the end of the buffer. |
300 | 1355 if (dir == BACKWARD |
498 | 1356 && lnum == wp->w_cursor.lnum |
500 | 1357 && !wrapped |
498 | 1358 && (colnr_T)(p - buf) >= wp->w_cursor.col) |
300 | 1359 break; |
249 | 1360 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1361 // start of word |
534 | 1362 attr = HLF_COUNT; |
625 | 1363 len = spell_check(wp, p, &attr, &capcol, FALSE); |
249 | 1364 |
534 | 1365 if (attr != HLF_COUNT) |
300 | 1366 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1367 // We found a bad word. Check the attribute. |
534 | 1368 if (allwords || attr == HLF_SPB) |
236 | 1369 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1370 // When searching forward only accept a bad word after |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1371 // the cursor. |
300 | 1372 if (dir == BACKWARD |
500 | 1373 || lnum != wp->w_cursor.lnum |
28169
bef82285dda0
patch 8.2.4610: some conditions are always true
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
1374 || (wrapped |
bef82285dda0
patch 8.2.4610: some conditions are always true
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
1375 || (colnr_T)(curline ? p - buf + len |
346 | 1376 : p - buf) |
28169
bef82285dda0
patch 8.2.4610: some conditions are always true
Bram Moolenaar <Bram@vim.org>
parents:
27752
diff
changeset
|
1377 > wp->w_cursor.col)) |
236 | 1378 { |
5519 | 1379 #ifdef FEAT_SYN_HL |
300 | 1380 if (has_syntax) |
249 | 1381 { |
835 | 1382 col = (int)(p - buf); |
498 | 1383 (void)syn_get_id(wp, lnum, (colnr_T)col, |
1504 | 1384 FALSE, &can_spell, FALSE); |
857 | 1385 if (!can_spell) |
1386 attr = HLF_COUNT; | |
300 | 1387 } |
1388 else | |
737 | 1389 #endif |
300 | 1390 can_spell = TRUE; |
249 | 1391 |
300 | 1392 if (can_spell) |
1393 { | |
857 | 1394 found_one = TRUE; |
300 | 1395 found_pos.lnum = lnum; |
835 | 1396 found_pos.col = (int)(p - buf); |
300 | 1397 found_pos.coladd = 0; |
1398 if (dir == FORWARD) | |
1399 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1400 // No need to search further. |
498 | 1401 wp->w_cursor = found_pos; |
346 | 1402 vim_free(buf); |
498 | 1403 if (attrp != NULL) |
1404 *attrp = attr; | |
495 | 1405 return len; |
249 | 1406 } |
483 | 1407 else if (curline) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1408 // Insert mode completion: put cursor after |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1409 // the bad word. |
483 | 1410 found_pos.col += len; |
495 | 1411 found_len = len; |
249 | 1412 } |
236 | 1413 } |
857 | 1414 else |
1415 found_one = TRUE; | |
236 | 1416 } |
1417 } | |
1418 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1419 // advance to character after the word |
300 | 1420 p += len; |
385 | 1421 capcol -= len; |
236 | 1422 } |
1423 | |
483 | 1424 if (dir == BACKWARD && found_pos.lnum != 0) |
1425 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1426 // Use the last match in the line (before the cursor). |
498 | 1427 wp->w_cursor = found_pos; |
483 | 1428 vim_free(buf); |
495 | 1429 return found_len; |
483 | 1430 } |
1431 | |
323 | 1432 if (curline) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1433 break; // only check cursor line |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1434 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1435 // If we are back at the starting line and searched it again there |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1436 // is no match, give up. |
10950
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
1437 if (lnum == wp->w_cursor.lnum && wrapped) |
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
1438 break; |
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
1439 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1440 // Advance to next line. |
249 | 1441 if (dir == BACKWARD) |
1442 { | |
500 | 1443 if (lnum > 1) |
1444 --lnum; | |
1445 else if (!p_ws) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1446 break; // at first line and 'nowrapscan' |
500 | 1447 else |
1448 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1449 // Wrap around to the end of the buffer. May search the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1450 // starting line again and accept the last match. |
500 | 1451 lnum = wp->w_buffer->b_ml.ml_line_count; |
1452 wrapped = TRUE; | |
503 | 1453 if (!shortmess(SHM_SEARCH)) |
1454 give_warning((char_u *)_(top_bot_msg), TRUE); | |
500 | 1455 } |
385 | 1456 capcol = -1; |
249 | 1457 } |
1458 else | |
1459 { | |
500 | 1460 if (lnum < wp->w_buffer->b_ml.ml_line_count) |
1461 ++lnum; | |
1462 else if (!p_ws) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1463 break; // at first line and 'nowrapscan' |
500 | 1464 else |
1465 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1466 // Wrap around to the start of the buffer. May search the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1467 // starting line again and accept the first match. |
500 | 1468 lnum = 1; |
1469 wrapped = TRUE; | |
503 | 1470 if (!shortmess(SHM_SEARCH)) |
1471 give_warning((char_u *)_(bot_top_msg), TRUE); | |
500 | 1472 } |
1473 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1474 // If we are back at the starting line and there is no match then |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1475 // give up. |
10950
2297aae8e127
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
1476 if (lnum == wp->w_cursor.lnum && !found_one) |
346 | 1477 break; |
1478 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1479 // Skip the characters at the start of the next line that were |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1480 // included in a match crossing line boundaries. |
534 | 1481 if (attr == HLF_COUNT) |
835 | 1482 skip = (int)(p - endp); |
346 | 1483 else |
1484 skip = 0; | |
385 | 1485 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1486 // Capcol skips over the inserted space. |
385 | 1487 --capcol; |
1488 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1489 // But after empty line check first word in next line |
385 | 1490 if (*skipwhite(line) == NUL) |
1491 capcol = 0; | |
249 | 1492 } |
236 | 1493 |
1494 line_breakcheck(); | |
1495 } | |
1496 | |
346 | 1497 vim_free(buf); |
495 | 1498 return 0; |
346 | 1499 } |
1500 | |
1501 /* | |
1502 * For spell checking: concatenate the start of the following line "line" into | |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26441
diff
changeset
|
1503 * "buf", blanking-out special characters. Copy less than "maxlen" bytes. |
1577 | 1504 * Keep the blanks at the start of the next line, this is used in win_line() |
1505 * to skip those bytes if the word was OK. | |
346 | 1506 */ |
1507 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1508 spell_cat_line(char_u *buf, char_u *line, int maxlen) |
346 | 1509 { |
1510 char_u *p; | |
1511 int n; | |
1512 | |
1513 p = skipwhite(line); | |
1514 while (vim_strchr((char_u *)"*#/\"\t", *p) != NULL) | |
1515 p = skipwhite(p + 1); | |
1516 | |
1517 if (*p != NUL) | |
1518 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1519 // Only worth concatenating if there is something else than spaces to |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1520 // concatenate. |
1577 | 1521 n = (int)(p - line) + 1; |
1522 if (n < maxlen - 1) | |
1523 { | |
1524 vim_memset(buf, ' ', n); | |
1525 vim_strncpy(buf + n, p, maxlen - 1 - n); | |
1526 } | |
346 | 1527 } |
236 | 1528 } |
1529 | |
626 | 1530 /* |
1531 * Structure used for the cookie argument of do_in_runtimepath(). | |
1532 */ | |
501 | 1533 typedef struct spelload_S |
1534 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1535 char_u sl_lang[MAXWLEN + 1]; // language name |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1536 slang_T *sl_slang; // resulting slang_T struct |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1537 int sl_nobreak; // NOBREAK language found |
501 | 1538 } spelload_T; |
1539 | |
236 | 1540 /* |
307 | 1541 * Load word list(s) for "lang" from Vim spell file(s). |
310 | 1542 * "lang" must be the language without the region: e.g., "en". |
236 | 1543 */ |
307 | 1544 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1545 spell_load_lang(char_u *lang) |
236 | 1546 { |
310 | 1547 char_u fname_enc[85]; |
236 | 1548 int r; |
501 | 1549 spelload_T sl; |
649 | 1550 int round; |
307 | 1551 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1552 // Copy the language name to pass it to spell_load_cb() as a cookie. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1553 // It's truncated when an error is detected. |
501 | 1554 STRCPY(sl.sl_lang, lang); |
1555 sl.sl_slang = NULL; | |
1556 sl.sl_nobreak = FALSE; | |
307 | 1557 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1558 // We may retry when no spell file is found for the language, an |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1559 // autocommand may load it then. |
649 | 1560 for (round = 1; round <= 2; ++round) |
1561 { | |
1562 /* | |
1563 * Find the first spell file for "lang" in 'runtimepath' and load it. | |
1564 */ | |
1565 vim_snprintf((char *)fname_enc, sizeof(fname_enc) - 5, | |
2660 | 1566 #ifdef VMS |
1567 "spell/%s_%s.spl", | |
1568 #else | |
1569 "spell/%s.%s.spl", | |
1570 #endif | |
1571 lang, spell_enc()); | |
8524
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
1572 r = do_in_runtimepath(fname_enc, 0, spell_load_cb, &sl); |
649 | 1573 |
1574 if (r == FAIL && *sl.sl_lang != NUL) | |
1575 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1576 // Try loading the ASCII version. |
649 | 1577 vim_snprintf((char *)fname_enc, sizeof(fname_enc) - 5, |
2660 | 1578 #ifdef VMS |
1579 "spell/%s_ascii.spl", | |
1580 #else | |
1581 "spell/%s.ascii.spl", | |
1582 #endif | |
1583 lang); | |
8524
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
1584 r = do_in_runtimepath(fname_enc, 0, spell_load_cb, &sl); |
649 | 1585 |
1586 if (r == FAIL && *sl.sl_lang != NUL && round == 1 | |
1587 && apply_autocmds(EVENT_SPELLFILEMISSING, lang, | |
1588 curbuf->b_fname, FALSE, curbuf)) | |
1589 continue; | |
1590 break; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13308
diff
changeset
|
1591 } |
714 | 1592 break; |
307 | 1593 } |
1594 | |
1595 if (r == FAIL) | |
649 | 1596 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
1597 smsg( |
2660 | 1598 #ifdef VMS |
1599 _("Warning: Cannot find word list \"%s_%s.spl\" or \"%s_ascii.spl\""), | |
1600 #else | |
1601 _("Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\""), | |
1602 #endif | |
483 | 1603 lang, spell_enc(), lang); |
649 | 1604 } |
501 | 1605 else if (sl.sl_slang != NULL) |
1606 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1607 // At least one file was loaded, now load ALL the additions. |
310 | 1608 STRCPY(fname_enc + STRLEN(fname_enc) - 3, "add.spl"); |
8524
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
1609 do_in_runtimepath(fname_enc, DIP_ALL, spell_load_cb, &sl); |
310 | 1610 } |
1611 } | |
1612 | |
1613 /* | |
1614 * Return the encoding used for spell checking: Use 'encoding', except that we | |
1615 * use "latin1" for "latin9". And limit to 60 characters (just in case). | |
1616 */ | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
1617 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1618 spell_enc(void) |
310 | 1619 { |
1620 | |
1621 if (STRLEN(p_enc) < 60 && STRCMP(p_enc, "iso-8859-15") != 0) | |
1622 return p_enc; | |
1623 return (char_u *)"latin1"; | |
236 | 1624 } |
1625 | |
1626 /* | |
385 | 1627 * Get the name of the .spl file for the internal wordlist into |
1628 * "fname[MAXPATHL]". | |
1629 */ | |
1630 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1631 int_wordlist_spl(char_u *fname) |
385 | 1632 { |
2660 | 1633 vim_snprintf((char *)fname, MAXPATHL, SPL_FNAME_TMPL, |
385 | 1634 int_wordlist, spell_enc()); |
1635 } | |
1636 | |
1637 /* | |
625 | 1638 * Allocate a new slang_T for language "lang". "lang" can be NULL. |
236 | 1639 * Caller must fill "sl_next". |
1640 */ | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
1641 slang_T * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1642 slang_alloc(char_u *lang) |
236 | 1643 { |
1644 slang_T *lp; | |
1645 | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1646 lp = ALLOC_CLEAR_ONE(slang_T); |
236 | 1647 if (lp != NULL) |
1648 { | |
625 | 1649 if (lang != NULL) |
1650 lp->sl_name = vim_strsave(lang); | |
323 | 1651 ga_init2(&lp->sl_rep, sizeof(fromto_T), 10); |
625 | 1652 ga_init2(&lp->sl_repsal, sizeof(fromto_T), 10); |
483 | 1653 lp->sl_compmax = MAXWLEN; |
1654 lp->sl_compsylmax = MAXWLEN; | |
625 | 1655 hash_init(&lp->sl_wordcount); |
1656 } | |
1657 | |
236 | 1658 return lp; |
1659 } | |
1660 | |
1661 /* | |
1662 * Free the contents of an slang_T and the structure itself. | |
1663 */ | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
1664 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1665 slang_free(slang_T *lp) |
236 | 1666 { |
1667 vim_free(lp->sl_name); | |
310 | 1668 vim_free(lp->sl_fname); |
1669 slang_clear(lp); | |
1670 vim_free(lp); | |
1671 } | |
1672 | |
1673 /* | |
1674 * Clear an slang_T so that the file can be reloaded. | |
1675 */ | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
1676 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1677 slang_clear(slang_T *lp) |
310 | 1678 { |
339 | 1679 garray_T *gap; |
1680 fromto_T *ftp; | |
344 | 1681 salitem_T *smp; |
339 | 1682 int i; |
625 | 1683 int round; |
323 | 1684 |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1685 VIM_CLEAR(lp->sl_fbyts); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1686 VIM_CLEAR(lp->sl_kbyts); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1687 VIM_CLEAR(lp->sl_pbyts); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1688 |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1689 VIM_CLEAR(lp->sl_fidxs); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1690 VIM_CLEAR(lp->sl_kidxs); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1691 VIM_CLEAR(lp->sl_pidxs); |
323 | 1692 |
625 | 1693 for (round = 1; round <= 2; ++round) |
1694 { | |
1695 gap = round == 1 ? &lp->sl_rep : &lp->sl_repsal; | |
1696 while (gap->ga_len > 0) | |
1697 { | |
1698 ftp = &((fromto_T *)gap->ga_data)[--gap->ga_len]; | |
1699 vim_free(ftp->ft_from); | |
1700 vim_free(ftp->ft_to); | |
1701 } | |
1702 ga_clear(gap); | |
1703 } | |
344 | 1704 |
1705 gap = &lp->sl_sal; | |
375 | 1706 if (lp->sl_sofo) |
376 | 1707 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1708 // "ga_len" is set to 1 without adding an item for latin1 |
376 | 1709 if (gap->ga_data != NULL) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1710 // SOFOFROM and SOFOTO items: free lists of wide characters. |
376 | 1711 for (i = 0; i < gap->ga_len; ++i) |
1712 vim_free(((int **)gap->ga_data)[i]); | |
1713 } | |
375 | 1714 else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1715 // SAL items: free salitem_T items |
375 | 1716 while (gap->ga_len > 0) |
1717 { | |
1718 smp = &((salitem_T *)gap->ga_data)[--gap->ga_len]; | |
1719 vim_free(smp->sm_lead); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1720 // Don't free sm_oneof and sm_rules, they point into sm_lead. |
375 | 1721 vim_free(smp->sm_to); |
1722 vim_free(smp->sm_lead_w); | |
1723 vim_free(smp->sm_oneof_w); | |
1724 vim_free(smp->sm_to_w); | |
1725 } | |
344 | 1726 ga_clear(gap); |
323 | 1727 |
339 | 1728 for (i = 0; i < lp->sl_prefixcnt; ++i) |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
1729 vim_regfree(lp->sl_prefprog[i]); |
376 | 1730 lp->sl_prefixcnt = 0; |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1731 VIM_CLEAR(lp->sl_prefprog); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1732 |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1733 VIM_CLEAR(lp->sl_info); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1734 |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1735 VIM_CLEAR(lp->sl_midword); |
339 | 1736 |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
1737 vim_regfree(lp->sl_compprog); |
483 | 1738 lp->sl_compprog = NULL; |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1739 VIM_CLEAR(lp->sl_comprules); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1740 VIM_CLEAR(lp->sl_compstartflags); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1741 VIM_CLEAR(lp->sl_compallflags); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1742 |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1743 VIM_CLEAR(lp->sl_syllable); |
483 | 1744 ga_clear(&lp->sl_syl_items); |
481 | 1745 |
809 | 1746 ga_clear_strings(&lp->sl_comppat); |
1747 | |
625 | 1748 hash_clear_all(&lp->sl_wordcount, WC_KEY_OFF); |
1749 hash_init(&lp->sl_wordcount); | |
1750 | |
1751 hash_clear_all(&lp->sl_map_hash, 0); | |
1752 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1753 // Clear info from .sug file. |
625 | 1754 slang_clear_sug(lp); |
483 | 1755 |
1756 lp->sl_compmax = MAXWLEN; | |
501 | 1757 lp->sl_compminlen = 0; |
483 | 1758 lp->sl_compsylmax = MAXWLEN; |
1759 lp->sl_regions[0] = NUL; | |
236 | 1760 } |
1761 | |
1762 /* | |
625 | 1763 * Clear the info from the .sug file in "lp". |
1764 */ | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
1765 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1766 slang_clear_sug(slang_T *lp) |
625 | 1767 { |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1768 VIM_CLEAR(lp->sl_sbyts); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1769 VIM_CLEAR(lp->sl_sidxs); |
625 | 1770 close_spellbuf(lp->sl_sugbuf); |
1771 lp->sl_sugbuf = NULL; | |
1772 lp->sl_sugloaded = FALSE; | |
1773 lp->sl_sugtime = 0; | |
1774 } | |
1775 | |
1776 /* | |
307 | 1777 * Load one spell file and store the info into a slang_T. |
236 | 1778 * Invoked through do_in_runtimepath(). |
1779 */ | |
1780 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1781 spell_load_cb(char_u *fname, void *cookie) |
501 | 1782 { |
1783 spelload_T *slp = (spelload_T *)cookie; | |
1784 slang_T *slang; | |
1785 | |
1786 slang = spell_load_file(fname, slp->sl_lang, NULL, FALSE); | |
1787 if (slang != NULL) | |
1788 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1789 // When a previously loaded file has NOBREAK also use it for the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1790 // ".add" files. |
501 | 1791 if (slp->sl_nobreak && slang->sl_add) |
1792 slang->sl_nobreak = TRUE; | |
1793 else if (slang->sl_nobreak) | |
1794 slp->sl_nobreak = TRUE; | |
1795 | |
1796 slp->sl_slang = slang; | |
1797 } | |
310 | 1798 } |
1799 | |
625 | 1800 |
1801 /* | |
1802 * Add a word to the hashtable of common words. | |
1803 * If it's already there then the counter is increased. | |
1804 */ | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
1805 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1806 count_common_word( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1807 slang_T *lp, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1808 char_u *word, |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
18814
diff
changeset
|
1809 int len, // word length, -1 for up to NUL |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1810 int count) // 1 to count once, 10 to init |
625 | 1811 { |
1812 hash_T hash; | |
1813 hashitem_T *hi; | |
1814 wordcount_T *wc; | |
1815 char_u buf[MAXWLEN]; | |
1816 char_u *p; | |
1817 | |
1818 if (len == -1) | |
1819 p = word; | |
17653
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17434
diff
changeset
|
1820 else if (len >= MAXWLEN) |
cc68aca87c17
patch 8.1.1824: crash when correctly spelled word is very long
Bram Moolenaar <Bram@vim.org>
parents:
17434
diff
changeset
|
1821 return; |
625 | 1822 else |
1823 { | |
1824 vim_strncpy(buf, word, len); | |
1825 p = buf; | |
1826 } | |
1827 | |
1828 hash = hash_hash(p); | |
1829 hi = hash_lookup(&lp->sl_wordcount, p, hash); | |
1830 if (HASHITEM_EMPTY(hi)) | |
1831 { | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1832 wc = alloc(sizeof(wordcount_T) + STRLEN(p)); |
625 | 1833 if (wc == NULL) |
1834 return; | |
1835 STRCPY(wc->wc_word, p); | |
1836 wc->wc_count = count; | |
1837 hash_add_item(&lp->sl_wordcount, hi, wc->wc_word, hash); | |
1838 } | |
1839 else | |
1840 { | |
1841 wc = HI2WC(hi); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1842 if ((wc->wc_count += count) < (unsigned)count) // check for overflow |
625 | 1843 wc->wc_count = MAXWORDCOUNT; |
1844 } | |
1845 } | |
1846 | |
1847 /* | |
498 | 1848 * Return TRUE if byte "n" appears in "str". |
495 | 1849 * Like strchr() but independent of locale. |
1850 */ | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
1851 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1852 byte_in_str(char_u *str, int n) |
495 | 1853 { |
1854 char_u *p; | |
1855 | |
1856 for (p = str; *p != NUL; ++p) | |
498 | 1857 if (*p == n) |
495 | 1858 return TRUE; |
1859 return FALSE; | |
1860 } | |
1861 | |
483 | 1862 #define SY_MAXLEN 30 |
1863 typedef struct syl_item_S | |
1864 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1865 char_u sy_chars[SY_MAXLEN]; // the sequence of chars |
483 | 1866 int sy_len; |
1867 } syl_item_T; | |
1868 | |
1869 /* | |
1870 * Truncate "slang->sl_syllable" at the first slash and put the following items | |
1871 * in "slang->sl_syl_items". | |
1872 */ | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
1873 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1874 init_syl_tab(slang_T *slang) |
483 | 1875 { |
1876 char_u *p; | |
1877 char_u *s; | |
1878 int l; | |
1879 syl_item_T *syl; | |
1880 | |
1881 ga_init2(&slang->sl_syl_items, sizeof(syl_item_T), 4); | |
1882 p = vim_strchr(slang->sl_syllable, '/'); | |
1883 while (p != NULL) | |
1884 { | |
1885 *p++ = NUL; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1886 if (*p == NUL) // trailing slash |
483 | 1887 break; |
1888 s = p; | |
1889 p = vim_strchr(p, '/'); | |
1890 if (p == NULL) | |
835 | 1891 l = (int)STRLEN(s); |
483 | 1892 else |
835 | 1893 l = (int)(p - s); |
483 | 1894 if (l >= SY_MAXLEN) |
1895 return SP_FORMERROR; | |
1896 if (ga_grow(&slang->sl_syl_items, 1) == FAIL) | |
495 | 1897 return SP_OTHERERROR; |
483 | 1898 syl = ((syl_item_T *)slang->sl_syl_items.ga_data) |
1899 + slang->sl_syl_items.ga_len++; | |
1900 vim_strncpy(syl->sy_chars, s, l); | |
1901 syl->sy_len = l; | |
1902 } | |
1903 return OK; | |
1904 } | |
1905 | |
1906 /* | |
1907 * Count the number of syllables in "word". | |
1908 * When "word" contains spaces the syllables after the last space are counted. | |
1909 * Returns zero if syllables are not defines. | |
1910 */ | |
1911 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1912 count_syllables(slang_T *slang, char_u *word) |
483 | 1913 { |
1914 int cnt = 0; | |
1915 int skip = FALSE; | |
1916 char_u *p; | |
1917 int len; | |
1918 int i; | |
1919 syl_item_T *syl; | |
1920 int c; | |
1921 | |
1922 if (slang->sl_syllable == NULL) | |
1923 return 0; | |
1924 | |
1925 for (p = word; *p != NUL; p += len) | |
1926 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1927 // When running into a space reset counter. |
483 | 1928 if (*p == ' ') |
1929 { | |
1930 len = 1; | |
1931 cnt = 0; | |
1932 continue; | |
1933 } | |
1934 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1935 // Find longest match of syllable items. |
483 | 1936 len = 0; |
1937 for (i = 0; i < slang->sl_syl_items.ga_len; ++i) | |
1938 { | |
1939 syl = ((syl_item_T *)slang->sl_syl_items.ga_data) + i; | |
1940 if (syl->sy_len > len | |
1941 && STRNCMP(p, syl->sy_chars, syl->sy_len) == 0) | |
1942 len = syl->sy_len; | |
1943 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1944 if (len != 0) // found a match, count syllable |
483 | 1945 { |
1946 ++cnt; | |
1947 skip = FALSE; | |
1948 } | |
1949 else | |
1950 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1951 // No recognized syllable item, at least a syllable char then? |
483 | 1952 c = mb_ptr2char(p); |
1953 len = (*mb_ptr2len)(p); | |
1954 if (vim_strchr(slang->sl_syllable, c) == NULL) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1955 skip = FALSE; // No, search for next syllable |
483 | 1956 else if (!skip) |
1957 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1958 ++cnt; // Yes, count it |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1959 skip = TRUE; // don't count following syllable chars |
483 | 1960 } |
1961 } | |
1962 } | |
1963 return cnt; | |
376 | 1964 } |
1965 | |
381 | 1966 /* |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
1967 * Parse 'spelllang' and set w_s->b_langp accordingly. |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
1968 * Returns NULL if it's OK, an untranslated error message otherwise. |
236 | 1969 */ |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
1970 char * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1971 did_set_spelllang(win_T *wp) |
236 | 1972 { |
1973 garray_T ga; | |
351 | 1974 char_u *splp; |
236 | 1975 char_u *region; |
416 | 1976 char_u region_cp[3]; |
355 | 1977 int filename; |
236 | 1978 int region_mask; |
503 | 1979 slang_T *slang; |
236 | 1980 int c; |
351 | 1981 char_u lang[MAXWLEN + 1]; |
323 | 1982 char_u spf_name[MAXPATHL]; |
351 | 1983 int len; |
1984 char_u *p; | |
381 | 1985 int round; |
385 | 1986 char_u *spf; |
389 | 1987 char_u *use_region = NULL; |
1988 int dont_use_region = FALSE; | |
501 | 1989 int nobreak = FALSE; |
503 | 1990 int i, j; |
1991 langp_T *lp, *lp2; | |
1185 | 1992 static int recursive = FALSE; |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
1993 char *ret_msg = NULL; |
1185 | 1994 char_u *spl_copy; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1995 bufref_T bufref; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1996 |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1997 set_bufref(&bufref, wp->w_buffer); |
1185 | 1998 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
1999 // We don't want to do this recursively. May happen when a language is |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2000 // not available and the SpellFileMissing autocommand opens a new buffer |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2001 // in which 'spell' is set. |
1185 | 2002 if (recursive) |
2003 return NULL; | |
2004 recursive = TRUE; | |
236 | 2005 |
2006 ga_init2(&ga, sizeof(langp_T), 2); | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2007 clear_midword(wp); |
236 | 2008 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2009 // Make a copy of 'spelllang', the SpellFileMissing autocommands may change |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2010 // it under our fingers. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2011 spl_copy = vim_strsave(wp->w_s->b_p_spl); |
1185 | 2012 if (spl_copy == NULL) |
2013 goto theend; | |
2014 | |
5477 | 2015 wp->w_s->b_cjk = 0; |
2016 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2017 // Loop over comma separated language names. |
1185 | 2018 for (splp = spl_copy; *splp != NUL; ) |
351 | 2019 { |
16277
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16239
diff
changeset
|
2020 // Get one language name. |
351 | 2021 copy_option_part(&splp, lang, MAXWLEN, ","); |
240 | 2022 region = NULL; |
835 | 2023 len = (int)STRLEN(lang); |
355 | 2024 |
20760
813b9a7064a4
patch 8.2.0932: missspelling spelllang
Bram Moolenaar <Bram@vim.org>
parents:
20599
diff
changeset
|
2025 if (!valid_spelllang(lang)) |
16277
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16239
diff
changeset
|
2026 continue; |
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
16239
diff
changeset
|
2027 |
5477 | 2028 if (STRCMP(lang, "cjk") == 0) |
2029 { | |
2030 wp->w_s->b_cjk = 1; | |
2031 continue; | |
2032 } | |
2033 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2034 // If the name ends in ".spl" use it as the name of the spell file. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2035 // If there is a region name let "region" point to it and remove it |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2036 // from the name. |
355 | 2037 if (len > 4 && fnamecmp(lang + len - 4, ".spl") == 0) |
236 | 2038 { |
355 | 2039 filename = TRUE; |
2040 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2041 // Locate a region and remove it from the file name. |
416 | 2042 p = vim_strchr(gettail(lang), '_'); |
2043 if (p != NULL && ASCII_ISALPHA(p[1]) && ASCII_ISALPHA(p[2]) | |
2044 && !ASCII_ISALPHA(p[3])) | |
2045 { | |
2046 vim_strncpy(region_cp, p + 1, 2); | |
2047 mch_memmove(p, p + 3, len - (p - lang) - 2); | |
2048 region = region_cp; | |
2049 } | |
2050 else | |
2051 dont_use_region = TRUE; | |
2052 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2053 // Check if we loaded this language before. |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
2054 FOR_ALL_SPELL_LANGS(slang) |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2055 if (fullpathcmp(lang, slang->sl_fname, FALSE, TRUE) == FPC_SAME) |
355 | 2056 break; |
236 | 2057 } |
355 | 2058 else |
2059 { | |
2060 filename = FALSE; | |
2061 if (len > 3 && lang[len - 3] == '_') | |
2062 { | |
2063 region = lang + len - 2; | |
2064 len -= 3; | |
2065 lang[len] = NUL; | |
389 | 2066 } |
2067 else | |
2068 dont_use_region = TRUE; | |
355 | 2069 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2070 // Check if we loaded this language before. |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
2071 FOR_ALL_SPELL_LANGS(slang) |
503 | 2072 if (STRICMP(lang, slang->sl_name) == 0) |
355 | 2073 break; |
2074 } | |
236 | 2075 |
416 | 2076 if (region != NULL) |
2077 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2078 // If the region differs from what was used before then don't |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2079 // use it for 'spellfile'. |
416 | 2080 if (use_region != NULL && STRCMP(region, use_region) != 0) |
2081 dont_use_region = TRUE; | |
2082 use_region = region; | |
2083 } | |
2084 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2085 // If not found try loading the language now. |
503 | 2086 if (slang == NULL) |
355 | 2087 { |
2088 if (filename) | |
2089 (void)spell_load_file(lang, lang, NULL, FALSE); | |
2090 else | |
1185 | 2091 { |
355 | 2092 spell_load_lang(lang); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2093 // SpellFileMissing autocommands may do anything, including |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2094 // destroying the buffer we are using... |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
2095 if (!bufref_valid(&bufref)) |
1185 | 2096 { |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2097 ret_msg = N_(e_spellfilemising_autocommand_deleted_buffer); |
1185 | 2098 goto theend; |
2099 } | |
2100 } | |
355 | 2101 } |
236 | 2102 |
307 | 2103 /* |
351 | 2104 * Loop over the languages, there can be several files for "lang". |
307 | 2105 */ |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
2106 FOR_ALL_SPELL_LANGS(slang) |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2107 if (filename ? fullpathcmp(lang, slang->sl_fname, FALSE, TRUE) |
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2108 == FPC_SAME |
503 | 2109 : STRICMP(lang, slang->sl_name) == 0) |
236 | 2110 { |
316 | 2111 region_mask = REGION_ALL; |
355 | 2112 if (!filename && region != NULL) |
236 | 2113 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2114 // find region in sl_regions |
503 | 2115 c = find_region(slang->sl_regions, region); |
307 | 2116 if (c == REGION_ALL) |
2117 { | |
503 | 2118 if (slang->sl_add) |
389 | 2119 { |
503 | 2120 if (*slang->sl_regions != NUL) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2121 // This addition file is for other regions. |
389 | 2122 region_mask = 0; |
2123 } | |
2124 else | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2125 // This is probably an error. Give a warning and |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2126 // accept the words anyway. |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
2127 smsg(_("Warning: region %s not supported"), |
351 | 2128 region); |
307 | 2129 } |
2130 else | |
2131 region_mask = 1 << c; | |
236 | 2132 } |
307 | 2133 |
389 | 2134 if (region_mask != 0) |
307 | 2135 { |
389 | 2136 if (ga_grow(&ga, 1) == FAIL) |
2137 { | |
2138 ga_clear(&ga); | |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24872
diff
changeset
|
2139 ret_msg = e_out_of_memory; |
1185 | 2140 goto theend; |
389 | 2141 } |
503 | 2142 LANGP_ENTRY(ga, ga.ga_len)->lp_slang = slang; |
389 | 2143 LANGP_ENTRY(ga, ga.ga_len)->lp_region = region_mask; |
2144 ++ga.ga_len; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2145 use_midword(slang, wp); |
503 | 2146 if (slang->sl_nobreak) |
501 | 2147 nobreak = TRUE; |
307 | 2148 } |
385 | 2149 } |
2150 } | |
2151 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2152 // round 0: load int_wordlist, if possible. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2153 // round 1: load first name in 'spellfile'. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2154 // round 2: load second name in 'spellfile. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2155 // etc. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2156 spf = curwin->w_s->b_p_spf; |
385 | 2157 for (round = 0; round == 0 || *spf != NUL; ++round) |
2158 { | |
2159 if (round == 0) | |
2160 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2161 // Internal wordlist, if there is one. |
385 | 2162 if (int_wordlist == NULL) |
381 | 2163 continue; |
385 | 2164 int_wordlist_spl(spf_name); |
381 | 2165 } |
2166 else | |
2167 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2168 // One entry in 'spellfile'. |
385 | 2169 copy_option_part(&spf, spf_name, MAXPATHL - 5, ","); |
2170 STRCAT(spf_name, ".spl"); | |
2171 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2172 // If it was already found above then skip it. |
385 | 2173 for (c = 0; c < ga.ga_len; ++c) |
500 | 2174 { |
2175 p = LANGP_ENTRY(ga, c)->lp_slang->sl_fname; | |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2176 if (p != NULL && fullpathcmp(spf_name, p, FALSE, TRUE) |
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2177 == FPC_SAME) |
385 | 2178 break; |
500 | 2179 } |
385 | 2180 if (c < ga.ga_len) |
381 | 2181 continue; |
2182 } | |
2183 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2184 // Check if it was loaded already. |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
2185 FOR_ALL_SPELL_LANGS(slang) |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2186 if (fullpathcmp(spf_name, slang->sl_fname, FALSE, TRUE) |
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
2187 == FPC_SAME) |
323 | 2188 break; |
503 | 2189 if (slang == NULL) |
323 | 2190 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2191 // Not loaded, try loading it now. The language name includes the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2192 // region name, the region is ignored otherwise. for int_wordlist |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2193 // use an arbitrary name. |
385 | 2194 if (round == 0) |
2195 STRCPY(lang, "internal wordlist"); | |
2196 else | |
2197 { | |
2198 vim_strncpy(lang, gettail(spf_name), MAXWLEN); | |
381 | 2199 p = vim_strchr(lang, '.'); |
2200 if (p != NULL) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2201 *p = NUL; // truncate at ".encoding.add" |
381 | 2202 } |
503 | 2203 slang = spell_load_file(spf_name, lang, NULL, TRUE); |
501 | 2204 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2205 // If one of the languages has NOBREAK we assume the addition |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2206 // files also have this. |
503 | 2207 if (slang != NULL && nobreak) |
2208 slang->sl_nobreak = TRUE; | |
2209 } | |
2210 if (slang != NULL && ga_grow(&ga, 1) == OK) | |
323 | 2211 { |
389 | 2212 region_mask = REGION_ALL; |
2213 if (use_region != NULL && !dont_use_region) | |
2214 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2215 // find region in sl_regions |
503 | 2216 c = find_region(slang->sl_regions, use_region); |
389 | 2217 if (c != REGION_ALL) |
2218 region_mask = 1 << c; | |
503 | 2219 else if (*slang->sl_regions != NUL) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2220 // This spell file is for other regions. |
389 | 2221 region_mask = 0; |
2222 } | |
2223 | |
2224 if (region_mask != 0) | |
2225 { | |
503 | 2226 LANGP_ENTRY(ga, ga.ga_len)->lp_slang = slang; |
2227 LANGP_ENTRY(ga, ga.ga_len)->lp_sallang = NULL; | |
2228 LANGP_ENTRY(ga, ga.ga_len)->lp_replang = NULL; | |
389 | 2229 LANGP_ENTRY(ga, ga.ga_len)->lp_region = region_mask; |
2230 ++ga.ga_len; | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2231 use_midword(slang, wp); |
389 | 2232 } |
323 | 2233 } |
2234 } | |
2235 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2236 // Everything is fine, store the new b_langp value. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2237 ga_clear(&wp->w_s->b_langp); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2238 wp->w_s->b_langp = ga; |
236 | 2239 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2240 // For each language figure out what language to use for sound folding and |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2241 // REP items. If the language doesn't support it itself use another one |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2242 // with the same name. E.g. for "en-math" use "en". |
503 | 2243 for (i = 0; i < ga.ga_len; ++i) |
2244 { | |
2245 lp = LANGP_ENTRY(ga, i); | |
2246 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2247 // sound folding |
503 | 2248 if (lp->lp_slang->sl_sal.ga_len > 0) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2249 // language does sound folding itself |
503 | 2250 lp->lp_sallang = lp->lp_slang; |
2251 else | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2252 // find first similar language that does sound folding |
503 | 2253 for (j = 0; j < ga.ga_len; ++j) |
2254 { | |
2255 lp2 = LANGP_ENTRY(ga, j); | |
2256 if (lp2->lp_slang->sl_sal.ga_len > 0 | |
2257 && STRNCMP(lp->lp_slang->sl_name, | |
2258 lp2->lp_slang->sl_name, 2) == 0) | |
2259 { | |
2260 lp->lp_sallang = lp2->lp_slang; | |
2261 break; | |
2262 } | |
2263 } | |
2264 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2265 // REP items |
503 | 2266 if (lp->lp_slang->sl_rep.ga_len > 0) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2267 // language has REP items itself |
503 | 2268 lp->lp_replang = lp->lp_slang; |
2269 else | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2270 // find first similar language that has REP items |
503 | 2271 for (j = 0; j < ga.ga_len; ++j) |
2272 { | |
2273 lp2 = LANGP_ENTRY(ga, j); | |
2274 if (lp2->lp_slang->sl_rep.ga_len > 0 | |
2275 && STRNCMP(lp->lp_slang->sl_name, | |
2276 lp2->lp_slang->sl_name, 2) == 0) | |
2277 { | |
2278 lp->lp_replang = lp2->lp_slang; | |
2279 break; | |
2280 } | |
2281 } | |
2282 } | |
22444
9f4c3e20b5f7
patch 8.2.1770: invalid memory use when using SpellFileMissing autocmd
Bram Moolenaar <Bram@vim.org>
parents:
22294
diff
changeset
|
2283 redraw_win_later(wp, NOT_VALID); |
503 | 2284 |
1185 | 2285 theend: |
2286 vim_free(spl_copy); | |
2287 recursive = FALSE; | |
2288 return ret_msg; | |
236 | 2289 } |
2290 | |
2291 /* | |
376 | 2292 * Clear the midword characters for buffer "buf". |
2293 */ | |
2294 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2295 clear_midword(win_T *wp) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2296 { |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
2297 CLEAR_FIELD(wp->w_s->b_spell_ismw); |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
2298 VIM_CLEAR(wp->w_s->b_spell_ismw_mb); |
376 | 2299 } |
2300 | |
2301 /* | |
2302 * Use the "sl_midword" field of language "lp" for buffer "buf". | |
2303 * They add up to any currently used midword characters. | |
2304 */ | |
2305 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2306 use_midword(slang_T *lp, win_T *wp) |
376 | 2307 { |
2308 char_u *p; | |
2309 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2310 if (lp->sl_midword == NULL) // there aren't any |
389 | 2311 return; |
2312 | |
376 | 2313 for (p = lp->sl_midword; *p != NUL; ) |
2314 if (has_mbyte) | |
2315 { | |
2316 int c, l, n; | |
2317 char_u *bp; | |
2318 | |
2319 c = mb_ptr2char(p); | |
474 | 2320 l = (*mb_ptr2len)(p); |
2321 if (c < 256 && l <= 2) | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2322 wp->w_s->b_spell_ismw[c] = TRUE; |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2323 else if (wp->w_s->b_spell_ismw_mb == NULL) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2324 // First multi-byte char in "b_spell_ismw_mb". |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2325 wp->w_s->b_spell_ismw_mb = vim_strnsave(p, l); |
376 | 2326 else |
2327 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2328 // Append multi-byte chars to "b_spell_ismw_mb". |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2329 n = (int)STRLEN(wp->w_s->b_spell_ismw_mb); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2330 bp = vim_strnsave(wp->w_s->b_spell_ismw_mb, n + l); |
376 | 2331 if (bp != NULL) |
2332 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2333 vim_free(wp->w_s->b_spell_ismw_mb); |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2334 wp->w_s->b_spell_ismw_mb = bp; |
376 | 2335 vim_strncpy(bp + n, p, l); |
2336 } | |
2337 } | |
2338 p += l; | |
2339 } | |
2340 else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2341 wp->w_s->b_spell_ismw[*p++] = TRUE; |
376 | 2342 } |
2343 | |
2344 /* | |
236 | 2345 * Find the region "region[2]" in "rp" (points to "sl_regions"). |
15034
6e4e0d43b20b
patch 8.1.0528: various typos in comments
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2346 * Each region is simply stored as the two characters of its name. |
381 | 2347 * Returns the index if found (first is 0), REGION_ALL if not found. |
236 | 2348 */ |
2349 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2350 find_region(char_u *rp, char_u *region) |
236 | 2351 { |
2352 int i; | |
2353 | |
2354 for (i = 0; ; i += 2) | |
2355 { | |
2356 if (rp[i] == NUL) | |
2357 return REGION_ALL; | |
2358 if (rp[i] == region[0] && rp[i + 1] == region[1]) | |
2359 break; | |
2360 } | |
2361 return i / 2; | |
2362 } | |
2363 | |
2364 /* | |
323 | 2365 * Return case type of word: |
236 | 2366 * w word 0 |
300 | 2367 * Word WF_ONECAP |
2368 * W WORD WF_ALLCAP | |
2369 * WoRd wOrd WF_KEEPCAP | |
236 | 2370 */ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
2371 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2372 captype( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2373 char_u *word, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2374 char_u *end) // When NULL use up to NUL byte. |
236 | 2375 { |
2376 char_u *p; | |
2377 int c; | |
2378 int firstcap; | |
2379 int allcap; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2380 int past_second = FALSE; // past second word char |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2381 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2382 // find first letter |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
2383 for (p = word; !spell_iswordp_nmw(p, curwin); MB_PTR_ADV(p)) |
323 | 2384 if (end == NULL ? *p == NUL : p >= end) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2385 return 0; // only non-word characters, illegal word |
310 | 2386 if (has_mbyte) |
2387 c = mb_ptr2char_adv(&p); | |
2388 else | |
2389 c = *p++; | |
324 | 2390 firstcap = allcap = SPELL_ISUPPER(c); |
236 | 2391 |
2392 /* | |
2393 * Need to check all letters to find a word with mixed upper/lower. | |
2394 * But a word with an upper char only at start is a ONECAP. | |
2395 */ | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
2396 for ( ; end == NULL ? *p != NUL : p < end; MB_PTR_ADV(p)) |
5477 | 2397 if (spell_iswordp_nmw(p, curwin)) |
236 | 2398 { |
455 | 2399 c = PTR2CHAR(p); |
324 | 2400 if (!SPELL_ISUPPER(c)) |
236 | 2401 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2402 // UUl -> KEEPCAP |
236 | 2403 if (past_second && allcap) |
300 | 2404 return WF_KEEPCAP; |
236 | 2405 allcap = FALSE; |
2406 } | |
2407 else if (!allcap) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2408 // UlU -> KEEPCAP |
300 | 2409 return WF_KEEPCAP; |
236 | 2410 past_second = TRUE; |
2411 } | |
2412 | |
2413 if (allcap) | |
300 | 2414 return WF_ALLCAP; |
236 | 2415 if (firstcap) |
300 | 2416 return WF_ONECAP; |
236 | 2417 return 0; |
2418 } | |
2419 | |
474 | 2420 /* |
5519 | 2421 * Delete the internal wordlist and its .spl file. |
2422 */ | |
2423 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2424 spell_delete_wordlist(void) |
5519 | 2425 { |
2426 char_u fname[MAXPATHL]; | |
2427 | |
2428 if (int_wordlist != NULL) | |
2429 { | |
2430 mch_remove(int_wordlist); | |
2431 int_wordlist_spl(fname); | |
2432 mch_remove(fname); | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
2433 VIM_CLEAR(int_wordlist); |
5519 | 2434 } |
2435 } | |
2436 | |
355 | 2437 /* |
2438 * Free all languages. | |
2439 */ | |
2440 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2441 spell_free_all(void) |
355 | 2442 { |
503 | 2443 slang_T *slang; |
355 | 2444 buf_T *buf; |
2445 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2446 // Go through all buffers and handle 'spelllang'. <VN> |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
2447 FOR_ALL_BUFFERS(buf) |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2448 ga_clear(&buf->b_s.b_langp); |
355 | 2449 |
2450 while (first_lang != NULL) | |
2451 { | |
503 | 2452 slang = first_lang; |
2453 first_lang = slang->sl_next; | |
2454 slang_free(slang); | |
355 | 2455 } |
366 | 2456 |
5519 | 2457 spell_delete_wordlist(); |
381 | 2458 |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
2459 VIM_CLEAR(repl_to); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
2460 VIM_CLEAR(repl_from); |
355 | 2461 } |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2462 |
236 | 2463 /* |
2464 * Clear all spelling tables and reload them. | |
307 | 2465 * Used after 'encoding' is set and when ":mkspell" was used. |
236 | 2466 */ |
2467 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2468 spell_reload(void) |
236 | 2469 { |
316 | 2470 win_T *wp; |
236 | 2471 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2472 // Initialize the table for spell_iswordp(). |
236 | 2473 init_spell_chartab(); |
2474 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2475 // Unload all allocated memory. |
355 | 2476 spell_free_all(); |
236 | 2477 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2478 // Go through all buffers and handle 'spelllang'. |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
2479 FOR_ALL_WINDOWS(wp) |
236 | 2480 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2481 // Only load the wordlists when 'spelllang' is set and there is a |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2482 // window for this buffer in which 'spell' is set. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2483 if (*wp->w_s->b_p_spl != NUL) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2484 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2485 if (wp->w_p_spell) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2486 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2487 (void)did_set_spelllang(wp); |
316 | 2488 break; |
2489 } | |
2490 } | |
236 | 2491 } |
2492 } | |
2493 | |
310 | 2494 /* |
625 | 2495 * Open a spell buffer. This is a nameless buffer that is not in the buffer |
2496 * list and only contains text lines. Can use a swapfile to reduce memory | |
2497 * use. | |
2498 * Most other fields are invalid! Esp. watch out for string options being | |
2499 * NULL and there is no undo info. | |
2500 * Returns NULL when out of memory. | |
2501 */ | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
2502 buf_T * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2503 open_spellbuf(void) |
625 | 2504 { |
2505 buf_T *buf; | |
2506 | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2507 buf = ALLOC_CLEAR_ONE(buf_T); |
625 | 2508 if (buf != NULL) |
2509 { | |
2510 buf->b_spell = TRUE; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2511 buf->b_p_swf = TRUE; // may create a swap file |
5204
7aca84c0cd37
updated for version 7.4a.028
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2512 #ifdef FEAT_CRYPT |
7aca84c0cd37
updated for version 7.4a.028
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2513 buf->b_p_key = empty_option; |
7aca84c0cd37
updated for version 7.4a.028
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2514 #endif |
625 | 2515 ml_open(buf); |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2516 ml_open_file(buf); // create swap file now |
625 | 2517 } |
2518 return buf; | |
2519 } | |
2520 | |
2521 /* | |
2522 * Close the buffer used for spell info. | |
2523 */ | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
2524 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2525 close_spellbuf(buf_T *buf) |
625 | 2526 { |
2527 if (buf != NULL) | |
2528 { | |
2529 ml_close(buf, TRUE); | |
2530 vim_free(buf); | |
2531 } | |
2532 } | |
2533 | |
307 | 2534 /* |
2535 * Init the chartab used for spelling for ASCII. | |
2536 */ | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
2537 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2538 clear_spell_chartab(spelltab_T *sp) |
307 | 2539 { |
324 | 2540 int i; |
307 | 2541 |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
2542 // Init everything to FALSE (zero). |
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
2543 CLEAR_FIELD(sp->st_isw); |
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
2544 CLEAR_FIELD(sp->st_isu); |
307 | 2545 for (i = 0; i < 256; ++i) |
324 | 2546 { |
307 | 2547 sp->st_fold[i] = i; |
324 | 2548 sp->st_upper[i] = i; |
2549 } | |
307 | 2550 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2551 // We include digits. A word shouldn't start with a digit, but handling |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2552 // that is done separately. |
307 | 2553 for (i = '0'; i <= '9'; ++i) |
2554 sp->st_isw[i] = TRUE; | |
2555 for (i = 'A'; i <= 'Z'; ++i) | |
2556 { | |
2557 sp->st_isw[i] = TRUE; | |
2558 sp->st_isu[i] = TRUE; | |
2559 sp->st_fold[i] = i + 0x20; | |
2560 } | |
2561 for (i = 'a'; i <= 'z'; ++i) | |
324 | 2562 { |
307 | 2563 sp->st_isw[i] = TRUE; |
324 | 2564 sp->st_upper[i] = i - 0x20; |
2565 } | |
307 | 2566 } |
2567 | |
2568 /* | |
2569 * Init the chartab used for spelling. Only depends on 'encoding'. | |
2570 * Called once while starting up and when 'encoding' changes. | |
2571 * The default is to use isalpha(), but the spell file should define the word | |
2572 * characters to make it possible that 'encoding' differs from the current | |
390 | 2573 * locale. For utf-8 we don't use isalpha() but our own functions. |
307 | 2574 */ |
2575 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2576 init_spell_chartab(void) |
307 | 2577 { |
2578 int i; | |
2579 | |
2580 did_set_spelltab = FALSE; | |
2581 clear_spell_chartab(&spelltab); | |
2582 if (enc_dbcs) | |
2583 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2584 // DBCS: assume double-wide characters are word characters. |
307 | 2585 for (i = 128; i <= 255; ++i) |
2586 if (MB_BYTE2LEN(i) == 2) | |
2587 spelltab.st_isw[i] = TRUE; | |
2588 } | |
324 | 2589 else if (enc_utf8) |
2590 { | |
2591 for (i = 128; i < 256; ++i) | |
2592 { | |
2140
12aba62fa7c6
updated for version 7.2.422
Bram Moolenaar <bram@zimbu.org>
parents:
2046
diff
changeset
|
2593 int f = utf_fold(i); |
12aba62fa7c6
updated for version 7.2.422
Bram Moolenaar <bram@zimbu.org>
parents:
2046
diff
changeset
|
2594 int u = utf_toupper(i); |
12aba62fa7c6
updated for version 7.2.422
Bram Moolenaar <bram@zimbu.org>
parents:
2046
diff
changeset
|
2595 |
324 | 2596 spelltab.st_isu[i] = utf_isupper(i); |
2597 spelltab.st_isw[i] = spelltab.st_isu[i] || utf_islower(i); | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2598 // The folded/upper-cased value is different between latin1 and |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2599 // utf8 for 0xb5, causing E763 for no good reason. Use the latin1 |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2600 // value for utf-8 to avoid this. |
2140
12aba62fa7c6
updated for version 7.2.422
Bram Moolenaar <bram@zimbu.org>
parents:
2046
diff
changeset
|
2601 spelltab.st_fold[i] = (f < 256) ? f : i; |
12aba62fa7c6
updated for version 7.2.422
Bram Moolenaar <bram@zimbu.org>
parents:
2046
diff
changeset
|
2602 spelltab.st_upper[i] = (u < 256) ? u : i; |
324 | 2603 } |
2604 } | |
307 | 2605 else |
2606 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2607 // Rough guess: use locale-dependent library functions. |
307 | 2608 for (i = 128; i < 256; ++i) |
2609 { | |
2610 if (MB_ISUPPER(i)) | |
2611 { | |
324 | 2612 spelltab.st_isw[i] = TRUE; |
307 | 2613 spelltab.st_isu[i] = TRUE; |
2614 spelltab.st_fold[i] = MB_TOLOWER(i); | |
2615 } | |
324 | 2616 else if (MB_ISLOWER(i)) |
2617 { | |
2618 spelltab.st_isw[i] = TRUE; | |
2619 spelltab.st_upper[i] = MB_TOUPPER(i); | |
2620 } | |
307 | 2621 } |
2622 } | |
2623 } | |
2624 | |
2625 | |
2626 /* | |
358 | 2627 * Return TRUE if "p" points to a word character. |
366 | 2628 * As a special case we see "midword" characters as word character when it is |
358 | 2629 * followed by a word character. This finds they'there but not 'they there'. |
366 | 2630 * Thus this only works properly when past the first character of the word. |
358 | 2631 */ |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17940
diff
changeset
|
2632 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2633 spell_iswordp( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2634 char_u *p, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2635 win_T *wp) // buffer used |
358 | 2636 { |
2637 char_u *s; | |
366 | 2638 int l; |
2639 int c; | |
2640 | |
2641 if (has_mbyte) | |
2642 { | |
18251
c8a53c0daeed
patch 8.1.2120: some MB_ macros are more complicated than necessary
Bram Moolenaar <Bram@vim.org>
parents:
18172
diff
changeset
|
2643 l = mb_ptr2len(p); |
358 | 2644 s = p; |
366 | 2645 if (l == 1) |
2646 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2647 // be quick for ASCII |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2648 if (wp->w_s->b_spell_ismw[*p]) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2649 s = p + 1; // skip a mid-word character |
366 | 2650 } |
2651 else | |
2652 { | |
2653 c = mb_ptr2char(p); | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2654 if (c < 256 ? wp->w_s->b_spell_ismw[c] |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2655 : (wp->w_s->b_spell_ismw_mb != NULL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2656 && vim_strchr(wp->w_s->b_spell_ismw_mb, c) != NULL)) |
366 | 2657 s = p + l; |
2658 } | |
2659 | |
390 | 2660 c = mb_ptr2char(s); |
2661 if (c > 255) | |
5477 | 2662 return spell_mb_isword_class(mb_get_class(s), wp); |
390 | 2663 return spelltab.st_isw[c]; |
366 | 2664 } |
2665 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2666 return spelltab.st_isw[wp->w_s->b_spell_ismw[*p] ? p[1] : p[0]]; |
376 | 2667 } |
2668 | |
2669 /* | |
2670 * Return TRUE if "p" points to a word character. | |
2671 * Unlike spell_iswordp() this doesn't check for "midword" characters. | |
2672 */ | |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17940
diff
changeset
|
2673 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2674 spell_iswordp_nmw(char_u *p, win_T *wp) |
376 | 2675 { |
390 | 2676 int c; |
2677 | |
2678 if (has_mbyte) | |
2679 { | |
2680 c = mb_ptr2char(p); | |
2681 if (c > 255) | |
5477 | 2682 return spell_mb_isword_class(mb_get_class(p), wp); |
390 | 2683 return spelltab.st_isw[c]; |
2684 } | |
376 | 2685 return spelltab.st_isw[*p]; |
358 | 2686 } |
2687 | |
372 | 2688 /* |
1580 | 2689 * Return TRUE if word class indicates a word character. |
2690 * Only for characters above 255. | |
2691 * Unicode subscript and superscript are not considered word characters. | |
5477 | 2692 * See also dbcs_class() and utf_class() in mbyte.c. |
2693 */ | |
2694 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2695 spell_mb_isword_class(int cl, win_T *wp) |
5477 | 2696 { |
2697 if (wp->w_s->b_cjk) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2698 // East Asian characters are not considered word characters. |
5477 | 2699 return cl == 2 || cl == 0x2800; |
17434
26e8d42987ca
patch 8.1.1715: emoji characters are seen as word characters for spelling
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2700 return cl >= 2 && cl != 0x2070 && cl != 0x2080 && cl != 3; |
1580 | 2701 } |
2702 | |
2703 /* | |
372 | 2704 * Return TRUE if "p" points to a word character. |
2705 * Wide version of spell_iswordp(). | |
2706 */ | |
2707 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2708 spell_iswordp_w(int *p, win_T *wp) |
372 | 2709 { |
2710 int *s; | |
2711 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2712 if (*p < 256 ? wp->w_s->b_spell_ismw[*p] |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2713 : (wp->w_s->b_spell_ismw_mb != NULL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2714 && vim_strchr(wp->w_s->b_spell_ismw_mb, *p) != NULL)) |
372 | 2715 s = p + 1; |
2716 else | |
2717 s = p; | |
2718 | |
390 | 2719 if (*s > 255) |
372 | 2720 { |
2721 if (enc_utf8) | |
5477 | 2722 return spell_mb_isword_class(utf_class(*s), wp); |
372 | 2723 if (enc_dbcs) |
5477 | 2724 return spell_mb_isword_class( |
2725 dbcs_class((unsigned)*s >> 8, *s & 0xff), wp); | |
372 | 2726 return 0; |
2727 } | |
2728 return spelltab.st_isw[*s]; | |
2729 } | |
2730 | |
358 | 2731 /* |
324 | 2732 * Case-fold "str[len]" into "buf[buflen]". The result is NUL terminated. |
2733 * Uses the character definitions from the .spl file. | |
307 | 2734 * When using a multi-byte 'encoding' the length may change! |
2735 * Returns FAIL when something wrong. | |
2736 */ | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
2737 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2738 spell_casefold( |
24872
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2739 win_T *wp, |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2740 char_u *str, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2741 int len, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2742 char_u *buf, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2743 int buflen) |
307 | 2744 { |
2745 int i; | |
2746 | |
2747 if (len >= buflen) | |
2748 { | |
2749 buf[0] = NUL; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2750 return FAIL; // result will not fit |
307 | 2751 } |
2752 | |
2753 if (has_mbyte) | |
2754 { | |
324 | 2755 int outi = 0; |
2756 char_u *p; | |
307 | 2757 int c; |
2758 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2759 // Fold one character at a time. |
324 | 2760 for (p = str; p < str + len; ) |
307 | 2761 { |
2762 if (outi + MB_MAXBYTES > buflen) | |
2763 { | |
2764 buf[outi] = NUL; | |
2765 return FAIL; | |
2766 } | |
474 | 2767 c = mb_cptr2char_adv(&p); |
24872
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2768 |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2769 // Exception: greek capital sigma 0x03A3 folds to 0x03C3, except |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2770 // when it is the last character in a word, then it folds to |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2771 // 0x03C2. |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2772 if (c == 0x03a3 || c == 0x03c2) |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2773 { |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2774 if (p == str + len || !spell_iswordp(p, wp)) |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2775 c = 0x03c2; |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2776 else |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2777 c = 0x03c3; |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2778 } |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2779 else |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2780 c = SPELL_TOFOLD(c); |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2781 |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
2782 outi += mb_char2bytes(c, buf + outi); |
307 | 2783 } |
2784 buf[outi] = NUL; | |
2785 } | |
2786 else | |
2787 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2788 // Be quick for non-multibyte encodings. |
307 | 2789 for (i = 0; i < len; ++i) |
324 | 2790 buf[i] = spelltab.st_fold[str[i]]; |
307 | 2791 buf[i] = NUL; |
2792 } | |
2793 | |
2794 return OK; | |
2795 } | |
2796 | |
344 | 2797 /* |
475 | 2798 * Check if the word at line "lnum" column "col" is required to start with a |
2799 * capital. This uses 'spellcapcheck' of the current buffer. | |
2800 */ | |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17940
diff
changeset
|
2801 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2802 check_need_cap(linenr_T lnum, colnr_T col) |
475 | 2803 { |
2804 int need_cap = FALSE; | |
2805 char_u *line; | |
2806 char_u *line_copy = NULL; | |
2807 char_u *p; | |
2808 colnr_T endcol; | |
2809 regmatch_T regmatch; | |
2810 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2811 if (curwin->w_s->b_cap_prog == NULL) |
475 | 2812 return FALSE; |
2813 | |
2814 line = ml_get_curline(); | |
2815 endcol = 0; | |
12323
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
2816 if (getwhitecols(line) >= (int)col) |
475 | 2817 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2818 // At start of line, check if previous line is empty or sentence |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2819 // ends there. |
475 | 2820 if (lnum == 1) |
2821 need_cap = TRUE; | |
2822 else | |
2823 { | |
2824 line = ml_get(lnum - 1); | |
2825 if (*skipwhite(line) == NUL) | |
2826 need_cap = TRUE; | |
2827 else | |
2828 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2829 // Append a space in place of the line break. |
475 | 2830 line_copy = concat_str(line, (char_u *)" "); |
2831 line = line_copy; | |
835 | 2832 endcol = (colnr_T)STRLEN(line); |
475 | 2833 } |
2834 } | |
2835 } | |
2836 else | |
2837 endcol = col; | |
2838 | |
2839 if (endcol > 0) | |
2840 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2841 // Check if sentence ends before the bad word. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
2842 regmatch.regprog = curwin->w_s->b_cap_prog; |
475 | 2843 regmatch.rm_ic = FALSE; |
2844 p = line + endcol; | |
2845 for (;;) | |
2846 { | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
2847 MB_PTR_BACK(line, p); |
5477 | 2848 if (p == line || spell_iswordp_nmw(p, curwin)) |
475 | 2849 break; |
2850 if (vim_regexec(®match, p, 0) | |
2851 && regmatch.endp[0] == line + endcol) | |
2852 { | |
2853 need_cap = TRUE; | |
2854 break; | |
2855 } | |
2856 } | |
6375 | 2857 curwin->w_s->b_cap_prog = regmatch.regprog; |
475 | 2858 } |
2859 | |
2860 vim_free(line_copy); | |
2861 | |
2862 return need_cap; | |
2863 } | |
2864 | |
2865 | |
2866 /* | |
372 | 2867 * ":spellrepall" |
2868 */ | |
2869 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2870 ex_spellrepall(exarg_T *eap UNUSED) |
372 | 2871 { |
2872 pos_T pos = curwin->w_cursor; | |
2873 char_u *frompat; | |
2874 int addlen; | |
2875 char_u *line; | |
2876 char_u *p; | |
2877 int save_ws = p_ws; | |
483 | 2878 linenr_T prev_lnum = 0; |
372 | 2879 |
2880 if (repl_from == NULL || repl_to == NULL) | |
2881 { | |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2882 emsg(_(e_no_previous_spell_replacement)); |
372 | 2883 return; |
2884 } | |
835 | 2885 addlen = (int)(STRLEN(repl_to) - STRLEN(repl_from)); |
2886 | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
2887 frompat = alloc(STRLEN(repl_from) + 7); |
372 | 2888 if (frompat == NULL) |
2889 return; | |
2890 sprintf((char *)frompat, "\\V\\<%s\\>", repl_from); | |
2891 p_ws = FALSE; | |
2892 | |
483 | 2893 sub_nsubs = 0; |
2894 sub_nlines = 0; | |
372 | 2895 curwin->w_cursor.lnum = 0; |
2896 while (!got_int) | |
2897 { | |
19475
5512aa74cb62
patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
2898 if (do_search(NULL, '/', '/', frompat, 1L, SEARCH_KEEP, NULL) == 0 |
372 | 2899 || u_save_cursor() == FAIL) |
2900 break; | |
2901 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2902 // Only replace when the right word isn't there yet. This happens |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2903 // when changing "etc" to "etc.". |
372 | 2904 line = ml_get_curline(); |
2905 if (addlen <= 0 || STRNCMP(line + curwin->w_cursor.col, | |
2906 repl_to, STRLEN(repl_to)) != 0) | |
2907 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
2908 p = alloc(STRLEN(line) + addlen + 1); |
372 | 2909 if (p == NULL) |
2910 break; | |
2911 mch_memmove(p, line, curwin->w_cursor.col); | |
2912 STRCPY(p + curwin->w_cursor.col, repl_to); | |
2913 STRCAT(p, line + curwin->w_cursor.col + STRLEN(repl_from)); | |
2914 ml_replace(curwin->w_cursor.lnum, p, FALSE); | |
2915 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col); | |
483 | 2916 |
2917 if (curwin->w_cursor.lnum != prev_lnum) | |
2918 { | |
2919 ++sub_nlines; | |
2920 prev_lnum = curwin->w_cursor.lnum; | |
2921 } | |
2922 ++sub_nsubs; | |
372 | 2923 } |
835 | 2924 curwin->w_cursor.col += (colnr_T)STRLEN(repl_to); |
372 | 2925 } |
2926 | |
2927 p_ws = save_ws; | |
2928 curwin->w_cursor = pos; | |
2929 vim_free(frompat); | |
2930 | |
483 | 2931 if (sub_nsubs == 0) |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2932 semsg(_(e_not_found_str), repl_from); |
483 | 2933 else |
2934 do_sub_msg(FALSE); | |
372 | 2935 } |
2936 | |
2937 /* | |
324 | 2938 * Make a copy of "word", with the first letter upper or lower cased, to |
2939 * "wcopy[MAXWLEN]". "word" must not be empty. | |
2940 * The result is NUL terminated. | |
323 | 2941 */ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
2942 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2943 onecap_copy( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2944 char_u *word, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2945 char_u *wcopy, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2946 int upper) // TRUE: first letter made upper case |
323 | 2947 { |
2948 char_u *p; | |
2949 int c; | |
2950 int l; | |
2951 | |
2952 p = word; | |
2953 if (has_mbyte) | |
474 | 2954 c = mb_cptr2char_adv(&p); |
323 | 2955 else |
2956 c = *p++; | |
2957 if (upper) | |
324 | 2958 c = SPELL_TOUPPER(c); |
323 | 2959 else |
324 | 2960 c = SPELL_TOFOLD(c); |
323 | 2961 if (has_mbyte) |
2962 l = mb_char2bytes(c, wcopy); | |
2963 else | |
2964 { | |
2965 l = 1; | |
2966 wcopy[0] = c; | |
2967 } | |
376 | 2968 vim_strncpy(wcopy + l, p, MAXWLEN - l - 1); |
323 | 2969 } |
2970 | |
2971 /* | |
324 | 2972 * Make a copy of "word" with all the letters upper cased into |
2973 * "wcopy[MAXWLEN]". The result is NUL terminated. | |
323 | 2974 */ |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17940
diff
changeset
|
2975 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2976 allcap_copy(char_u *word, char_u *wcopy) |
323 | 2977 { |
2978 char_u *s; | |
2979 char_u *d; | |
2980 int c; | |
2981 | |
2982 d = wcopy; | |
2983 for (s = word; *s != NUL; ) | |
2984 { | |
2985 if (has_mbyte) | |
474 | 2986 c = mb_cptr2char_adv(&s); |
323 | 2987 else |
2988 c = *s++; | |
492 | 2989 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2990 // We only change 0xdf to SS when we are certain latin1 is used. It |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
2991 // would cause weird errors in other 8-bit encodings. |
492 | 2992 if (enc_latin1like && c == 0xdf) |
2993 { | |
2994 c = 'S'; | |
2995 if (d - wcopy >= MAXWLEN - 1) | |
2996 break; | |
2997 *d++ = c; | |
2998 } | |
2999 else | |
3000 c = SPELL_TOUPPER(c); | |
323 | 3001 |
3002 if (has_mbyte) | |
3003 { | |
3004 if (d - wcopy >= MAXWLEN - MB_MAXBYTES) | |
3005 break; | |
3006 d += mb_char2bytes(c, d); | |
3007 } | |
3008 else | |
3009 { | |
3010 if (d - wcopy >= MAXWLEN - 1) | |
3011 break; | |
3012 *d++ = c; | |
3013 } | |
3014 } | |
3015 *d = NUL; | |
3016 } | |
3017 | |
3018 /* | |
455 | 3019 * Case-folding may change the number of bytes: Count nr of chars in |
3020 * fword[flen] and return the byte length of that many chars in "word". | |
3021 */ | |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17940
diff
changeset
|
3022 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3023 nofold_len(char_u *fword, int flen, char_u *word) |
455 | 3024 { |
3025 char_u *p; | |
3026 int i = 0; | |
3027 | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3028 for (p = fword; p < fword + flen; MB_PTR_ADV(p)) |
455 | 3029 ++i; |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3030 for (p = word; i > 0; MB_PTR_ADV(p)) |
455 | 3031 --i; |
3032 return (int)(p - word); | |
3033 } | |
3034 | |
323 | 3035 /* |
324 | 3036 * Copy "fword" to "cword", fixing case according to "flags". |
323 | 3037 */ |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17940
diff
changeset
|
3038 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3039 make_case_word(char_u *fword, char_u *cword, int flags) |
323 | 3040 { |
3041 if (flags & WF_ALLCAP) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3042 // Make it all upper-case |
323 | 3043 allcap_copy(fword, cword); |
3044 else if (flags & WF_ONECAP) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3045 // Make the first letter upper-case |
324 | 3046 onecap_copy(fword, cword, TRUE); |
323 | 3047 else |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3048 // Use goodword as-is. |
323 | 3049 STRCPY(cword, fword); |
3050 } | |
3051 | |
372 | 3052 #if defined(FEAT_EVAL) || defined(PROTO) |
3053 /* | |
3054 * Soundfold a string, for soundfold(). | |
3055 * Result is in allocated memory, NULL for an error. | |
3056 */ | |
3057 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3058 eval_soundfold(char_u *word) |
372 | 3059 { |
3060 langp_T *lp; | |
3061 char_u sound[MAXWLEN]; | |
500 | 3062 int lpi; |
372 | 3063 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3064 if (curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3065 // Use the sound-folding of the first language that supports it. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3066 for (lpi = 0; lpi < curwin->w_s->b_langp.ga_len; ++lpi) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3067 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3068 lp = LANGP_ENTRY(curwin->w_s->b_langp, lpi); |
372 | 3069 if (lp->lp_slang->sl_sal.ga_len > 0) |
3070 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3071 // soundfold the word |
375 | 3072 spell_soundfold(lp->lp_slang, word, FALSE, sound); |
372 | 3073 return vim_strsave(sound); |
3074 } | |
500 | 3075 } |
372 | 3076 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3077 // No language with sound folding, return word as-is. |
372 | 3078 return vim_strsave(word); |
3079 } | |
3080 #endif | |
3081 | |
323 | 3082 /* |
3083 * Turn "inword" into its sound-a-like equivalent in "res[MAXWLEN]". | |
485 | 3084 * |
3085 * There are many ways to turn a word into a sound-a-like representation. The | |
3086 * oldest is Soundex (1918!). A nice overview can be found in "Approximate | |
3087 * swedish name matching - survey and test of different algorithms" by Klas | |
3088 * Erikson. | |
3089 * | |
3090 * We support two methods: | |
3091 * 1. SOFOFROM/SOFOTO do a simple character mapping. | |
3092 * 2. SAL items define a more advanced sound-folding (and much slower). | |
323 | 3093 */ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9570
diff
changeset
|
3094 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3095 spell_soundfold( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3096 slang_T *slang, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3097 char_u *inword, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3098 int folded, // "inword" is already case-folded |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3099 char_u *res) |
375 | 3100 { |
3101 char_u fword[MAXWLEN]; | |
3102 char_u *word; | |
3103 | |
3104 if (slang->sl_sofo) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3105 // SOFOFROM and SOFOTO used |
375 | 3106 spell_soundfold_sofo(slang, inword, res); |
3107 else | |
3108 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3109 // SAL items used. Requires the word to be case-folded. |
375 | 3110 if (folded) |
3111 word = inword; | |
3112 else | |
3113 { | |
24872
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
3114 (void)spell_casefold(curwin, |
59cfa23bd9eb
patch 8.2.2974: Greek spell checking uses wrong case folding
Bram Moolenaar <Bram@vim.org>
parents:
23422
diff
changeset
|
3115 inword, (int)STRLEN(inword), fword, MAXWLEN); |
375 | 3116 word = fword; |
3117 } | |
3118 | |
3119 if (has_mbyte) | |
3120 spell_soundfold_wsal(slang, word, res); | |
3121 else | |
3122 spell_soundfold_sal(slang, word, res); | |
3123 } | |
3124 } | |
3125 | |
3126 /* | |
3127 * Perform sound folding of "inword" into "res" according to SOFOFROM and | |
3128 * SOFOTO lines. | |
3129 */ | |
3130 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3131 spell_soundfold_sofo(slang_T *slang, char_u *inword, char_u *res) |
375 | 3132 { |
3133 char_u *s; | |
3134 int ri = 0; | |
3135 int c; | |
3136 | |
3137 if (has_mbyte) | |
3138 { | |
3139 int prevc = 0; | |
3140 int *ip; | |
3141 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3142 // The sl_sal_first[] table contains the translation for chars up to |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3143 // 255, sl_sal the rest. |
375 | 3144 for (s = inword; *s != NUL; ) |
3145 { | |
474 | 3146 c = mb_cptr2char_adv(&s); |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3147 if (enc_utf8 ? utf_class(c) == 0 : VIM_ISWHITE(c)) |
375 | 3148 c = ' '; |
3149 else if (c < 256) | |
3150 c = slang->sl_sal_first[c]; | |
3151 else | |
3152 { | |
3153 ip = ((int **)slang->sl_sal.ga_data)[c & 0xff]; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3154 if (ip == NULL) // empty list, can't match |
375 | 3155 c = NUL; |
3156 else | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3157 for (;;) // find "c" in the list |
375 | 3158 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3159 if (*ip == 0) // not found |
375 | 3160 { |
3161 c = NUL; | |
3162 break; | |
3163 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3164 if (*ip == c) // match! |
375 | 3165 { |
3166 c = ip[1]; | |
3167 break; | |
3168 } | |
3169 ip += 2; | |
3170 } | |
3171 } | |
3172 | |
3173 if (c != NUL && c != prevc) | |
3174 { | |
3175 ri += mb_char2bytes(c, res + ri); | |
3176 if (ri + MB_MAXBYTES > MAXWLEN) | |
3177 break; | |
3178 prevc = c; | |
3179 } | |
3180 } | |
3181 } | |
3182 else | |
3183 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3184 // The sl_sal_first[] table contains the translation. |
375 | 3185 for (s = inword; (c = *s) != NUL; ++s) |
3186 { | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3187 if (VIM_ISWHITE(c)) |
375 | 3188 c = ' '; |
3189 else | |
3190 c = slang->sl_sal_first[c]; | |
3191 if (c != NUL && (ri == 0 || res[ri - 1] != c)) | |
3192 res[ri++] = c; | |
3193 } | |
3194 } | |
3195 | |
3196 res[ri] = NUL; | |
3197 } | |
3198 | |
3199 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3200 spell_soundfold_sal(slang_T *slang, char_u *inword, char_u *res) |
323 | 3201 { |
344 | 3202 salitem_T *smp; |
323 | 3203 char_u word[MAXWLEN]; |
375 | 3204 char_u *s = inword; |
323 | 3205 char_u *t; |
344 | 3206 char_u *pf; |
323 | 3207 int i, j, z; |
344 | 3208 int reslen; |
323 | 3209 int n, k = 0; |
3210 int z0; | |
3211 int k0; | |
3212 int n0; | |
3213 int c; | |
3214 int pri; | |
3215 int p0 = -333; | |
3216 int c0; | |
3217 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3218 // Remove accents, if wanted. We actually remove all non-word characters. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3219 // But keep white space. We need a copy, the word may be changed here. |
323 | 3220 if (slang->sl_rem_accents) |
3221 { | |
3222 t = word; | |
375 | 3223 while (*s != NUL) |
323 | 3224 { |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3225 if (VIM_ISWHITE(*s)) |
344 | 3226 { |
3227 *t++ = ' '; | |
3228 s = skipwhite(s); | |
3229 } | |
323 | 3230 else |
3231 { | |
5477 | 3232 if (spell_iswordp_nmw(s, curwin)) |
323 | 3233 *t++ = *s; |
3234 ++s; | |
3235 } | |
3236 } | |
3237 *t = NUL; | |
3238 } | |
3239 else | |
2768 | 3240 vim_strncpy(word, s, MAXWLEN - 1); |
323 | 3241 |
344 | 3242 smp = (salitem_T *)slang->sl_sal.ga_data; |
323 | 3243 |
3244 /* | |
3245 * This comes from Aspell phonet.cpp. Converted from C++ to C. | |
324 | 3246 * Changed to keep spaces. |
323 | 3247 */ |
344 | 3248 i = reslen = z = 0; |
323 | 3249 while ((c = word[i]) != NUL) |
3250 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3251 // Start with the first rule that has the character in the word. |
323 | 3252 n = slang->sl_sal_first[c]; |
3253 z0 = 0; | |
3254 | |
3255 if (n >= 0) | |
3256 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3257 // check all rules for the same letter |
344 | 3258 for (; (s = smp[n].sm_lead)[0] == c; ++n) |
323 | 3259 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3260 // Quickly skip entries that don't match the word. Most |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26441
diff
changeset
|
3261 // entries are less than three chars, optimize for that. |
344 | 3262 k = smp[n].sm_leadlen; |
3263 if (k > 1) | |
323 | 3264 { |
344 | 3265 if (word[i + 1] != s[1]) |
3266 continue; | |
3267 if (k > 2) | |
3268 { | |
3269 for (j = 2; j < k; ++j) | |
3270 if (word[i + j] != s[j]) | |
3271 break; | |
3272 if (j < k) | |
3273 continue; | |
3274 } | |
323 | 3275 } |
3276 | |
375 | 3277 if ((pf = smp[n].sm_oneof) != NULL) |
323 | 3278 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3279 // Check for match with one of the chars in "sm_oneof". |
344 | 3280 while (*pf != NUL && *pf != word[i + k]) |
3281 ++pf; | |
3282 if (*pf == NUL) | |
3283 continue; | |
3284 ++k; | |
323 | 3285 } |
344 | 3286 s = smp[n].sm_rules; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3287 pri = 5; // default priority |
323 | 3288 |
3289 p0 = *s; | |
3290 k0 = k; | |
3291 while (*s == '-' && k > 1) | |
3292 { | |
3293 k--; | |
3294 s++; | |
3295 } | |
3296 if (*s == '<') | |
3297 s++; | |
344 | 3298 if (VIM_ISDIGIT(*s)) |
323 | 3299 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3300 // determine priority |
323 | 3301 pri = *s - '0'; |
3302 s++; | |
3303 } | |
3304 if (*s == '^' && *(s + 1) == '^') | |
3305 s++; | |
3306 | |
3307 if (*s == NUL | |
3308 || (*s == '^' | |
324 | 3309 && (i == 0 || !(word[i - 1] == ' ' |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3310 || spell_iswordp(word + i - 1, curwin))) |
323 | 3311 && (*(s + 1) != '$' |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3312 || (!spell_iswordp(word + i + k0, curwin)))) |
323 | 3313 || (*s == '$' && i > 0 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3314 && spell_iswordp(word + i - 1, curwin) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3315 && (!spell_iswordp(word + i + k0, curwin)))) |
323 | 3316 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3317 // search for followup rules, if: |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3318 // followup and k > 1 and NO '-' in searchstring |
323 | 3319 c0 = word[i + k - 1]; |
3320 n0 = slang->sl_sal_first[c0]; | |
3321 | |
3322 if (slang->sl_followup && k > 1 && n0 >= 0 | |
344 | 3323 && p0 != '-' && word[i + k] != NUL) |
323 | 3324 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3325 // test follow-up rule for "word[i + k]" |
344 | 3326 for ( ; (s = smp[n0].sm_lead)[0] == c0; ++n0) |
323 | 3327 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3328 // Quickly skip entries that don't match the word. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3329 // |
344 | 3330 k0 = smp[n0].sm_leadlen; |
3331 if (k0 > 1) | |
323 | 3332 { |
344 | 3333 if (word[i + k] != s[1]) |
3334 continue; | |
3335 if (k0 > 2) | |
3336 { | |
3337 pf = word + i + k + 1; | |
3338 for (j = 2; j < k0; ++j) | |
3339 if (*pf++ != s[j]) | |
3340 break; | |
3341 if (j < k0) | |
3342 continue; | |
3343 } | |
323 | 3344 } |
344 | 3345 k0 += k - 1; |
3346 | |
375 | 3347 if ((pf = smp[n0].sm_oneof) != NULL) |
323 | 3348 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3349 // Check for match with one of the chars in |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3350 // "sm_oneof". |
344 | 3351 while (*pf != NUL && *pf != word[i + k0]) |
3352 ++pf; | |
3353 if (*pf == NUL) | |
3354 continue; | |
3355 ++k0; | |
323 | 3356 } |
344 | 3357 |
3358 p0 = 5; | |
3359 s = smp[n0].sm_rules; | |
323 | 3360 while (*s == '-') |
3361 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3362 // "k0" gets NOT reduced because |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3363 // "if (k0 == k)" |
323 | 3364 s++; |
3365 } | |
3366 if (*s == '<') | |
3367 s++; | |
344 | 3368 if (VIM_ISDIGIT(*s)) |
323 | 3369 { |
3370 p0 = *s - '0'; | |
3371 s++; | |
3372 } | |
3373 | |
3374 if (*s == NUL | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3375 // *s == '^' cuts |
323 | 3376 || (*s == '$' |
376 | 3377 && !spell_iswordp(word + i + k0, |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3378 curwin))) |
323 | 3379 { |
3380 if (k0 == k) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3381 // this is just a piece of the string |
323 | 3382 continue; |
3383 | |
3384 if (p0 < pri) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3385 // priority too low |
323 | 3386 continue; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3387 // rule fits; stop search |
323 | 3388 break; |
3389 } | |
3390 } | |
3391 | |
344 | 3392 if (p0 >= pri && smp[n0].sm_lead[0] == c0) |
323 | 3393 continue; |
3394 } | |
3395 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3396 // replace string |
344 | 3397 s = smp[n].sm_to; |
389 | 3398 if (s == NULL) |
3399 s = (char_u *)""; | |
344 | 3400 pf = smp[n].sm_rules; |
3401 p0 = (vim_strchr(pf, '<') != NULL) ? 1 : 0; | |
323 | 3402 if (p0 == 1 && z == 0) |
3403 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3404 // rule with '<' is used |
344 | 3405 if (reslen > 0 && *s != NUL && (res[reslen - 1] == c |
3406 || res[reslen - 1] == *s)) | |
3407 reslen--; | |
323 | 3408 z0 = 1; |
3409 z = 1; | |
3410 k0 = 0; | |
372 | 3411 while (*s != NUL && word[i + k0] != NUL) |
323 | 3412 { |
3413 word[i + k0] = *s; | |
3414 k0++; | |
3415 s++; | |
3416 } | |
3417 if (k > k0) | |
1619 | 3418 STRMOVE(word + i + k0, word + i + k); |
323 | 3419 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3420 // new "actual letter" |
323 | 3421 c = word[i]; |
3422 } | |
3423 else | |
3424 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3425 // no '<' rule used |
323 | 3426 i += k - 1; |
3427 z = 0; | |
344 | 3428 while (*s != NUL && s[1] != NUL && reslen < MAXWLEN) |
323 | 3429 { |
344 | 3430 if (reslen == 0 || res[reslen - 1] != *s) |
372 | 3431 res[reslen++] = *s; |
323 | 3432 s++; |
3433 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3434 // new "actual letter" |
323 | 3435 c = *s; |
344 | 3436 if (strstr((char *)pf, "^^") != NULL) |
323 | 3437 { |
3438 if (c != NUL) | |
372 | 3439 res[reslen++] = c; |
1619 | 3440 STRMOVE(word, word + i + 1); |
323 | 3441 i = 0; |
3442 z0 = 1; | |
3443 } | |
3444 } | |
3445 break; | |
3446 } | |
3447 } | |
3448 } | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3449 else if (VIM_ISWHITE(c)) |
324 | 3450 { |
3451 c = ' '; | |
3452 k = 1; | |
3453 } | |
323 | 3454 |
3455 if (z0 == 0) | |
3456 { | |
344 | 3457 if (k && !p0 && reslen < MAXWLEN && c != NUL |
3458 && (!slang->sl_collapse || reslen == 0 | |
3459 || res[reslen - 1] != c)) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3460 // condense only double letters |
372 | 3461 res[reslen++] = c; |
323 | 3462 |
3463 i++; | |
3464 z = 0; | |
3465 k = 0; | |
3466 } | |
3467 } | |
3468 | |
344 | 3469 res[reslen] = NUL; |
323 | 3470 } |
3471 | |
372 | 3472 /* |
3473 * Turn "inword" into its sound-a-like equivalent in "res[MAXWLEN]". | |
3474 * Multi-byte version of spell_soundfold(). | |
3475 */ | |
3476 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3477 spell_soundfold_wsal(slang_T *slang, char_u *inword, char_u *res) |
372 | 3478 { |
375 | 3479 salitem_T *smp = (salitem_T *)slang->sl_sal.ga_data; |
372 | 3480 int word[MAXWLEN]; |
3481 int wres[MAXWLEN]; | |
3482 int l; | |
3483 char_u *s; | |
3484 int *ws; | |
3485 char_u *t; | |
3486 int *pf; | |
3487 int i, j, z; | |
3488 int reslen; | |
3489 int n, k = 0; | |
3490 int z0; | |
3491 int k0; | |
3492 int n0; | |
3493 int c; | |
3494 int pri; | |
3495 int p0 = -333; | |
3496 int c0; | |
3497 int did_white = FALSE; | |
3520 | 3498 int wordlen; |
3499 | |
372 | 3500 |
3501 /* | |
3502 * Convert the multi-byte string to a wide-character string. | |
3503 * Remove accents, if wanted. We actually remove all non-word characters. | |
3504 * But keep white space. | |
3505 */ | |
3520 | 3506 wordlen = 0; |
372 | 3507 for (s = inword; *s != NUL; ) |
3508 { | |
3509 t = s; | |
474 | 3510 c = mb_cptr2char_adv(&s); |
372 | 3511 if (slang->sl_rem_accents) |
3512 { | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3513 if (enc_utf8 ? utf_class(c) == 0 : VIM_ISWHITE(c)) |
372 | 3514 { |
3515 if (did_white) | |
3516 continue; | |
3517 c = ' '; | |
3518 did_white = TRUE; | |
3519 } | |
3520 else | |
3521 { | |
3522 did_white = FALSE; | |
5477 | 3523 if (!spell_iswordp_nmw(t, curwin)) |
372 | 3524 continue; |
3525 } | |
3526 } | |
3520 | 3527 word[wordlen++] = c; |
3528 } | |
3529 word[wordlen] = NUL; | |
372 | 3530 |
3531 /* | |
3520 | 3532 * This algorithm comes from Aspell phonet.cpp. |
372 | 3533 * Converted from C++ to C. Added support for multi-byte chars. |
3534 * Changed to keep spaces. | |
3535 */ | |
3536 i = reslen = z = 0; | |
3537 while ((c = word[i]) != NUL) | |
3538 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3539 // Start with the first rule that has the character in the word. |
372 | 3540 n = slang->sl_sal_first[c & 0xff]; |
3541 z0 = 0; | |
3542 | |
3543 if (n >= 0) | |
3544 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3545 // Check all rules for the same index byte. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3546 // If c is 0x300 need extra check for the end of the array, as |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3547 // (c & 0xff) is NUL. |
2455
9367de3e2e1b
Fix: crash in spell checking with a 0x300 character.
Bram Moolenaar <bram@vim.org>
parents:
2454
diff
changeset
|
3548 for (; ((ws = smp[n].sm_lead_w)[0] & 0xff) == (c & 0xff) |
9367de3e2e1b
Fix: crash in spell checking with a 0x300 character.
Bram Moolenaar <bram@vim.org>
parents:
2454
diff
changeset
|
3549 && ws[0] != NUL; ++n) |
372 | 3550 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3551 // Quickly skip entries that don't match the word. Most |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26441
diff
changeset
|
3552 // entries are less than three chars, optimize for that. |
375 | 3553 if (c != ws[0]) |
3554 continue; | |
372 | 3555 k = smp[n].sm_leadlen; |
3556 if (k > 1) | |
3557 { | |
3558 if (word[i + 1] != ws[1]) | |
3559 continue; | |
3560 if (k > 2) | |
3561 { | |
3562 for (j = 2; j < k; ++j) | |
3563 if (word[i + j] != ws[j]) | |
3564 break; | |
3565 if (j < k) | |
3566 continue; | |
3567 } | |
3568 } | |
3569 | |
375 | 3570 if ((pf = smp[n].sm_oneof_w) != NULL) |
372 | 3571 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3572 // Check for match with one of the chars in "sm_oneof". |
372 | 3573 while (*pf != NUL && *pf != word[i + k]) |
3574 ++pf; | |
3575 if (*pf == NUL) | |
3576 continue; | |
3577 ++k; | |
3578 } | |
3579 s = smp[n].sm_rules; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3580 pri = 5; // default priority |
372 | 3581 |
3582 p0 = *s; | |
3583 k0 = k; | |
3584 while (*s == '-' && k > 1) | |
3585 { | |
3586 k--; | |
3587 s++; | |
3588 } | |
3589 if (*s == '<') | |
3590 s++; | |
3591 if (VIM_ISDIGIT(*s)) | |
3592 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3593 // determine priority |
372 | 3594 pri = *s - '0'; |
3595 s++; | |
3596 } | |
3597 if (*s == '^' && *(s + 1) == '^') | |
3598 s++; | |
3599 | |
3600 if (*s == NUL | |
3601 || (*s == '^' | |
3602 && (i == 0 || !(word[i - 1] == ' ' | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3603 || spell_iswordp_w(word + i - 1, curwin))) |
372 | 3604 && (*(s + 1) != '$' |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3605 || (!spell_iswordp_w(word + i + k0, curwin)))) |
372 | 3606 || (*s == '$' && i > 0 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3607 && spell_iswordp_w(word + i - 1, curwin) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3608 && (!spell_iswordp_w(word + i + k0, curwin)))) |
372 | 3609 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3610 // search for followup rules, if: |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3611 // followup and k > 1 and NO '-' in searchstring |
372 | 3612 c0 = word[i + k - 1]; |
3613 n0 = slang->sl_sal_first[c0 & 0xff]; | |
3614 | |
3615 if (slang->sl_followup && k > 1 && n0 >= 0 | |
3616 && p0 != '-' && word[i + k] != NUL) | |
3617 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3618 // Test follow-up rule for "word[i + k]"; loop over |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3619 // all entries with the same index byte. |
372 | 3620 for ( ; ((ws = smp[n0].sm_lead_w)[0] & 0xff) |
3621 == (c0 & 0xff); ++n0) | |
3622 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3623 // Quickly skip entries that don't match the word. |
375 | 3624 if (c0 != ws[0]) |
3625 continue; | |
372 | 3626 k0 = smp[n0].sm_leadlen; |
3627 if (k0 > 1) | |
3628 { | |
3629 if (word[i + k] != ws[1]) | |
3630 continue; | |
3631 if (k0 > 2) | |
3632 { | |
3633 pf = word + i + k + 1; | |
3634 for (j = 2; j < k0; ++j) | |
3635 if (*pf++ != ws[j]) | |
3636 break; | |
3637 if (j < k0) | |
3638 continue; | |
3639 } | |
3640 } | |
3641 k0 += k - 1; | |
3642 | |
375 | 3643 if ((pf = smp[n0].sm_oneof_w) != NULL) |
372 | 3644 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3645 // Check for match with one of the chars in |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3646 // "sm_oneof". |
372 | 3647 while (*pf != NUL && *pf != word[i + k0]) |
3648 ++pf; | |
3649 if (*pf == NUL) | |
3650 continue; | |
3651 ++k0; | |
3652 } | |
3653 | |
3654 p0 = 5; | |
3655 s = smp[n0].sm_rules; | |
3656 while (*s == '-') | |
3657 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3658 // "k0" gets NOT reduced because |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3659 // "if (k0 == k)" |
372 | 3660 s++; |
3661 } | |
3662 if (*s == '<') | |
3663 s++; | |
3664 if (VIM_ISDIGIT(*s)) | |
3665 { | |
3666 p0 = *s - '0'; | |
3667 s++; | |
3668 } | |
3669 | |
3670 if (*s == NUL | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3671 // *s == '^' cuts |
372 | 3672 || (*s == '$' |
376 | 3673 && !spell_iswordp_w(word + i + k0, |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3674 curwin))) |
372 | 3675 { |
3676 if (k0 == k) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3677 // this is just a piece of the string |
372 | 3678 continue; |
3679 | |
3680 if (p0 < pri) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3681 // priority too low |
372 | 3682 continue; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3683 // rule fits; stop search |
372 | 3684 break; |
3685 } | |
3686 } | |
3687 | |
3688 if (p0 >= pri && (smp[n0].sm_lead_w[0] & 0xff) | |
3689 == (c0 & 0xff)) | |
3690 continue; | |
3691 } | |
3692 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3693 // replace string |
372 | 3694 ws = smp[n].sm_to_w; |
3695 s = smp[n].sm_rules; | |
3696 p0 = (vim_strchr(s, '<') != NULL) ? 1 : 0; | |
3697 if (p0 == 1 && z == 0) | |
3698 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3699 // rule with '<' is used |
389 | 3700 if (reslen > 0 && ws != NULL && *ws != NUL |
3701 && (wres[reslen - 1] == c | |
372 | 3702 || wres[reslen - 1] == *ws)) |
3703 reslen--; | |
3704 z0 = 1; | |
3705 z = 1; | |
3706 k0 = 0; | |
389 | 3707 if (ws != NULL) |
3708 while (*ws != NUL && word[i + k0] != NUL) | |
3709 { | |
3710 word[i + k0] = *ws; | |
3711 k0++; | |
3712 ws++; | |
3713 } | |
372 | 3714 if (k > k0) |
3715 mch_memmove(word + i + k0, word + i + k, | |
3520 | 3716 sizeof(int) * (wordlen - (i + k) + 1)); |
372 | 3717 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3718 // new "actual letter" |
372 | 3719 c = word[i]; |
3720 } | |
3721 else | |
3722 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3723 // no '<' rule used |
372 | 3724 i += k - 1; |
3725 z = 0; | |
389 | 3726 if (ws != NULL) |
3727 while (*ws != NUL && ws[1] != NUL | |
3728 && reslen < MAXWLEN) | |
3729 { | |
3730 if (reslen == 0 || wres[reslen - 1] != *ws) | |
3731 wres[reslen++] = *ws; | |
3732 ws++; | |
3733 } | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3734 // new "actual letter" |
389 | 3735 if (ws == NULL) |
3736 c = NUL; | |
3737 else | |
3738 c = *ws; | |
372 | 3739 if (strstr((char *)s, "^^") != NULL) |
3740 { | |
3741 if (c != NUL) | |
3742 wres[reslen++] = c; | |
3743 mch_memmove(word, word + i + 1, | |
3520 | 3744 sizeof(int) * (wordlen - (i + 1) + 1)); |
372 | 3745 i = 0; |
3746 z0 = 1; | |
3747 } | |
3748 } | |
3749 break; | |
3750 } | |
3751 } | |
3752 } | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3753 else if (VIM_ISWHITE(c)) |
372 | 3754 { |
3755 c = ' '; | |
3756 k = 1; | |
3757 } | |
3758 | |
3759 if (z0 == 0) | |
3760 { | |
3761 if (k && !p0 && reslen < MAXWLEN && c != NUL | |
3762 && (!slang->sl_collapse || reslen == 0 | |
3763 || wres[reslen - 1] != c)) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3764 // condense only double letters |
372 | 3765 wres[reslen++] = c; |
3766 | |
3767 i++; | |
3768 z = 0; | |
3769 k = 0; | |
3770 } | |
3771 } | |
3772 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3773 // Convert wide characters in "wres" to a multi-byte string in "res". |
372 | 3774 l = 0; |
3775 for (n = 0; n < reslen; ++n) | |
3776 { | |
3777 l += mb_char2bytes(wres[n], res + l); | |
3778 if (l + MB_MAXBYTES > MAXWLEN) | |
3779 break; | |
3780 } | |
3781 res[l] = NUL; | |
3782 } | |
3783 | |
324 | 3784 /* |
714 | 3785 * ":spellinfo" |
3786 */ | |
3787 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3788 ex_spellinfo(exarg_T *eap UNUSED) |
714 | 3789 { |
3790 int lpi; | |
3791 langp_T *lp; | |
3792 char_u *p; | |
3793 | |
3794 if (no_spell_checking(curwin)) | |
3795 return; | |
3796 | |
3797 msg_start(); | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3798 for (lpi = 0; lpi < curwin->w_s->b_langp.ga_len && !got_int; ++lpi) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3799 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3800 lp = LANGP_ENTRY(curwin->w_s->b_langp, lpi); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3801 msg_puts("file: "); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3802 msg_puts((char *)lp->lp_slang->sl_fname); |
714 | 3803 msg_putchar('\n'); |
3804 p = lp->lp_slang->sl_info; | |
3805 if (p != NULL) | |
3806 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3807 msg_puts((char *)p); |
714 | 3808 msg_putchar('\n'); |
3809 } | |
3810 } | |
3811 msg_end(); | |
3812 } | |
3813 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3814 #define DUMPFLAG_KEEPCASE 1 // round 2: keep-case tree |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3815 #define DUMPFLAG_COUNT 2 // include word count |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3816 #define DUMPFLAG_ICASE 4 // ignore case when finding matches |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3817 #define DUMPFLAG_ONECAP 8 // pattern starts with capital |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3818 #define DUMPFLAG_ALLCAP 16 // pattern is all capitals |
625 | 3819 |
351 | 3820 /* |
3821 * ":spelldump" | |
3822 */ | |
3823 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3824 ex_spelldump(exarg_T *eap) |
351 | 3825 { |
5382 | 3826 char_u *spl; |
3827 long dummy; | |
3828 | |
701 | 3829 if (no_spell_checking(curwin)) |
3830 return; | |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
25567
diff
changeset
|
3831 (void)get_option_value((char_u*)"spl", &dummy, &spl, NULL, OPT_LOCAL); |
5382 | 3832 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3833 // Create a new empty buffer in a new window. |
701 | 3834 do_cmdline_cmd((char_u *)"new"); |
5382 | 3835 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3836 // enable spelling locally in the new window |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
3837 set_option_value_give_err((char_u*)"spell", TRUE, (char_u*)"", OPT_LOCAL); |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
3838 set_option_value_give_err((char_u*)"spl", dummy, spl, OPT_LOCAL); |
5382 | 3839 vim_free(spl); |
3840 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10950
diff
changeset
|
3841 if (!BUFEMPTY()) |
701 | 3842 return; |
3843 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3844 spell_dump_compl(NULL, 0, NULL, eap->forceit ? DUMPFLAG_COUNT : 0); |
701 | 3845 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3846 // Delete the empty line that we started with. |
701 | 3847 if (curbuf->b_ml.ml_line_count > 1) |
20599
d571231175b4
patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
3848 ml_delete(curbuf->b_ml.ml_line_count); |
701 | 3849 |
3850 redraw_later(NOT_VALID); | |
3851 } | |
3852 | |
3853 /* | |
3854 * Go through all possible words and: | |
3855 * 1. When "pat" is NULL: dump a list of all words in the current buffer. | |
3856 * "ic" and "dir" are not used. | |
3857 * 2. When "pat" is not NULL: add matching words to insert mode completion. | |
3858 */ | |
3859 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3860 spell_dump_compl( |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3861 char_u *pat, // leading part of the word |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3862 int ic, // ignore case |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3863 int *dir, // direction for adding matches |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3864 int dumpflags_arg) // DUMPFLAG_* |
701 | 3865 { |
351 | 3866 langp_T *lp; |
3867 slang_T *slang; | |
3868 idx_T arridx[MAXWLEN]; | |
3869 int curi[MAXWLEN]; | |
3870 char_u word[MAXWLEN]; | |
3871 int c; | |
3872 char_u *byts; | |
3873 idx_T *idxs; | |
3874 linenr_T lnum = 0; | |
3875 int round; | |
3876 int depth; | |
3877 int n; | |
3878 int flags; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3879 char_u *region_names = NULL; // region names being used |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3880 int do_region = TRUE; // dump region names and numbers |
381 | 3881 char_u *p; |
500 | 3882 int lpi; |
701 | 3883 int dumpflags = dumpflags_arg; |
3884 int patlen; | |
3885 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3886 // When ignoring case or when the pattern starts with capital pass this on |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3887 // to dump_word(). |
710 | 3888 if (pat != NULL) |
3889 { | |
3890 if (ic) | |
3891 dumpflags |= DUMPFLAG_ICASE; | |
3892 else | |
3893 { | |
3894 n = captype(pat, NULL); | |
3895 if (n == WF_ONECAP) | |
3896 dumpflags |= DUMPFLAG_ONECAP; | |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3897 else if (n == WF_ALLCAP && (int)STRLEN(pat) > mb_ptr2len(pat)) |
710 | 3898 dumpflags |= DUMPFLAG_ALLCAP; |
3899 } | |
3900 } | |
351 | 3901 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3902 // Find out if we can support regions: All languages must support the same |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3903 // regions or none at all. |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3904 for (lpi = 0; lpi < curwin->w_s->b_langp.ga_len; ++lpi) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3905 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3906 lp = LANGP_ENTRY(curwin->w_s->b_langp, lpi); |
381 | 3907 p = lp->lp_slang->sl_regions; |
3908 if (p[0] != 0) | |
3909 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3910 if (region_names == NULL) // first language with regions |
381 | 3911 region_names = p; |
3912 else if (STRCMP(region_names, p) != 0) | |
3913 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3914 do_region = FALSE; // region names are different |
381 | 3915 break; |
3916 } | |
3917 } | |
3918 } | |
3919 | |
3920 if (do_region && region_names != NULL) | |
3921 { | |
701 | 3922 if (pat == NULL) |
3923 { | |
3924 vim_snprintf((char *)IObuff, IOSIZE, "/regions=%s", region_names); | |
3925 ml_append(lnum++, IObuff, (colnr_T)0, FALSE); | |
3926 } | |
381 | 3927 } |
3928 else | |
3929 do_region = FALSE; | |
3930 | |
3931 /* | |
3932 * Loop over all files loaded for the entries in 'spelllang'. | |
3933 */ | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3934 for (lpi = 0; lpi < curwin->w_s->b_langp.ga_len; ++lpi) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3935 { |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
3936 lp = LANGP_ENTRY(curwin->w_s->b_langp, lpi); |
351 | 3937 slang = lp->lp_slang; |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3938 if (slang->sl_fbyts == NULL) // reloading failed |
500 | 3939 continue; |
351 | 3940 |
701 | 3941 if (pat == NULL) |
3942 { | |
3943 vim_snprintf((char *)IObuff, IOSIZE, "# file: %s", slang->sl_fname); | |
3944 ml_append(lnum++, IObuff, (colnr_T)0, FALSE); | |
3945 } | |
3946 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3947 // When matching with a pattern and there are no prefixes only use |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3948 // parts of the tree that match "pat". |
701 | 3949 if (pat != NULL && slang->sl_pbyts == NULL) |
835 | 3950 patlen = (int)STRLEN(pat); |
701 | 3951 else |
840 | 3952 patlen = -1; |
351 | 3953 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3954 // round 1: case-folded tree |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3955 // round 2: keep-case tree |
351 | 3956 for (round = 1; round <= 2; ++round) |
3957 { | |
3958 if (round == 1) | |
3959 { | |
701 | 3960 dumpflags &= ~DUMPFLAG_KEEPCASE; |
351 | 3961 byts = slang->sl_fbyts; |
3962 idxs = slang->sl_fidxs; | |
3963 } | |
3964 else | |
3965 { | |
701 | 3966 dumpflags |= DUMPFLAG_KEEPCASE; |
351 | 3967 byts = slang->sl_kbyts; |
3968 idxs = slang->sl_kidxs; | |
3969 } | |
3970 if (byts == NULL) | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3971 continue; // array is empty |
351 | 3972 |
3973 depth = 0; | |
3974 arridx[0] = 0; | |
3975 curi[0] = 1; | |
701 | 3976 while (depth >= 0 && !got_int |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3977 && (pat == NULL || !ins_compl_interrupted())) |
351 | 3978 { |
3979 if (curi[depth] > byts[arridx[depth]]) | |
3980 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3981 // Done all bytes at this node, go up one level. |
351 | 3982 --depth; |
3983 line_breakcheck(); | |
10277
154d5a2e7395
commit https://github.com/vim/vim/commit/472e85970ee3a80abd824bef510df12e9cfe9e96
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3984 ins_compl_check_keys(50, FALSE); |
351 | 3985 } |
3986 else | |
3987 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3988 // Do one more byte at this node. |
351 | 3989 n = arridx[depth] + curi[depth]; |
3990 ++curi[depth]; | |
3991 c = byts[n]; | |
3992 if (c == 0) | |
3993 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3994 // End of word, deal with the word. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3995 // Don't use keep-case words in the fold-case tree, |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3996 // they will appear in the keep-case tree. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
3997 // Only use the word when the region matches. |
351 | 3998 flags = (int)idxs[n]; |
3999 if ((round == 2 || (flags & WF_KEEPCAP) == 0) | |
500 | 4000 && (flags & WF_NEEDCOMP) == 0 |
381 | 4001 && (do_region |
4002 || (flags & WF_REGION) == 0 | |
390 | 4003 || (((unsigned)flags >> 16) |
351 | 4004 & lp->lp_region) != 0)) |
4005 { | |
4006 word[depth] = NUL; | |
381 | 4007 if (!do_region) |
4008 flags &= ~WF_REGION; | |
355 | 4009 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4010 // Dump the basic word if there is no prefix or |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4011 // when it's the first one. |
390 | 4012 c = (unsigned)flags >> 24; |
355 | 4013 if (c == 0 || curi[depth] == 2) |
701 | 4014 { |
4015 dump_word(slang, word, pat, dir, | |
4016 dumpflags, flags, lnum); | |
4017 if (pat == NULL) | |
4018 ++lnum; | |
4019 } | |
351 | 4020 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4021 // Apply the prefix, if there is one. |
355 | 4022 if (c != 0) |
701 | 4023 lnum = dump_prefixes(slang, word, pat, dir, |
4024 dumpflags, flags, lnum); | |
351 | 4025 } |
4026 } | |
4027 else | |
4028 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4029 // Normal char, go one level deeper. |
351 | 4030 word[depth++] = c; |
4031 arridx[depth] = idxs[n]; | |
4032 curi[depth] = 1; | |
701 | 4033 |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26441
diff
changeset
|
4034 // Check if this character matches with the pattern. |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4035 // If not skip the whole tree below it. |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4036 // Always ignore case here, dump_word() will check |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4037 // proper case later. This isn't exactly right when |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4038 // length changes for multi-byte characters with |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4039 // ignore case... |
710 | 4040 if (depth <= patlen |
4041 && MB_STRNICMP(word, pat, depth) != 0) | |
701 | 4042 --depth; |
351 | 4043 } |
4044 } | |
4045 } | |
4046 } | |
4047 } | |
4048 } | |
4049 | |
4050 /* | |
4051 * Dump one word: apply case modifications and append a line to the buffer. | |
701 | 4052 * When "lnum" is zero add insert mode completion. |
4053 */ | |
4054 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4055 dump_word( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4056 slang_T *slang, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4057 char_u *word, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4058 char_u *pat, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4059 int *dir, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4060 int dumpflags, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4061 int wordflags, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4062 linenr_T lnum) |
351 | 4063 { |
4064 int keepcap = FALSE; | |
4065 char_u *p; | |
625 | 4066 char_u *tw; |
351 | 4067 char_u cword[MAXWLEN]; |
381 | 4068 char_u badword[MAXWLEN + 10]; |
4069 int i; | |
710 | 4070 int flags = wordflags; |
4071 | |
4072 if (dumpflags & DUMPFLAG_ONECAP) | |
4073 flags |= WF_ONECAP; | |
4074 if (dumpflags & DUMPFLAG_ALLCAP) | |
4075 flags |= WF_ALLCAP; | |
351 | 4076 |
625 | 4077 if ((dumpflags & DUMPFLAG_KEEPCASE) == 0 && (flags & WF_CAPMASK) != 0) |
351 | 4078 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4079 // Need to fix case according to "flags". |
351 | 4080 make_case_word(word, cword, flags); |
4081 p = cword; | |
4082 } | |
4083 else | |
4084 { | |
4085 p = word; | |
625 | 4086 if ((dumpflags & DUMPFLAG_KEEPCASE) |
4087 && ((captype(word, NULL) & WF_KEEPCAP) == 0 | |
389 | 4088 || (flags & WF_FIXCAP) != 0)) |
351 | 4089 keepcap = TRUE; |
4090 } | |
625 | 4091 tw = p; |
351 | 4092 |
701 | 4093 if (pat == NULL) |
4094 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4095 // Add flags and regions after a slash. |
701 | 4096 if ((flags & (WF_BANNED | WF_RARE | WF_REGION)) || keepcap) |
4097 { | |
4098 STRCPY(badword, p); | |
4099 STRCAT(badword, "/"); | |
4100 if (keepcap) | |
4101 STRCAT(badword, "="); | |
4102 if (flags & WF_BANNED) | |
4103 STRCAT(badword, "!"); | |
4104 else if (flags & WF_RARE) | |
4105 STRCAT(badword, "?"); | |
4106 if (flags & WF_REGION) | |
4107 for (i = 0; i < 7; ++i) | |
4108 if (flags & (0x10000 << i)) | |
4109 sprintf((char *)badword + STRLEN(badword), "%d", i + 1); | |
4110 p = badword; | |
4111 } | |
4112 | |
4113 if (dumpflags & DUMPFLAG_COUNT) | |
4114 { | |
4115 hashitem_T *hi; | |
4116 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4117 // Include the word count for ":spelldump!". |
701 | 4118 hi = hash_find(&slang->sl_wordcount, tw); |
4119 if (!HASHITEM_EMPTY(hi)) | |
4120 { | |
4121 vim_snprintf((char *)IObuff, IOSIZE, "%s\t%d", | |
625 | 4122 tw, HI2WC(hi)->wc_count); |
701 | 4123 p = IObuff; |
4124 } | |
4125 } | |
4126 | |
4127 ml_append(lnum, p, (colnr_T)0, FALSE); | |
4128 } | |
710 | 4129 else if (((dumpflags & DUMPFLAG_ICASE) |
4130 ? MB_STRNICMP(p, pat, STRLEN(pat)) == 0 | |
4131 : STRNCMP(p, pat, STRLEN(pat)) == 0) | |
701 | 4132 && ins_compl_add_infercase(p, (int)STRLEN(p), |
16239
5df26b29e809
patch 8.1.1124: insert completion flags are mixed up
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
4133 p_ic, NULL, *dir, FALSE) == OK) |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4134 // if dir was BACKWARD then honor it just once |
710 | 4135 *dir = FORWARD; |
351 | 4136 } |
4137 | |
4138 /* | |
372 | 4139 * For ":spelldump": Find matching prefixes for "word". Prepend each to |
4140 * "word" and append a line to the buffer. | |
701 | 4141 * When "lnum" is zero add insert mode completion. |
351 | 4142 * Return the updated line number. |
4143 */ | |
4144 static linenr_T | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4145 dump_prefixes( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4146 slang_T *slang, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4147 char_u *word, // case-folded word |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4148 char_u *pat, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4149 int *dir, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4150 int dumpflags, |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4151 int flags, // flags with prefix ID |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4152 linenr_T startlnum) |
351 | 4153 { |
4154 idx_T arridx[MAXWLEN]; | |
4155 int curi[MAXWLEN]; | |
4156 char_u prefix[MAXWLEN]; | |
455 | 4157 char_u word_up[MAXWLEN]; |
4158 int has_word_up = FALSE; | |
351 | 4159 int c; |
4160 char_u *byts; | |
4161 idx_T *idxs; | |
4162 linenr_T lnum = startlnum; | |
4163 int depth; | |
4164 int n; | |
4165 int len; | |
4166 int i; | |
4167 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4168 // If the word starts with a lower-case letter make the word with an |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4169 // upper-case letter in word_up[]. |
455 | 4170 c = PTR2CHAR(word); |
4171 if (SPELL_TOUPPER(c) != c) | |
4172 { | |
4173 onecap_copy(word, word_up, TRUE); | |
4174 has_word_up = TRUE; | |
4175 } | |
4176 | |
351 | 4177 byts = slang->sl_pbyts; |
4178 idxs = slang->sl_pidxs; | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4179 if (byts != NULL) // array not is empty |
351 | 4180 { |
4181 /* | |
4182 * Loop over all prefixes, building them byte-by-byte in prefix[]. | |
390 | 4183 * When at the end of a prefix check that it supports "flags". |
351 | 4184 */ |
4185 depth = 0; | |
4186 arridx[0] = 0; | |
4187 curi[0] = 1; | |
4188 while (depth >= 0 && !got_int) | |
4189 { | |
390 | 4190 n = arridx[depth]; |
4191 len = byts[n]; | |
4192 if (curi[depth] > len) | |
351 | 4193 { |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4194 // Done all bytes at this node, go up one level. |
351 | 4195 --depth; |
4196 line_breakcheck(); | |
4197 } | |
4198 else | |
4199 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4200 // Do one more byte at this node. |
390 | 4201 n += curi[depth]; |
351 | 4202 ++curi[depth]; |
4203 c = byts[n]; | |
4204 if (c == 0) | |
4205 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4206 // End of prefix, find out how many IDs there are. |
351 | 4207 for (i = 1; i < len; ++i) |
4208 if (byts[n + i] != 0) | |
4209 break; | |
4210 curi[depth] += i - 1; | |
4211 | |
455 | 4212 c = valid_word_prefix(i, n, flags, word, slang, FALSE); |
4213 if (c != 0) | |
351 | 4214 { |
376 | 4215 vim_strncpy(prefix + depth, word, MAXWLEN - depth - 1); |
701 | 4216 dump_word(slang, prefix, pat, dir, dumpflags, |
455 | 4217 (c & WF_RAREPFX) ? (flags | WF_RARE) |
701 | 4218 : flags, lnum); |
4219 if (lnum != 0) | |
4220 ++lnum; | |
351 | 4221 } |
455 | 4222 |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4223 // Check for prefix that matches the word when the |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4224 // first letter is upper-case, but only if the prefix has |
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4225 // a condition. |
455 | 4226 if (has_word_up) |
4227 { | |
4228 c = valid_word_prefix(i, n, flags, word_up, slang, | |
4229 TRUE); | |
4230 if (c != 0) | |
4231 { | |
4232 vim_strncpy(prefix + depth, word_up, | |
4233 MAXWLEN - depth - 1); | |
701 | 4234 dump_word(slang, prefix, pat, dir, dumpflags, |
455 | 4235 (c & WF_RAREPFX) ? (flags | WF_RARE) |
701 | 4236 : flags, lnum); |
4237 if (lnum != 0) | |
4238 ++lnum; | |
455 | 4239 } |
4240 } | |
351 | 4241 } |
4242 else | |
4243 { | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4244 // Normal char, go one level deeper. |
351 | 4245 prefix[depth++] = c; |
4246 arridx[depth] = idxs[n]; | |
4247 curi[depth] = 1; | |
4248 } | |
4249 } | |
4250 } | |
4251 } | |
4252 | |
4253 return lnum; | |
4254 } | |
4255 | |
498 | 4256 /* |
626 | 4257 * Move "p" to the end of word "start". |
4258 * Uses the spell-checking word characters. | |
498 | 4259 */ |
4260 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4261 spell_to_word_end(char_u *start, win_T *win) |
498 | 4262 { |
4263 char_u *p = start; | |
4264 | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
4265 while (*p != NUL && spell_iswordp(p, win)) |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
4266 MB_PTR_ADV(p); |
498 | 4267 return p; |
4268 } | |
4269 | |
475 | 4270 /* |
626 | 4271 * For Insert mode completion CTRL-X s: |
4272 * Find start of the word in front of column "startcol". | |
4273 * We don't check if it is badly spelled, with completion we can only change | |
4274 * the word in front of the cursor. | |
475 | 4275 * Returns the column number of the word. |
4276 */ | |
4277 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4278 spell_word_start(int startcol) |
475 | 4279 { |
4280 char_u *line; | |
4281 char_u *p; | |
4282 int col = 0; | |
4283 | |
498 | 4284 if (no_spell_checking(curwin)) |
475 | 4285 return startcol; |
4286 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4287 // Find a word character before "startcol". |
475 | 4288 line = ml_get_curline(); |
4289 for (p = line + startcol; p > line; ) | |
4290 { | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
4291 MB_PTR_BACK(line, p); |
5477 | 4292 if (spell_iswordp_nmw(p, curwin)) |
475 | 4293 break; |
4294 } | |
4295 | |
18814
7e7ec935e7c8
patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4296 // Go back to start of the word. |
475 | 4297 while (p > line) |
4298 { | |
835 | 4299 col = (int)(p - line); |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
4300 MB_PTR_BACK(line, p); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2229
diff
changeset
|
4301 if (!spell_iswordp(p, curwin)) |
475 | 4302 break; |
4303 col = 0; | |
4304 } | |
4305 | |
535 | 4306 return col; |
4307 } | |
4308 | |
4309 /* | |
4310 * Need to check for 'spellcapcheck' now, the word is removed before | |
4311 * expand_spelling() is called. Therefore the ugly global variable. | |
4312 */ | |
4313 static int spell_expand_need_cap; | |
4314 | |
4315 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4316 spell_expand_check_cap(colnr_T col) |
535 | 4317 { |
475 | 4318 spell_expand_need_cap = check_need_cap(curwin->w_cursor.lnum, col); |
4319 } | |
4320 | |
4321 /* | |
4322 * Get list of spelling suggestions. | |
4323 * Used for Insert mode completion CTRL-X ?. | |
4324 * Returns the number of matches. The matches are in "matchp[]", array of | |
4325 * allocated strings. | |
4326 */ | |
4327 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4328 expand_spelling( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4329 linenr_T lnum UNUSED, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4330 char_u *pat, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4331 char_u ***matchp) |
475 | 4332 { |
4333 garray_T ga; | |
4334 | |
625 | 4335 spell_suggest_list(&ga, pat, 100, spell_expand_need_cap, TRUE); |
475 | 4336 *matchp = ga.ga_data; |
4337 return ga.ga_len; | |
4338 } | |
4339 | |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4340 /* |
20760
813b9a7064a4
patch 8.2.0932: missspelling spelllang
Bram Moolenaar <Bram@vim.org>
parents:
20599
diff
changeset
|
4341 * Return TRUE if "val" is a valid 'spelllang' value. |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4342 */ |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4343 int |
20760
813b9a7064a4
patch 8.2.0932: missspelling spelllang
Bram Moolenaar <Bram@vim.org>
parents:
20599
diff
changeset
|
4344 valid_spelllang(char_u *val) |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4345 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4346 return valid_name(val, ".-_,@"); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4347 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4348 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4349 /* |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4350 * Return TRUE if "val" is a valid 'spellfile' value. |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4351 */ |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4352 int |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4353 valid_spellfile(char_u *val) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4354 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4355 char_u *s; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4356 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4357 for (s = val; *s != NUL; ++s) |
22756
87accad5a407
patch 8.2.1926: cannot use a space in 'spellfile'
Bram Moolenaar <Bram@vim.org>
parents:
22444
diff
changeset
|
4358 if (!vim_isfilec(*s) && *s != ',' && *s != ' ') |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4359 return FALSE; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4360 return TRUE; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4361 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4362 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4363 /* |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4364 * Handle side effects of setting 'spell'. |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4365 * Return an error message or NULL for success. |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4366 */ |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4367 char * |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4368 did_set_spell_option(int is_spellfile) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4369 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4370 char *errmsg = NULL; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4371 win_T *wp; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4372 int l; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4373 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4374 if (is_spellfile) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4375 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4376 l = (int)STRLEN(curwin->w_s->b_p_spf); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4377 if (l > 0 && (l < 4 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4378 || STRCMP(curwin->w_s->b_p_spf + l - 4, ".add") != 0)) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
4379 errmsg = e_invalid_argument; |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4380 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4381 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4382 if (errmsg == NULL) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4383 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4384 FOR_ALL_WINDOWS(wp) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4385 if (wp->w_buffer == curbuf && wp->w_p_spell) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4386 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4387 errmsg = did_set_spelllang(wp); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4388 break; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4389 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4390 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4391 return errmsg; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4392 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4393 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4394 /* |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4395 * Set curbuf->b_cap_prog to the regexp program for 'spellcapcheck'. |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4396 * Return error message when failed, NULL when OK. |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4397 */ |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4398 char * |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4399 compile_cap_prog(synblock_T *synblock) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4400 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4401 regprog_T *rp = synblock->b_cap_prog; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4402 char_u *re; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4403 |
18305
f4db8631d9c5
patch 8.1.2147: crash when allocating memory fails
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
4404 if (synblock->b_p_spc == NULL || *synblock->b_p_spc == NUL) |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4405 synblock->b_cap_prog = NULL; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4406 else |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4407 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4408 // Prepend a ^ so that we only match at one column |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4409 re = concat_str((char_u *)"^", synblock->b_p_spc); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4410 if (re != NULL) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4411 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4412 synblock->b_cap_prog = vim_regcomp(re, RE_MAGIC); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4413 vim_free(re); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4414 if (synblock->b_cap_prog == NULL) |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4415 { |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4416 synblock->b_cap_prog = rp; // restore the previous program |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
4417 return e_invalid_argument; |
17940
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4418 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4419 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4420 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4421 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4422 vim_regfree(rp); |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4423 return NULL; |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4424 } |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4425 |
079e10a49ea1
patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4426 #endif // FEAT_SPELL |