Mercurial > vim
annotate src/search.c @ 16033:145ee92315f6
Added tag v8.1.1021 for changeset 831f9e74ededf328a94b74ff7e1194c778501a6b
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 19 Mar 2019 22:30:05 +0100 |
parents | ced614446eaa |
children | 570a296aa0b4 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9913
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 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 * search.c: code for normal mode searching commands | |
11 */ | |
12 | |
13 #include "vim.h" | |
14 | |
15 #ifdef FEAT_EVAL | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
16 static void set_vv_searchforward(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
17 static int first_submatch(regmmatch_T *rp); |
7 | 18 #endif |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
19 static int check_linecomment(char_u *line); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
20 static int cls(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
21 static int skip_chars(int, int); |
7 | 22 #ifdef FEAT_FIND_ID |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
23 static void show_pat_in_path(char_u *, int, |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
24 int, int, FILE *, linenr_T *, long); |
7 | 25 #endif |
26 #ifdef FEAT_VIMINFO | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
27 static void wvsp_one(FILE *fp, int idx, char *s, int sc); |
7 | 28 #endif |
29 | |
30 /* | |
31 * This file contains various searching-related routines. These fall into | |
32 * three groups: | |
33 * 1. string searches (for /, ?, n, and N) | |
34 * 2. character searches within a single line (for f, F, t, T, etc) | |
35 * 3. "other" kinds of searches like the '%' command, and 'word' searches. | |
36 */ | |
37 | |
38 /* | |
39 * String searches | |
40 * | |
41 * The string search functions are divided into two levels: | |
42 * lowest: searchit(); uses an pos_T for starting position and found match. | |
43 * Highest: do_search(); uses curwin->w_cursor; calls searchit(). | |
44 * | |
45 * The last search pattern is remembered for repeating the same search. | |
46 * This pattern is shared between the :g, :s, ? and / commands. | |
47 * This is in search_regcomp(). | |
48 * | |
49 * The actual string matching is done using a heavily modified version of | |
50 * Henry Spencer's regular expression library. See regexp.c. | |
51 */ | |
52 | |
53 /* The offset for a search command is store in a soff struct */ | |
54 /* Note: only spats[0].off is really used */ | |
55 struct soffset | |
56 { | |
1624 | 57 int dir; /* search direction, '/' or '?' */ |
7 | 58 int line; /* search has line offset */ |
59 int end; /* search set cursor at end */ | |
60 long off; /* line or char offset */ | |
61 }; | |
62 | |
63 /* A search pattern and its attributes are stored in a spat struct */ | |
64 struct spat | |
65 { | |
66 char_u *pat; /* the pattern (in allocated memory) or NULL */ | |
67 int magic; /* magicness of the pattern */ | |
4352 | 68 int no_scs; /* no smartcase for this pattern */ |
7 | 69 struct soffset off; |
70 }; | |
71 | |
72 /* | |
73 * Two search patterns are remembered: One for the :substitute command and | |
74 * one for other searches. last_idx points to the one that was used the last | |
75 * time. | |
76 */ | |
77 static struct spat spats[2] = | |
78 { | |
79 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}}, /* last used search pat */ | |
80 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}} /* last used substitute pat */ | |
81 }; | |
82 | |
83 static int last_idx = 0; /* index in spats[] for RE_LAST */ | |
84 | |
6991 | 85 static char_u lastc[2] = {NUL, NUL}; /* last character searched for */ |
86 static int lastcdir = FORWARD; /* last direction of character search */ | |
87 static int last_t_cmd = TRUE; /* last search t_cmd */ | |
88 static char_u lastc_bytes[MB_MAXBYTES + 1]; | |
89 static int lastc_bytelen = 1; /* >1 for multi-byte char */ | |
90 | |
7 | 91 /* copy of spats[], for keeping the search patterns while executing autocmds */ |
92 static struct spat saved_spats[2]; | |
12720
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
93 # ifdef FEAT_SEARCH_EXTRA |
15091
e8fdc71f3ea0
patch 8.1.0556: saving/restoring search patterns share saved last_idx
Bram Moolenaar <Bram@vim.org>
parents:
15089
diff
changeset
|
94 static int saved_spats_last_idx = 0; |
e8fdc71f3ea0
patch 8.1.0556: saving/restoring search patterns share saved last_idx
Bram Moolenaar <Bram@vim.org>
parents:
15089
diff
changeset
|
95 static int saved_spats_no_hlsearch = 0; |
7 | 96 # endif |
97 | |
98 static char_u *mr_pattern = NULL; /* pattern used by search_regcomp() */ | |
99 #ifdef FEAT_RIGHTLEFT | |
100 static int mr_pattern_alloced = FALSE; /* mr_pattern was allocated */ | |
101 #endif | |
102 | |
103 #ifdef FEAT_FIND_ID | |
104 /* | |
105 * Type used by find_pattern_in_path() to remember which included files have | |
106 * been searched already. | |
107 */ | |
108 typedef struct SearchedFile | |
109 { | |
110 FILE *fp; /* File pointer */ | |
111 char_u *name; /* Full name of file */ | |
112 linenr_T lnum; /* Line we were up to in file */ | |
113 int matched; /* Found a match in this file */ | |
114 } SearchedFile; | |
115 #endif | |
116 | |
117 /* | |
118 * translate search pattern for vim_regcomp() | |
119 * | |
120 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd) | |
121 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command) | |
122 * pat_save == RE_BOTH: save pat in both patterns (:global command) | |
123 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL | |
1222 | 124 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL |
7 | 125 * pat_use == RE_LAST: use last used pattern if "pat" is NULL |
126 * options & SEARCH_HIS: put search string in history | |
127 * options & SEARCH_KEEP: keep previous search pattern | |
128 * | |
129 * returns FAIL if failed, OK otherwise. | |
130 */ | |
131 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
132 search_regcomp( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
133 char_u *pat, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
134 int pat_save, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
135 int pat_use, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
136 int options, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
137 regmmatch_T *regmatch) /* return: pattern and ignore-case flag */ |
7 | 138 { |
139 int magic; | |
140 int i; | |
141 | |
142 rc_did_emsg = FALSE; | |
143 magic = p_magic; | |
144 | |
145 /* | |
146 * If no pattern given, use a previously defined pattern. | |
147 */ | |
148 if (pat == NULL || *pat == NUL) | |
149 { | |
150 if (pat_use == RE_LAST) | |
151 i = last_idx; | |
152 else | |
153 i = pat_use; | |
154 if (spats[i].pat == NULL) /* pattern was never defined */ | |
155 { | |
156 if (pat_use == RE_SUBST) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
157 emsg(_(e_nopresub)); |
7 | 158 else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
159 emsg(_(e_noprevre)); |
7 | 160 rc_did_emsg = TRUE; |
161 return FAIL; | |
162 } | |
163 pat = spats[i].pat; | |
164 magic = spats[i].magic; | |
165 no_smartcase = spats[i].no_scs; | |
166 } | |
167 #ifdef FEAT_CMDHIST | |
168 else if (options & SEARCH_HIS) /* put new pattern in history */ | |
169 add_to_history(HIST_SEARCH, pat, TRUE, NUL); | |
170 #endif | |
171 | |
172 #ifdef FEAT_RIGHTLEFT | |
173 if (mr_pattern_alloced) | |
174 { | |
175 vim_free(mr_pattern); | |
176 mr_pattern_alloced = FALSE; | |
177 } | |
178 | |
179 if (curwin->w_p_rl && *curwin->w_p_rlc == 's') | |
180 { | |
181 char_u *rev_pattern; | |
182 | |
183 rev_pattern = reverse_text(pat); | |
184 if (rev_pattern == NULL) | |
185 mr_pattern = pat; /* out of memory, keep normal pattern. */ | |
186 else | |
187 { | |
188 mr_pattern = rev_pattern; | |
189 mr_pattern_alloced = TRUE; | |
190 } | |
191 } | |
192 else | |
193 #endif | |
194 mr_pattern = pat; | |
195 | |
196 /* | |
197 * Save the currently used pattern in the appropriate place, | |
198 * unless the pattern should not be remembered. | |
199 */ | |
5606 | 200 if (!(options & SEARCH_KEEP) && !cmdmod.keeppatterns) |
7 | 201 { |
202 /* search or global command */ | |
203 if (pat_save == RE_SEARCH || pat_save == RE_BOTH) | |
204 save_re_pat(RE_SEARCH, pat, magic); | |
205 /* substitute or global command */ | |
206 if (pat_save == RE_SUBST || pat_save == RE_BOTH) | |
207 save_re_pat(RE_SUBST, pat, magic); | |
208 } | |
209 | |
210 regmatch->rmm_ic = ignorecase(pat); | |
410 | 211 regmatch->rmm_maxcol = 0; |
7 | 212 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0); |
213 if (regmatch->regprog == NULL) | |
214 return FAIL; | |
215 return OK; | |
216 } | |
217 | |
218 /* | |
219 * Get search pattern used by search_regcomp(). | |
220 */ | |
221 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
222 get_search_pat(void) |
7 | 223 { |
224 return mr_pattern; | |
225 } | |
226 | |
1344 | 227 #if defined(FEAT_RIGHTLEFT) || defined(PROTO) |
7 | 228 /* |
229 * Reverse text into allocated memory. | |
230 * Returns the allocated string, NULL when out of memory. | |
231 */ | |
1344 | 232 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
233 reverse_text(char_u *s) |
7 | 234 { |
235 unsigned len; | |
236 unsigned s_i, rev_i; | |
237 char_u *rev; | |
238 | |
239 /* | |
240 * Reverse the pattern. | |
241 */ | |
242 len = (unsigned)STRLEN(s); | |
243 rev = alloc(len + 1); | |
244 if (rev != NULL) | |
245 { | |
246 rev_i = len; | |
247 for (s_i = 0; s_i < len; ++s_i) | |
248 { | |
249 if (has_mbyte) | |
250 { | |
251 int mb_len; | |
252 | |
474 | 253 mb_len = (*mb_ptr2len)(s + s_i); |
7 | 254 rev_i -= mb_len; |
255 mch_memmove(rev + rev_i, s + s_i, mb_len); | |
256 s_i += mb_len - 1; | |
257 } | |
258 else | |
259 rev[--rev_i] = s[s_i]; | |
260 | |
261 } | |
262 rev[len] = NUL; | |
263 } | |
264 return rev; | |
265 } | |
266 #endif | |
267 | |
6426 | 268 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
269 save_re_pat(int idx, char_u *pat, int magic) |
7 | 270 { |
271 if (spats[idx].pat != pat) | |
272 { | |
273 vim_free(spats[idx].pat); | |
274 spats[idx].pat = vim_strsave(pat); | |
275 spats[idx].magic = magic; | |
276 spats[idx].no_scs = no_smartcase; | |
277 last_idx = idx; | |
278 #ifdef FEAT_SEARCH_EXTRA | |
279 /* If 'hlsearch' set and search pat changed: need redraw. */ | |
280 if (p_hls) | |
745 | 281 redraw_all_later(SOME_VALID); |
13792
0e9b2971d7c3
patch 8.0.1768: SET_NO_HLSEARCH() used in a wrong way
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
282 set_no_hlsearch(FALSE); |
7 | 283 #endif |
284 } | |
285 } | |
286 | |
287 /* | |
288 * Save the search patterns, so they can be restored later. | |
289 * Used before/after executing autocommands and user functions. | |
290 */ | |
291 static int save_level = 0; | |
292 | |
293 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
294 save_search_patterns(void) |
7 | 295 { |
296 if (save_level++ == 0) | |
297 { | |
298 saved_spats[0] = spats[0]; | |
299 if (spats[0].pat != NULL) | |
300 saved_spats[0].pat = vim_strsave(spats[0].pat); | |
301 saved_spats[1] = spats[1]; | |
302 if (spats[1].pat != NULL) | |
303 saved_spats[1].pat = vim_strsave(spats[1].pat); | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
304 #ifdef FEAT_SEARCH_EXTRA |
15091
e8fdc71f3ea0
patch 8.1.0556: saving/restoring search patterns share saved last_idx
Bram Moolenaar <Bram@vim.org>
parents:
15089
diff
changeset
|
305 saved_spats_last_idx = last_idx; |
e8fdc71f3ea0
patch 8.1.0556: saving/restoring search patterns share saved last_idx
Bram Moolenaar <Bram@vim.org>
parents:
15089
diff
changeset
|
306 saved_spats_no_hlsearch = no_hlsearch; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
307 #endif |
7 | 308 } |
309 } | |
310 | |
311 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
312 restore_search_patterns(void) |
7 | 313 { |
314 if (--save_level == 0) | |
315 { | |
316 vim_free(spats[0].pat); | |
317 spats[0] = saved_spats[0]; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
318 #if defined(FEAT_EVAL) |
1624 | 319 set_vv_searchforward(); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
320 #endif |
7 | 321 vim_free(spats[1].pat); |
322 spats[1] = saved_spats[1]; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
323 #ifdef FEAT_SEARCH_EXTRA |
15091
e8fdc71f3ea0
patch 8.1.0556: saving/restoring search patterns share saved last_idx
Bram Moolenaar <Bram@vim.org>
parents:
15089
diff
changeset
|
324 last_idx = saved_spats_last_idx; |
e8fdc71f3ea0
patch 8.1.0556: saving/restoring search patterns share saved last_idx
Bram Moolenaar <Bram@vim.org>
parents:
15089
diff
changeset
|
325 set_no_hlsearch(saved_spats_no_hlsearch); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
326 #endif |
7 | 327 } |
328 } | |
329 | |
359 | 330 #if defined(EXITFREE) || defined(PROTO) |
331 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
332 free_search_patterns(void) |
359 | 333 { |
334 vim_free(spats[0].pat); | |
335 vim_free(spats[1].pat); | |
1862 | 336 |
337 # ifdef FEAT_RIGHTLEFT | |
338 if (mr_pattern_alloced) | |
339 { | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
340 vim_free(mr_pattern); |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
341 mr_pattern_alloced = FALSE; |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
342 mr_pattern = NULL; |
1862 | 343 } |
344 # endif | |
359 | 345 } |
346 #endif | |
347 | |
12720
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
348 #ifdef FEAT_SEARCH_EXTRA |
15091
e8fdc71f3ea0
patch 8.1.0556: saving/restoring search patterns share saved last_idx
Bram Moolenaar <Bram@vim.org>
parents:
15089
diff
changeset
|
349 // copy of spats[RE_SEARCH], for keeping the search patterns while incremental |
e8fdc71f3ea0
patch 8.1.0556: saving/restoring search patterns share saved last_idx
Bram Moolenaar <Bram@vim.org>
parents:
15089
diff
changeset
|
350 // searching |
e8fdc71f3ea0
patch 8.1.0556: saving/restoring search patterns share saved last_idx
Bram Moolenaar <Bram@vim.org>
parents:
15089
diff
changeset
|
351 static struct spat saved_last_search_spat; |
e8fdc71f3ea0
patch 8.1.0556: saving/restoring search patterns share saved last_idx
Bram Moolenaar <Bram@vim.org>
parents:
15089
diff
changeset
|
352 static int did_save_last_search_spat = 0; |
e8fdc71f3ea0
patch 8.1.0556: saving/restoring search patterns share saved last_idx
Bram Moolenaar <Bram@vim.org>
parents:
15089
diff
changeset
|
353 static int saved_last_idx = 0; |
e8fdc71f3ea0
patch 8.1.0556: saving/restoring search patterns share saved last_idx
Bram Moolenaar <Bram@vim.org>
parents:
15089
diff
changeset
|
354 static int saved_no_hlsearch = 0; |
e8fdc71f3ea0
patch 8.1.0556: saving/restoring search patterns share saved last_idx
Bram Moolenaar <Bram@vim.org>
parents:
15089
diff
changeset
|
355 |
12720
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
356 /* |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
357 * Save and restore the search pattern for incremental highlight search |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
358 * feature. |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
359 * |
15034
6e4e0d43b20b
patch 8.1.0528: various typos in comments
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
360 * It's similar to but different from save_search_patterns() and |
12720
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
361 * restore_search_patterns(), because the search pattern must be restored when |
15034
6e4e0d43b20b
patch 8.1.0528: various typos in comments
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
362 * canceling incremental searching even if it's called inside user functions. |
12720
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
363 */ |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
364 void |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
365 save_last_search_pattern(void) |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
366 { |
15083
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
367 if (did_save_last_search_spat != 0) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
368 iemsg("did_save_last_search_spat is not zero"); |
15083
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
369 else |
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
370 ++did_save_last_search_spat; |
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
371 |
12720
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
372 saved_last_search_spat = spats[RE_SEARCH]; |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
373 if (spats[RE_SEARCH].pat != NULL) |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
374 saved_last_search_spat.pat = vim_strsave(spats[RE_SEARCH].pat); |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
375 saved_last_idx = last_idx; |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
376 saved_no_hlsearch = no_hlsearch; |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
377 } |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
378 |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
379 void |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
380 restore_last_search_pattern(void) |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
381 { |
15083
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
382 if (did_save_last_search_spat != 1) |
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
383 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
384 iemsg("did_save_last_search_spat is not one"); |
15083
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
385 return; |
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
386 } |
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
387 --did_save_last_search_spat; |
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
388 |
12720
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
389 vim_free(spats[RE_SEARCH].pat); |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
390 spats[RE_SEARCH] = saved_last_search_spat; |
15083
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15034
diff
changeset
|
391 saved_last_search_spat.pat = NULL; |
12720
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
392 # if defined(FEAT_EVAL) |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
393 set_vv_searchforward(); |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
394 # endif |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
395 last_idx = saved_last_idx; |
13792
0e9b2971d7c3
patch 8.0.1768: SET_NO_HLSEARCH() used in a wrong way
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
396 set_no_hlsearch(saved_no_hlsearch); |
12720
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
397 } |
12855
3c09e451af3a
patch 8.0.1304: CTRL-G/CTRL-T don't work with incsearch and empty pattern
Christian Brabandt <cb@256bit.org>
parents:
12829
diff
changeset
|
398 |
3c09e451af3a
patch 8.0.1304: CTRL-G/CTRL-T don't work with incsearch and empty pattern
Christian Brabandt <cb@256bit.org>
parents:
12829
diff
changeset
|
399 char_u * |
3c09e451af3a
patch 8.0.1304: CTRL-G/CTRL-T don't work with incsearch and empty pattern
Christian Brabandt <cb@256bit.org>
parents:
12829
diff
changeset
|
400 last_search_pattern(void) |
3c09e451af3a
patch 8.0.1304: CTRL-G/CTRL-T don't work with incsearch and empty pattern
Christian Brabandt <cb@256bit.org>
parents:
12829
diff
changeset
|
401 { |
3c09e451af3a
patch 8.0.1304: CTRL-G/CTRL-T don't work with incsearch and empty pattern
Christian Brabandt <cb@256bit.org>
parents:
12829
diff
changeset
|
402 return spats[RE_SEARCH].pat; |
3c09e451af3a
patch 8.0.1304: CTRL-G/CTRL-T don't work with incsearch and empty pattern
Christian Brabandt <cb@256bit.org>
parents:
12829
diff
changeset
|
403 } |
12720
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
404 #endif |
37c384802df4
patch 8.0.1238: incremental search only shows one match
Christian Brabandt <cb@256bit.org>
parents:
12539
diff
changeset
|
405 |
7 | 406 /* |
407 * Return TRUE when case should be ignored for search pattern "pat". | |
408 * Uses the 'ignorecase' and 'smartcase' options. | |
409 */ | |
410 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
411 ignorecase(char_u *pat) |
7 | 412 { |
9913
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9647
diff
changeset
|
413 return ignorecase_opt(pat, p_ic, p_scs); |
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9647
diff
changeset
|
414 } |
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9647
diff
changeset
|
415 |
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9647
diff
changeset
|
416 /* |
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9647
diff
changeset
|
417 * As ignorecase() put pass the "ic" and "scs" flags. |
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9647
diff
changeset
|
418 */ |
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9647
diff
changeset
|
419 int |
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9647
diff
changeset
|
420 ignorecase_opt(char_u *pat, int ic_in, int scs) |
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9647
diff
changeset
|
421 { |
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9647
diff
changeset
|
422 int ic = ic_in; |
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9647
diff
changeset
|
423 |
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9647
diff
changeset
|
424 if (ic && !no_smartcase && scs |
7 | 425 #ifdef FEAT_INS_EXPAND |
13210
c1534eb682a6
patch 8.0.1479: insert mode completion state is confusing
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
426 && !(ctrl_x_mode_not_default() && curbuf->b_p_inf) |
7 | 427 #endif |
428 ) | |
2302
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
429 ic = !pat_has_uppercase(pat); |
7 | 430 no_smartcase = FALSE; |
431 | |
432 return ic; | |
433 } | |
434 | |
2302
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
435 /* |
6991 | 436 * Return TRUE if pattern "pat" has an uppercase character. |
2302
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
437 */ |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
438 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
439 pat_has_uppercase(char_u *pat) |
2302
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
440 { |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
441 char_u *p = pat; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
442 |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
443 while (*p != NUL) |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
444 { |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
445 int l; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
446 |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
447 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
448 { |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
449 if (enc_utf8 && utf_isupper(utf_ptr2char(p))) |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
450 return TRUE; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
451 p += l; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
452 } |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
453 else if (*p == '\\') |
2302
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
454 { |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
455 if (p[1] == '_' && p[2] != NUL) /* skip "\_X" */ |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
456 p += 3; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
457 else if (p[1] == '%' && p[2] != NUL) /* skip "\%X" */ |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
458 p += 3; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
459 else if (p[1] != NUL) /* skip "\X" */ |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
460 p += 2; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
461 else |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
462 p += 1; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
463 } |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
464 else if (MB_ISUPPER(*p)) |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
465 return TRUE; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
466 else |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
467 ++p; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
468 } |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
469 return FALSE; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
470 } |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
471 |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
472 #if defined(FEAT_EVAL) || defined(PROTO) |
7 | 473 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
474 last_csearch(void) |
6991 | 475 { |
476 return lastc_bytes; | |
477 } | |
478 | |
479 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
480 last_csearch_forward(void) |
6991 | 481 { |
482 return lastcdir == FORWARD; | |
483 } | |
484 | |
485 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
486 last_csearch_until(void) |
6991 | 487 { |
488 return last_t_cmd == TRUE; | |
489 } | |
490 | |
491 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
492 set_last_csearch(int c, char_u *s UNUSED, int len UNUSED) |
6991 | 493 { |
494 *lastc = c; | |
495 lastc_bytelen = len; | |
496 if (len) | |
497 memcpy(lastc_bytes, s, len); | |
498 else | |
499 vim_memset(lastc_bytes, 0, sizeof(lastc_bytes)); | |
500 } | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
501 #endif |
6991 | 502 |
503 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
504 set_csearch_direction(int cdir) |
6991 | 505 { |
506 lastcdir = cdir; | |
507 } | |
508 | |
509 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
510 set_csearch_until(int t_cmd) |
6991 | 511 { |
512 last_t_cmd = t_cmd; | |
513 } | |
514 | |
515 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
516 last_search_pat(void) |
7 | 517 { |
518 return spats[last_idx].pat; | |
519 } | |
520 | |
521 /* | |
522 * Reset search direction to forward. For "gd" and "gD" commands. | |
523 */ | |
524 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
525 reset_search_dir(void) |
7 | 526 { |
527 spats[0].off.dir = '/'; | |
1624 | 528 #if defined(FEAT_EVAL) |
529 set_vv_searchforward(); | |
530 #endif | |
7 | 531 } |
532 | |
533 #if defined(FEAT_EVAL) || defined(FEAT_VIMINFO) | |
534 /* | |
535 * Set the last search pattern. For ":let @/ =" and viminfo. | |
536 * Also set the saved search pattern, so that this works in an autocommand. | |
537 */ | |
538 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
539 set_last_search_pat( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
540 char_u *s, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
541 int idx, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
542 int magic, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
543 int setlast) |
7 | 544 { |
545 vim_free(spats[idx].pat); | |
546 /* An empty string means that nothing should be matched. */ | |
547 if (*s == NUL) | |
548 spats[idx].pat = NULL; | |
549 else | |
550 spats[idx].pat = vim_strsave(s); | |
551 spats[idx].magic = magic; | |
552 spats[idx].no_scs = FALSE; | |
553 spats[idx].off.dir = '/'; | |
1624 | 554 #if defined(FEAT_EVAL) |
555 set_vv_searchforward(); | |
556 #endif | |
7 | 557 spats[idx].off.line = FALSE; |
558 spats[idx].off.end = FALSE; | |
559 spats[idx].off.off = 0; | |
560 if (setlast) | |
561 last_idx = idx; | |
562 if (save_level) | |
563 { | |
564 vim_free(saved_spats[idx].pat); | |
565 saved_spats[idx] = spats[0]; | |
566 if (spats[idx].pat == NULL) | |
567 saved_spats[idx].pat = NULL; | |
568 else | |
569 saved_spats[idx].pat = vim_strsave(spats[idx].pat); | |
15971
ced614446eaa
patch 8.1.0991: cannot build with a mix of features
Bram Moolenaar <Bram@vim.org>
parents:
15930
diff
changeset
|
570 # ifdef FEAT_SEARCH_EXTRA |
15091
e8fdc71f3ea0
patch 8.1.0556: saving/restoring search patterns share saved last_idx
Bram Moolenaar <Bram@vim.org>
parents:
15089
diff
changeset
|
571 saved_spats_last_idx = last_idx; |
15971
ced614446eaa
patch 8.1.0991: cannot build with a mix of features
Bram Moolenaar <Bram@vim.org>
parents:
15930
diff
changeset
|
572 # endif |
7 | 573 } |
574 # ifdef FEAT_SEARCH_EXTRA | |
575 /* If 'hlsearch' set and search pat changed: need redraw. */ | |
576 if (p_hls && idx == last_idx && !no_hlsearch) | |
745 | 577 redraw_all_later(SOME_VALID); |
7 | 578 # endif |
579 } | |
580 #endif | |
581 | |
582 #ifdef FEAT_SEARCH_EXTRA | |
583 /* | |
584 * Get a regexp program for the last used search pattern. | |
585 * This is used for highlighting all matches in a window. | |
586 * Values returned in regmatch->regprog and regmatch->rmm_ic. | |
587 */ | |
588 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
589 last_pat_prog(regmmatch_T *regmatch) |
7 | 590 { |
591 if (spats[last_idx].pat == NULL) | |
592 { | |
593 regmatch->regprog = NULL; | |
594 return; | |
595 } | |
596 ++emsg_off; /* So it doesn't beep if bad expr */ | |
597 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch); | |
598 --emsg_off; | |
599 } | |
600 #endif | |
601 | |
602 /* | |
5735 | 603 * Lowest level search function. |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
604 * Search for 'count'th occurrence of pattern "pat" in direction "dir". |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
605 * Start at position "pos" and return the found position in "pos". |
7 | 606 * |
607 * if (options & SEARCH_MSG) == 0 don't give any messages | |
608 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages | |
609 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages | |
610 * if (options & SEARCH_HIS) put search pattern in history | |
611 * if (options & SEARCH_END) return position at end of match | |
612 * if (options & SEARCH_START) accept match at pos itself | |
613 * if (options & SEARCH_KEEP) keep previous search pattern | |
614 * if (options & SEARCH_FOLD) match only once in a closed fold | |
615 * if (options & SEARCH_PEEK) check for typed char, cancel search | |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
616 * if (options & SEARCH_COL) start at pos->col instead of zero |
7 | 617 * |
618 * Return FAIL (zero) for failure, non-zero for success. | |
619 * When FEAT_EVAL is defined, returns the index of the first matching | |
620 * subpattern plus one; one if there was none. | |
621 */ | |
622 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
623 searchit( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
624 win_T *win, /* window to search in; can be NULL for a |
7 | 625 buffer without a window! */ |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
626 buf_T *buf, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
627 pos_T *pos, |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
628 pos_T *end_pos, // set to end of the match, unless NULL |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
629 int dir, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
630 char_u *pat, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
631 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
632 int options, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
633 int pat_use, /* which pattern to use when "pat" is empty */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
634 linenr_T stop_lnum, /* stop after this line number when != 0 */ |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
635 proftime_T *tm UNUSED, /* timeout limit or NULL */ |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
636 int *timed_out UNUSED) /* set when timed out or NULL */ |
7 | 637 { |
638 int found; | |
639 linenr_T lnum; /* no init to shut up Apollo cc */ | |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
640 colnr_T col; |
7 | 641 regmmatch_T regmatch; |
642 char_u *ptr; | |
643 colnr_T matchcol; | |
644 lpos_T endpos; | |
140 | 645 lpos_T matchpos; |
7 | 646 int loop; |
647 pos_T start_pos; | |
648 int at_first_line; | |
649 int extra_col; | |
6903 | 650 int start_char_len; |
7 | 651 int match_ok; |
652 long nmatched; | |
653 int submatch = 0; | |
6402 | 654 int first_match = TRUE; |
648 | 655 int save_called_emsg = called_emsg; |
7 | 656 #ifdef FEAT_SEARCH_EXTRA |
657 int break_loop = FALSE; | |
658 #endif | |
659 | |
660 if (search_regcomp(pat, RE_SEARCH, pat_use, | |
661 (options & (SEARCH_HIS + SEARCH_KEEP)), ®match) == FAIL) | |
662 { | |
663 if ((options & SEARCH_MSG) && !rc_did_emsg) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
664 semsg(_("E383: Invalid search string: %s"), mr_pattern); |
7 | 665 return FAIL; |
666 } | |
667 | |
648 | 668 /* |
669 * find the string | |
670 */ | |
7 | 671 called_emsg = FALSE; |
672 do /* loop for count */ | |
673 { | |
6402 | 674 /* When not accepting a match at the start position set "extra_col" to |
675 * a non-zero value. Don't do that when starting at MAXCOL, since | |
676 * MAXCOL + 1 is zero. */ | |
6903 | 677 if (pos->col == MAXCOL) |
678 start_char_len = 0; | |
6402 | 679 /* Watch out for the "col" being MAXCOL - 2, used in a closed fold. */ |
6903 | 680 else if (has_mbyte |
681 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count | |
682 && pos->col < MAXCOL - 2) | |
6402 | 683 { |
13223
e37327129859
patch 8.0.1486: accessing invalid memory with "it"
Christian Brabandt <cb@256bit.org>
parents:
13217
diff
changeset
|
684 ptr = ml_get_buf(buf, pos->lnum, FALSE); |
13225
1961162121c7
patch 8.0.1487: test 14 fails
Christian Brabandt <cb@256bit.org>
parents:
13223
diff
changeset
|
685 if ((int)STRLEN(ptr) <= pos->col) |
6903 | 686 start_char_len = 1; |
6402 | 687 else |
13223
e37327129859
patch 8.0.1486: accessing invalid memory with "it"
Christian Brabandt <cb@256bit.org>
parents:
13217
diff
changeset
|
688 start_char_len = (*mb_ptr2len)(ptr + pos->col); |
6402 | 689 } |
690 else | |
6903 | 691 start_char_len = 1; |
692 if (dir == FORWARD) | |
693 { | |
694 if (options & SEARCH_START) | |
695 extra_col = 0; | |
696 else | |
697 extra_col = start_char_len; | |
698 } | |
699 else | |
700 { | |
701 if (options & SEARCH_START) | |
702 extra_col = start_char_len; | |
703 else | |
704 extra_col = 0; | |
705 } | |
6402 | 706 |
7 | 707 start_pos = *pos; /* remember start pos for detecting no match */ |
708 found = 0; /* default: not found */ | |
709 at_first_line = TRUE; /* default: start in first line */ | |
710 if (pos->lnum == 0) /* correct lnum for when starting in line 0 */ | |
711 { | |
712 pos->lnum = 1; | |
713 pos->col = 0; | |
714 at_first_line = FALSE; /* not in first line now */ | |
715 } | |
716 | |
717 /* | |
718 * Start searching in current line, unless searching backwards and | |
719 * we're in column 0. | |
1311 | 720 * If we are searching backwards, in column 0, and not including the |
721 * current position, gain some efficiency by skipping back a line. | |
722 * Otherwise begin the search in the current line. | |
7 | 723 */ |
1311 | 724 if (dir == BACKWARD && start_pos.col == 0 |
725 && (options & SEARCH_START) == 0) | |
7 | 726 { |
727 lnum = pos->lnum - 1; | |
728 at_first_line = FALSE; | |
729 } | |
730 else | |
731 lnum = pos->lnum; | |
732 | |
733 for (loop = 0; loop <= 1; ++loop) /* loop twice if 'wrapscan' set */ | |
734 { | |
735 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count; | |
736 lnum += dir, at_first_line = FALSE) | |
737 { | |
692 | 738 /* Stop after checking "stop_lnum", if it's set. */ |
739 if (stop_lnum != 0 && (dir == FORWARD | |
740 ? lnum > stop_lnum : lnum < stop_lnum)) | |
741 break; | |
1496 | 742 #ifdef FEAT_RELTIME |
743 /* Stop after passing the "tm" time limit. */ | |
744 if (tm != NULL && profile_passed_limit(tm)) | |
745 break; | |
746 #endif | |
692 | 747 |
7 | 748 /* |
140 | 749 * Look for a match somewhere in line "lnum". |
7 | 750 */ |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
751 col = at_first_line && (options & SEARCH_COL) ? pos->col |
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
752 : (colnr_T)0; |
7 | 753 nmatched = vim_regexec_multi(®match, win, buf, |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
754 lnum, col, |
1521 | 755 #ifdef FEAT_RELTIME |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
756 tm, timed_out |
1521 | 757 #else |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
758 NULL, NULL |
1521 | 759 #endif |
760 ); | |
7 | 761 /* Abort searching on an error (e.g., out of stack). */ |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
762 if (called_emsg |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
763 #ifdef FEAT_RELTIME |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
764 || (timed_out != NULL && *timed_out) |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
765 #endif |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
766 ) |
7 | 767 break; |
768 if (nmatched > 0) | |
769 { | |
770 /* match may actually be in another line when using \zs */ | |
140 | 771 matchpos = regmatch.startpos[0]; |
7 | 772 endpos = regmatch.endpos[0]; |
1521 | 773 #ifdef FEAT_EVAL |
7 | 774 submatch = first_submatch(®match); |
1521 | 775 #endif |
1544 | 776 /* "lnum" may be past end of buffer for "\n\zs". */ |
685 | 777 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count) |
778 ptr = (char_u *)""; | |
779 else | |
780 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE); | |
7 | 781 |
782 /* | |
783 * Forward search in the first line: match should be after | |
784 * the start position. If not, continue at the end of the | |
785 * match (this is vi compatible) or on the next char. | |
786 */ | |
787 if (dir == FORWARD && at_first_line) | |
788 { | |
789 match_ok = TRUE; | |
790 /* | |
140 | 791 * When the match starts in a next line it's certainly |
792 * past the start position. | |
7 | 793 * When match lands on a NUL the cursor will be put |
794 * one back afterwards, compare with that position, | |
795 * otherwise "/$" will get stuck on end of line. | |
796 */ | |
140 | 797 while (matchpos.lnum == 0 |
6402 | 798 && ((options & SEARCH_END) && first_match |
140 | 799 ? (nmatched == 1 |
800 && (int)endpos.col - 1 | |
7 | 801 < (int)start_pos.col + extra_col) |
140 | 802 : ((int)matchpos.col |
803 - (ptr[matchpos.col] == NUL) | |
804 < (int)start_pos.col + extra_col))) | |
7 | 805 { |
806 /* | |
807 * If vi-compatible searching, continue at the end | |
808 * of the match, otherwise continue one position | |
809 * forward. | |
810 */ | |
811 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL) | |
812 { | |
813 if (nmatched > 1) | |
814 { | |
815 /* end is in next line, thus no match in | |
816 * this line */ | |
817 match_ok = FALSE; | |
818 break; | |
819 } | |
820 matchcol = endpos.col; | |
821 /* for empty match: advance one char */ | |
140 | 822 if (matchcol == matchpos.col |
7 | 823 && ptr[matchcol] != NUL) |
824 { | |
825 if (has_mbyte) | |
826 matchcol += | |
474 | 827 (*mb_ptr2len)(ptr + matchcol); |
7 | 828 else |
829 ++matchcol; | |
830 } | |
831 } | |
832 else | |
833 { | |
140 | 834 matchcol = matchpos.col; |
7 | 835 if (ptr[matchcol] != NUL) |
836 { | |
837 if (has_mbyte) | |
474 | 838 matchcol += (*mb_ptr2len)(ptr |
7 | 839 + matchcol); |
840 else | |
841 ++matchcol; | |
842 } | |
843 } | |
4252 | 844 if (matchcol == 0 && (options & SEARCH_START)) |
4240 | 845 break; |
7 | 846 if (ptr[matchcol] == NUL |
847 || (nmatched = vim_regexec_multi(®match, | |
140 | 848 win, buf, lnum + matchpos.lnum, |
1521 | 849 matchcol, |
850 #ifdef FEAT_RELTIME | |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
851 tm, timed_out |
1521 | 852 #else |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
853 NULL, NULL |
1521 | 854 #endif |
855 )) == 0) | |
7 | 856 { |
857 match_ok = FALSE; | |
858 break; | |
859 } | |
140 | 860 matchpos = regmatch.startpos[0]; |
7 | 861 endpos = regmatch.endpos[0]; |
862 # ifdef FEAT_EVAL | |
863 submatch = first_submatch(®match); | |
864 # endif | |
865 | |
866 /* Need to get the line pointer again, a | |
867 * multi-line search may have made it invalid. */ | |
140 | 868 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE); |
7 | 869 } |
870 if (!match_ok) | |
871 continue; | |
872 } | |
873 if (dir == BACKWARD) | |
874 { | |
875 /* | |
876 * Now, if there are multiple matches on this line, | |
877 * we have to get the last one. Or the last one before | |
878 * the cursor, if we're on that line. | |
879 * When putting the new cursor at the end, compare | |
880 * relative to the end of the match. | |
881 */ | |
882 match_ok = FALSE; | |
883 for (;;) | |
884 { | |
140 | 885 /* Remember a position that is before the start |
886 * position, we use it if it's the last match in | |
887 * the line. Always accept a position after | |
888 * wrapping around. */ | |
889 if (loop | |
890 || ((options & SEARCH_END) | |
891 ? (lnum + regmatch.endpos[0].lnum | |
892 < start_pos.lnum | |
893 || (lnum + regmatch.endpos[0].lnum | |
894 == start_pos.lnum | |
895 && (int)regmatch.endpos[0].col - 1 | |
6903 | 896 < (int)start_pos.col |
897 + extra_col)) | |
140 | 898 : (lnum + regmatch.startpos[0].lnum |
899 < start_pos.lnum | |
900 || (lnum + regmatch.startpos[0].lnum | |
901 == start_pos.lnum | |
902 && (int)regmatch.startpos[0].col | |
6903 | 903 < (int)start_pos.col |
904 + extra_col)))) | |
7 | 905 { |
906 match_ok = TRUE; | |
140 | 907 matchpos = regmatch.startpos[0]; |
7 | 908 endpos = regmatch.endpos[0]; |
909 # ifdef FEAT_EVAL | |
910 submatch = first_submatch(®match); | |
911 # endif | |
912 } | |
913 else | |
914 break; | |
915 | |
916 /* | |
917 * We found a valid match, now check if there is | |
918 * another one after it. | |
919 * If vi-compatible searching, continue at the end | |
920 * of the match, otherwise continue one position | |
921 * forward. | |
922 */ | |
923 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL) | |
924 { | |
925 if (nmatched > 1) | |
926 break; | |
927 matchcol = endpos.col; | |
928 /* for empty match: advance one char */ | |
140 | 929 if (matchcol == matchpos.col |
7 | 930 && ptr[matchcol] != NUL) |
931 { | |
932 if (has_mbyte) | |
933 matchcol += | |
474 | 934 (*mb_ptr2len)(ptr + matchcol); |
7 | 935 else |
936 ++matchcol; | |
937 } | |
938 } | |
939 else | |
940 { | |
140 | 941 /* Stop when the match is in a next line. */ |
942 if (matchpos.lnum > 0) | |
943 break; | |
944 matchcol = matchpos.col; | |
7 | 945 if (ptr[matchcol] != NUL) |
946 { | |
947 if (has_mbyte) | |
948 matchcol += | |
474 | 949 (*mb_ptr2len)(ptr + matchcol); |
7 | 950 else |
951 ++matchcol; | |
952 } | |
953 } | |
954 if (ptr[matchcol] == NUL | |
955 || (nmatched = vim_regexec_multi(®match, | |
140 | 956 win, buf, lnum + matchpos.lnum, |
1521 | 957 matchcol, |
958 #ifdef FEAT_RELTIME | |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
959 tm, timed_out |
1521 | 960 #else |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
961 NULL, NULL |
1521 | 962 #endif |
963 )) == 0) | |
13217
891b821d3602
patch 8.0.1483: searchpair() might return an invalid value on timeout
Christian Brabandt <cb@256bit.org>
parents:
13210
diff
changeset
|
964 { |
891b821d3602
patch 8.0.1483: searchpair() might return an invalid value on timeout
Christian Brabandt <cb@256bit.org>
parents:
13210
diff
changeset
|
965 #ifdef FEAT_RELTIME |
891b821d3602
patch 8.0.1483: searchpair() might return an invalid value on timeout
Christian Brabandt <cb@256bit.org>
parents:
13210
diff
changeset
|
966 /* If the search timed out, we did find a match |
891b821d3602
patch 8.0.1483: searchpair() might return an invalid value on timeout
Christian Brabandt <cb@256bit.org>
parents:
13210
diff
changeset
|
967 * but it might be the wrong one, so that's not |
891b821d3602
patch 8.0.1483: searchpair() might return an invalid value on timeout
Christian Brabandt <cb@256bit.org>
parents:
13210
diff
changeset
|
968 * OK. */ |
891b821d3602
patch 8.0.1483: searchpair() might return an invalid value on timeout
Christian Brabandt <cb@256bit.org>
parents:
13210
diff
changeset
|
969 if (timed_out != NULL && *timed_out) |
891b821d3602
patch 8.0.1483: searchpair() might return an invalid value on timeout
Christian Brabandt <cb@256bit.org>
parents:
13210
diff
changeset
|
970 match_ok = FALSE; |
891b821d3602
patch 8.0.1483: searchpair() might return an invalid value on timeout
Christian Brabandt <cb@256bit.org>
parents:
13210
diff
changeset
|
971 #endif |
7 | 972 break; |
13217
891b821d3602
patch 8.0.1483: searchpair() might return an invalid value on timeout
Christian Brabandt <cb@256bit.org>
parents:
13210
diff
changeset
|
973 } |
7 | 974 |
975 /* Need to get the line pointer again, a | |
976 * multi-line search may have made it invalid. */ | |
140 | 977 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE); |
7 | 978 } |
979 | |
980 /* | |
981 * If there is only a match after the cursor, skip | |
982 * this match. | |
983 */ | |
984 if (!match_ok) | |
985 continue; | |
986 } | |
987 | |
1544 | 988 /* With the SEARCH_END option move to the last character |
989 * of the match. Don't do it for an empty match, end | |
990 * should be same as start then. */ | |
4252 | 991 if ((options & SEARCH_END) && !(options & SEARCH_NOOF) |
1544 | 992 && !(matchpos.lnum == endpos.lnum |
993 && matchpos.col == endpos.col)) | |
7 | 994 { |
1544 | 995 /* For a match in the first column, set the position |
996 * on the NUL in the previous line. */ | |
140 | 997 pos->lnum = lnum + endpos.lnum; |
1544 | 998 pos->col = endpos.col; |
999 if (endpos.col == 0) | |
819 | 1000 { |
1544 | 1001 if (pos->lnum > 1) /* just in case */ |
1002 { | |
1003 --pos->lnum; | |
1004 pos->col = (colnr_T)STRLEN(ml_get_buf(buf, | |
1005 pos->lnum, FALSE)); | |
1006 } | |
1007 } | |
1008 else | |
1009 { | |
1010 --pos->col; | |
1011 if (has_mbyte | |
1012 && pos->lnum <= buf->b_ml.ml_line_count) | |
1013 { | |
1060 | 1014 ptr = ml_get_buf(buf, pos->lnum, FALSE); |
1544 | 1015 pos->col -= (*mb_head_off)(ptr, ptr + pos->col); |
1016 } | |
819 | 1017 } |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
1018 if (end_pos != NULL) |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
1019 { |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
1020 end_pos->lnum = lnum + matchpos.lnum; |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
1021 end_pos->col = matchpos.col; |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
1022 } |
7 | 1023 } |
1024 else | |
1025 { | |
140 | 1026 pos->lnum = lnum + matchpos.lnum; |
1027 pos->col = matchpos.col; | |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
1028 if (end_pos != NULL) |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
1029 { |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
1030 end_pos->lnum = lnum + endpos.lnum; |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
1031 end_pos->col = endpos.col; |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
1032 } |
7 | 1033 } |
1034 pos->coladd = 0; | |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
1035 if (end_pos != NULL) |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
1036 end_pos->coladd = 0; |
7 | 1037 found = 1; |
6402 | 1038 first_match = FALSE; |
7 | 1039 |
1040 /* Set variables used for 'incsearch' highlighting. */ | |
140 | 1041 search_match_lines = endpos.lnum - matchpos.lnum; |
7 | 1042 search_match_endcol = endpos.col; |
1043 break; | |
1044 } | |
1045 line_breakcheck(); /* stop if ctrl-C typed */ | |
1046 if (got_int) | |
1047 break; | |
1048 | |
1049 #ifdef FEAT_SEARCH_EXTRA | |
1050 /* Cancel searching if a character was typed. Used for | |
1051 * 'incsearch'. Don't check too often, that would slowdown | |
1052 * searching too much. */ | |
1053 if ((options & SEARCH_PEEK) | |
1054 && ((lnum - pos->lnum) & 0x3f) == 0 | |
1055 && char_avail()) | |
1056 { | |
1057 break_loop = TRUE; | |
1058 break; | |
1059 } | |
1060 #endif | |
1061 | |
1062 if (loop && lnum == start_pos.lnum) | |
1063 break; /* if second loop, stop where started */ | |
1064 } | |
1065 at_first_line = FALSE; | |
1066 | |
1067 /* | |
692 | 1068 * Stop the search if wrapscan isn't set, "stop_lnum" is |
1069 * specified, after an interrupt, after a match and after looping | |
1070 * twice. | |
7 | 1071 */ |
692 | 1072 if (!p_ws || stop_lnum != 0 || got_int || called_emsg |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
1073 #ifdef FEAT_RELTIME |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
1074 || (timed_out != NULL && *timed_out) |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
1075 #endif |
1877 | 1076 #ifdef FEAT_SEARCH_EXTRA |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
1077 || break_loop |
1877 | 1078 #endif |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
1079 || found || loop) |
7 | 1080 break; |
1081 | |
1082 /* | |
1083 * If 'wrapscan' is set we continue at the other end of the file. | |
1084 * If 'shortmess' does not contain 's', we give a message. | |
1085 * This message is also remembered in keep_msg for when the screen | |
1086 * is redrawn. The keep_msg is cleared whenever another message is | |
1087 * written. | |
1088 */ | |
1089 if (dir == BACKWARD) /* start second loop at the other end */ | |
1090 lnum = buf->b_ml.ml_line_count; | |
1091 else | |
1092 lnum = 1; | |
504 | 1093 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG)) |
1094 give_warning((char_u *)_(dir == BACKWARD | |
1095 ? top_bot_msg : bot_top_msg), TRUE); | |
7 | 1096 } |
1877 | 1097 if (got_int || called_emsg |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
1098 #ifdef FEAT_RELTIME |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
1099 || (timed_out != NULL && *timed_out) |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
1100 #endif |
1877 | 1101 #ifdef FEAT_SEARCH_EXTRA |
1102 || break_loop | |
1103 #endif | |
1104 ) | |
7 | 1105 break; |
1106 } | |
1107 while (--count > 0 && found); /* stop after count matches or no match */ | |
1108 | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
1109 vim_regfree(regmatch.regprog); |
7 | 1110 |
648 | 1111 called_emsg |= save_called_emsg; |
1112 | |
7 | 1113 if (!found) /* did not find it */ |
1114 { | |
1115 if (got_int) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
1116 emsg(_(e_interr)); |
7 | 1117 else if ((options & SEARCH_MSG) == SEARCH_MSG) |
1118 { | |
1119 if (p_ws) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
1120 semsg(_(e_patnotf2), mr_pattern); |
7 | 1121 else if (lnum == 0) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
1122 semsg(_("E384: search hit TOP without match for: %s"), |
7 | 1123 mr_pattern); |
1124 else | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
1125 semsg(_("E385: search hit BOTTOM without match for: %s"), |
7 | 1126 mr_pattern); |
1127 } | |
1128 return FAIL; | |
1129 } | |
1130 | |
685 | 1131 /* A pattern like "\n\zs" may go past the last line. */ |
1132 if (pos->lnum > buf->b_ml.ml_line_count) | |
1133 { | |
1134 pos->lnum = buf->b_ml.ml_line_count; | |
835 | 1135 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE)); |
685 | 1136 if (pos->col > 0) |
1137 --pos->col; | |
1138 } | |
1139 | |
7 | 1140 return submatch + 1; |
1141 } | |
1142 | |
1143 #ifdef FEAT_EVAL | |
1624 | 1144 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1145 set_search_direction(int cdir) |
1624 | 1146 { |
1147 spats[0].off.dir = cdir; | |
1148 } | |
1149 | |
1150 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1151 set_vv_searchforward(void) |
1624 | 1152 { |
1153 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/')); | |
1154 } | |
1155 | |
7 | 1156 /* |
1157 * Return the number of the first subpat that matched. | |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
1158 * Return zero if none of them matched. |
7 | 1159 */ |
1160 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1161 first_submatch(regmmatch_T *rp) |
7 | 1162 { |
1163 int submatch; | |
1164 | |
1165 for (submatch = 1; ; ++submatch) | |
1166 { | |
1167 if (rp->startpos[submatch].lnum >= 0) | |
1168 break; | |
1169 if (submatch == 9) | |
1170 { | |
1171 submatch = 0; | |
1172 break; | |
1173 } | |
1174 } | |
1175 return submatch; | |
1176 } | |
1177 #endif | |
1178 | |
1179 /* | |
1180 * Highest level string search function. | |
1222 | 1181 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc' |
7 | 1182 * If 'dirc' is 0: use previous dir. |
1183 * If 'pat' is NULL or empty : use previous string. | |
1184 * If 'options & SEARCH_REV' : go in reverse of previous dir. | |
1185 * If 'options & SEARCH_ECHO': echo the search command and handle options | |
1186 * If 'options & SEARCH_MSG' : may give error message | |
1187 * If 'options & SEARCH_OPT' : interpret optional flags | |
1188 * If 'options & SEARCH_HIS' : put search pattern in history | |
1189 * If 'options & SEARCH_NOOF': don't add offset to position | |
1190 * If 'options & SEARCH_MARK': set previous context mark | |
1191 * If 'options & SEARCH_KEEP': keep previous search pattern | |
1192 * If 'options & SEARCH_START': accept match at curpos itself | |
1193 * If 'options & SEARCH_PEEK': check for typed char, cancel search | |
1194 * | |
1195 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this | |
1196 * makes the movement linewise without moving the match position. | |
1197 * | |
6661 | 1198 * Return 0 for failure, 1 for found, 2 for found and line offset added. |
7 | 1199 */ |
1200 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1201 do_search( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1202 oparg_T *oap, /* can be NULL */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1203 int dirc, /* '/' or '?' */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1204 char_u *pat, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1205 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1206 int options, |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
1207 proftime_T *tm, /* timeout limit or NULL */ |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
1208 int *timed_out) /* flag set on timeout or NULL */ |
7 | 1209 { |
1210 pos_T pos; /* position of the last match */ | |
1211 char_u *searchstr; | |
1212 struct soffset old_off; | |
1213 int retval; /* Return value */ | |
1214 char_u *p; | |
1215 long c; | |
1216 char_u *dircp; | |
1217 char_u *strcopy = NULL; | |
1218 char_u *ps; | |
1219 | |
1220 /* | |
1221 * A line offset is not remembered, this is vi compatible. | |
1222 */ | |
1223 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL) | |
1224 { | |
1225 spats[0].off.line = FALSE; | |
1226 spats[0].off.off = 0; | |
1227 } | |
1228 | |
1229 /* | |
1230 * Save the values for when (options & SEARCH_KEEP) is used. | |
1231 * (there is no "if ()" around this because gcc wants them initialized) | |
1232 */ | |
1233 old_off = spats[0].off; | |
1234 | |
1235 pos = curwin->w_cursor; /* start searching at the cursor position */ | |
1236 | |
1237 /* | |
1238 * Find out the direction of the search. | |
1239 */ | |
1240 if (dirc == 0) | |
1241 dirc = spats[0].off.dir; | |
1242 else | |
1624 | 1243 { |
7 | 1244 spats[0].off.dir = dirc; |
1624 | 1245 #if defined(FEAT_EVAL) |
1246 set_vv_searchforward(); | |
1247 #endif | |
1248 } | |
7 | 1249 if (options & SEARCH_REV) |
1250 { | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
1251 #ifdef MSWIN |
7 | 1252 /* There is a bug in the Visual C++ 2.2 compiler which means that |
1253 * dirc always ends up being '/' */ | |
1254 dirc = (dirc == '/') ? '?' : '/'; | |
1255 #else | |
1256 if (dirc == '/') | |
1257 dirc = '?'; | |
1258 else | |
1259 dirc = '/'; | |
1260 #endif | |
1261 } | |
1262 | |
1263 #ifdef FEAT_FOLDING | |
1264 /* If the cursor is in a closed fold, don't find another match in the same | |
1265 * fold. */ | |
1266 if (dirc == '/') | |
1267 { | |
1268 if (hasFolding(pos.lnum, NULL, &pos.lnum)) | |
1269 pos.col = MAXCOL - 2; /* avoid overflow when adding 1 */ | |
1270 } | |
1271 else | |
1272 { | |
1273 if (hasFolding(pos.lnum, &pos.lnum, NULL)) | |
1274 pos.col = 0; | |
1275 } | |
1276 #endif | |
1277 | |
1278 #ifdef FEAT_SEARCH_EXTRA | |
1279 /* | |
1280 * Turn 'hlsearch' highlighting back on. | |
1281 */ | |
1282 if (no_hlsearch && !(options & SEARCH_KEEP)) | |
1283 { | |
745 | 1284 redraw_all_later(SOME_VALID); |
13792
0e9b2971d7c3
patch 8.0.1768: SET_NO_HLSEARCH() used in a wrong way
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
1285 set_no_hlsearch(FALSE); |
7 | 1286 } |
1287 #endif | |
1288 | |
1289 /* | |
1290 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar". | |
1291 */ | |
1292 for (;;) | |
1293 { | |
1294 searchstr = pat; | |
1295 dircp = NULL; | |
1296 /* use previous pattern */ | |
1297 if (pat == NULL || *pat == NUL || *pat == dirc) | |
1298 { | |
1299 if (spats[RE_SEARCH].pat == NULL) /* no previous pattern */ | |
1300 { | |
10172
ab45de65977b
commit https://github.com/vim/vim/commit/ea683da58cf9ecf3afab9d650d3d2da76e5298d3
Christian Brabandt <cb@256bit.org>
parents:
10064
diff
changeset
|
1301 searchstr = spats[RE_SUBST].pat; |
ab45de65977b
commit https://github.com/vim/vim/commit/ea683da58cf9ecf3afab9d650d3d2da76e5298d3
Christian Brabandt <cb@256bit.org>
parents:
10064
diff
changeset
|
1302 if (searchstr == NULL) |
2719 | 1303 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
1304 emsg(_(e_noprevre)); |
2719 | 1305 retval = 0; |
1306 goto end_do_search; | |
1307 } | |
7 | 1308 } |
2719 | 1309 else |
1310 { | |
1311 /* make search_regcomp() use spats[RE_SEARCH].pat */ | |
1312 searchstr = (char_u *)""; | |
1313 } | |
7 | 1314 } |
1315 | |
1316 if (pat != NULL && *pat != NUL) /* look for (new) offset */ | |
1317 { | |
1318 /* | |
1319 * Find end of regular expression. | |
1320 * If there is a matching '/' or '?', toss it. | |
1321 */ | |
1322 ps = strcopy; | |
1323 p = skip_regexp(pat, dirc, (int)p_magic, &strcopy); | |
1324 if (strcopy != ps) | |
1325 { | |
1326 /* made a copy of "pat" to change "\?" to "?" */ | |
835 | 1327 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy)); |
7 | 1328 pat = strcopy; |
1329 searchstr = strcopy; | |
1330 } | |
1331 if (*p == dirc) | |
1332 { | |
1333 dircp = p; /* remember where we put the NUL */ | |
1334 *p++ = NUL; | |
1335 } | |
1336 spats[0].off.line = FALSE; | |
1337 spats[0].off.end = FALSE; | |
1338 spats[0].off.off = 0; | |
1339 /* | |
1340 * Check for a line offset or a character offset. | |
1341 * For get_address (echo off) we don't check for a character | |
1342 * offset, because it is meaningless and the 's' could be a | |
1343 * substitute command. | |
1344 */ | |
1345 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p)) | |
1346 spats[0].off.line = TRUE; | |
1347 else if ((options & SEARCH_OPT) && | |
1348 (*p == 'e' || *p == 's' || *p == 'b')) | |
1349 { | |
1350 if (*p == 'e') /* end */ | |
1351 spats[0].off.end = SEARCH_END; | |
1352 ++p; | |
1353 } | |
1354 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') /* got an offset */ | |
1355 { | |
1356 /* 'nr' or '+nr' or '-nr' */ | |
1357 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1))) | |
1358 spats[0].off.off = atol((char *)p); | |
1359 else if (*p == '-') /* single '-' */ | |
1360 spats[0].off.off = -1; | |
1361 else /* single '+' */ | |
1362 spats[0].off.off = 1; | |
1363 ++p; | |
1364 while (VIM_ISDIGIT(*p)) /* skip number */ | |
1365 ++p; | |
1366 } | |
1367 | |
1368 /* compute length of search command for get_address() */ | |
1369 searchcmdlen += (int)(p - pat); | |
1370 | |
1371 pat = p; /* put pat after search command */ | |
1372 } | |
1373 | |
1374 if ((options & SEARCH_ECHO) && messaging() | |
1375 && !cmd_silent && msg_silent == 0) | |
1376 { | |
1377 char_u *msgbuf; | |
1378 char_u *trunc; | |
1379 | |
1380 if (*searchstr == NUL) | |
15089
e428882d6ffb
patch 8.1.0555: crash when last search pat is set but not last substitute pat
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
1381 p = spats[0].pat; |
7 | 1382 else |
1383 p = searchstr; | |
1384 msgbuf = alloc((unsigned)(STRLEN(p) + 40)); | |
1385 if (msgbuf != NULL) | |
1386 { | |
1387 msgbuf[0] = dirc; | |
507 | 1388 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p))) |
1389 { | |
1390 /* Use a space to draw the composing char on. */ | |
1391 msgbuf[1] = ' '; | |
1392 STRCPY(msgbuf + 2, p); | |
1393 } | |
1394 else | |
1395 STRCPY(msgbuf + 1, p); | |
7 | 1396 if (spats[0].off.line || spats[0].off.end || spats[0].off.off) |
1397 { | |
1398 p = msgbuf + STRLEN(msgbuf); | |
1399 *p++ = dirc; | |
1400 if (spats[0].off.end) | |
1401 *p++ = 'e'; | |
1402 else if (!spats[0].off.line) | |
1403 *p++ = 's'; | |
1404 if (spats[0].off.off > 0 || spats[0].off.line) | |
1405 *p++ = '+'; | |
1406 if (spats[0].off.off != 0 || spats[0].off.line) | |
1407 sprintf((char *)p, "%ld", spats[0].off.off); | |
1408 else | |
1409 *p = NUL; | |
1410 } | |
1411 | |
1412 msg_start(); | |
516 | 1413 trunc = msg_strtrunc(msgbuf, FALSE); |
7 | 1414 |
1415 #ifdef FEAT_RIGHTLEFT | |
1416 /* The search pattern could be shown on the right in rightleft | |
1417 * mode, but the 'ruler' and 'showcmd' area use it too, thus | |
1418 * it would be blanked out again very soon. Show it on the | |
1419 * left, but do reverse the text. */ | |
1420 if (curwin->w_p_rl && *curwin->w_p_rlc == 's') | |
1421 { | |
1422 char_u *r; | |
1423 | |
1424 r = reverse_text(trunc != NULL ? trunc : msgbuf); | |
1425 if (r != NULL) | |
1426 { | |
1427 vim_free(trunc); | |
1428 trunc = r; | |
1429 } | |
1430 } | |
1431 #endif | |
1432 if (trunc != NULL) | |
1433 { | |
1434 msg_outtrans(trunc); | |
1435 vim_free(trunc); | |
1436 } | |
1437 else | |
1438 msg_outtrans(msgbuf); | |
1439 msg_clr_eos(); | |
1440 msg_check(); | |
1441 vim_free(msgbuf); | |
1442 | |
1443 gotocmdline(FALSE); | |
1444 out_flush(); | |
1445 msg_nowait = TRUE; /* don't wait for this message */ | |
1446 } | |
1447 } | |
1448 | |
1449 /* | |
1450 * If there is a character offset, subtract it from the current | |
1451 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2". | |
8 | 1452 * Skip this if pos.col is near MAXCOL (closed fold). |
7 | 1453 * This is not done for a line offset, because then we would not be vi |
1454 * compatible. | |
1455 */ | |
8 | 1456 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2) |
7 | 1457 { |
1458 if (spats[0].off.off > 0) | |
1459 { | |
1460 for (c = spats[0].off.off; c; --c) | |
1461 if (decl(&pos) == -1) | |
1462 break; | |
1463 if (c) /* at start of buffer */ | |
1464 { | |
1465 pos.lnum = 0; /* allow lnum == 0 here */ | |
1466 pos.col = MAXCOL; | |
1467 } | |
1468 } | |
1469 else | |
1470 { | |
1471 for (c = spats[0].off.off; c; ++c) | |
1472 if (incl(&pos) == -1) | |
1473 break; | |
1474 if (c) /* at end of buffer */ | |
1475 { | |
1476 pos.lnum = curbuf->b_ml.ml_line_count + 1; | |
1477 pos.col = 0; | |
1478 } | |
1479 } | |
1480 } | |
1481 | |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15758
diff
changeset
|
1482 c = searchit(curwin, curbuf, &pos, NULL, |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15758
diff
changeset
|
1483 dirc == '/' ? FORWARD : BACKWARD, |
7 | 1484 searchstr, count, spats[0].off.end + (options & |
1485 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS | |
1486 + SEARCH_MSG + SEARCH_START | |
1487 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))), | |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
1488 RE_LAST, (linenr_T)0, tm, timed_out); |
7 | 1489 |
1490 if (dircp != NULL) | |
1491 *dircp = dirc; /* restore second '/' or '?' for normal_cmd() */ | |
1492 if (c == FAIL) | |
1493 { | |
1494 retval = 0; | |
1495 goto end_do_search; | |
1496 } | |
1497 if (spats[0].off.end && oap != NULL) | |
1498 oap->inclusive = TRUE; /* 'e' includes last character */ | |
1499 | |
1500 retval = 1; /* pattern found */ | |
1501 | |
1502 /* | |
1503 * Add character and/or line offset | |
1504 */ | |
945 | 1505 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';')) |
7 | 1506 { |
1507 if (spats[0].off.line) /* Add the offset to the line number. */ | |
1508 { | |
1509 c = pos.lnum + spats[0].off.off; | |
1510 if (c < 1) | |
1511 pos.lnum = 1; | |
1512 else if (c > curbuf->b_ml.ml_line_count) | |
1513 pos.lnum = curbuf->b_ml.ml_line_count; | |
1514 else | |
1515 pos.lnum = c; | |
1516 pos.col = 0; | |
1517 | |
1518 retval = 2; /* pattern found, line offset added */ | |
1519 } | |
8 | 1520 else if (pos.col < MAXCOL - 2) /* just in case */ |
7 | 1521 { |
1522 /* to the right, check for end of file */ | |
1624 | 1523 c = spats[0].off.off; |
1524 if (c > 0) | |
7 | 1525 { |
1624 | 1526 while (c-- > 0) |
7 | 1527 if (incl(&pos) == -1) |
1528 break; | |
1529 } | |
1530 /* to the left, check for start of file */ | |
1531 else | |
1532 { | |
1624 | 1533 while (c++ < 0) |
1534 if (decl(&pos) == -1) | |
1535 break; | |
7 | 1536 } |
1537 } | |
1538 } | |
1539 | |
1540 /* | |
1541 * The search command can be followed by a ';' to do another search. | |
1542 * For example: "/pat/;/foo/+3;?bar" | |
1543 * This is like doing another search command, except: | |
1544 * - The remembered direction '/' or '?' is from the first search. | |
1545 * - When an error happens the cursor isn't moved at all. | |
1546 * Don't do this when called by get_address() (it handles ';' itself). | |
1547 */ | |
1548 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';') | |
1549 break; | |
1550 | |
1551 dirc = *++pat; | |
1552 if (dirc != '?' && dirc != '/') | |
1553 { | |
1554 retval = 0; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
1555 emsg(_("E386: Expected '?' or '/' after ';'")); |
7 | 1556 goto end_do_search; |
1557 } | |
1558 ++pat; | |
1559 } | |
1560 | |
1561 if (options & SEARCH_MARK) | |
1562 setpcmark(); | |
1563 curwin->w_cursor = pos; | |
1564 curwin->w_set_curswant = TRUE; | |
1565 | |
1566 end_do_search: | |
5616 | 1567 if ((options & SEARCH_KEEP) || cmdmod.keeppatterns) |
7 | 1568 spats[0].off = old_off; |
1569 vim_free(strcopy); | |
1570 | |
1571 return retval; | |
1572 } | |
1573 | |
1574 #if defined(FEAT_INS_EXPAND) || defined(PROTO) | |
1575 /* | |
1576 * search_for_exact_line(buf, pos, dir, pat) | |
1577 * | |
1578 * Search for a line starting with the given pattern (ignoring leading | |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11275
diff
changeset
|
1579 * white-space), starting from pos and going in direction "dir". "pos" will |
7 | 1580 * contain the position of the match found. Blank lines match only if |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11275
diff
changeset
|
1581 * ADDING is set. If p_ic is set then the pattern must be in lowercase. |
7 | 1582 * Return OK for success, or FAIL if no line found. |
1583 */ | |
1584 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1585 search_for_exact_line( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1586 buf_T *buf, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1587 pos_T *pos, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1588 int dir, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1589 char_u *pat) |
7 | 1590 { |
1591 linenr_T start = 0; | |
1592 char_u *ptr; | |
1593 char_u *p; | |
1594 | |
1595 if (buf->b_ml.ml_line_count == 0) | |
1596 return FAIL; | |
1597 for (;;) | |
1598 { | |
1599 pos->lnum += dir; | |
1600 if (pos->lnum < 1) | |
1601 { | |
1602 if (p_ws) | |
1603 { | |
1604 pos->lnum = buf->b_ml.ml_line_count; | |
1605 if (!shortmess(SHM_SEARCH)) | |
1606 give_warning((char_u *)_(top_bot_msg), TRUE); | |
1607 } | |
1608 else | |
1609 { | |
1610 pos->lnum = 1; | |
1611 break; | |
1612 } | |
1613 } | |
1614 else if (pos->lnum > buf->b_ml.ml_line_count) | |
1615 { | |
1616 if (p_ws) | |
1617 { | |
1618 pos->lnum = 1; | |
1619 if (!shortmess(SHM_SEARCH)) | |
1620 give_warning((char_u *)_(bot_top_msg), TRUE); | |
1621 } | |
1622 else | |
1623 { | |
1624 pos->lnum = 1; | |
1625 break; | |
1626 } | |
1627 } | |
1628 if (pos->lnum == start) | |
1629 break; | |
1630 if (start == 0) | |
1631 start = pos->lnum; | |
1632 ptr = ml_get_buf(buf, pos->lnum, FALSE); | |
1633 p = skipwhite(ptr); | |
1634 pos->col = (colnr_T) (p - ptr); | |
1635 | |
1636 /* when adding lines the matching line may be empty but it is not | |
1637 * ignored because we are interested in the next line -- Acevedo */ | |
449 | 1638 if ((compl_cont_status & CONT_ADDING) |
1639 && !(compl_cont_status & CONT_SOL)) | |
7 | 1640 { |
1641 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0) | |
1642 return OK; | |
1643 } | |
1644 else if (*p != NUL) /* ignore empty lines */ | |
1645 { /* expanding lines or words */ | |
449 | 1646 if ((p_ic ? MB_STRNICMP(p, pat, compl_length) |
1647 : STRNCMP(p, pat, compl_length)) == 0) | |
7 | 1648 return OK; |
1649 } | |
1650 } | |
1651 return FAIL; | |
1652 } | |
1653 #endif /* FEAT_INS_EXPAND */ | |
1654 | |
1655 /* | |
1656 * Character Searches | |
1657 */ | |
1658 | |
1659 /* | |
1660 * Search for a character in a line. If "t_cmd" is FALSE, move to the | |
1661 * position of the character, otherwise move to just before the char. | |
1662 * Do this "cap->count1" times. | |
1663 * Return FAIL or OK. | |
1664 */ | |
1665 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1666 searchc(cmdarg_T *cap, int t_cmd) |
7 | 1667 { |
1668 int c = cap->nchar; /* char to search for */ | |
1669 int dir = cap->arg; /* TRUE for searching forward */ | |
1670 long count = cap->count1; /* repeat count */ | |
1671 int col; | |
1672 char_u *p; | |
1673 int len; | |
2925 | 1674 int stop = TRUE; |
7 | 1675 |
1676 if (c != NUL) /* normal search: remember args for repeat */ | |
1677 { | |
1678 if (!KeyStuffed) /* don't remember when redoing */ | |
1679 { | |
6991 | 1680 *lastc = c; |
1681 set_csearch_direction(dir); | |
1682 set_csearch_until(t_cmd); | |
1683 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes); | |
7 | 1684 if (cap->ncharC1 != 0) |
1685 { | |
6991 | 1686 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1, |
1687 lastc_bytes + lastc_bytelen); | |
7 | 1688 if (cap->ncharC2 != 0) |
6991 | 1689 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2, |
1690 lastc_bytes + lastc_bytelen); | |
7 | 1691 } |
1692 } | |
1693 } | |
1694 else /* repeat previous search */ | |
1695 { | |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1696 if (*lastc == NUL && lastc_bytelen == 1) |
7 | 1697 return FAIL; |
1698 if (dir) /* repeat in opposite direction */ | |
1699 dir = -lastcdir; | |
1700 else | |
1701 dir = lastcdir; | |
1702 t_cmd = last_t_cmd; | |
6991 | 1703 c = *lastc; |
1704 /* For multi-byte re-use last lastc_bytes[] and lastc_bytelen. */ | |
2925 | 1705 |
1706 /* Force a move of at least one char, so ";" and "," will move the | |
1707 * cursor, even if the cursor is right in front of char we are looking | |
1708 * at. */ | |
2947 | 1709 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd) |
2925 | 1710 stop = FALSE; |
7 | 1711 } |
1712 | |
530 | 1713 if (dir == BACKWARD) |
1714 cap->oap->inclusive = FALSE; | |
1715 else | |
1716 cap->oap->inclusive = TRUE; | |
1717 | |
7 | 1718 p = ml_get_curline(); |
1719 col = curwin->w_cursor.col; | |
1720 len = (int)STRLEN(p); | |
1721 | |
1722 while (count--) | |
1723 { | |
1724 if (has_mbyte) | |
1725 { | |
1726 for (;;) | |
1727 { | |
1728 if (dir > 0) | |
1729 { | |
474 | 1730 col += (*mb_ptr2len)(p + col); |
7 | 1731 if (col >= len) |
1732 return FAIL; | |
1733 } | |
1734 else | |
1735 { | |
1736 if (col == 0) | |
1737 return FAIL; | |
1738 col -= (*mb_head_off)(p, p + col - 1) + 1; | |
1739 } | |
6991 | 1740 if (lastc_bytelen == 1) |
7 | 1741 { |
2925 | 1742 if (p[col] == c && stop) |
7 | 1743 break; |
1744 } | |
11018
654fc5636b37
patch 8.0.0398: illegal memory access with "t"
Christian Brabandt <cb@256bit.org>
parents:
10900
diff
changeset
|
1745 else if (STRNCMP(p + col, lastc_bytes, lastc_bytelen) == 0 |
10430
37a441352da2
commit https://github.com/vim/vim/commit/b129a447f3b580d4c941869672b0557c52c37e4d
Christian Brabandt <cb@256bit.org>
parents:
10277
diff
changeset
|
1746 && stop) |
11018
654fc5636b37
patch 8.0.0398: illegal memory access with "t"
Christian Brabandt <cb@256bit.org>
parents:
10900
diff
changeset
|
1747 break; |
2925 | 1748 stop = TRUE; |
7 | 1749 } |
1750 } | |
1751 else | |
1752 { | |
1753 for (;;) | |
1754 { | |
1755 if ((col += dir) < 0 || col >= len) | |
1756 return FAIL; | |
2925 | 1757 if (p[col] == c && stop) |
7 | 1758 break; |
2925 | 1759 stop = TRUE; |
7 | 1760 } |
1761 } | |
1762 } | |
1763 | |
1764 if (t_cmd) | |
1765 { | |
1766 /* backup to before the character (possibly double-byte) */ | |
1767 col -= dir; | |
1768 if (has_mbyte) | |
1769 { | |
1770 if (dir < 0) | |
6991 | 1771 /* Landed on the search char which is lastc_bytelen long */ |
1772 col += lastc_bytelen - 1; | |
7 | 1773 else |
1774 /* To previous char, which may be multi-byte. */ | |
1775 col -= (*mb_head_off)(p, p + col); | |
1776 } | |
1777 } | |
1778 curwin->w_cursor.col = col; | |
1779 | |
1780 return OK; | |
1781 } | |
1782 | |
1783 /* | |
1784 * "Other" Searches | |
1785 */ | |
1786 | |
1787 /* | |
1788 * findmatch - find the matching paren or brace | |
1789 * | |
1790 * Improvement over vi: Braces inside quotes are ignored. | |
1791 */ | |
1792 pos_T * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1793 findmatch(oparg_T *oap, int initc) |
7 | 1794 { |
1795 return findmatchlimit(oap, initc, 0, 0); | |
1796 } | |
1797 | |
1798 /* | |
1799 * Return TRUE if the character before "linep[col]" equals "ch". | |
1800 * Return FALSE if "col" is zero. | |
1801 * Update "*prevcol" to the column of the previous character, unless "prevcol" | |
1802 * is NULL. | |
1803 * Handles multibyte string correctly. | |
1804 */ | |
1805 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1806 check_prevcol( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1807 char_u *linep, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1808 int col, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1809 int ch, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1810 int *prevcol) |
7 | 1811 { |
1812 --col; | |
1813 if (col > 0 && has_mbyte) | |
1814 col -= (*mb_head_off)(linep, linep + col); | |
1815 if (prevcol) | |
1816 *prevcol = col; | |
1817 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE; | |
1818 } | |
1819 | |
6971 | 1820 /* |
1821 * Raw string start is found at linep[startpos.col - 1]. | |
1822 * Return TRUE if the matching end can be found between startpos and endpos. | |
1823 */ | |
1824 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1825 find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos) |
6971 | 1826 { |
1827 char_u *p; | |
1828 char_u *delim_copy; | |
1829 size_t delim_len; | |
1830 linenr_T lnum; | |
1831 int found = FALSE; | |
1832 | |
1833 for (p = linep + startpos->col + 1; *p && *p != '('; ++p) | |
1834 ; | |
1835 delim_len = (p - linep) - startpos->col - 1; | |
7054
3a1a6d6fb9b3
commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents:
7019
diff
changeset
|
1836 delim_copy = vim_strnsave(linep + startpos->col + 1, (int)delim_len); |
6971 | 1837 if (delim_copy == NULL) |
1838 return FALSE; | |
1839 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum) | |
1840 { | |
1841 char_u *line = ml_get(lnum); | |
1842 | |
1843 for (p = line + (lnum == startpos->lnum | |
1844 ? startpos->col + 1 : 0); *p; ++p) | |
1845 { | |
1846 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col) | |
1847 break; | |
1848 if (*p == ')' && p[delim_len + 1] == '"' | |
1849 && STRNCMP(delim_copy, p + 1, delim_len) == 0) | |
1850 { | |
1851 found = TRUE; | |
1852 break; | |
1853 } | |
1854 } | |
1855 if (found) | |
1856 break; | |
1857 } | |
1858 vim_free(delim_copy); | |
1859 return found; | |
1860 } | |
1861 | |
7 | 1862 /* |
1863 * findmatchlimit -- find the matching paren or brace, if it exists within | |
6971 | 1864 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling |
1865 * off the edge of the file. | |
7 | 1866 * |
1867 * "initc" is the character to find a match for. NUL means to find the | |
6971 | 1868 * character at or after the cursor. Special values: |
1869 * '*' look for C-style comment / * | |
1870 * '/' look for C-style comment / *, ignoring comment-end | |
1871 * '#' look for preprocessor directives | |
1872 * 'R' look for raw string start: R"delim(text)delim" (only backwards) | |
7 | 1873 * |
1874 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#') | |
1875 * FM_FORWARD search forwards (when initc is '/', '*' or '#') | |
1876 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0) | |
1877 * FM_SKIPCOMM skip comments (not implemented yet!) | |
523 | 1878 * |
6971 | 1879 * "oap" is only used to set oap->motion_type for a linewise motion, it can be |
523 | 1880 * NULL |
7 | 1881 */ |
1882 | |
1883 pos_T * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1884 findmatchlimit( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1885 oparg_T *oap, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1886 int initc, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1887 int flags, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1888 int maxtravel) |
7 | 1889 { |
1890 static pos_T pos; /* current search position */ | |
1891 int findc = 0; /* matching brace */ | |
1892 int c; | |
1893 int count = 0; /* cumulative number of braces */ | |
1894 int backwards = FALSE; /* init for gcc */ | |
6971 | 1895 int raw_string = FALSE; /* search for raw string */ |
7 | 1896 int inquote = FALSE; /* TRUE when inside quotes */ |
1897 char_u *linep; /* pointer to current line */ | |
1898 char_u *ptr; | |
1899 int do_quotes; /* check for quotes in current line */ | |
1900 int at_start; /* do_quotes value at start position */ | |
1901 int hash_dir = 0; /* Direction searched for # things */ | |
1902 int comment_dir = 0; /* Direction searched for comments */ | |
1903 pos_T match_pos; /* Where last slash-star was found */ | |
1904 int start_in_quotes; /* start position is in quotes */ | |
1905 int traveled = 0; /* how far we've searched so far */ | |
1906 int ignore_cend = FALSE; /* ignore comment end */ | |
1907 int cpo_match; /* vi compatible matching */ | |
1908 int cpo_bsl; /* don't recognize backslashes */ | |
1909 int match_escaped = 0; /* search for escaped match */ | |
1910 int dir; /* Direction to search */ | |
1911 int comment_col = MAXCOL; /* start of / / comment */ | |
14 | 1912 #ifdef FEAT_LISP |
1913 int lispcomm = FALSE; /* inside of Lisp-style comment */ | |
1914 int lisp = curbuf->b_p_lisp; /* engage Lisp-specific hacks ;) */ | |
1915 #endif | |
7 | 1916 |
1917 pos = curwin->w_cursor; | |
5304 | 1918 pos.coladd = 0; |
7 | 1919 linep = ml_get(pos.lnum); |
1920 | |
1921 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL); | |
1922 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL); | |
1923 | |
1924 /* Direction to search when initc is '/', '*' or '#' */ | |
1925 if (flags & FM_BACKWARD) | |
1926 dir = BACKWARD; | |
1927 else if (flags & FM_FORWARD) | |
1928 dir = FORWARD; | |
1929 else | |
1930 dir = 0; | |
1931 | |
1932 /* | |
1933 * if initc given, look in the table for the matching character | |
1934 * '/' and '*' are special cases: look for start or end of comment. | |
1935 * When '/' is used, we ignore running backwards into an star-slash, for | |
1936 * "[*" command, we just want to find any comment. | |
1937 */ | |
6971 | 1938 if (initc == '/' || initc == '*' || initc == 'R') |
7 | 1939 { |
1940 comment_dir = dir; | |
1941 if (initc == '/') | |
1942 ignore_cend = TRUE; | |
1943 backwards = (dir == FORWARD) ? FALSE : TRUE; | |
6971 | 1944 raw_string = (initc == 'R'); |
7 | 1945 initc = NUL; |
1946 } | |
1947 else if (initc != '#' && initc != NUL) | |
1948 { | |
4029 | 1949 find_mps_values(&initc, &findc, &backwards, TRUE); |
1950 if (findc == NUL) | |
7 | 1951 return NULL; |
1952 } | |
1953 else | |
1954 { | |
6971 | 1955 /* |
1956 * Either initc is '#', or no initc was given and we need to look | |
1957 * under the cursor. | |
1958 */ | |
7 | 1959 if (initc == '#') |
1960 { | |
1961 hash_dir = dir; | |
1962 } | |
1963 else | |
1964 { | |
1965 /* | |
1966 * initc was not given, must look for something to match under | |
1967 * or near the cursor. | |
1968 * Only check for special things when 'cpo' doesn't have '%'. | |
1969 */ | |
1970 if (!cpo_match) | |
1971 { | |
1972 /* Are we before or at #if, #else etc.? */ | |
1973 ptr = skipwhite(linep); | |
1974 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep)) | |
1975 { | |
1976 ptr = skipwhite(ptr + 1); | |
1977 if ( STRNCMP(ptr, "if", 2) == 0 | |
1978 || STRNCMP(ptr, "endif", 5) == 0 | |
1979 || STRNCMP(ptr, "el", 2) == 0) | |
1980 hash_dir = 1; | |
1981 } | |
1982 | |
1983 /* Are we on a comment? */ | |
1984 else if (linep[pos.col] == '/') | |
1985 { | |
1986 if (linep[pos.col + 1] == '*') | |
1987 { | |
1988 comment_dir = FORWARD; | |
1989 backwards = FALSE; | |
1990 pos.col++; | |
1991 } | |
1992 else if (pos.col > 0 && linep[pos.col - 1] == '*') | |
1993 { | |
1994 comment_dir = BACKWARD; | |
1995 backwards = TRUE; | |
1996 pos.col--; | |
1997 } | |
1998 } | |
1999 else if (linep[pos.col] == '*') | |
2000 { | |
2001 if (linep[pos.col + 1] == '/') | |
2002 { | |
2003 comment_dir = BACKWARD; | |
2004 backwards = TRUE; | |
2005 } | |
2006 else if (pos.col > 0 && linep[pos.col - 1] == '/') | |
2007 { | |
2008 comment_dir = FORWARD; | |
2009 backwards = FALSE; | |
2010 } | |
2011 } | |
2012 } | |
2013 | |
2014 /* | |
2015 * If we are not on a comment or the # at the start of a line, then | |
2016 * look for brace anywhere on this line after the cursor. | |
2017 */ | |
2018 if (!hash_dir && !comment_dir) | |
2019 { | |
2020 /* | |
2021 * Find the brace under or after the cursor. | |
2022 * If beyond the end of the line, use the last character in | |
2023 * the line. | |
2024 */ | |
2025 if (linep[pos.col] == NUL && pos.col) | |
2026 --pos.col; | |
2027 for (;;) | |
2028 { | |
4029 | 2029 initc = PTR2CHAR(linep + pos.col); |
7 | 2030 if (initc == NUL) |
2031 break; | |
2032 | |
4029 | 2033 find_mps_values(&initc, &findc, &backwards, FALSE); |
7 | 2034 if (findc) |
2035 break; | |
4029 | 2036 pos.col += MB_PTR2LEN(linep + pos.col); |
7 | 2037 } |
2038 if (!findc) | |
2039 { | |
2040 /* no brace in the line, maybe use " #if" then */ | |
2041 if (!cpo_match && *skipwhite(linep) == '#') | |
2042 hash_dir = 1; | |
2043 else | |
2044 return NULL; | |
2045 } | |
2046 else if (!cpo_bsl) | |
2047 { | |
2048 int col, bslcnt = 0; | |
2049 | |
2050 /* Set "match_escaped" if there are an odd number of | |
2051 * backslashes. */ | |
2052 for (col = pos.col; check_prevcol(linep, col, '\\', &col);) | |
2053 bslcnt++; | |
2054 match_escaped = (bslcnt & 1); | |
2055 } | |
2056 } | |
2057 } | |
2058 if (hash_dir) | |
2059 { | |
2060 /* | |
2061 * Look for matching #if, #else, #elif, or #endif | |
2062 */ | |
2063 if (oap != NULL) | |
2064 oap->motion_type = MLINE; /* Linewise for this case only */ | |
2065 if (initc != '#') | |
2066 { | |
2067 ptr = skipwhite(skipwhite(linep) + 1); | |
2068 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0) | |
2069 hash_dir = 1; | |
2070 else if (STRNCMP(ptr, "endif", 5) == 0) | |
2071 hash_dir = -1; | |
2072 else | |
2073 return NULL; | |
2074 } | |
2075 pos.col = 0; | |
2076 while (!got_int) | |
2077 { | |
2078 if (hash_dir > 0) | |
2079 { | |
2080 if (pos.lnum == curbuf->b_ml.ml_line_count) | |
2081 break; | |
2082 } | |
2083 else if (pos.lnum == 1) | |
2084 break; | |
2085 pos.lnum += hash_dir; | |
2086 linep = ml_get(pos.lnum); | |
2087 line_breakcheck(); /* check for CTRL-C typed */ | |
2088 ptr = skipwhite(linep); | |
2089 if (*ptr != '#') | |
2090 continue; | |
2091 pos.col = (colnr_T) (ptr - linep); | |
2092 ptr = skipwhite(ptr + 1); | |
2093 if (hash_dir > 0) | |
2094 { | |
2095 if (STRNCMP(ptr, "if", 2) == 0) | |
2096 count++; | |
2097 else if (STRNCMP(ptr, "el", 2) == 0) | |
2098 { | |
2099 if (count == 0) | |
2100 return &pos; | |
2101 } | |
2102 else if (STRNCMP(ptr, "endif", 5) == 0) | |
2103 { | |
2104 if (count == 0) | |
2105 return &pos; | |
2106 count--; | |
2107 } | |
2108 } | |
2109 else | |
2110 { | |
2111 if (STRNCMP(ptr, "if", 2) == 0) | |
2112 { | |
2113 if (count == 0) | |
2114 return &pos; | |
2115 count--; | |
2116 } | |
2117 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0) | |
2118 { | |
2119 if (count == 0) | |
2120 return &pos; | |
2121 } | |
2122 else if (STRNCMP(ptr, "endif", 5) == 0) | |
2123 count++; | |
2124 } | |
2125 } | |
2126 return NULL; | |
2127 } | |
2128 } | |
2129 | |
2130 #ifdef FEAT_RIGHTLEFT | |
1344 | 2131 /* This is just guessing: when 'rightleft' is set, search for a matching |
7 | 2132 * paren/brace in the other direction. */ |
2133 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL) | |
2134 backwards = !backwards; | |
2135 #endif | |
2136 | |
2137 do_quotes = -1; | |
2138 start_in_quotes = MAYBE; | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
2139 CLEAR_POS(&match_pos); |
699 | 2140 |
7 | 2141 /* backward search: Check if this line contains a single-line comment */ |
14 | 2142 if ((backwards && comment_dir) |
2143 #ifdef FEAT_LISP | |
2144 || lisp | |
2145 #endif | |
2146 ) | |
7 | 2147 comment_col = check_linecomment(linep); |
14 | 2148 #ifdef FEAT_LISP |
2149 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col) | |
2150 lispcomm = TRUE; /* find match inside this comment */ | |
2151 #endif | |
7 | 2152 while (!got_int) |
2153 { | |
2154 /* | |
2155 * Go to the next position, forward or backward. We could use | |
2156 * inc() and dec() here, but that is much slower | |
2157 */ | |
2158 if (backwards) | |
2159 { | |
14 | 2160 #ifdef FEAT_LISP |
2161 /* char to match is inside of comment, don't search outside */ | |
2162 if (lispcomm && pos.col < (colnr_T)comment_col) | |
2163 break; | |
2164 #endif | |
7 | 2165 if (pos.col == 0) /* at start of line, go to prev. one */ |
2166 { | |
2167 if (pos.lnum == 1) /* start of file */ | |
2168 break; | |
2169 --pos.lnum; | |
2170 | |
829 | 2171 if (maxtravel > 0 && ++traveled > maxtravel) |
7 | 2172 break; |
2173 | |
2174 linep = ml_get(pos.lnum); | |
2175 pos.col = (colnr_T)STRLEN(linep); /* pos.col on trailing NUL */ | |
2176 do_quotes = -1; | |
2177 line_breakcheck(); | |
2178 | |
2179 /* Check if this line contains a single-line comment */ | |
14 | 2180 if (comment_dir |
2181 #ifdef FEAT_LISP | |
2182 || lisp | |
2183 #endif | |
2184 ) | |
7 | 2185 comment_col = check_linecomment(linep); |
14 | 2186 #ifdef FEAT_LISP |
2187 /* skip comment */ | |
2188 if (lisp && comment_col != MAXCOL) | |
2189 pos.col = comment_col; | |
2190 #endif | |
7 | 2191 } |
2192 else | |
2193 { | |
2194 --pos.col; | |
2195 if (has_mbyte) | |
2196 pos.col -= (*mb_head_off)(linep, linep + pos.col); | |
2197 } | |
2198 } | |
2199 else /* forward search */ | |
2200 { | |
14 | 2201 if (linep[pos.col] == NUL |
2202 /* at end of line, go to next one */ | |
2203 #ifdef FEAT_LISP | |
2204 /* don't search for match in comment */ | |
2205 || (lisp && comment_col != MAXCOL | |
2206 && pos.col == (colnr_T)comment_col) | |
2207 #endif | |
2208 ) | |
7 | 2209 { |
14 | 2210 if (pos.lnum == curbuf->b_ml.ml_line_count /* end of file */ |
2211 #ifdef FEAT_LISP | |
2212 /* line is exhausted and comment with it, | |
2213 * don't search for match in code */ | |
2214 || lispcomm | |
2215 #endif | |
2216 ) | |
7 | 2217 break; |
2218 ++pos.lnum; | |
2219 | |
2220 if (maxtravel && traveled++ > maxtravel) | |
2221 break; | |
2222 | |
2223 linep = ml_get(pos.lnum); | |
2224 pos.col = 0; | |
2225 do_quotes = -1; | |
2226 line_breakcheck(); | |
14 | 2227 #ifdef FEAT_LISP |
2228 if (lisp) /* find comment pos in new line */ | |
2229 comment_col = check_linecomment(linep); | |
2230 #endif | |
7 | 2231 } |
2232 else | |
2233 { | |
2234 if (has_mbyte) | |
474 | 2235 pos.col += (*mb_ptr2len)(linep + pos.col); |
7 | 2236 else |
2237 ++pos.col; | |
2238 } | |
2239 } | |
2240 | |
2241 /* | |
2242 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0. | |
2243 */ | |
2244 if (pos.col == 0 && (flags & FM_BLOCKSTOP) && | |
2245 (linep[0] == '{' || linep[0] == '}')) | |
2246 { | |
2247 if (linep[0] == findc && count == 0) /* match! */ | |
2248 return &pos; | |
2249 break; /* out of scope */ | |
2250 } | |
2251 | |
2252 if (comment_dir) | |
2253 { | |
2254 /* Note: comments do not nest, and we ignore quotes in them */ | |
2255 /* TODO: ignore comment brackets inside strings */ | |
2256 if (comment_dir == FORWARD) | |
2257 { | |
2258 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/') | |
2259 { | |
2260 pos.col++; | |
2261 return &pos; | |
2262 } | |
2263 } | |
2264 else /* Searching backwards */ | |
2265 { | |
2266 /* | |
2267 * A comment may contain / * or / /, it may also start or end | |
12829
91222b3123ba
patch 8.0.1291: C indent wrong when * immediately follows comment
Christian Brabandt <cb@256bit.org>
parents:
12722
diff
changeset
|
2268 * with / * /. Ignore a / * after / / and after *. |
7 | 2269 */ |
2270 if (pos.col == 0) | |
2271 continue; | |
6971 | 2272 else if (raw_string) |
2273 { | |
2274 if (linep[pos.col - 1] == 'R' | |
2275 && linep[pos.col] == '"' | |
2276 && vim_strchr(linep + pos.col + 1, '(') != NULL) | |
2277 { | |
2278 /* Possible start of raw string. Now that we have the | |
2279 * delimiter we can check if it ends before where we | |
2280 * started searching, or before the previously found | |
2281 * raw string start. */ | |
2282 if (!find_rawstring_end(linep, &pos, | |
2283 count > 0 ? &match_pos : &curwin->w_cursor)) | |
2284 { | |
2285 count++; | |
2286 match_pos = pos; | |
2287 match_pos.col--; | |
2288 } | |
2289 linep = ml_get(pos.lnum); /* may have been released */ | |
2290 } | |
2291 } | |
7 | 2292 else if ( linep[pos.col - 1] == '/' |
2293 && linep[pos.col] == '*' | |
12829
91222b3123ba
patch 8.0.1291: C indent wrong when * immediately follows comment
Christian Brabandt <cb@256bit.org>
parents:
12722
diff
changeset
|
2294 && (pos.col == 1 || linep[pos.col - 2] != '*') |
7 | 2295 && (int)pos.col < comment_col) |
2296 { | |
2297 count++; | |
2298 match_pos = pos; | |
2299 match_pos.col--; | |
2300 } | |
2301 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/') | |
2302 { | |
2303 if (count > 0) | |
2304 pos = match_pos; | |
2305 else if (pos.col > 1 && linep[pos.col - 2] == '/' | |
2306 && (int)pos.col <= comment_col) | |
2307 pos.col -= 2; | |
2308 else if (ignore_cend) | |
2309 continue; | |
2310 else | |
2311 return NULL; | |
2312 return &pos; | |
2313 } | |
2314 } | |
2315 continue; | |
2316 } | |
2317 | |
2318 /* | |
2319 * If smart matching ('cpoptions' does not contain '%'), braces inside | |
2320 * of quotes are ignored, but only if there is an even number of | |
2321 * quotes in the line. | |
2322 */ | |
2323 if (cpo_match) | |
2324 do_quotes = 0; | |
2325 else if (do_quotes == -1) | |
2326 { | |
2327 /* | |
2328 * Count the number of quotes in the line, skipping \" and '"'. | |
2329 * Watch out for "\\". | |
2330 */ | |
2331 at_start = do_quotes; | |
2332 for (ptr = linep; *ptr; ++ptr) | |
2333 { | |
2334 if (ptr == linep + pos.col + backwards) | |
2335 at_start = (do_quotes & 1); | |
2336 if (*ptr == '"' | |
2337 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\'')) | |
2338 ++do_quotes; | |
2339 if (*ptr == '\\' && ptr[1] != NUL) | |
2340 ++ptr; | |
2341 } | |
2342 do_quotes &= 1; /* result is 1 with even number of quotes */ | |
2343 | |
2344 /* | |
2345 * If we find an uneven count, check current line and previous | |
2346 * one for a '\' at the end. | |
2347 */ | |
2348 if (!do_quotes) | |
2349 { | |
2350 inquote = FALSE; | |
2351 if (ptr[-1] == '\\') | |
2352 { | |
2353 do_quotes = 1; | |
2354 if (start_in_quotes == MAYBE) | |
2355 { | |
2356 /* Do we need to use at_start here? */ | |
2357 inquote = TRUE; | |
2358 start_in_quotes = TRUE; | |
2359 } | |
2360 else if (backwards) | |
2361 inquote = TRUE; | |
2362 } | |
2363 if (pos.lnum > 1) | |
2364 { | |
2365 ptr = ml_get(pos.lnum - 1); | |
2366 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\') | |
2367 { | |
2368 do_quotes = 1; | |
2369 if (start_in_quotes == MAYBE) | |
2370 { | |
2371 inquote = at_start; | |
2372 if (inquote) | |
2373 start_in_quotes = TRUE; | |
2374 } | |
2375 else if (!backwards) | |
2376 inquote = TRUE; | |
2377 } | |
1310 | 2378 |
2379 /* ml_get() only keeps one line, need to get linep again */ | |
2380 linep = ml_get(pos.lnum); | |
7 | 2381 } |
2382 } | |
2383 } | |
2384 if (start_in_quotes == MAYBE) | |
2385 start_in_quotes = FALSE; | |
2386 | |
2387 /* | |
2388 * If 'smartmatch' is set: | |
2389 * Things inside quotes are ignored by setting 'inquote'. If we | |
2390 * find a quote without a preceding '\' invert 'inquote'. At the | |
2391 * end of a line not ending in '\' we reset 'inquote'. | |
2392 * | |
2393 * In lines with an uneven number of quotes (without preceding '\') | |
2394 * we do not know which part to ignore. Therefore we only set | |
2395 * inquote if the number of quotes in a line is even, unless this | |
2396 * line or the previous one ends in a '\'. Complicated, isn't it? | |
2397 */ | |
4029 | 2398 c = PTR2CHAR(linep + pos.col); |
2399 switch (c) | |
7 | 2400 { |
2401 case NUL: | |
2402 /* at end of line without trailing backslash, reset inquote */ | |
2403 if (pos.col == 0 || linep[pos.col - 1] != '\\') | |
2404 { | |
2405 inquote = FALSE; | |
2406 start_in_quotes = FALSE; | |
2407 } | |
2408 break; | |
2409 | |
2410 case '"': | |
2411 /* a quote that is preceded with an odd number of backslashes is | |
2412 * ignored */ | |
2413 if (do_quotes) | |
2414 { | |
2415 int col; | |
2416 | |
2417 for (col = pos.col - 1; col >= 0; --col) | |
2418 if (linep[col] != '\\') | |
2419 break; | |
2420 if ((((int)pos.col - 1 - col) & 1) == 0) | |
2421 { | |
2422 inquote = !inquote; | |
2423 start_in_quotes = FALSE; | |
2424 } | |
2425 } | |
2426 break; | |
2427 | |
2428 /* | |
2429 * If smart matching ('cpoptions' does not contain '%'): | |
2430 * Skip things in single quotes: 'x' or '\x'. Be careful for single | |
2431 * single quotes, eg jon's. Things like '\233' or '\x3f' are not | |
2432 * skipped, there is never a brace in them. | |
2433 * Ignore this when finding matches for `'. | |
2434 */ | |
2435 case '\'': | |
2436 if (!cpo_match && initc != '\'' && findc != '\'') | |
2437 { | |
2438 if (backwards) | |
2439 { | |
2440 if (pos.col > 1) | |
2441 { | |
2442 if (linep[pos.col - 2] == '\'') | |
2443 { | |
2444 pos.col -= 2; | |
2445 break; | |
2446 } | |
2447 else if (linep[pos.col - 2] == '\\' && | |
2448 pos.col > 2 && linep[pos.col - 3] == '\'') | |
2449 { | |
2450 pos.col -= 3; | |
2451 break; | |
2452 } | |
2453 } | |
2454 } | |
2455 else if (linep[pos.col + 1]) /* forward search */ | |
2456 { | |
2457 if (linep[pos.col + 1] == '\\' && | |
2458 linep[pos.col + 2] && linep[pos.col + 3] == '\'') | |
2459 { | |
2460 pos.col += 3; | |
2461 break; | |
2462 } | |
2463 else if (linep[pos.col + 2] == '\'') | |
2464 { | |
2465 pos.col += 2; | |
2466 break; | |
2467 } | |
2468 } | |
2469 } | |
2470 /* FALLTHROUGH */ | |
2471 | |
2472 default: | |
2473 #ifdef FEAT_LISP | |
14 | 2474 /* |
2475 * For Lisp skip over backslashed (), {} and []. | |
2476 * (actually, we skip #\( et al) | |
2477 */ | |
7 | 2478 if (curbuf->b_p_lisp |
2479 && vim_strchr((char_u *)"(){}[]", c) != NULL | |
14 | 2480 && pos.col > 1 |
2481 && check_prevcol(linep, pos.col, '\\', NULL) | |
2482 && check_prevcol(linep, pos.col - 1, '#', NULL)) | |
7 | 2483 break; |
2484 #endif | |
2485 | |
2486 /* Check for match outside of quotes, and inside of | |
2487 * quotes when the start is also inside of quotes. */ | |
2488 if ((!inquote || start_in_quotes == TRUE) | |
2489 && (c == initc || c == findc)) | |
2490 { | |
2491 int col, bslcnt = 0; | |
2492 | |
2493 if (!cpo_bsl) | |
2494 { | |
2495 for (col = pos.col; check_prevcol(linep, col, '\\', &col);) | |
2496 bslcnt++; | |
2497 } | |
1859 | 2498 /* Only accept a match when 'M' is in 'cpo' or when escaping |
2499 * is what we expect. */ | |
7 | 2500 if (cpo_bsl || (bslcnt & 1) == match_escaped) |
2501 { | |
2502 if (c == initc) | |
2503 count++; | |
2504 else | |
2505 { | |
2506 if (count == 0) | |
2507 return &pos; | |
2508 count--; | |
2509 } | |
2510 } | |
2511 } | |
2512 } | |
2513 } | |
2514 | |
2515 if (comment_dir == BACKWARD && count > 0) | |
2516 { | |
2517 pos = match_pos; | |
2518 return &pos; | |
2519 } | |
2520 return (pos_T *)NULL; /* never found it */ | |
2521 } | |
2522 | |
2523 /* | |
2524 * Check if line[] contains a / / comment. | |
2525 * Return MAXCOL if not, otherwise return the column. | |
2526 * TODO: skip strings. | |
2527 */ | |
2528 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2529 check_linecomment(char_u *line) |
7 | 2530 { |
2531 char_u *p; | |
2532 | |
2533 p = line; | |
14 | 2534 #ifdef FEAT_LISP |
2535 /* skip Lispish one-line comments */ | |
2536 if (curbuf->b_p_lisp) | |
2537 { | |
2538 if (vim_strchr(p, ';') != NULL) /* there may be comments */ | |
2539 { | |
3263 | 2540 int in_str = FALSE; /* inside of string */ |
14 | 2541 |
2542 p = line; /* scan from start */ | |
333 | 2543 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL) |
14 | 2544 { |
2545 if (*p == '"') | |
2546 { | |
3263 | 2547 if (in_str) |
14 | 2548 { |
2549 if (*(p - 1) != '\\') /* skip escaped quote */ | |
3263 | 2550 in_str = FALSE; |
14 | 2551 } |
2552 else if (p == line || ((p - line) >= 2 | |
2553 /* skip #\" form */ | |
2554 && *(p - 1) != '\\' && *(p - 2) != '#')) | |
3263 | 2555 in_str = TRUE; |
14 | 2556 } |
3263 | 2557 else if (!in_str && ((p - line) < 2 |
14 | 2558 || (*(p - 1) != '\\' && *(p - 2) != '#'))) |
2559 break; /* found! */ | |
2560 ++p; | |
2561 } | |
2562 } | |
2563 else | |
2564 p = NULL; | |
2565 } | |
2566 else | |
2567 #endif | |
7 | 2568 while ((p = vim_strchr(p, '/')) != NULL) |
2569 { | |
1463 | 2570 /* accept a double /, unless it's preceded with * and followed by *, |
2571 * because * / / * is an end and start of a C comment */ | |
2572 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*')) | |
7 | 2573 break; |
2574 ++p; | |
2575 } | |
2576 | |
2577 if (p == NULL) | |
2578 return MAXCOL; | |
2579 return (int)(p - line); | |
2580 } | |
2581 | |
2582 /* | |
2583 * Move cursor briefly to character matching the one under the cursor. | |
2584 * Used for Insert mode and "r" command. | |
2585 * Show the match only if it is visible on the screen. | |
2586 * If there isn't a match, then beep. | |
2587 */ | |
2588 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2589 showmatch( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2590 int c) /* char to show match for */ |
7 | 2591 { |
2592 pos_T *lpos, save_cursor; | |
2593 pos_T mpos; | |
2594 colnr_T vcol; | |
2595 long save_so; | |
2596 long save_siso; | |
2597 #ifdef CURSOR_SHAPE | |
2598 int save_state; | |
2599 #endif | |
2600 colnr_T save_dollar_vcol; | |
2601 char_u *p; | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2602 long *so = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so; |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2603 long *siso = curwin->w_p_siso >= 0 ? &curwin->w_p_siso : &p_siso; |
7 | 2604 |
2605 /* | |
2606 * Only show match for chars in the 'matchpairs' option. | |
2607 */ | |
2608 /* 'matchpairs' is "x:y,x:y" */ | |
4029 | 2609 for (p = curbuf->b_p_mps; *p != NUL; ++p) |
7 | 2610 { |
2611 #ifdef FEAT_RIGHTLEFT | |
4153 | 2612 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri)) |
2613 break; | |
7 | 2614 #endif |
4029 | 2615 p += MB_PTR2LEN(p) + 1; |
2616 if (PTR2CHAR(p) == c | |
7 | 2617 #ifdef FEAT_RIGHTLEFT |
2618 && !(curwin->w_p_rl ^ p_ri) | |
2619 #endif | |
2620 ) | |
2621 break; | |
4029 | 2622 p += MB_PTR2LEN(p); |
2623 if (*p == NUL) | |
7 | 2624 return; |
2625 } | |
2626 | |
2627 if ((lpos = findmatch(NULL, NUL)) == NULL) /* no match, so beep */ | |
6949 | 2628 vim_beep(BO_MATCH); |
4153 | 2629 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline) |
7 | 2630 { |
2631 if (!curwin->w_p_wrap) | |
2632 getvcol(curwin, lpos, NULL, &vcol, NULL); | |
2633 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2634 && vcol < curwin->w_leftcol + curwin->w_width)) |
7 | 2635 { |
2636 mpos = *lpos; /* save the pos, update_screen() may change it */ | |
2637 save_cursor = curwin->w_cursor; | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2638 save_so = *so; |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2639 save_siso = *siso; |
7 | 2640 /* Handle "$" in 'cpo': If the ')' is typed on top of the "$", |
2641 * stop displaying the "$". */ | |
3318 | 2642 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol) |
2643 dollar_vcol = -1; | |
7 | 2644 ++curwin->w_virtcol; /* do display ')' just before "$" */ |
2645 update_screen(VALID); /* show the new char first */ | |
2646 | |
2647 save_dollar_vcol = dollar_vcol; | |
2648 #ifdef CURSOR_SHAPE | |
2649 save_state = State; | |
2650 State = SHOWMATCH; | |
2651 ui_cursor_shape(); /* may show different cursor shape */ | |
2652 #endif | |
2653 curwin->w_cursor = mpos; /* move to matching char */ | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2654 *so = 0; /* don't use 'scrolloff' here */ |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2655 *siso = 0; /* don't use 'sidescrolloff' here */ |
7 | 2656 showruler(FALSE); |
2657 setcursor(); | |
2658 cursor_on(); /* make sure that the cursor is shown */ | |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12855
diff
changeset
|
2659 out_flush_cursor(TRUE, FALSE); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12855
diff
changeset
|
2660 |
7 | 2661 /* Restore dollar_vcol(), because setcursor() may call curs_rows() |
2662 * which resets it if the matching position is in a previous line | |
2663 * and has a higher column number. */ | |
2664 dollar_vcol = save_dollar_vcol; | |
2665 | |
2666 /* | |
2667 * brief pause, unless 'm' is present in 'cpo' and a character is | |
2668 * available. | |
2669 */ | |
2670 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL) | |
2671 ui_delay(p_mat * 100L, TRUE); | |
2672 else if (!char_avail()) | |
2673 ui_delay(p_mat * 100L, FALSE); | |
2674 curwin->w_cursor = save_cursor; /* restore cursor position */ | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2675 *so = save_so; |
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2676 *siso = save_siso; |
7 | 2677 #ifdef CURSOR_SHAPE |
2678 State = save_state; | |
2679 ui_cursor_shape(); /* may show different cursor shape */ | |
2680 #endif | |
2681 } | |
2682 } | |
2683 } | |
2684 | |
2685 /* | |
14131
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2686 * Find the start of the next sentence, searching in the direction specified |
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2687 * by the "dir" argument. The cursor is positioned on the start of the next |
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2688 * sentence when found. If the next sentence is found, return OK. Return FAIL |
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2689 * otherwise. See ":h sentence" for the precise definition of a "sentence" |
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2690 * text object. |
7 | 2691 */ |
2692 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2693 findsent(int dir, long count) |
7 | 2694 { |
2695 pos_T pos, tpos; | |
2696 int c; | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
2697 int (*func)(pos_T *); |
7 | 2698 int startlnum; |
2699 int noskip = FALSE; /* do not skip blanks */ | |
2700 int cpo_J; | |
45 | 2701 int found_dot; |
7 | 2702 |
2703 pos = curwin->w_cursor; | |
2704 if (dir == FORWARD) | |
2705 func = incl; | |
2706 else | |
2707 func = decl; | |
2708 | |
2709 while (count--) | |
2710 { | |
2711 /* | |
2712 * if on an empty line, skip upto a non-empty line | |
2713 */ | |
2714 if (gchar_pos(&pos) == NUL) | |
2715 { | |
2716 do | |
2717 if ((*func)(&pos) == -1) | |
2718 break; | |
2719 while (gchar_pos(&pos) == NUL); | |
2720 if (dir == FORWARD) | |
2721 goto found; | |
2722 } | |
2723 /* | |
2724 * if on the start of a paragraph or a section and searching forward, | |
2725 * go to the next line | |
2726 */ | |
2727 else if (dir == FORWARD && pos.col == 0 && | |
2728 startPS(pos.lnum, NUL, FALSE)) | |
2729 { | |
2730 if (pos.lnum == curbuf->b_ml.ml_line_count) | |
2731 return FAIL; | |
2732 ++pos.lnum; | |
2733 goto found; | |
2734 } | |
2735 else if (dir == BACKWARD) | |
2736 decl(&pos); | |
2737 | |
14131
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2738 // go back to the previous non-white non-punctuation character |
45 | 2739 found_dot = FALSE; |
14131
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2740 while (c = gchar_pos(&pos), VIM_ISWHITE(c) |
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2741 || vim_strchr((char_u *)".!?)]\"'", c) != NULL) |
7 | 2742 { |
14131
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2743 tpos = pos; |
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2744 if (decl(&tpos) == -1 || (LINEEMPTY(tpos.lnum) && dir == FORWARD)) |
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2745 break; |
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2746 |
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2747 if (found_dot) |
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2748 break; |
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2749 if (vim_strchr((char_u *) ".!?", c) != NULL) |
45 | 2750 found_dot = TRUE; |
14131
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2751 |
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2752 if (vim_strchr((char_u *) ")]\"'", c) != NULL |
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2753 && vim_strchr((char_u *) ".!?)]\"'", gchar_pos(&tpos)) == NULL) |
7 | 2754 break; |
14131
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2755 |
ec85acd49b8e
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Christian Brabandt <cb@256bit.org>
parents:
14000
diff
changeset
|
2756 decl(&pos); |
7 | 2757 } |
2758 | |
2759 /* remember the line where the search started */ | |
2760 startlnum = pos.lnum; | |
2761 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL; | |
2762 | |
2763 for (;;) /* find end of sentence */ | |
2764 { | |
2765 c = gchar_pos(&pos); | |
2766 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE))) | |
2767 { | |
2768 if (dir == BACKWARD && pos.lnum != startlnum) | |
2769 ++pos.lnum; | |
2770 break; | |
2771 } | |
2772 if (c == '.' || c == '!' || c == '?') | |
2773 { | |
2774 tpos = pos; | |
2775 do | |
2776 if ((c = inc(&tpos)) == -1) | |
2777 break; | |
2778 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos)) | |
2779 != NULL); | |
2780 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL | |
2781 || (cpo_J && (c == ' ' && inc(&tpos) >= 0 | |
2782 && gchar_pos(&tpos) == ' '))) | |
2783 { | |
2784 pos = tpos; | |
2785 if (gchar_pos(&pos) == NUL) /* skip NUL at EOL */ | |
2786 inc(&pos); | |
2787 break; | |
2788 } | |
2789 } | |
2790 if ((*func)(&pos) == -1) | |
2791 { | |
2792 if (count) | |
2793 return FAIL; | |
2794 noskip = TRUE; | |
2795 break; | |
2796 } | |
2797 } | |
2798 found: | |
2799 /* skip white space */ | |
2800 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t')) | |
2801 if (incl(&pos) == -1) | |
2802 break; | |
2803 } | |
2804 | |
2805 setpcmark(); | |
2806 curwin->w_cursor = pos; | |
2807 return OK; | |
2808 } | |
2809 | |
2810 /* | |
164 | 2811 * Find the next paragraph or section in direction 'dir'. |
7 | 2812 * Paragraphs are currently supposed to be separated by empty lines. |
164 | 2813 * If 'what' is NUL we go to the next paragraph. |
7 | 2814 * If 'what' is '{' or '}' we go to the next section. |
2815 * If 'both' is TRUE also stop at '}'. | |
164 | 2816 * Return TRUE if the next paragraph or section was found. |
7 | 2817 */ |
2818 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2819 findpar( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2820 int *pincl, /* Return: TRUE if last char is to be included */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2821 int dir, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2822 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2823 int what, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2824 int both) |
7 | 2825 { |
2826 linenr_T curr; | |
2827 int did_skip; /* TRUE after separating lines have been skipped */ | |
2828 int first; /* TRUE on first line */ | |
164 | 2829 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL); |
7 | 2830 #ifdef FEAT_FOLDING |
2831 linenr_T fold_first; /* first line of a closed fold */ | |
2832 linenr_T fold_last; /* last line of a closed fold */ | |
2833 int fold_skipped; /* TRUE if a closed fold was skipped this | |
2834 iteration */ | |
2835 #endif | |
2836 | |
2837 curr = curwin->w_cursor.lnum; | |
2838 | |
2839 while (count--) | |
2840 { | |
2841 did_skip = FALSE; | |
2842 for (first = TRUE; ; first = FALSE) | |
2843 { | |
2844 if (*ml_get(curr) != NUL) | |
2845 did_skip = TRUE; | |
2846 | |
2847 #ifdef FEAT_FOLDING | |
2848 /* skip folded lines */ | |
2849 fold_skipped = FALSE; | |
2850 if (first && hasFolding(curr, &fold_first, &fold_last)) | |
2851 { | |
2852 curr = ((dir > 0) ? fold_last : fold_first) + dir; | |
2853 fold_skipped = TRUE; | |
2854 } | |
2855 #endif | |
2856 | |
15034
6e4e0d43b20b
patch 8.1.0528: various typos in comments
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2857 /* POSIX has its own ideas of what a paragraph boundary is and it |
164 | 2858 * doesn't match historical Vi: It also stops at a "{" in the |
2859 * first column and at an empty line. */ | |
2860 if (!first && did_skip && (startPS(curr, what, both) | |
2861 || (posix && what == NUL && *ml_get(curr) == '{'))) | |
7 | 2862 break; |
2863 | |
2864 #ifdef FEAT_FOLDING | |
2865 if (fold_skipped) | |
2866 curr -= dir; | |
2867 #endif | |
2868 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count) | |
2869 { | |
2870 if (count) | |
2871 return FALSE; | |
2872 curr -= dir; | |
2873 break; | |
2874 } | |
2875 } | |
2876 } | |
2877 setpcmark(); | |
2878 if (both && *ml_get(curr) == '}') /* include line with '}' */ | |
2879 ++curr; | |
2880 curwin->w_cursor.lnum = curr; | |
2881 if (curr == curbuf->b_ml.ml_line_count && what != '}') | |
2882 { | |
11275
5c77ca0cf6a5
patch 8.0.0523: dv} deletes part of a multi-byte character.
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2883 char_u *line = ml_get(curr); |
5c77ca0cf6a5
patch 8.0.0523: dv} deletes part of a multi-byte character.
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2884 |
5c77ca0cf6a5
patch 8.0.0523: dv} deletes part of a multi-byte character.
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2885 /* Put the cursor on the last character in the last line and make the |
5c77ca0cf6a5
patch 8.0.0523: dv} deletes part of a multi-byte character.
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2886 * motion inclusive. */ |
5c77ca0cf6a5
patch 8.0.0523: dv} deletes part of a multi-byte character.
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2887 if ((curwin->w_cursor.col = (colnr_T)STRLEN(line)) != 0) |
7 | 2888 { |
2889 --curwin->w_cursor.col; | |
11275
5c77ca0cf6a5
patch 8.0.0523: dv} deletes part of a multi-byte character.
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2890 curwin->w_cursor.col -= |
5c77ca0cf6a5
patch 8.0.0523: dv} deletes part of a multi-byte character.
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2891 (*mb_head_off)(line, line + curwin->w_cursor.col); |
504 | 2892 *pincl = TRUE; |
7 | 2893 } |
2894 } | |
2895 else | |
2896 curwin->w_cursor.col = 0; | |
2897 return TRUE; | |
2898 } | |
2899 | |
2900 /* | |
2901 * check if the string 's' is a nroff macro that is in option 'opt' | |
2902 */ | |
2903 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2904 inmacro(char_u *opt, char_u *s) |
7 | 2905 { |
2906 char_u *macro; | |
2907 | |
2908 for (macro = opt; macro[0]; ++macro) | |
2909 { | |
2910 /* Accept two characters in the option being equal to two characters | |
2911 * in the line. A space in the option matches with a space in the | |
2912 * line or the line having ended. */ | |
2913 if ( (macro[0] == s[0] | |
2914 || (macro[0] == ' ' | |
2915 && (s[0] == NUL || s[0] == ' '))) | |
2916 && (macro[1] == s[1] | |
2917 || ((macro[1] == NUL || macro[1] == ' ') | |
2918 && (s[0] == NUL || s[1] == NUL || s[1] == ' ')))) | |
2919 break; | |
2920 ++macro; | |
2921 if (macro[0] == NUL) | |
2922 break; | |
2923 } | |
2924 return (macro[0] != NUL); | |
2925 } | |
2926 | |
2927 /* | |
2928 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph. | |
2929 * If 'para' is '{' or '}' only check for sections. | |
2930 * If 'both' is TRUE also stop at '}' | |
2931 */ | |
2932 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2933 startPS(linenr_T lnum, int para, int both) |
7 | 2934 { |
2935 char_u *s; | |
2936 | |
2937 s = ml_get(lnum); | |
2938 if (*s == para || *s == '\f' || (both && *s == '}')) | |
2939 return TRUE; | |
2940 if (*s == '.' && (inmacro(p_sections, s + 1) || | |
2941 (!para && inmacro(p_para, s + 1)))) | |
2942 return TRUE; | |
2943 return FALSE; | |
2944 } | |
2945 | |
2946 /* | |
2947 * The following routines do the word searches performed by the 'w', 'W', | |
2948 * 'b', 'B', 'e', and 'E' commands. | |
2949 */ | |
2950 | |
2951 /* | |
2952 * To perform these searches, characters are placed into one of three | |
2953 * classes, and transitions between classes determine word boundaries. | |
2954 * | |
2955 * The classes are: | |
2956 * | |
2957 * 0 - white space | |
2958 * 1 - punctuation | |
2959 * 2 or higher - keyword characters (letters, digits and underscore) | |
2960 */ | |
2961 | |
2962 static int cls_bigword; /* TRUE for "W", "B" or "E" */ | |
2963 | |
2964 /* | |
2965 * cls() - returns the class of character at curwin->w_cursor | |
2966 * | |
2967 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars | |
2968 * from class 2 and higher are reported as class 1 since only white space | |
2969 * boundaries are of interest. | |
2970 */ | |
2971 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2972 cls(void) |
7 | 2973 { |
2974 int c; | |
2975 | |
2976 c = gchar_cursor(); | |
2977 if (c == ' ' || c == '\t' || c == NUL) | |
2978 return 0; | |
2979 if (enc_dbcs != 0 && c > 0xFF) | |
2980 { | |
2981 /* If cls_bigword, report multi-byte chars as class 1. */ | |
2982 if (enc_dbcs == DBCS_KOR && cls_bigword) | |
2983 return 1; | |
2984 | |
2985 /* process code leading/trailing bytes */ | |
2986 return dbcs_class(((unsigned)c >> 8), (c & 0xFF)); | |
2987 } | |
2988 if (enc_utf8) | |
2989 { | |
2990 c = utf_class(c); | |
2991 if (c != 0 && cls_bigword) | |
2992 return 1; | |
2993 return c; | |
2994 } | |
2995 | |
2996 /* If cls_bigword is TRUE, report all non-blanks as class 1. */ | |
2997 if (cls_bigword) | |
2998 return 1; | |
2999 | |
3000 if (vim_iswordc(c)) | |
3001 return 2; | |
3002 return 1; | |
3003 } | |
3004 | |
3005 | |
3006 /* | |
3007 * fwd_word(count, type, eol) - move forward one word | |
3008 * | |
3009 * Returns FAIL if the cursor was already at the end of the file. | |
3010 * If eol is TRUE, last word stops at end of line (for operators). | |
3011 */ | |
3012 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3013 fwd_word( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3014 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3015 int bigword, /* "W", "E" or "B" */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3016 int eol) |
7 | 3017 { |
3018 int sclass; /* starting class */ | |
3019 int i; | |
3020 int last_line; | |
3021 | |
3022 curwin->w_cursor.coladd = 0; | |
3023 cls_bigword = bigword; | |
3024 while (--count >= 0) | |
3025 { | |
3026 #ifdef FEAT_FOLDING | |
3027 /* When inside a range of folded lines, move to the last char of the | |
3028 * last line. */ | |
3029 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum)) | |
3030 coladvance((colnr_T)MAXCOL); | |
3031 #endif | |
3032 sclass = cls(); | |
3033 | |
3034 /* | |
3035 * We always move at least one character, unless on the last | |
3036 * character in the buffer. | |
3037 */ | |
3038 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count); | |
3039 i = inc_cursor(); | |
3040 if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */ | |
3041 return FAIL; | |
1309 | 3042 if (i >= 1 && eol && count == 0) /* started at last char in line */ |
7 | 3043 return OK; |
3044 | |
3045 /* | |
3046 * Go one char past end of current word (if any) | |
3047 */ | |
3048 if (sclass != 0) | |
3049 while (cls() == sclass) | |
3050 { | |
3051 i = inc_cursor(); | |
3052 if (i == -1 || (i >= 1 && eol && count == 0)) | |
3053 return OK; | |
3054 } | |
3055 | |
3056 /* | |
3057 * go to next non-white | |
3058 */ | |
3059 while (cls() == 0) | |
3060 { | |
3061 /* | |
3062 * We'll stop if we land on a blank line | |
3063 */ | |
3064 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL) | |
3065 break; | |
3066 | |
3067 i = inc_cursor(); | |
3068 if (i == -1 || (i >= 1 && eol && count == 0)) | |
3069 return OK; | |
3070 } | |
3071 } | |
3072 return OK; | |
3073 } | |
3074 | |
3075 /* | |
3076 * bck_word() - move backward 'count' words | |
3077 * | |
3078 * If stop is TRUE and we are already on the start of a word, move one less. | |
3079 * | |
3080 * Returns FAIL if top of the file was reached. | |
3081 */ | |
3082 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3083 bck_word(long count, int bigword, int stop) |
7 | 3084 { |
3085 int sclass; /* starting class */ | |
3086 | |
3087 curwin->w_cursor.coladd = 0; | |
3088 cls_bigword = bigword; | |
3089 while (--count >= 0) | |
3090 { | |
3091 #ifdef FEAT_FOLDING | |
3092 /* When inside a range of folded lines, move to the first char of the | |
3093 * first line. */ | |
3094 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL)) | |
3095 curwin->w_cursor.col = 0; | |
3096 #endif | |
3097 sclass = cls(); | |
3098 if (dec_cursor() == -1) /* started at start of file */ | |
3099 return FAIL; | |
3100 | |
3101 if (!stop || sclass == cls() || sclass == 0) | |
3102 { | |
3103 /* | |
3104 * Skip white space before the word. | |
3105 * Stop on an empty line. | |
3106 */ | |
3107 while (cls() == 0) | |
3108 { | |
3109 if (curwin->w_cursor.col == 0 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3110 && LINEEMPTY(curwin->w_cursor.lnum)) |
7 | 3111 goto finished; |
3112 if (dec_cursor() == -1) /* hit start of file, stop here */ | |
3113 return OK; | |
3114 } | |
3115 | |
3116 /* | |
3117 * Move backward to start of this word. | |
3118 */ | |
3119 if (skip_chars(cls(), BACKWARD)) | |
3120 return OK; | |
3121 } | |
3122 | |
3123 inc_cursor(); /* overshot - forward one */ | |
3124 finished: | |
3125 stop = FALSE; | |
3126 } | |
3127 return OK; | |
3128 } | |
3129 | |
3130 /* | |
3131 * end_word() - move to the end of the word | |
3132 * | |
3133 * There is an apparent bug in the 'e' motion of the real vi. At least on the | |
3134 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e' | |
3135 * motion crosses blank lines. When the real vi crosses a blank line in an | |
3136 * 'e' motion, the cursor is placed on the FIRST character of the next | |
3137 * non-blank line. The 'E' command, however, works correctly. Since this | |
3138 * appears to be a bug, I have not duplicated it here. | |
3139 * | |
3140 * Returns FAIL if end of the file was reached. | |
3141 * | |
3142 * If stop is TRUE and we are already on the end of a word, move one less. | |
3143 * If empty is TRUE stop on an empty line. | |
3144 */ | |
3145 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3146 end_word( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3147 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3148 int bigword, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3149 int stop, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3150 int empty) |
7 | 3151 { |
3152 int sclass; /* starting class */ | |
3153 | |
3154 curwin->w_cursor.coladd = 0; | |
3155 cls_bigword = bigword; | |
3156 while (--count >= 0) | |
3157 { | |
3158 #ifdef FEAT_FOLDING | |
3159 /* When inside a range of folded lines, move to the last char of the | |
3160 * last line. */ | |
3161 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum)) | |
3162 coladvance((colnr_T)MAXCOL); | |
3163 #endif | |
3164 sclass = cls(); | |
3165 if (inc_cursor() == -1) | |
3166 return FAIL; | |
3167 | |
3168 /* | |
3169 * If we're in the middle of a word, we just have to move to the end | |
3170 * of it. | |
3171 */ | |
3172 if (cls() == sclass && sclass != 0) | |
3173 { | |
3174 /* | |
3175 * Move forward to end of the current word | |
3176 */ | |
3177 if (skip_chars(sclass, FORWARD)) | |
3178 return FAIL; | |
3179 } | |
3180 else if (!stop || sclass == 0) | |
3181 { | |
3182 /* | |
3183 * We were at the end of a word. Go to the end of the next word. | |
3184 * First skip white space, if 'empty' is TRUE, stop at empty line. | |
3185 */ | |
3186 while (cls() == 0) | |
3187 { | |
3188 if (empty && curwin->w_cursor.col == 0 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3189 && LINEEMPTY(curwin->w_cursor.lnum)) |
7 | 3190 goto finished; |
3191 if (inc_cursor() == -1) /* hit end of file, stop here */ | |
3192 return FAIL; | |
3193 } | |
3194 | |
3195 /* | |
3196 * Move forward to the end of this word. | |
3197 */ | |
3198 if (skip_chars(cls(), FORWARD)) | |
3199 return FAIL; | |
3200 } | |
3201 dec_cursor(); /* overshot - one char backward */ | |
3202 finished: | |
3203 stop = FALSE; /* we move only one word less */ | |
3204 } | |
3205 return OK; | |
3206 } | |
3207 | |
3208 /* | |
3209 * Move back to the end of the word. | |
3210 * | |
3211 * Returns FAIL if start of the file was reached. | |
3212 */ | |
3213 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3214 bckend_word( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3215 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3216 int bigword, /* TRUE for "B" */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3217 int eol) /* TRUE: stop at end of line. */ |
7 | 3218 { |
3219 int sclass; /* starting class */ | |
3220 int i; | |
3221 | |
3222 curwin->w_cursor.coladd = 0; | |
3223 cls_bigword = bigword; | |
3224 while (--count >= 0) | |
3225 { | |
3226 sclass = cls(); | |
3227 if ((i = dec_cursor()) == -1) | |
3228 return FAIL; | |
3229 if (eol && i == 1) | |
3230 return OK; | |
3231 | |
3232 /* | |
3233 * Move backward to before the start of this word. | |
3234 */ | |
3235 if (sclass != 0) | |
3236 { | |
3237 while (cls() == sclass) | |
3238 if ((i = dec_cursor()) == -1 || (eol && i == 1)) | |
3239 return OK; | |
3240 } | |
3241 | |
3242 /* | |
3243 * Move backward to end of the previous word | |
3244 */ | |
3245 while (cls() == 0) | |
3246 { | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3247 if (curwin->w_cursor.col == 0 && LINEEMPTY(curwin->w_cursor.lnum)) |
7 | 3248 break; |
3249 if ((i = dec_cursor()) == -1 || (eol && i == 1)) | |
3250 return OK; | |
3251 } | |
3252 } | |
3253 return OK; | |
3254 } | |
3255 | |
3256 /* | |
3257 * Skip a row of characters of the same class. | |
3258 * Return TRUE when end-of-file reached, FALSE otherwise. | |
3259 */ | |
3260 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3261 skip_chars(int cclass, int dir) |
7 | 3262 { |
3263 while (cls() == cclass) | |
3264 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1) | |
3265 return TRUE; | |
3266 return FALSE; | |
3267 } | |
3268 | |
3269 #ifdef FEAT_TEXTOBJ | |
3270 /* | |
3271 * Go back to the start of the word or the start of white space | |
3272 */ | |
3273 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3274 back_in_line(void) |
7 | 3275 { |
3276 int sclass; /* starting class */ | |
3277 | |
3278 sclass = cls(); | |
3279 for (;;) | |
3280 { | |
3281 if (curwin->w_cursor.col == 0) /* stop at start of line */ | |
3282 break; | |
3283 dec_cursor(); | |
3284 if (cls() != sclass) /* stop at start of word */ | |
3285 { | |
3286 inc_cursor(); | |
3287 break; | |
3288 } | |
3289 } | |
3290 } | |
3291 | |
3292 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3293 find_first_blank(pos_T *posp) |
7 | 3294 { |
3295 int c; | |
3296 | |
3297 while (decl(posp) != -1) | |
3298 { | |
3299 c = gchar_pos(posp); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3300 if (!VIM_ISWHITE(c)) |
7 | 3301 { |
3302 incl(posp); | |
3303 break; | |
3304 } | |
3305 } | |
3306 } | |
3307 | |
3308 /* | |
3309 * Skip count/2 sentences and count/2 separating white spaces. | |
3310 */ | |
3311 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3312 findsent_forward( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3313 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3314 int at_start_sent) /* cursor is at start of sentence */ |
7 | 3315 { |
3316 while (count--) | |
3317 { | |
3318 findsent(FORWARD, 1L); | |
3319 if (at_start_sent) | |
3320 find_first_blank(&curwin->w_cursor); | |
3321 if (count == 0 || at_start_sent) | |
3322 decl(&curwin->w_cursor); | |
3323 at_start_sent = !at_start_sent; | |
3324 } | |
3325 } | |
3326 | |
3327 /* | |
3328 * Find word under cursor, cursor at end. | |
3329 * Used while an operator is pending, and in Visual mode. | |
3330 */ | |
3331 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3332 current_word( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3333 oparg_T *oap, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3334 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3335 int include, /* TRUE: include word and white space */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3336 int bigword) /* FALSE == word, TRUE == WORD */ |
7 | 3337 { |
3338 pos_T start_pos; | |
3339 pos_T pos; | |
3340 int inclusive = TRUE; | |
3341 int include_white = FALSE; | |
3342 | |
3343 cls_bigword = bigword; | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3344 CLEAR_POS(&start_pos); |
7 | 3345 |
3346 /* Correct cursor when 'selection' is exclusive */ | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3347 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor)) |
7 | 3348 dec_cursor(); |
3349 | |
3350 /* | |
3351 * When Visual mode is not active, or when the VIsual area is only one | |
3352 * character, select the word and/or white space under the cursor. | |
3353 */ | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3354 if (!VIsual_active || EQUAL_POS(curwin->w_cursor, VIsual)) |
7 | 3355 { |
3356 /* | |
3357 * Go to start of current word or white space. | |
3358 */ | |
3359 back_in_line(); | |
3360 start_pos = curwin->w_cursor; | |
3361 | |
3362 /* | |
3363 * If the start is on white space, and white space should be included | |
3364 * (" word"), or start is not on white space, and white space should | |
3365 * not be included ("word"), find end of word. | |
3366 */ | |
3367 if ((cls() == 0) == include) | |
3368 { | |
3369 if (end_word(1L, bigword, TRUE, TRUE) == FAIL) | |
3370 return FAIL; | |
3371 } | |
3372 else | |
3373 { | |
3374 /* | |
3375 * If the start is not on white space, and white space should be | |
3376 * included ("word "), or start is on white space and white | |
3377 * space should not be included (" "), find start of word. | |
3378 * If we end up in the first column of the next line (single char | |
3379 * word) back up to end of the line. | |
3380 */ | |
3381 fwd_word(1L, bigword, TRUE); | |
3382 if (curwin->w_cursor.col == 0) | |
3383 decl(&curwin->w_cursor); | |
3384 else | |
3385 oneleft(); | |
3386 | |
3387 if (include) | |
3388 include_white = TRUE; | |
3389 } | |
3390 | |
3391 if (VIsual_active) | |
3392 { | |
3393 /* should do something when inclusive == FALSE ! */ | |
3394 VIsual = start_pos; | |
3395 redraw_curbuf_later(INVERTED); /* update the inversion */ | |
3396 } | |
3397 else | |
3398 { | |
3399 oap->start = start_pos; | |
3400 oap->motion_type = MCHAR; | |
3401 } | |
3402 --count; | |
3403 } | |
3404 | |
3405 /* | |
3406 * When count is still > 0, extend with more objects. | |
3407 */ | |
3408 while (count > 0) | |
3409 { | |
3410 inclusive = TRUE; | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3411 if (VIsual_active && LT_POS(curwin->w_cursor, VIsual)) |
7 | 3412 { |
3413 /* | |
3414 * In Visual mode, with cursor at start: move cursor back. | |
3415 */ | |
3416 if (decl(&curwin->w_cursor) == -1) | |
3417 return FAIL; | |
3418 if (include != (cls() != 0)) | |
3419 { | |
3420 if (bck_word(1L, bigword, TRUE) == FAIL) | |
3421 return FAIL; | |
3422 } | |
3423 else | |
3424 { | |
3425 if (bckend_word(1L, bigword, TRUE) == FAIL) | |
3426 return FAIL; | |
3427 (void)incl(&curwin->w_cursor); | |
3428 } | |
3429 } | |
3430 else | |
3431 { | |
3432 /* | |
3433 * Move cursor forward one word and/or white area. | |
3434 */ | |
3435 if (incl(&curwin->w_cursor) == -1) | |
3436 return FAIL; | |
3437 if (include != (cls() == 0)) | |
3438 { | |
96 | 3439 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1) |
7 | 3440 return FAIL; |
3441 /* | |
3442 * If end is just past a new-line, we don't want to include | |
96 | 3443 * the first character on the line. |
3444 * Put cursor on last char of white. | |
7 | 3445 */ |
96 | 3446 if (oneleft() == FAIL) |
7 | 3447 inclusive = FALSE; |
3448 } | |
3449 else | |
3450 { | |
3451 if (end_word(1L, bigword, TRUE, TRUE) == FAIL) | |
3452 return FAIL; | |
3453 } | |
3454 } | |
3455 --count; | |
3456 } | |
3457 | |
9 | 3458 if (include_white && (cls() != 0 |
3459 || (curwin->w_cursor.col == 0 && !inclusive))) | |
7 | 3460 { |
3461 /* | |
3462 * If we don't include white space at the end, move the start | |
3463 * to include some white space there. This makes "daw" work | |
3464 * better on the last word in a sentence (and "2daw" on last-but-one | |
9 | 3465 * word). Also when "2daw" deletes "word." at the end of the line |
3466 * (cursor is at start of next line). | |
3467 * But don't delete white space at start of line (indent). | |
7 | 3468 */ |
3469 pos = curwin->w_cursor; /* save cursor position */ | |
3470 curwin->w_cursor = start_pos; | |
3471 if (oneleft() == OK) | |
3472 { | |
3473 back_in_line(); | |
3474 if (cls() == 0 && curwin->w_cursor.col > 0) | |
3475 { | |
3476 if (VIsual_active) | |
3477 VIsual = curwin->w_cursor; | |
3478 else | |
3479 oap->start = curwin->w_cursor; | |
3480 } | |
3481 } | |
3482 curwin->w_cursor = pos; /* put cursor back at end */ | |
3483 } | |
3484 | |
3485 if (VIsual_active) | |
3486 { | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3487 if (*p_sel == 'e' && inclusive && LTOREQ_POS(VIsual, curwin->w_cursor)) |
7 | 3488 inc_cursor(); |
3489 if (VIsual_mode == 'V') | |
3490 { | |
3491 VIsual_mode = 'v'; | |
3492 redraw_cmdline = TRUE; /* show mode later */ | |
3493 } | |
3494 } | |
3495 else | |
3496 oap->inclusive = inclusive; | |
3497 | |
3498 return OK; | |
3499 } | |
3500 | |
3501 /* | |
3502 * Find sentence(s) under the cursor, cursor at end. | |
3503 * When Visual active, extend it by one or more sentences. | |
3504 */ | |
3505 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3506 current_sent(oparg_T *oap, long count, int include) |
7 | 3507 { |
3508 pos_T start_pos; | |
3509 pos_T pos; | |
3510 int start_blank; | |
3511 int c; | |
3512 int at_start_sent; | |
3513 long ncount; | |
3514 | |
3515 start_pos = curwin->w_cursor; | |
3516 pos = start_pos; | |
3517 findsent(FORWARD, 1L); /* Find start of next sentence. */ | |
3518 | |
3519 /* | |
3701 | 3520 * When the Visual area is bigger than one character: Extend it. |
7 | 3521 */ |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3522 if (VIsual_active && !EQUAL_POS(start_pos, VIsual)) |
7 | 3523 { |
3524 extend: | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3525 if (LT_POS(start_pos, VIsual)) |
7 | 3526 { |
3527 /* | |
3528 * Cursor at start of Visual area. | |
3529 * Find out where we are: | |
3530 * - in the white space before a sentence | |
3531 * - in a sentence or just after it | |
3532 * - at the start of a sentence | |
3533 */ | |
3534 at_start_sent = TRUE; | |
3535 decl(&pos); | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3536 while (LT_POS(pos, curwin->w_cursor)) |
7 | 3537 { |
3538 c = gchar_pos(&pos); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3539 if (!VIM_ISWHITE(c)) |
7 | 3540 { |
3541 at_start_sent = FALSE; | |
3542 break; | |
3543 } | |
3544 incl(&pos); | |
3545 } | |
3546 if (!at_start_sent) | |
3547 { | |
3548 findsent(BACKWARD, 1L); | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3549 if (EQUAL_POS(curwin->w_cursor, start_pos)) |
7 | 3550 at_start_sent = TRUE; /* exactly at start of sentence */ |
3551 else | |
3552 /* inside a sentence, go to its end (start of next) */ | |
3553 findsent(FORWARD, 1L); | |
3554 } | |
3555 if (include) /* "as" gets twice as much as "is" */ | |
3556 count *= 2; | |
3557 while (count--) | |
3558 { | |
3559 if (at_start_sent) | |
3560 find_first_blank(&curwin->w_cursor); | |
3561 c = gchar_cursor(); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3562 if (!at_start_sent || (!include && !VIM_ISWHITE(c))) |
7 | 3563 findsent(BACKWARD, 1L); |
3564 at_start_sent = !at_start_sent; | |
3565 } | |
3566 } | |
3567 else | |
3568 { | |
3569 /* | |
3570 * Cursor at end of Visual area. | |
3571 * Find out where we are: | |
3572 * - just before a sentence | |
3573 * - just before or in the white space before a sentence | |
3574 * - in a sentence | |
3575 */ | |
3576 incl(&pos); | |
3577 at_start_sent = TRUE; | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3578 /* not just before a sentence */ |
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3579 if (!EQUAL_POS(pos, curwin->w_cursor)) |
7 | 3580 { |
3581 at_start_sent = FALSE; | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3582 while (LT_POS(pos, curwin->w_cursor)) |
7 | 3583 { |
3584 c = gchar_pos(&pos); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3585 if (!VIM_ISWHITE(c)) |
7 | 3586 { |
3587 at_start_sent = TRUE; | |
3588 break; | |
3589 } | |
3590 incl(&pos); | |
3591 } | |
3592 if (at_start_sent) /* in the sentence */ | |
3593 findsent(BACKWARD, 1L); | |
3594 else /* in/before white before a sentence */ | |
3595 curwin->w_cursor = start_pos; | |
3596 } | |
3597 | |
3598 if (include) /* "as" gets twice as much as "is" */ | |
3599 count *= 2; | |
3600 findsent_forward(count, at_start_sent); | |
3601 if (*p_sel == 'e') | |
3602 ++curwin->w_cursor.col; | |
3603 } | |
3604 return OK; | |
3605 } | |
3606 | |
3607 /* | |
3701 | 3608 * If the cursor started on a blank, check if it is just before the start |
3609 * of the next sentence. | |
7 | 3610 */ |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3611 while (c = gchar_pos(&pos), VIM_ISWHITE(c)) /* VIM_ISWHITE() is a macro */ |
7 | 3612 incl(&pos); |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3613 if (EQUAL_POS(pos, curwin->w_cursor)) |
7 | 3614 { |
3615 start_blank = TRUE; | |
3616 find_first_blank(&start_pos); /* go back to first blank */ | |
3617 } | |
3618 else | |
3619 { | |
3620 start_blank = FALSE; | |
3621 findsent(BACKWARD, 1L); | |
3622 start_pos = curwin->w_cursor; | |
3623 } | |
3624 if (include) | |
3625 ncount = count * 2; | |
3626 else | |
3627 { | |
3628 ncount = count; | |
3629 if (start_blank) | |
3630 --ncount; | |
3631 } | |
45 | 3632 if (ncount > 0) |
7 | 3633 findsent_forward(ncount, TRUE); |
3634 else | |
3635 decl(&curwin->w_cursor); | |
3636 | |
3637 if (include) | |
3638 { | |
3639 /* | |
3640 * If the blank in front of the sentence is included, exclude the | |
3641 * blanks at the end of the sentence, go back to the first blank. | |
3642 * If there are no trailing blanks, try to include leading blanks. | |
3643 */ | |
3644 if (start_blank) | |
3645 { | |
3646 find_first_blank(&curwin->w_cursor); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3647 c = gchar_pos(&curwin->w_cursor); /* VIM_ISWHITE() is a macro */ |
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3648 if (VIM_ISWHITE(c)) |
7 | 3649 decl(&curwin->w_cursor); |
3650 } | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3651 else if (c = gchar_cursor(), !VIM_ISWHITE(c)) |
7 | 3652 find_first_blank(&start_pos); |
3653 } | |
3654 | |
3655 if (VIsual_active) | |
3656 { | |
3701 | 3657 /* Avoid getting stuck with "is" on a single space before a sentence. */ |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3658 if (EQUAL_POS(start_pos, curwin->w_cursor)) |
7 | 3659 goto extend; |
3660 if (*p_sel == 'e') | |
3661 ++curwin->w_cursor.col; | |
3662 VIsual = start_pos; | |
3663 VIsual_mode = 'v'; | |
10064
793471c09a4b
commit https://github.com/vim/vim/commit/779f2fc3a7468e273897d2fd0672315812a2e3da
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3664 redraw_cmdline = TRUE; /* show mode later */ |
7 | 3665 redraw_curbuf_later(INVERTED); /* update the inversion */ |
3666 } | |
3667 else | |
3668 { | |
3669 /* include a newline after the sentence, if there is one */ | |
3670 if (incl(&curwin->w_cursor) == -1) | |
3671 oap->inclusive = TRUE; | |
3672 else | |
3673 oap->inclusive = FALSE; | |
3674 oap->start = start_pos; | |
3675 oap->motion_type = MCHAR; | |
3676 } | |
3677 return OK; | |
3678 } | |
3679 | |
423 | 3680 /* |
3681 * Find block under the cursor, cursor at end. | |
4352 | 3682 * "what" and "other" are two matching parenthesis/brace/etc. |
423 | 3683 */ |
7 | 3684 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3685 current_block( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3686 oparg_T *oap, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3687 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3688 int include, /* TRUE == include white space */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3689 int what, /* '(', '{', etc. */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3690 int other) /* ')', '}', etc. */ |
7 | 3691 { |
3692 pos_T old_pos; | |
3693 pos_T *pos = NULL; | |
3694 pos_T start_pos; | |
3695 pos_T *end_pos; | |
3696 pos_T old_start, old_end; | |
3697 char_u *save_cpo; | |
423 | 3698 int sol = FALSE; /* '{' at start of line */ |
7 | 3699 |
3700 old_pos = curwin->w_cursor; | |
423 | 3701 old_end = curwin->w_cursor; /* remember where we started */ |
7 | 3702 old_start = old_end; |
3703 | |
3704 /* | |
3705 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive. | |
3706 */ | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3707 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor)) |
7 | 3708 { |
3709 setpcmark(); | |
423 | 3710 if (what == '{') /* ignore indent */ |
7 | 3711 while (inindent(1)) |
3712 if (inc_cursor() != 0) | |
3713 break; | |
423 | 3714 if (gchar_cursor() == what) |
3715 /* cursor on '(' or '{', move cursor just after it */ | |
7 | 3716 ++curwin->w_cursor.col; |
3717 } | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3718 else if (LT_POS(VIsual, curwin->w_cursor)) |
7 | 3719 { |
3720 old_start = VIsual; | |
3721 curwin->w_cursor = VIsual; /* cursor at low end of Visual */ | |
3722 } | |
3723 else | |
3724 old_end = VIsual; | |
3725 | |
3726 /* | |
3727 * Search backwards for unclosed '(', '{', etc.. | |
3728 * Put this position in start_pos. | |
6675 | 3729 * Ignore quotes here. Keep the "M" flag in 'cpo', as that is what the |
3730 * user wants. | |
7 | 3731 */ |
3732 save_cpo = p_cpo; | |
6675 | 3733 p_cpo = (char_u *)(vim_strchr(p_cpo, CPO_MATCHBSL) != NULL ? "%M" : "%"); |
7 | 3734 while (count-- > 0) |
3735 { | |
3736 if ((pos = findmatch(NULL, what)) == NULL) | |
3737 break; | |
3738 curwin->w_cursor = *pos; | |
3739 start_pos = *pos; /* the findmatch for end_pos will overwrite *pos */ | |
3740 } | |
3741 p_cpo = save_cpo; | |
3742 | |
3743 /* | |
3744 * Search for matching ')', '}', etc. | |
3745 * Put this position in curwin->w_cursor. | |
3746 */ | |
3747 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL) | |
3748 { | |
3749 curwin->w_cursor = old_pos; | |
3750 return FAIL; | |
3751 } | |
3752 curwin->w_cursor = *end_pos; | |
3753 | |
3754 /* | |
3755 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE. | |
5975 | 3756 * If the ending '}', ')' or ']' is only preceded by indent, skip that |
3757 * indent. But only if the resulting area is not smaller than what we | |
3758 * started with. | |
7 | 3759 */ |
3760 while (!include) | |
3761 { | |
3762 incl(&start_pos); | |
3763 sol = (curwin->w_cursor.col == 0); | |
3764 decl(&curwin->w_cursor); | |
5975 | 3765 while (inindent(1)) |
3766 { | |
3767 sol = TRUE; | |
3768 if (decl(&curwin->w_cursor) != 0) | |
3769 break; | |
3770 } | |
3771 | |
7 | 3772 /* |
3773 * In Visual mode, when the resulting area is not bigger than what we | |
3774 * started with, extend it to the next block, and then exclude again. | |
3775 */ | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3776 if (!LT_POS(start_pos, old_start) && !LT_POS(old_end, curwin->w_cursor) |
7 | 3777 && VIsual_active) |
3778 { | |
3779 curwin->w_cursor = old_start; | |
3780 decl(&curwin->w_cursor); | |
3781 if ((pos = findmatch(NULL, what)) == NULL) | |
3782 { | |
3783 curwin->w_cursor = old_pos; | |
3784 return FAIL; | |
3785 } | |
3786 start_pos = *pos; | |
3787 curwin->w_cursor = *pos; | |
3788 if ((end_pos = findmatch(NULL, other)) == NULL) | |
3789 { | |
3790 curwin->w_cursor = old_pos; | |
3791 return FAIL; | |
3792 } | |
3793 curwin->w_cursor = *end_pos; | |
3794 } | |
3795 else | |
3796 break; | |
3797 } | |
3798 | |
3799 if (VIsual_active) | |
3800 { | |
3801 if (*p_sel == 'e') | |
7070
d92910c0c415
commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents:
7054
diff
changeset
|
3802 inc(&curwin->w_cursor); |
557 | 3803 if (sol && gchar_cursor() != NUL) |
7 | 3804 inc(&curwin->w_cursor); /* include the line break */ |
3805 VIsual = start_pos; | |
3806 VIsual_mode = 'v'; | |
3807 redraw_curbuf_later(INVERTED); /* update the inversion */ | |
3808 showmode(); | |
3809 } | |
3810 else | |
3811 { | |
3812 oap->start = start_pos; | |
3813 oap->motion_type = MCHAR; | |
1290 | 3814 oap->inclusive = FALSE; |
7 | 3815 if (sol) |
3816 incl(&curwin->w_cursor); | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3817 else if (LTOREQ_POS(start_pos, curwin->w_cursor)) |
1290 | 3818 /* Include the character under the cursor. */ |
3819 oap->inclusive = TRUE; | |
7 | 3820 else |
1290 | 3821 /* End is before the start (no text in between <>, [], etc.): don't |
3822 * operate on any text. */ | |
3823 curwin->w_cursor = start_pos; | |
7 | 3824 } |
3825 | |
3826 return OK; | |
3827 } | |
3828 | |
423 | 3829 /* |
3830 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>". | |
3831 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>". | |
3832 */ | |
3833 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3834 in_html_tag( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3835 int end_tag) |
423 | 3836 { |
3837 char_u *line = ml_get_curline(); | |
3838 char_u *p; | |
3839 int c; | |
3840 int lc = NUL; | |
3841 pos_T pos; | |
3842 | |
3843 if (enc_dbcs) | |
3844 { | |
3845 char_u *lp = NULL; | |
3846 | |
3847 /* We search forward until the cursor, because searching backwards is | |
3848 * very slow for DBCS encodings. */ | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3849 for (p = line; p < line + curwin->w_cursor.col; MB_PTR_ADV(p)) |
423 | 3850 if (*p == '>' || *p == '<') |
3851 { | |
3852 lc = *p; | |
3853 lp = p; | |
3854 } | |
3855 if (*p != '<') /* check for '<' under cursor */ | |
3856 { | |
3857 if (lc != '<') | |
3858 return FALSE; | |
3859 p = lp; | |
3860 } | |
3861 } | |
3862 else | |
3863 { | |
3864 for (p = line + curwin->w_cursor.col; p > line; ) | |
3865 { | |
3866 if (*p == '<') /* find '<' under/before cursor */ | |
3867 break; | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3868 MB_PTR_BACK(line, p); |
423 | 3869 if (*p == '>') /* find '>' before cursor */ |
3870 break; | |
3871 } | |
3872 if (*p != '<') | |
3873 return FALSE; | |
3874 } | |
3875 | |
3876 pos.lnum = curwin->w_cursor.lnum; | |
835 | 3877 pos.col = (colnr_T)(p - line); |
423 | 3878 |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3879 MB_PTR_ADV(p); |
423 | 3880 if (end_tag) |
3881 /* check that there is a '/' after the '<' */ | |
3882 return *p == '/'; | |
3883 | |
3884 /* check that there is no '/' after the '<' */ | |
3885 if (*p == '/') | |
3886 return FALSE; | |
3887 | |
3888 /* check that the matching '>' is not preceded by '/' */ | |
3889 for (;;) | |
3890 { | |
3891 if (inc(&pos) < 0) | |
3892 return FALSE; | |
3893 c = *ml_get_pos(&pos); | |
3894 if (c == '>') | |
3895 break; | |
3896 lc = c; | |
3897 } | |
3898 return lc != '/'; | |
3899 } | |
3900 | |
3901 /* | |
3902 * Find tag block under the cursor, cursor at end. | |
3903 */ | |
3904 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3905 current_tagblock( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3906 oparg_T *oap, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3907 long count_arg, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3908 int include) /* TRUE == include white space */ |
423 | 3909 { |
3910 long count = count_arg; | |
3911 long n; | |
3912 pos_T old_pos; | |
3913 pos_T start_pos; | |
3914 pos_T end_pos; | |
3915 pos_T old_start, old_end; | |
3916 char_u *spat, *epat; | |
3917 char_u *p; | |
3918 char_u *cp; | |
3919 int len; | |
3920 int r; | |
3921 int do_include = include; | |
3922 int save_p_ws = p_ws; | |
3923 int retval = FAIL; | |
6661 | 3924 int is_inclusive = TRUE; |
423 | 3925 |
3926 p_ws = FALSE; | |
3927 | |
3928 old_pos = curwin->w_cursor; | |
3929 old_end = curwin->w_cursor; /* remember where we started */ | |
3930 old_start = old_end; | |
1527 | 3931 if (!VIsual_active || *p_sel == 'e') |
3932 decl(&old_end); /* old_end is inclusive */ | |
423 | 3933 |
3934 /* | |
435 | 3935 * If we start on "<aaa>" select that block. |
423 | 3936 */ |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3937 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor)) |
423 | 3938 { |
3939 setpcmark(); | |
3940 | |
3941 /* ignore indent */ | |
3942 while (inindent(1)) | |
3943 if (inc_cursor() != 0) | |
3944 break; | |
3945 | |
3946 if (in_html_tag(FALSE)) | |
3947 { | |
1290 | 3948 /* cursor on start tag, move to its '>' */ |
423 | 3949 while (*ml_get_cursor() != '>') |
3950 if (inc_cursor() < 0) | |
3951 break; | |
3952 } | |
3953 else if (in_html_tag(TRUE)) | |
3954 { | |
3955 /* cursor on end tag, move to just before it */ | |
3956 while (*ml_get_cursor() != '<') | |
3957 if (dec_cursor() < 0) | |
3958 break; | |
3959 dec_cursor(); | |
3960 old_end = curwin->w_cursor; | |
3961 } | |
3962 } | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
3963 else if (LT_POS(VIsual, curwin->w_cursor)) |
423 | 3964 { |
3965 old_start = VIsual; | |
3966 curwin->w_cursor = VIsual; /* cursor at low end of Visual */ | |
3967 } | |
3968 else | |
3969 old_end = VIsual; | |
3970 | |
3971 again: | |
3972 /* | |
3973 * Search backwards for unclosed "<aaa>". | |
3974 * Put this position in start_pos. | |
3975 */ | |
3976 for (n = 0; n < count; ++n) | |
3977 { | |
435 | 3978 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)", |
423 | 3979 (char_u *)"", |
12722
7749260f261c
patch 8.0.1239: cannot use a lambda for the skip argument to searchpair()
Christian Brabandt <cb@256bit.org>
parents:
12720
diff
changeset
|
3980 (char_u *)"</[^>]*>", BACKWARD, NULL, 0, |
1496 | 3981 NULL, (linenr_T)0, 0L) <= 0) |
423 | 3982 { |
3983 curwin->w_cursor = old_pos; | |
3984 goto theend; | |
3985 } | |
3986 } | |
3987 start_pos = curwin->w_cursor; | |
3988 | |
3989 /* | |
3990 * Search for matching "</aaa>". First isolate the "aaa". | |
3991 */ | |
3992 inc_cursor(); | |
3993 p = ml_get_cursor(); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3994 for (cp = p; *cp != NUL && *cp != '>' && !VIM_ISWHITE(*cp); MB_PTR_ADV(cp)) |
423 | 3995 ; |
835 | 3996 len = (int)(cp - p); |
423 | 3997 if (len == 0) |
3998 { | |
3999 curwin->w_cursor = old_pos; | |
4000 goto theend; | |
4001 } | |
3306 | 4002 spat = alloc(len + 31); |
423 | 4003 epat = alloc(len + 9); |
4004 if (spat == NULL || epat == NULL) | |
4005 { | |
4006 vim_free(spat); | |
4007 vim_free(epat); | |
4008 curwin->w_cursor = old_pos; | |
4009 goto theend; | |
4010 } | |
3306 | 4011 sprintf((char *)spat, "<%.*s\\>\\%%(\\s\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p); |
423 | 4012 sprintf((char *)epat, "</%.*s>\\c", len, p); |
4013 | |
12722
7749260f261c
patch 8.0.1239: cannot use a lambda for the skip argument to searchpair()
Christian Brabandt <cb@256bit.org>
parents:
12720
diff
changeset
|
4014 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, NULL, |
1496 | 4015 0, NULL, (linenr_T)0, 0L); |
423 | 4016 |
4017 vim_free(spat); | |
4018 vim_free(epat); | |
4019 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
4020 if (r < 1 || LT_POS(curwin->w_cursor, old_end)) |
423 | 4021 { |
4022 /* Can't find other end or it's before the previous end. Could be a | |
4023 * HTML tag that doesn't have a matching end. Search backwards for | |
4024 * another starting tag. */ | |
4025 count = 1; | |
4026 curwin->w_cursor = start_pos; | |
4027 goto again; | |
4028 } | |
4029 | |
13762
9de2b25932eb
patch 8.0.1753: various warnings from a static analyser
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
4030 if (do_include) |
423 | 4031 { |
4032 /* Include up to the '>'. */ | |
4033 while (*ml_get_cursor() != '>') | |
4034 if (inc_cursor() < 0) | |
4035 break; | |
4036 } | |
4037 else | |
4038 { | |
6661 | 4039 char_u *c = ml_get_cursor(); |
4040 | |
4041 /* Exclude the '<' of the end tag. | |
4042 * If the closing tag is on new line, do not decrement cursor, but | |
4043 * make operation exclusive, so that the linefeed will be selected */ | |
4044 if (*c == '<' && !VIsual_active && curwin->w_cursor.col == 0) | |
4045 /* do not decrement cursor */ | |
4046 is_inclusive = FALSE; | |
4047 else if (*c == '<') | |
423 | 4048 dec_cursor(); |
4049 } | |
4050 end_pos = curwin->w_cursor; | |
4051 | |
4052 if (!do_include) | |
4053 { | |
4054 /* Exclude the start tag. */ | |
4055 curwin->w_cursor = start_pos; | |
4056 while (inc_cursor() >= 0) | |
1290 | 4057 if (*ml_get_cursor() == '>') |
423 | 4058 { |
4059 inc_cursor(); | |
4060 start_pos = curwin->w_cursor; | |
4061 break; | |
4062 } | |
4063 curwin->w_cursor = end_pos; | |
4064 | |
14554
e7f92d1a3fcd
patch 8.1.0290: "cit" on an empty HTML tag changes the whole tag
Christian Brabandt <cb@256bit.org>
parents:
14131
diff
changeset
|
4065 // If we are in Visual mode and now have the same text as before set |
e7f92d1a3fcd
patch 8.1.0290: "cit" on an empty HTML tag changes the whole tag
Christian Brabandt <cb@256bit.org>
parents:
14131
diff
changeset
|
4066 // "do_include" and try again. |
e7f92d1a3fcd
patch 8.1.0290: "cit" on an empty HTML tag changes the whole tag
Christian Brabandt <cb@256bit.org>
parents:
14131
diff
changeset
|
4067 if (VIsual_active && EQUAL_POS(start_pos, old_start) |
e7f92d1a3fcd
patch 8.1.0290: "cit" on an empty HTML tag changes the whole tag
Christian Brabandt <cb@256bit.org>
parents:
14131
diff
changeset
|
4068 && EQUAL_POS(end_pos, old_end)) |
423 | 4069 { |
4070 do_include = TRUE; | |
4071 curwin->w_cursor = old_start; | |
4072 count = count_arg; | |
4073 goto again; | |
4074 } | |
4075 } | |
4076 | |
4077 if (VIsual_active) | |
4078 { | |
1290 | 4079 /* If the end is before the start there is no text between tags, select |
4080 * the char under the cursor. */ | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
4081 if (LT_POS(end_pos, start_pos)) |
1290 | 4082 curwin->w_cursor = start_pos; |
4083 else if (*p_sel == 'e') | |
6434 | 4084 inc_cursor(); |
423 | 4085 VIsual = start_pos; |
4086 VIsual_mode = 'v'; | |
4087 redraw_curbuf_later(INVERTED); /* update the inversion */ | |
4088 showmode(); | |
4089 } | |
4090 else | |
4091 { | |
4092 oap->start = start_pos; | |
4093 oap->motion_type = MCHAR; | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
4094 if (LT_POS(end_pos, start_pos)) |
1290 | 4095 { |
4096 /* End is before the start: there is no text between tags; operate | |
4097 * on an empty area. */ | |
4098 curwin->w_cursor = start_pos; | |
4099 oap->inclusive = FALSE; | |
4100 } | |
4101 else | |
6661 | 4102 oap->inclusive = is_inclusive; |
423 | 4103 } |
4104 retval = OK; | |
4105 | |
4106 theend: | |
4107 p_ws = save_p_ws; | |
4108 return retval; | |
4109 } | |
4110 | |
7 | 4111 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4112 current_par( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4113 oparg_T *oap, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4114 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4115 int include, /* TRUE == include white space */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4116 int type) /* 'p' for paragraph, 'S' for section */ |
7 | 4117 { |
4118 linenr_T start_lnum; | |
4119 linenr_T end_lnum; | |
4120 int white_in_front; | |
4121 int dir; | |
4122 int start_is_white; | |
4123 int prev_start_is_white; | |
4124 int retval = OK; | |
4125 int do_white = FALSE; | |
4126 int t; | |
4127 int i; | |
4128 | |
4129 if (type == 'S') /* not implemented yet */ | |
4130 return FAIL; | |
4131 | |
4132 start_lnum = curwin->w_cursor.lnum; | |
4133 | |
4134 /* | |
4135 * When visual area is more than one line: extend it. | |
4136 */ | |
4137 if (VIsual_active && start_lnum != VIsual.lnum) | |
4138 { | |
4139 extend: | |
4140 if (start_lnum < VIsual.lnum) | |
4141 dir = BACKWARD; | |
4142 else | |
4143 dir = FORWARD; | |
4144 for (i = count; --i >= 0; ) | |
4145 { | |
4146 if (start_lnum == | |
4147 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count)) | |
4148 { | |
4149 retval = FAIL; | |
4150 break; | |
4151 } | |
4152 | |
4153 prev_start_is_white = -1; | |
4154 for (t = 0; t < 2; ++t) | |
4155 { | |
4156 start_lnum += dir; | |
4157 start_is_white = linewhite(start_lnum); | |
4158 if (prev_start_is_white == start_is_white) | |
4159 { | |
4160 start_lnum -= dir; | |
4161 break; | |
4162 } | |
4163 for (;;) | |
4164 { | |
4165 if (start_lnum == (dir == BACKWARD | |
4166 ? 1 : curbuf->b_ml.ml_line_count)) | |
4167 break; | |
4168 if (start_is_white != linewhite(start_lnum + dir) | |
4169 || (!start_is_white | |
4170 && startPS(start_lnum + (dir > 0 | |
4171 ? 1 : 0), 0, 0))) | |
4172 break; | |
4173 start_lnum += dir; | |
4174 } | |
4175 if (!include) | |
4176 break; | |
4177 if (start_lnum == (dir == BACKWARD | |
4178 ? 1 : curbuf->b_ml.ml_line_count)) | |
4179 break; | |
4180 prev_start_is_white = start_is_white; | |
4181 } | |
4182 } | |
4183 curwin->w_cursor.lnum = start_lnum; | |
4184 curwin->w_cursor.col = 0; | |
4185 return retval; | |
4186 } | |
4187 | |
4188 /* | |
4189 * First move back to the start_lnum of the paragraph or white lines | |
4190 */ | |
4191 white_in_front = linewhite(start_lnum); | |
4192 while (start_lnum > 1) | |
4193 { | |
4194 if (white_in_front) /* stop at first white line */ | |
4195 { | |
4196 if (!linewhite(start_lnum - 1)) | |
4197 break; | |
4198 } | |
4199 else /* stop at first non-white line of start of paragraph */ | |
4200 { | |
4201 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0)) | |
4202 break; | |
4203 } | |
4204 --start_lnum; | |
4205 } | |
4206 | |
4207 /* | |
4208 * Move past the end of any white lines. | |
4209 */ | |
4210 end_lnum = start_lnum; | |
692 | 4211 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum)) |
4212 ++end_lnum; | |
7 | 4213 |
4214 --end_lnum; | |
4215 i = count; | |
4216 if (!include && white_in_front) | |
4217 --i; | |
4218 while (i--) | |
4219 { | |
4220 if (end_lnum == curbuf->b_ml.ml_line_count) | |
4221 return FAIL; | |
4222 | |
4223 if (!include) | |
4224 do_white = linewhite(end_lnum + 1); | |
4225 | |
4226 if (include || !do_white) | |
4227 { | |
4228 ++end_lnum; | |
4229 /* | |
4230 * skip to end of paragraph | |
4231 */ | |
4232 while (end_lnum < curbuf->b_ml.ml_line_count | |
4233 && !linewhite(end_lnum + 1) | |
4234 && !startPS(end_lnum + 1, 0, 0)) | |
4235 ++end_lnum; | |
4236 } | |
4237 | |
4238 if (i == 0 && white_in_front && include) | |
4239 break; | |
4240 | |
4241 /* | |
4242 * skip to end of white lines after paragraph | |
4243 */ | |
4244 if (include || do_white) | |
4245 while (end_lnum < curbuf->b_ml.ml_line_count | |
4246 && linewhite(end_lnum + 1)) | |
4247 ++end_lnum; | |
4248 } | |
4249 | |
4250 /* | |
4251 * If there are no empty lines at the end, try to find some empty lines at | |
4252 * the start (unless that has been done already). | |
4253 */ | |
4254 if (!white_in_front && !linewhite(end_lnum) && include) | |
4255 while (start_lnum > 1 && linewhite(start_lnum - 1)) | |
4256 --start_lnum; | |
4257 | |
4258 if (VIsual_active) | |
4259 { | |
4260 /* Problem: when doing "Vipipip" nothing happens in a single white | |
4261 * line, we get stuck there. Trap this here. */ | |
4262 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum) | |
4263 goto extend; | |
10881
8f6df2f6d2fc
patch 8.0.0330: illegal memory access after "vapo"
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
4264 if (VIsual.lnum != start_lnum) |
8f6df2f6d2fc
patch 8.0.0330: illegal memory access after "vapo"
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
4265 { |
8f6df2f6d2fc
patch 8.0.0330: illegal memory access after "vapo"
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
4266 VIsual.lnum = start_lnum; |
8f6df2f6d2fc
patch 8.0.0330: illegal memory access after "vapo"
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
4267 VIsual.col = 0; |
8f6df2f6d2fc
patch 8.0.0330: illegal memory access after "vapo"
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
4268 } |
7 | 4269 VIsual_mode = 'V'; |
4270 redraw_curbuf_later(INVERTED); /* update the inversion */ | |
4271 showmode(); | |
4272 } | |
4273 else | |
4274 { | |
4275 oap->start.lnum = start_lnum; | |
4276 oap->start.col = 0; | |
4277 oap->motion_type = MLINE; | |
4278 } | |
4279 curwin->w_cursor.lnum = end_lnum; | |
4280 curwin->w_cursor.col = 0; | |
4281 | |
4282 return OK; | |
4283 } | |
12 | 4284 |
4285 /* | |
4286 * Search quote char from string line[col]. | |
4287 * Quote character escaped by one of the characters in "escape" is not counted | |
4288 * as a quote. | |
4289 * Returns column number of "quotechar" or -1 when not found. | |
4290 */ | |
4291 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4292 find_next_quote( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4293 char_u *line, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4294 int col, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4295 int quotechar, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4296 char_u *escape) /* escape characters, can be NULL */ |
12 | 4297 { |
4298 int c; | |
4299 | |
408 | 4300 for (;;) |
12 | 4301 { |
4302 c = line[col]; | |
4303 if (c == NUL) | |
4304 return -1; | |
4305 else if (escape != NULL && vim_strchr(escape, c)) | |
4306 ++col; | |
4307 else if (c == quotechar) | |
4308 break; | |
4309 if (has_mbyte) | |
474 | 4310 col += (*mb_ptr2len)(line + col); |
12 | 4311 else |
4312 ++col; | |
4313 } | |
4314 return col; | |
4315 } | |
4316 | |
4317 /* | |
4318 * Search backwards in "line" from column "col_start" to find "quotechar". | |
4319 * Quote character escaped by one of the characters in "escape" is not counted | |
4320 * as a quote. | |
4321 * Return the found column or zero. | |
4322 */ | |
4323 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4324 find_prev_quote( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4325 char_u *line, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4326 int col_start, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4327 int quotechar, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4328 char_u *escape) /* escape characters, can be NULL */ |
12 | 4329 { |
4330 int n; | |
4331 | |
4332 while (col_start > 0) | |
4333 { | |
4334 --col_start; | |
4335 col_start -= (*mb_head_off)(line, line + col_start); | |
4336 n = 0; | |
4337 if (escape != NULL) | |
4338 while (col_start - n > 0 && vim_strchr(escape, | |
4339 line[col_start - n - 1]) != NULL) | |
4340 ++n; | |
4341 if (n & 1) | |
4342 col_start -= n; /* uneven number of escape chars, skip it */ | |
4343 else if (line[col_start] == quotechar) | |
4344 break; | |
4345 } | |
4346 return col_start; | |
4347 } | |
4348 | |
4349 /* | |
4350 * Find quote under the cursor, cursor at end. | |
4351 * Returns TRUE if found, else FALSE. | |
4352 */ | |
4353 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4354 current_quote( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4355 oparg_T *oap, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4356 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4357 int include, /* TRUE == include quote char */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4358 int quotechar) /* Quote character */ |
12 | 4359 { |
4360 char_u *line = ml_get_curline(); | |
4361 int col_end; | |
4362 int col_start = curwin->w_cursor.col; | |
4363 int inclusive = FALSE; | |
15930
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4364 int vis_empty = TRUE; // Visual selection <= 1 char |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4365 int vis_bef_curs = FALSE; // Visual starts before cursor |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4366 int inside_quotes = FALSE; // Looks like "i'" done before |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4367 int selected_quote = FALSE; // Has quote inside selection |
527 | 4368 int i; |
15930
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4369 int restore_vis_bef = FALSE; // restore VIsual on abort |
12 | 4370 |
11478
29a781fd3f27
patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
4371 /* Correct cursor when 'selection' is "exclusive". */ |
12 | 4372 if (VIsual_active) |
4373 { | |
10900
9b4574d95571
patch 8.0.0339: illegal memory access with vi'
Christian Brabandt <cb@256bit.org>
parents:
10881
diff
changeset
|
4374 /* this only works within one line */ |
9b4574d95571
patch 8.0.0339: illegal memory access with vi'
Christian Brabandt <cb@256bit.org>
parents:
10881
diff
changeset
|
4375 if (VIsual.lnum != curwin->w_cursor.lnum) |
9b4574d95571
patch 8.0.0339: illegal memory access with vi'
Christian Brabandt <cb@256bit.org>
parents:
10881
diff
changeset
|
4376 return FALSE; |
9b4574d95571
patch 8.0.0339: illegal memory access with vi'
Christian Brabandt <cb@256bit.org>
parents:
10881
diff
changeset
|
4377 |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
4378 vis_bef_curs = LT_POS(VIsual, curwin->w_cursor); |
11478
29a781fd3f27
patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
4379 if (*p_sel == 'e') |
29a781fd3f27
patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
4380 { |
29a781fd3f27
patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
4381 if (!vis_bef_curs) |
29a781fd3f27
patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
4382 { |
15930
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4383 // VIsual needs to be the start of Visual selection. |
11478
29a781fd3f27
patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
4384 pos_T t = curwin->w_cursor; |
29a781fd3f27
patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
4385 |
29a781fd3f27
patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
4386 curwin->w_cursor = VIsual; |
29a781fd3f27
patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
4387 VIsual = t; |
29a781fd3f27
patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
4388 vis_bef_curs = TRUE; |
15930
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4389 restore_vis_bef = TRUE; |
11478
29a781fd3f27
patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
4390 } |
12 | 4391 dec_cursor(); |
11478
29a781fd3f27
patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
4392 } |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
4393 vis_empty = EQUAL_POS(VIsual, curwin->w_cursor); |
12 | 4394 } |
527 | 4395 |
4396 if (!vis_empty) | |
4397 { | |
4398 /* Check if the existing selection exactly spans the text inside | |
4399 * quotes. */ | |
4400 if (vis_bef_curs) | |
4401 { | |
4402 inside_quotes = VIsual.col > 0 | |
4403 && line[VIsual.col - 1] == quotechar | |
4404 && line[curwin->w_cursor.col] != NUL | |
4405 && line[curwin->w_cursor.col + 1] == quotechar; | |
4406 i = VIsual.col; | |
4407 col_end = curwin->w_cursor.col; | |
4408 } | |
4409 else | |
4410 { | |
4411 inside_quotes = curwin->w_cursor.col > 0 | |
4412 && line[curwin->w_cursor.col - 1] == quotechar | |
4413 && line[VIsual.col] != NUL | |
4414 && line[VIsual.col + 1] == quotechar; | |
4415 i = curwin->w_cursor.col; | |
4416 col_end = VIsual.col; | |
4417 } | |
4418 | |
4419 /* Find out if we have a quote in the selection. */ | |
4420 while (i <= col_end) | |
4421 if (line[i++] == quotechar) | |
4422 { | |
4423 selected_quote = TRUE; | |
4424 break; | |
4425 } | |
4426 } | |
4427 | |
12 | 4428 if (!vis_empty && line[col_start] == quotechar) |
4429 { | |
4430 /* Already selecting something and on a quote character. Find the | |
4431 * next quoted string. */ | |
4432 if (vis_bef_curs) | |
4433 { | |
4434 /* Assume we are on a closing quote: move to after the next | |
4435 * opening quote. */ | |
4436 col_start = find_next_quote(line, col_start + 1, quotechar, NULL); | |
4437 if (col_start < 0) | |
15930
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4438 goto abort_search; |
12 | 4439 col_end = find_next_quote(line, col_start + 1, quotechar, |
4440 curbuf->b_p_qe); | |
4441 if (col_end < 0) | |
4442 { | |
4443 /* We were on a starting quote perhaps? */ | |
4444 col_end = col_start; | |
4445 col_start = curwin->w_cursor.col; | |
4446 } | |
4447 } | |
4448 else | |
4449 { | |
4450 col_end = find_prev_quote(line, col_start, quotechar, NULL); | |
4451 if (line[col_end] != quotechar) | |
15930
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4452 goto abort_search; |
12 | 4453 col_start = find_prev_quote(line, col_end, quotechar, |
4454 curbuf->b_p_qe); | |
4455 if (line[col_start] != quotechar) | |
4456 { | |
4457 /* We were on an ending quote perhaps? */ | |
4458 col_start = col_end; | |
4459 col_end = curwin->w_cursor.col; | |
4460 } | |
4461 } | |
4462 } | |
4463 else | |
5735 | 4464 |
4465 if (line[col_start] == quotechar || !vis_empty) | |
12 | 4466 { |
4467 int first_col = col_start; | |
4468 | |
4469 if (!vis_empty) | |
4470 { | |
4471 if (vis_bef_curs) | |
4472 first_col = find_next_quote(line, col_start, quotechar, NULL); | |
4473 else | |
4474 first_col = find_prev_quote(line, col_start, quotechar, NULL); | |
4475 } | |
5735 | 4476 |
12 | 4477 /* The cursor is on a quote, we don't know if it's the opening or |
4478 * closing quote. Search from the start of the line to find out. | |
4479 * Also do this when there is a Visual area, a' may leave the cursor | |
4480 * in between two strings. */ | |
4481 col_start = 0; | |
408 | 4482 for (;;) |
12 | 4483 { |
4484 /* Find open quote character. */ | |
4485 col_start = find_next_quote(line, col_start, quotechar, NULL); | |
4486 if (col_start < 0 || col_start > first_col) | |
15930
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4487 goto abort_search; |
12 | 4488 /* Find close quote character. */ |
4489 col_end = find_next_quote(line, col_start + 1, quotechar, | |
4490 curbuf->b_p_qe); | |
4491 if (col_end < 0) | |
15930
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4492 goto abort_search; |
12 | 4493 /* If is cursor between start and end quote character, it is |
4494 * target text object. */ | |
4495 if (col_start <= first_col && first_col <= col_end) | |
4496 break; | |
4497 col_start = col_end + 1; | |
4498 } | |
4499 } | |
4500 else | |
4501 { | |
4502 /* Search backward for a starting quote. */ | |
4503 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe); | |
4504 if (line[col_start] != quotechar) | |
4505 { | |
4506 /* No quote before the cursor, look after the cursor. */ | |
4507 col_start = find_next_quote(line, col_start, quotechar, NULL); | |
4508 if (col_start < 0) | |
15930
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4509 goto abort_search; |
12 | 4510 } |
4511 | |
4512 /* Find close quote character. */ | |
4513 col_end = find_next_quote(line, col_start + 1, quotechar, | |
4514 curbuf->b_p_qe); | |
4515 if (col_end < 0) | |
15930
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4516 goto abort_search; |
12 | 4517 } |
4518 | |
4519 /* When "include" is TRUE, include spaces after closing quote or before | |
4520 * the starting quote. */ | |
4521 if (include) | |
4522 { | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4523 if (VIM_ISWHITE(line[col_end + 1])) |
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4524 while (VIM_ISWHITE(line[col_end + 1])) |
12 | 4525 ++col_end; |
4526 else | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4527 while (col_start > 0 && VIM_ISWHITE(line[col_start - 1])) |
12 | 4528 --col_start; |
4529 } | |
4530 | |
527 | 4531 /* Set start position. After vi" another i" must include the ". |
4532 * For v2i" include the quotes. */ | |
5735 | 4533 if (!include && count < 2 && (vis_empty || !inside_quotes)) |
12 | 4534 ++col_start; |
4535 curwin->w_cursor.col = col_start; | |
4536 if (VIsual_active) | |
4537 { | |
527 | 4538 /* Set the start of the Visual area when the Visual area was empty, we |
4539 * were just inside quotes or the Visual area didn't start at a quote | |
4540 * and didn't include a quote. | |
4541 */ | |
4542 if (vis_empty | |
4543 || (vis_bef_curs | |
4544 && !selected_quote | |
4545 && (inside_quotes | |
4546 || (line[VIsual.col] != quotechar | |
4547 && (VIsual.col == 0 | |
4548 || line[VIsual.col - 1] != quotechar))))) | |
12 | 4549 { |
4550 VIsual = curwin->w_cursor; | |
4551 redraw_curbuf_later(INVERTED); | |
4552 } | |
4553 } | |
4554 else | |
4555 { | |
4556 oap->start = curwin->w_cursor; | |
4557 oap->motion_type = MCHAR; | |
4558 } | |
4559 | |
4560 /* Set end position. */ | |
4561 curwin->w_cursor.col = col_end; | |
5735 | 4562 if ((include || count > 1 /* After vi" another i" must include the ". */ |
527 | 4563 || (!vis_empty && inside_quotes) |
4564 ) && inc_cursor() == 2) | |
12 | 4565 inclusive = TRUE; |
4566 if (VIsual_active) | |
4567 { | |
4568 if (vis_empty || vis_bef_curs) | |
4569 { | |
4570 /* decrement cursor when 'selection' is not exclusive */ | |
4571 if (*p_sel != 'e') | |
4572 dec_cursor(); | |
4573 } | |
4574 else | |
4575 { | |
527 | 4576 /* Cursor is at start of Visual area. Set the end of the Visual |
4577 * area when it was just inside quotes or it didn't end at a | |
4578 * quote. */ | |
4579 if (inside_quotes | |
4580 || (!selected_quote | |
4581 && line[VIsual.col] != quotechar | |
4582 && (line[VIsual.col] == NUL | |
4583 || line[VIsual.col + 1] != quotechar))) | |
4584 { | |
4585 dec_cursor(); | |
4586 VIsual = curwin->w_cursor; | |
4587 } | |
12 | 4588 curwin->w_cursor.col = col_start; |
4589 } | |
4590 if (VIsual_mode == 'V') | |
4591 { | |
4592 VIsual_mode = 'v'; | |
4593 redraw_cmdline = TRUE; /* show mode later */ | |
4594 } | |
4595 } | |
4596 else | |
4597 { | |
4598 /* Set inclusive and other oap's flags. */ | |
4599 oap->inclusive = inclusive; | |
4600 } | |
4601 | |
4602 return OK; | |
15930
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4603 |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4604 abort_search: |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4605 if (VIsual_active && *p_sel == 'e') |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4606 { |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4607 inc_cursor(); |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4608 if (restore_vis_bef) |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4609 { |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4610 pos_T t = curwin->w_cursor; |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4611 |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4612 curwin->w_cursor = VIsual; |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4613 VIsual = t; |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4614 } |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4615 } |
e580c9d75443
patch 8.1.0971: failure for selecting quoted text object moves cursor
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
4616 return FALSE; |
12 | 4617 } |
4618 | |
4619 #endif /* FEAT_TEXTOBJ */ | |
7 | 4620 |
12539
6d3584b60170
patch 8.0.1148: gN doesn't work on last match with 'wrapscan' off
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
4621 static int is_one_char(char_u *pattern, int move, pos_T *cur, int direction); |
3755 | 4622 |
3718 | 4623 /* |
4624 * Find next search match under cursor, cursor at end. | |
4625 * Used while an operator is pending, and in Visual mode. | |
4626 */ | |
4627 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4628 current_search( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4629 long count, |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4630 int forward) // TRUE for forward, FALSE for backward |
3718 | 4631 { |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4632 pos_T start_pos; // start position of the pattern match |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4633 pos_T end_pos; // end position of the pattern match |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4634 pos_T orig_pos; // position of the cursor at beginning |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4635 pos_T pos; // position after the pattern |
3718 | 4636 int i; |
4637 int dir; | |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4638 int result; // result of various function calls |
3718 | 4639 char_u old_p_ws = p_ws; |
4640 int flags = 0; | |
5210
839ebe7c1b2f
updated for version 7.4a.031
Bram Moolenaar <bram@vim.org>
parents:
5118
diff
changeset
|
4641 pos_T save_VIsual = VIsual; |
5064
8875401008da
updated for version 7.3.1275
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
4642 int one_char; |
3718 | 4643 |
4644 /* wrapping should not occur */ | |
4645 p_ws = FALSE; | |
4646 | |
4647 /* Correct cursor when 'selection' is exclusive */ | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
4648 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor)) |
3718 | 4649 dec_cursor(); |
4650 | |
4651 if (VIsual_active) | |
4652 { | |
4653 orig_pos = curwin->w_cursor; | |
4654 | |
4655 pos = curwin->w_cursor; | |
4656 | |
4657 /* make sure, searching further will extend the match */ | |
4658 if (VIsual_active) | |
4659 { | |
4660 if (forward) | |
4661 incl(&pos); | |
4662 else | |
4663 decl(&pos); | |
4664 } | |
4665 } | |
4666 else | |
8954
ab4fe611d205
commit https://github.com/vim/vim/commit/268a06ce901d2c780304e0395028e3c2f60ec755
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4667 orig_pos = pos = curwin->w_cursor; |
3718 | 4668 |
12539
6d3584b60170
patch 8.0.1148: gN doesn't work on last match with 'wrapscan' off
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
4669 /* Is the pattern is zero-width?, this time, don't care about the direction |
6d3584b60170
patch 8.0.1148: gN doesn't work on last match with 'wrapscan' off
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
4670 */ |
6d3584b60170
patch 8.0.1148: gN doesn't work on last match with 'wrapscan' off
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
4671 one_char = is_one_char(spats[last_idx].pat, TRUE, &curwin->w_cursor, |
6d3584b60170
patch 8.0.1148: gN doesn't work on last match with 'wrapscan' off
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
4672 FORWARD); |
5064
8875401008da
updated for version 7.3.1275
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
4673 if (one_char == -1) |
5523 | 4674 { |
4675 p_ws = old_p_ws; | |
4676 return FAIL; /* pattern not found */ | |
4677 } | |
3732 | 4678 |
4679 /* | |
3718 | 4680 * The trick is to first search backwards and then search forward again, |
4681 * so that a match at the current cursor position will be correctly | |
4682 * captured. | |
4683 */ | |
4684 for (i = 0; i < 2; i++) | |
4685 { | |
4686 if (forward) | |
4687 dir = i; | |
4688 else | |
4689 dir = !i; | |
3732 | 4690 |
4691 flags = 0; | |
5064
8875401008da
updated for version 7.3.1275
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
4692 if (!dir && !one_char) |
3732 | 4693 flags = SEARCH_END; |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4694 end_pos = pos; |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4695 |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4696 result = searchit(curwin, curbuf, &pos, &end_pos, |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4697 (dir ? FORWARD : BACKWARD), |
3718 | 4698 spats[last_idx].pat, (long) (i ? count : 1), |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
4699 SEARCH_KEEP | flags, RE_SEARCH, 0, NULL, NULL); |
3718 | 4700 |
4701 /* First search may fail, but then start searching from the | |
4702 * beginning of the file (cursor might be on the search match) | |
4703 * except when Visual mode is active, so that extending the visual | |
4704 * selection works. */ | |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4705 if (i == 1 && !result) /* not found, abort */ |
3718 | 4706 { |
4707 curwin->w_cursor = orig_pos; | |
4708 if (VIsual_active) | |
4709 VIsual = save_VIsual; | |
4710 p_ws = old_p_ws; | |
4711 return FAIL; | |
4712 } | |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4713 else if (i == 0 && !result) |
3718 | 4714 { |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
4715 if (forward) |
3718 | 4716 { |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
4717 /* try again from start of buffer */ |
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
4718 CLEAR_POS(&pos); |
3718 | 4719 } |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
4720 else |
3718 | 4721 { |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
4722 /* try again from end of buffer */ |
3718 | 4723 /* searching backwards, so set pos to last line and col */ |
4724 pos.lnum = curwin->w_buffer->b_ml.ml_line_count; | |
3724 | 4725 pos.col = (colnr_T)STRLEN( |
4726 ml_get(curwin->w_buffer->b_ml.ml_line_count)); | |
3718 | 4727 } |
4728 } | |
5452 | 4729 p_ws = old_p_ws; |
3718 | 4730 } |
4731 | |
4732 start_pos = pos; | |
14000
96933f0ecbd1
patch 8.1.0018: using "gn" may select wrong text when wrapping
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
4733 p_ws = old_p_ws; |
3718 | 4734 |
4735 if (!VIsual_active) | |
4736 VIsual = start_pos; | |
4737 | |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4738 // put cursor on last character of match |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4739 curwin->w_cursor = end_pos; |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4740 if (LT_POS(VIsual, end_pos)) |
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4741 dec_cursor(); |
3718 | 4742 VIsual_active = TRUE; |
4743 VIsual_mode = 'v'; | |
4744 | |
15758
675dd5d7afb3
patch 8.1.0886: compiler warning for NULL pointer and condition always true
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
4745 redraw_curbuf_later(INVERTED); /* update the inversion */ |
675dd5d7afb3
patch 8.1.0886: compiler warning for NULL pointer and condition always true
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
4746 if (*p_sel == 'e') |
3718 | 4747 { |
15758
675dd5d7afb3
patch 8.1.0886: compiler warning for NULL pointer and condition always true
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
4748 /* Correction for exclusive selection depends on the direction. */ |
675dd5d7afb3
patch 8.1.0886: compiler warning for NULL pointer and condition always true
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
4749 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor)) |
675dd5d7afb3
patch 8.1.0886: compiler warning for NULL pointer and condition always true
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
4750 inc_cursor(); |
675dd5d7afb3
patch 8.1.0886: compiler warning for NULL pointer and condition always true
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
4751 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual)) |
675dd5d7afb3
patch 8.1.0886: compiler warning for NULL pointer and condition always true
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
4752 inc(&VIsual); |
3718 | 4753 } |
4754 | |
4755 #ifdef FEAT_FOLDING | |
4756 if (fdo_flags & FDO_SEARCH && KeyTyped) | |
4757 foldOpenCursor(); | |
4758 #endif | |
4759 | |
4760 may_start_select('c'); | |
4761 #ifdef FEAT_MOUSE | |
4762 setmouse(); | |
4763 #endif | |
4764 #ifdef FEAT_CLIPBOARD | |
4765 /* Make sure the clipboard gets updated. Needed because start and | |
4766 * end are still the same, and the selection needs to be owned */ | |
4767 clip_star.vmode = NUL; | |
4768 #endif | |
4769 redraw_curbuf_later(INVERTED); | |
4770 showmode(); | |
4771 | |
4772 return OK; | |
4773 } | |
3755 | 4774 |
4775 /* | |
9647
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4776 * Check if the pattern is one character long or zero-width. |
11488
9473793c7bb5
patch 8.0.0627: "gn" selects only one character with 'nowrapscan'
Christian Brabandt <cb@256bit.org>
parents:
11478
diff
changeset
|
4777 * If move is TRUE, check from the beginning of the buffer, else from position |
9473793c7bb5
patch 8.0.0627: "gn" selects only one character with 'nowrapscan'
Christian Brabandt <cb@256bit.org>
parents:
11478
diff
changeset
|
4778 * "cur". |
12539
6d3584b60170
patch 8.0.1148: gN doesn't work on last match with 'wrapscan' off
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
4779 * "direction" is FORWARD or BACKWARD. |
3755 | 4780 * Returns TRUE, FALSE or -1 for failure. |
4781 */ | |
4782 static int | |
12539
6d3584b60170
patch 8.0.1148: gN doesn't work on last match with 'wrapscan' off
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
4783 is_one_char(char_u *pattern, int move, pos_T *cur, int direction) |
3755 | 4784 { |
4785 regmmatch_T regmatch; | |
4786 int nmatched = 0; | |
4787 int result = -1; | |
3778 | 4788 pos_T pos; |
4789 int save_called_emsg = called_emsg; | |
6443 | 4790 int flag = 0; |
3755 | 4791 |
9647
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4792 if (pattern == NULL) |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4793 pattern = spats[last_idx].pat; |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4794 |
3755 | 4795 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH, |
4796 SEARCH_KEEP, ®match) == FAIL) | |
4797 return -1; | |
4798 | |
9647
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4799 /* init startcol correctly */ |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4800 regmatch.startpos[0].col = -1; |
3755 | 4801 /* move to match */ |
6443 | 4802 if (move) |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
4803 { |
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
4804 CLEAR_POS(&pos); |
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11117
diff
changeset
|
4805 } |
6443 | 4806 else |
4807 { | |
11488
9473793c7bb5
patch 8.0.0627: "gn" selects only one character with 'nowrapscan'
Christian Brabandt <cb@256bit.org>
parents:
11478
diff
changeset
|
4808 pos = *cur; |
6443 | 4809 /* accept a match at the cursor position */ |
4810 flag = SEARCH_START; | |
4811 } | |
4812 | |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15091
diff
changeset
|
4813 if (searchit(curwin, curbuf, &pos, NULL, direction, pattern, 1, |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
4814 SEARCH_KEEP + flag, RE_SEARCH, 0, NULL, NULL) != FAIL) |
3755 | 4815 { |
4816 /* Zero-width pattern should match somewhere, then we can check if | |
4817 * start and end are in the same position. */ | |
3778 | 4818 called_emsg = FALSE; |
9647
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4819 do |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4820 { |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4821 regmatch.startpos[0].col++; |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4822 nmatched = vim_regexec_multi(®match, curwin, curbuf, |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11488
diff
changeset
|
4823 pos.lnum, regmatch.startpos[0].col, NULL, NULL); |
9647
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4824 if (!nmatched) |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4825 break; |
12539
6d3584b60170
patch 8.0.1148: gN doesn't work on last match with 'wrapscan' off
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
4826 } while (direction == FORWARD ? regmatch.startpos[0].col < pos.col |
6d3584b60170
patch 8.0.1148: gN doesn't work on last match with 'wrapscan' off
Christian Brabandt <cb@256bit.org>
parents:
12515
diff
changeset
|
4827 : regmatch.startpos[0].col > pos.col); |
3755 | 4828 |
4829 if (!called_emsg) | |
9647
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4830 { |
3755 | 4831 result = (nmatched != 0 |
3778 | 4832 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum |
4833 && regmatch.startpos[0].col == regmatch.endpos[0].col); | |
9647
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4834 /* one char width */ |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4835 if (!result && inc(&pos) >= 0 && pos.col == regmatch.endpos[0].col) |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4836 result = TRUE; |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4837 } |
3755 | 4838 } |
4839 | |
3778 | 4840 called_emsg |= save_called_emsg; |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
4841 vim_regfree(regmatch.regprog); |
3755 | 4842 return result; |
4843 } | |
3718 | 4844 |
7 | 4845 #if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \ |
4846 || defined(PROTO) | |
4847 /* | |
4848 * return TRUE if line 'lnum' is empty or has white chars only. | |
4849 */ | |
4850 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4851 linewhite(linenr_T lnum) |
7 | 4852 { |
4853 char_u *p; | |
4854 | |
4855 p = skipwhite(ml_get(lnum)); | |
4856 return (*p == NUL); | |
4857 } | |
4858 #endif | |
4859 | |
4860 #if defined(FEAT_FIND_ID) || defined(PROTO) | |
4861 /* | |
4862 * Find identifiers or defines in included files. | |
2719 | 4863 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase. |
7 | 4864 */ |
4865 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4866 find_pattern_in_path( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4867 char_u *ptr, /* pointer to search pattern */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4868 int dir UNUSED, /* direction of expansion */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4869 int len, /* length of search pattern */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4870 int whole, /* match whole words only */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4871 int skip_comments, /* don't match inside comments */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4872 int type, /* Type of search; are we looking for a type? |
7 | 4873 a macro? */ |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4874 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4875 int action, /* What to do when we find it */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4876 linenr_T start_lnum, /* first line to start searching */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4877 linenr_T end_lnum) /* last line for searching */ |
7 | 4878 { |
4879 SearchedFile *files; /* Stack of included files */ | |
4880 SearchedFile *bigger; /* When we need more space */ | |
4881 int max_path_depth = 50; | |
4882 long match_count = 1; | |
4883 | |
4884 char_u *pat; | |
4885 char_u *new_fname; | |
4886 char_u *curr_fname = curbuf->b_fname; | |
4887 char_u *prev_fname = NULL; | |
4888 linenr_T lnum; | |
4889 int depth; | |
4890 int depth_displayed; /* For type==CHECK_PATH */ | |
4891 int old_files; | |
4892 int already_searched; | |
4893 char_u *file_line; | |
4894 char_u *line; | |
4895 char_u *p; | |
4896 char_u save_char; | |
4897 int define_matched; | |
4898 regmatch_T regmatch; | |
4899 regmatch_T incl_regmatch; | |
4900 regmatch_T def_regmatch; | |
4901 int matched = FALSE; | |
4902 int did_show = FALSE; | |
4903 int found = FALSE; | |
4904 int i; | |
4905 char_u *already = NULL; | |
4906 char_u *startp = NULL; | |
534 | 4907 char_u *inc_opt = NULL; |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11759
diff
changeset
|
4908 #if defined(FEAT_QUICKFIX) |
7 | 4909 win_T *curwin_save = NULL; |
4910 #endif | |
4911 | |
4912 regmatch.regprog = NULL; | |
4913 incl_regmatch.regprog = NULL; | |
4914 def_regmatch.regprog = NULL; | |
4915 | |
4916 file_line = alloc(LSIZE); | |
4917 if (file_line == NULL) | |
4918 return; | |
4919 | |
4920 if (type != CHECK_PATH && type != FIND_DEFINE | |
4921 #ifdef FEAT_INS_EXPAND | |
4922 /* when CONT_SOL is set compare "ptr" with the beginning of the line | |
4923 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */ | |
449 | 4924 && !(compl_cont_status & CONT_SOL) |
7 | 4925 #endif |
4926 ) | |
4927 { | |
4928 pat = alloc(len + 5); | |
4929 if (pat == NULL) | |
4930 goto fpip_end; | |
4931 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr); | |
4932 /* ignore case according to p_ic, p_scs and pat */ | |
4933 regmatch.rm_ic = ignorecase(pat); | |
4934 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0); | |
4935 vim_free(pat); | |
4936 if (regmatch.regprog == NULL) | |
4937 goto fpip_end; | |
4938 } | |
534 | 4939 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc; |
4940 if (*inc_opt != NUL) | |
7 | 4941 { |
534 | 4942 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0); |
7 | 4943 if (incl_regmatch.regprog == NULL) |
4944 goto fpip_end; | |
4945 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */ | |
4946 } | |
4947 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL)) | |
4948 { | |
4949 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL | |
4950 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0); | |
4951 if (def_regmatch.regprog == NULL) | |
4952 goto fpip_end; | |
4953 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */ | |
4954 } | |
4955 files = (SearchedFile *)lalloc_clear((long_u) | |
4956 (max_path_depth * sizeof(SearchedFile)), TRUE); | |
4957 if (files == NULL) | |
4958 goto fpip_end; | |
4959 old_files = max_path_depth; | |
4960 depth = depth_displayed = -1; | |
4961 | |
4962 lnum = start_lnum; | |
4963 if (end_lnum > curbuf->b_ml.ml_line_count) | |
4964 end_lnum = curbuf->b_ml.ml_line_count; | |
4965 if (lnum > end_lnum) /* do at least one line */ | |
4966 lnum = end_lnum; | |
4967 line = ml_get(lnum); | |
4968 | |
4969 for (;;) | |
4970 { | |
4971 if (incl_regmatch.regprog != NULL | |
4972 && vim_regexec(&incl_regmatch, line, (colnr_T)0)) | |
4973 { | |
534 | 4974 char_u *p_fname = (curr_fname == curbuf->b_fname) |
4975 ? curbuf->b_ffname : curr_fname; | |
4976 | |
4977 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL) | |
4978 /* Use text from '\zs' to '\ze' (or end) of 'include'. */ | |
4979 new_fname = find_file_name_in_path(incl_regmatch.startp[0], | |
5118
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
4980 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]), |
534 | 4981 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname); |
4982 else | |
4983 /* Use text after match with 'include'. */ | |
4984 new_fname = file_name_in_line(incl_regmatch.endp[0], 0, | |
681 | 4985 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL); |
7 | 4986 already_searched = FALSE; |
4987 if (new_fname != NULL) | |
4988 { | |
4989 /* Check whether we have already searched in this file */ | |
4990 for (i = 0;; i++) | |
4991 { | |
4992 if (i == depth + 1) | |
4993 i = old_files; | |
4994 if (i == max_path_depth) | |
4995 break; | |
4996 if (fullpathcmp(new_fname, files[i].name, TRUE) & FPC_SAME) | |
4997 { | |
4998 if (type != CHECK_PATH && | |
4999 action == ACTION_SHOW_ALL && files[i].matched) | |
5000 { | |
5001 msg_putchar('\n'); /* cursor below last one */ | |
5002 if (!got_int) /* don't display if 'q' | |
5003 typed at "--more--" | |
1859 | 5004 message */ |
7 | 5005 { |
5006 msg_home_replace_hl(new_fname); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5007 msg_puts(_(" (includes previously listed match)")); |
7 | 5008 prev_fname = NULL; |
5009 } | |
5010 } | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13225
diff
changeset
|
5011 VIM_CLEAR(new_fname); |
7 | 5012 already_searched = TRUE; |
5013 break; | |
5014 } | |
5015 } | |
5016 } | |
5017 | |
5018 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL | |
5019 || (new_fname == NULL && !already_searched))) | |
5020 { | |
5021 if (did_show) | |
5022 msg_putchar('\n'); /* cursor below last one */ | |
5023 else | |
5024 { | |
5025 gotocmdline(TRUE); /* cursor at status line */ | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5026 msg_puts_title(_("--- Included files ")); |
7 | 5027 if (action != ACTION_SHOW_ALL) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5028 msg_puts_title(_("not found ")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5029 msg_puts_title(_("in path ---\n")); |
7 | 5030 } |
5031 did_show = TRUE; | |
5032 while (depth_displayed < depth && !got_int) | |
5033 { | |
5034 ++depth_displayed; | |
5035 for (i = 0; i < depth_displayed; i++) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5036 msg_puts(" "); |
7 | 5037 msg_home_replace(files[depth_displayed].name); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5038 msg_puts(" -->\n"); |
7 | 5039 } |
5040 if (!got_int) /* don't display if 'q' typed | |
5041 for "--more--" message */ | |
5042 { | |
5043 for (i = 0; i <= depth_displayed; i++) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5044 msg_puts(" "); |
7 | 5045 if (new_fname != NULL) |
5046 { | |
5047 /* using "new_fname" is more reliable, e.g., when | |
5048 * 'includeexpr' is set. */ | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
5049 msg_outtrans_attr(new_fname, HL_ATTR(HLF_D)); |
7 | 5050 } |
5051 else | |
5052 { | |
5053 /* | |
5054 * Isolate the file name. | |
5055 * Include the surrounding "" or <> if present. | |
5056 */ | |
3699 | 5057 if (inc_opt != NULL |
5058 && strstr((char *)inc_opt, "\\zs") != NULL) | |
5059 { | |
5060 /* pattern contains \zs, use the match */ | |
5061 p = incl_regmatch.startp[0]; | |
5062 i = (int)(incl_regmatch.endp[0] | |
5063 - incl_regmatch.startp[0]); | |
5064 } | |
5065 else | |
5066 { | |
5067 /* find the file name after the end of the match */ | |
5068 for (p = incl_regmatch.endp[0]; | |
5069 *p && !vim_isfilec(*p); p++) | |
5070 ; | |
5071 for (i = 0; vim_isfilec(p[i]); i++) | |
5072 ; | |
5073 } | |
5074 | |
7 | 5075 if (i == 0) |
5076 { | |
5077 /* Nothing found, use the rest of the line. */ | |
5078 p = incl_regmatch.endp[0]; | |
835 | 5079 i = (int)STRLEN(p); |
7 | 5080 } |
3699 | 5081 /* Avoid checking before the start of the line, can |
5082 * happen if \zs appears in the regexp. */ | |
5083 else if (p > line) | |
7 | 5084 { |
5085 if (p[-1] == '"' || p[-1] == '<') | |
5086 { | |
5087 --p; | |
5088 ++i; | |
5089 } | |
5090 if (p[i] == '"' || p[i] == '>') | |
5091 ++i; | |
5092 } | |
5093 save_char = p[i]; | |
5094 p[i] = NUL; | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
5095 msg_outtrans_attr(p, HL_ATTR(HLF_D)); |
7 | 5096 p[i] = save_char; |
5097 } | |
5098 | |
5099 if (new_fname == NULL && action == ACTION_SHOW_ALL) | |
5100 { | |
5101 if (already_searched) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5102 msg_puts(_(" (Already listed)")); |
7 | 5103 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5104 msg_puts(_(" NOT FOUND")); |
7 | 5105 } |
5106 } | |
5107 out_flush(); /* output each line directly */ | |
5108 } | |
5109 | |
5110 if (new_fname != NULL) | |
5111 { | |
5112 /* Push the new file onto the file stack */ | |
5113 if (depth + 1 == old_files) | |
5114 { | |
5115 bigger = (SearchedFile *)lalloc((long_u)( | |
5116 max_path_depth * 2 * sizeof(SearchedFile)), TRUE); | |
5117 if (bigger != NULL) | |
5118 { | |
5119 for (i = 0; i <= depth; i++) | |
5120 bigger[i] = files[i]; | |
5121 for (i = depth + 1; i < old_files + max_path_depth; i++) | |
5122 { | |
5123 bigger[i].fp = NULL; | |
5124 bigger[i].name = NULL; | |
5125 bigger[i].lnum = 0; | |
5126 bigger[i].matched = FALSE; | |
5127 } | |
5128 for (i = old_files; i < max_path_depth; i++) | |
5129 bigger[i + max_path_depth] = files[i]; | |
5130 old_files += max_path_depth; | |
5131 max_path_depth *= 2; | |
5132 vim_free(files); | |
5133 files = bigger; | |
5134 } | |
5135 } | |
5136 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r")) | |
5137 == NULL) | |
5138 vim_free(new_fname); | |
5139 else | |
5140 { | |
5141 if (++depth == old_files) | |
5142 { | |
5143 /* | |
5144 * lalloc() for 'bigger' must have failed above. We | |
5145 * will forget one of our already visited files now. | |
5146 */ | |
5147 vim_free(files[old_files].name); | |
5148 ++old_files; | |
5149 } | |
5150 files[depth].name = curr_fname = new_fname; | |
5151 files[depth].lnum = 0; | |
5152 files[depth].matched = FALSE; | |
5153 #ifdef FEAT_INS_EXPAND | |
5154 if (action == ACTION_EXPAND) | |
5155 { | |
1007 | 5156 msg_hist_off = TRUE; /* reset in msg_trunc_attr() */ |
274 | 5157 vim_snprintf((char*)IObuff, IOSIZE, |
5158 _("Scanning included file: %s"), | |
5159 (char *)new_fname); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5160 msg_trunc_attr((char *)IObuff, TRUE, HL_ATTR(HLF_R)); |
7 | 5161 } |
712 | 5162 else |
7 | 5163 #endif |
712 | 5164 if (p_verbose >= 5) |
5165 { | |
5166 verbose_enter(); | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
5167 smsg(_("Searching included file %s"), |
712 | 5168 (char *)new_fname); |
5169 verbose_leave(); | |
5170 } | |
5171 | |
7 | 5172 } |
5173 } | |
5174 } | |
5175 else | |
5176 { | |
5177 /* | |
5178 * Check if the line is a define (type == FIND_DEFINE) | |
5179 */ | |
5180 p = line; | |
5181 search_line: | |
5182 define_matched = FALSE; | |
5183 if (def_regmatch.regprog != NULL | |
5184 && vim_regexec(&def_regmatch, line, (colnr_T)0)) | |
5185 { | |
5186 /* | |
5187 * Pattern must be first identifier after 'define', so skip | |
5188 * to that position before checking for match of pattern. Also | |
5189 * don't let it match beyond the end of this identifier. | |
5190 */ | |
5191 p = def_regmatch.endp[0]; | |
5192 while (*p && !vim_iswordc(*p)) | |
5193 p++; | |
5194 define_matched = TRUE; | |
5195 } | |
5196 | |
5197 /* | |
5198 * Look for a match. Don't do this if we are looking for a | |
5199 * define and this line didn't match define_prog above. | |
5200 */ | |
5201 if (def_regmatch.regprog == NULL || define_matched) | |
5202 { | |
5203 if (define_matched | |
5204 #ifdef FEAT_INS_EXPAND | |
449 | 5205 || (compl_cont_status & CONT_SOL) |
7 | 5206 #endif |
5207 ) | |
5208 { | |
5209 /* compare the first "len" chars from "ptr" */ | |
5210 startp = skipwhite(p); | |
5211 if (p_ic) | |
5212 matched = !MB_STRNICMP(startp, ptr, len); | |
5213 else | |
5214 matched = !STRNCMP(startp, ptr, len); | |
5215 if (matched && define_matched && whole | |
5216 && vim_iswordc(startp[len])) | |
5217 matched = FALSE; | |
5218 } | |
5219 else if (regmatch.regprog != NULL | |
5220 && vim_regexec(®match, line, (colnr_T)(p - line))) | |
5221 { | |
5222 matched = TRUE; | |
5223 startp = regmatch.startp[0]; | |
5224 /* | |
5225 * Check if the line is not a comment line (unless we are | |
5226 * looking for a define). A line starting with "# define" | |
5227 * is not considered to be a comment line. | |
5228 */ | |
5229 if (!define_matched && skip_comments) | |
5230 { | |
5231 #ifdef FEAT_COMMENTS | |
5232 if ((*line != '#' || | |
5233 STRNCMP(skipwhite(line + 1), "define", 6) != 0) | |
3562 | 5234 && get_leader_len(line, NULL, FALSE, TRUE)) |
7 | 5235 matched = FALSE; |
5236 | |
5237 /* | |
5238 * Also check for a "/ *" or "/ /" before the match. | |
5239 * Skips lines like "int backwards; / * normal index | |
5240 * * /" when looking for "normal". | |
5241 * Note: Doesn't skip "/ *" in comments. | |
5242 */ | |
5243 p = skipwhite(line); | |
5244 if (matched | |
5245 || (p[0] == '/' && p[1] == '*') || p[0] == '*') | |
5246 #endif | |
5247 for (p = line; *p && p < startp; ++p) | |
5248 { | |
5249 if (matched | |
5250 && p[0] == '/' | |
5251 && (p[1] == '*' || p[1] == '/')) | |
5252 { | |
5253 matched = FALSE; | |
5254 /* After "//" all text is comment */ | |
5255 if (p[1] == '/') | |
5256 break; | |
5257 ++p; | |
5258 } | |
5259 else if (!matched && p[0] == '*' && p[1] == '/') | |
5260 { | |
5261 /* Can find match after "* /". */ | |
5262 matched = TRUE; | |
5263 ++p; | |
5264 } | |
5265 } | |
5266 } | |
5267 } | |
5268 } | |
5269 } | |
5270 if (matched) | |
5271 { | |
5272 #ifdef FEAT_INS_EXPAND | |
5273 if (action == ACTION_EXPAND) | |
5274 { | |
5275 int reuse = 0; | |
5276 int add_r; | |
5277 char_u *aux; | |
5278 | |
5279 if (depth == -1 && lnum == curwin->w_cursor.lnum) | |
5280 break; | |
5281 found = TRUE; | |
5282 aux = p = startp; | |
449 | 5283 if (compl_cont_status & CONT_ADDING) |
7 | 5284 { |
449 | 5285 p += compl_length; |
7 | 5286 if (vim_iswordp(p)) |
5287 goto exit_matched; | |
5288 p = find_word_start(p); | |
5289 } | |
5290 p = find_word_end(p); | |
5291 i = (int)(p - aux); | |
5292 | |
449 | 5293 if ((compl_cont_status & CONT_ADDING) && i == compl_length) |
7 | 5294 { |
449 | 5295 /* IOSIZE > compl_length, so the STRNCPY works */ |
7 | 5296 STRNCPY(IObuff, aux, i); |
944 | 5297 |
5298 /* Get the next line: when "depth" < 0 from the current | |
5299 * buffer, otherwise from the included file. Jump to | |
5300 * exit_matched when past the last line. */ | |
5301 if (depth < 0) | |
5302 { | |
5303 if (lnum >= end_lnum) | |
5304 goto exit_matched; | |
5305 line = ml_get(++lnum); | |
5306 } | |
5307 else if (vim_fgets(line = file_line, | |
5308 LSIZE, files[depth].fp)) | |
7 | 5309 goto exit_matched; |
5310 | |
5311 /* we read a line, set "already" to check this "line" later | |
5312 * if depth >= 0 we'll increase files[depth].lnum far | |
5313 * bellow -- Acevedo */ | |
5314 already = aux = p = skipwhite(line); | |
5315 p = find_word_start(p); | |
5316 p = find_word_end(p); | |
5317 if (p > aux) | |
5318 { | |
5319 if (*aux != ')' && IObuff[i-1] != TAB) | |
5320 { | |
5321 if (IObuff[i-1] != ' ') | |
5322 IObuff[i++] = ' '; | |
5323 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/ | |
5324 if (p_js | |
5325 && (IObuff[i-2] == '.' | |
5326 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL | |
5327 && (IObuff[i-2] == '?' | |
5328 || IObuff[i-2] == '!')))) | |
5329 IObuff[i++] = ' '; | |
5330 } | |
1859 | 5331 /* copy as much as possible of the new word */ |
7 | 5332 if (p - aux >= IOSIZE - i) |
5333 p = aux + IOSIZE - i - 1; | |
5334 STRNCPY(IObuff + i, aux, p - aux); | |
5335 i += (int)(p - aux); | |
5336 reuse |= CONT_S_IPOS; | |
5337 } | |
5338 IObuff[i] = NUL; | |
5339 aux = IObuff; | |
5340 | |
449 | 5341 if (i == compl_length) |
7 | 5342 goto exit_matched; |
5343 } | |
5344 | |
942 | 5345 add_r = ins_compl_add_infercase(aux, i, p_ic, |
7 | 5346 curr_fname == curbuf->b_fname ? NULL : curr_fname, |
5347 dir, reuse); | |
5348 if (add_r == OK) | |
5349 /* if dir was BACKWARD then honor it just once */ | |
5350 dir = FORWARD; | |
464 | 5351 else if (add_r == FAIL) |
7 | 5352 break; |
5353 } | |
5354 else | |
5355 #endif | |
5356 if (action == ACTION_SHOW_ALL) | |
5357 { | |
5358 found = TRUE; | |
5359 if (!did_show) | |
5360 gotocmdline(TRUE); /* cursor at status line */ | |
5361 if (curr_fname != prev_fname) | |
5362 { | |
5363 if (did_show) | |
5364 msg_putchar('\n'); /* cursor below last one */ | |
5365 if (!got_int) /* don't display if 'q' typed | |
1859 | 5366 at "--more--" message */ |
7 | 5367 msg_home_replace_hl(curr_fname); |
5368 prev_fname = curr_fname; | |
5369 } | |
5370 did_show = TRUE; | |
5371 if (!got_int) | |
5372 show_pat_in_path(line, type, TRUE, action, | |
5373 (depth == -1) ? NULL : files[depth].fp, | |
5374 (depth == -1) ? &lnum : &files[depth].lnum, | |
5375 match_count++); | |
5376 | |
5377 /* Set matched flag for this file and all the ones that | |
5378 * include it */ | |
5379 for (i = 0; i <= depth; ++i) | |
5380 files[i].matched = TRUE; | |
5381 } | |
5382 else if (--count <= 0) | |
5383 { | |
5384 found = TRUE; | |
5385 if (depth == -1 && lnum == curwin->w_cursor.lnum | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11759
diff
changeset
|
5386 #if defined(FEAT_QUICKFIX) |
7 | 5387 && g_do_tagpreview == 0 |
5388 #endif | |
5389 ) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
5390 emsg(_("E387: Match is on current line")); |
7 | 5391 else if (action == ACTION_SHOW) |
5392 { | |
5393 show_pat_in_path(line, type, did_show, action, | |
5394 (depth == -1) ? NULL : files[depth].fp, | |
5395 (depth == -1) ? &lnum : &files[depth].lnum, 1L); | |
5396 did_show = TRUE; | |
5397 } | |
5398 else | |
5399 { | |
5400 #ifdef FEAT_GUI | |
5401 need_mouse_correct = TRUE; | |
5402 #endif | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11759
diff
changeset
|
5403 #if defined(FEAT_QUICKFIX) |
7 | 5404 /* ":psearch" uses the preview window */ |
5405 if (g_do_tagpreview != 0) | |
5406 { | |
5407 curwin_save = curwin; | |
816 | 5408 prepare_tagpreview(TRUE); |
7 | 5409 } |
5410 #endif | |
5411 if (action == ACTION_SPLIT) | |
5412 { | |
5413 if (win_split(0, 0) == FAIL) | |
5414 break; | |
2583 | 5415 RESET_BINDING(curwin); |
7 | 5416 } |
5417 if (depth == -1) | |
5418 { | |
5419 /* match in current file */ | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11759
diff
changeset
|
5420 #if defined(FEAT_QUICKFIX) |
7 | 5421 if (g_do_tagpreview != 0) |
5422 { | |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11275
diff
changeset
|
5423 if (!GETFILE_SUCCESS(getfile( |
11759
5e36b2f825cb
patch 8.0.0762: ml_get error with :psearch in buffer without a name
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
5424 curwin_save->w_buffer->b_fnum, NULL, |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11275
diff
changeset
|
5425 NULL, TRUE, lnum, FALSE))) |
7 | 5426 break; /* failed to jump to file */ |
5427 } | |
5428 else | |
5429 #endif | |
5430 setpcmark(); | |
5431 curwin->w_cursor.lnum = lnum; | |
11759
5e36b2f825cb
patch 8.0.0762: ml_get error with :psearch in buffer without a name
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
5432 check_cursor(); |
7 | 5433 } |
5434 else | |
5435 { | |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11275
diff
changeset
|
5436 if (!GETFILE_SUCCESS(getfile( |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11275
diff
changeset
|
5437 0, files[depth].name, NULL, TRUE, |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11275
diff
changeset
|
5438 files[depth].lnum, FALSE))) |
7 | 5439 break; /* failed to jump to file */ |
5440 /* autocommands may have changed the lnum, we don't | |
5441 * want that here */ | |
5442 curwin->w_cursor.lnum = files[depth].lnum; | |
5443 } | |
5444 } | |
5445 if (action != ACTION_SHOW) | |
5446 { | |
1859 | 5447 curwin->w_cursor.col = (colnr_T)(startp - line); |
7 | 5448 curwin->w_set_curswant = TRUE; |
5449 } | |
5450 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11759
diff
changeset
|
5451 #if defined(FEAT_QUICKFIX) |
7 | 5452 if (g_do_tagpreview != 0 |
673 | 5453 && curwin != curwin_save && win_valid(curwin_save)) |
7 | 5454 { |
5455 /* Return cursor to where we were */ | |
5456 validate_cursor(); | |
5457 redraw_later(VALID); | |
5458 win_enter(curwin_save, TRUE); | |
5459 } | |
5460 #endif | |
5461 break; | |
5462 } | |
5463 #ifdef FEAT_INS_EXPAND | |
5464 exit_matched: | |
5465 #endif | |
5466 matched = FALSE; | |
5467 /* look for other matches in the rest of the line if we | |
5468 * are not at the end of it already */ | |
5469 if (def_regmatch.regprog == NULL | |
5470 #ifdef FEAT_INS_EXPAND | |
5471 && action == ACTION_EXPAND | |
449 | 5472 && !(compl_cont_status & CONT_SOL) |
7 | 5473 #endif |
1859 | 5474 && *startp != NUL |
3693 | 5475 && *(p = startp + MB_PTR2LEN(startp)) != NUL) |
7 | 5476 goto search_line; |
5477 } | |
5478 line_breakcheck(); | |
5479 #ifdef FEAT_INS_EXPAND | |
5480 if (action == ACTION_EXPAND) | |
10277
154d5a2e7395
commit https://github.com/vim/vim/commit/472e85970ee3a80abd824bef510df12e9cfe9e96
Christian Brabandt <cb@256bit.org>
parents:
10172
diff
changeset
|
5481 ins_compl_check_keys(30, FALSE); |
449 | 5482 if (got_int || compl_interrupted) |
7 | 5483 #else |
5484 if (got_int) | |
5485 #endif | |
5486 break; | |
5487 | |
5488 /* | |
5489 * Read the next line. When reading an included file and encountering | |
5490 * end-of-file, close the file and continue in the file that included | |
5491 * it. | |
5492 */ | |
5493 while (depth >= 0 && !already | |
5494 && vim_fgets(line = file_line, LSIZE, files[depth].fp)) | |
5495 { | |
5496 fclose(files[depth].fp); | |
5497 --old_files; | |
5498 files[old_files].name = files[depth].name; | |
5499 files[old_files].matched = files[depth].matched; | |
5500 --depth; | |
5501 curr_fname = (depth == -1) ? curbuf->b_fname | |
5502 : files[depth].name; | |
5503 if (depth < depth_displayed) | |
5504 depth_displayed = depth; | |
5505 } | |
5506 if (depth >= 0) /* we could read the line */ | |
5118
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5507 { |
7 | 5508 files[depth].lnum++; |
5118
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5509 /* Remove any CR and LF from the line. */ |
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5510 i = (int)STRLEN(line); |
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5511 if (i > 0 && line[i - 1] == '\n') |
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5512 line[--i] = NUL; |
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5513 if (i > 0 && line[i - 1] == '\r') |
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5514 line[--i] = NUL; |
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5515 } |
7 | 5516 else if (!already) |
5517 { | |
5518 if (++lnum > end_lnum) | |
5519 break; | |
5520 line = ml_get(lnum); | |
5521 } | |
5522 already = NULL; | |
5523 } | |
5524 /* End of big for (;;) loop. */ | |
5525 | |
5526 /* Close any files that are still open. */ | |
5527 for (i = 0; i <= depth; i++) | |
5528 { | |
5529 fclose(files[i].fp); | |
5530 vim_free(files[i].name); | |
5531 } | |
5532 for (i = old_files; i < max_path_depth; i++) | |
5533 vim_free(files[i].name); | |
5534 vim_free(files); | |
5535 | |
5536 if (type == CHECK_PATH) | |
5537 { | |
5538 if (!did_show) | |
5539 { | |
5540 if (action != ACTION_SHOW_ALL) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5541 msg(_("All included files were found")); |
7 | 5542 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5543 msg(_("No included files")); |
7 | 5544 } |
5545 } | |
5546 else if (!found | |
5547 #ifdef FEAT_INS_EXPAND | |
5548 && action != ACTION_EXPAND | |
5549 #endif | |
5550 ) | |
5551 { | |
5552 #ifdef FEAT_INS_EXPAND | |
449 | 5553 if (got_int || compl_interrupted) |
7 | 5554 #else |
5555 if (got_int) | |
5556 #endif | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
5557 emsg(_(e_interr)); |
7 | 5558 else if (type == FIND_DEFINE) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
5559 emsg(_("E388: Couldn't find definition")); |
7 | 5560 else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
5561 emsg(_("E389: Couldn't find pattern")); |
7 | 5562 } |
5563 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL) | |
5564 msg_end(); | |
5565 | |
5566 fpip_end: | |
5567 vim_free(file_line); | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
5568 vim_regfree(regmatch.regprog); |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
5569 vim_regfree(incl_regmatch.regprog); |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
5570 vim_regfree(def_regmatch.regprog); |
7 | 5571 } |
5572 | |
5573 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5574 show_pat_in_path( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5575 char_u *line, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5576 int type, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5577 int did_show, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5578 int action, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5579 FILE *fp, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5580 linenr_T *lnum, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5581 long count) |
7 | 5582 { |
5583 char_u *p; | |
5584 | |
5585 if (did_show) | |
5586 msg_putchar('\n'); /* cursor below last one */ | |
867 | 5587 else if (!msg_silent) |
7 | 5588 gotocmdline(TRUE); /* cursor at status line */ |
5589 if (got_int) /* 'q' typed at "--more--" message */ | |
5590 return; | |
5591 for (;;) | |
5592 { | |
5593 p = line + STRLEN(line) - 1; | |
5594 if (fp != NULL) | |
5595 { | |
5596 /* We used fgets(), so get rid of newline at end */ | |
5597 if (p >= line && *p == '\n') | |
5598 --p; | |
5599 if (p >= line && *p == '\r') | |
5600 --p; | |
5601 *(p + 1) = NUL; | |
5602 } | |
5603 if (action == ACTION_SHOW_ALL) | |
5604 { | |
5605 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */ | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5606 msg_puts((char *)IObuff); |
7 | 5607 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */ |
5608 /* Highlight line numbers */ | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5609 msg_puts_attr((char *)IObuff, HL_ATTR(HLF_N)); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5610 msg_puts(" "); |
7 | 5611 } |
168 | 5612 msg_prt_line(line, FALSE); |
7 | 5613 out_flush(); /* show one line at a time */ |
5614 | |
5615 /* Definition continues until line that doesn't end with '\' */ | |
5616 if (got_int || type != FIND_DEFINE || p < line || *p != '\\') | |
5617 break; | |
5618 | |
5619 if (fp != NULL) | |
5620 { | |
5621 if (vim_fgets(line, LSIZE, fp)) /* end of file */ | |
5622 break; | |
5623 ++*lnum; | |
5624 } | |
5625 else | |
5626 { | |
5627 if (++*lnum > curbuf->b_ml.ml_line_count) | |
5628 break; | |
5629 line = ml_get(*lnum); | |
5630 } | |
5631 msg_putchar('\n'); | |
5632 } | |
5633 } | |
5634 #endif | |
5635 | |
5636 #ifdef FEAT_VIMINFO | |
5637 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5638 read_viminfo_search_pattern(vir_T *virp, int force) |
7 | 5639 { |
5640 char_u *lp; | |
5641 int idx = -1; | |
5642 int magic = FALSE; | |
5643 int no_scs = FALSE; | |
5644 int off_line = FALSE; | |
572 | 5645 int off_end = 0; |
7 | 5646 long off = 0; |
5647 int setlast = FALSE; | |
5648 #ifdef FEAT_SEARCH_EXTRA | |
5649 static int hlsearch_on = FALSE; | |
5650 #endif | |
5651 char_u *val; | |
5652 | |
5653 /* | |
5654 * Old line types: | |
5655 * "/pat", "&pat": search/subst. pat | |
5656 * "~/pat", "~&pat": last used search/subst. pat | |
5657 * New line types: | |
5658 * "~h", "~H": hlsearch highlighting off/on | |
5659 * "~<magic><smartcase><line><end><off><last><which>pat" | |
5660 * <magic>: 'm' off, 'M' on | |
5661 * <smartcase>: 's' off, 'S' on | |
5662 * <line>: 'L' line offset, 'l' char offset | |
5663 * <end>: 'E' from end, 'e' from start | |
5664 * <off>: decimal, offset | |
5665 * <last>: '~' last used pattern | |
5666 * <which>: '/' search pat, '&' subst. pat | |
5667 */ | |
5668 lp = virp->vir_line; | |
5669 if (lp[0] == '~' && (lp[1] == 'm' || lp[1] == 'M')) /* new line type */ | |
5670 { | |
5671 if (lp[1] == 'M') /* magic on */ | |
5672 magic = TRUE; | |
5673 if (lp[2] == 's') | |
5674 no_scs = TRUE; | |
5675 if (lp[3] == 'L') | |
5676 off_line = TRUE; | |
5677 if (lp[4] == 'E') | |
8 | 5678 off_end = SEARCH_END; |
7 | 5679 lp += 5; |
5680 off = getdigits(&lp); | |
5681 } | |
5682 if (lp[0] == '~') /* use this pattern for last-used pattern */ | |
5683 { | |
5684 setlast = TRUE; | |
5685 lp++; | |
5686 } | |
5687 if (lp[0] == '/') | |
5688 idx = RE_SEARCH; | |
5689 else if (lp[0] == '&') | |
5690 idx = RE_SUBST; | |
5691 #ifdef FEAT_SEARCH_EXTRA | |
5692 else if (lp[0] == 'h') /* ~h: 'hlsearch' highlighting off */ | |
5693 hlsearch_on = FALSE; | |
5694 else if (lp[0] == 'H') /* ~H: 'hlsearch' highlighting on */ | |
5695 hlsearch_on = TRUE; | |
5696 #endif | |
5697 if (idx >= 0) | |
5698 { | |
5699 if (force || spats[idx].pat == NULL) | |
5700 { | |
5701 val = viminfo_readstring(virp, (int)(lp - virp->vir_line + 1), | |
5702 TRUE); | |
5703 if (val != NULL) | |
5704 { | |
5705 set_last_search_pat(val, idx, magic, setlast); | |
5706 vim_free(val); | |
5707 spats[idx].no_scs = no_scs; | |
5708 spats[idx].off.line = off_line; | |
5709 spats[idx].off.end = off_end; | |
5710 spats[idx].off.off = off; | |
5711 #ifdef FEAT_SEARCH_EXTRA | |
5712 if (setlast) | |
13792
0e9b2971d7c3
patch 8.0.1768: SET_NO_HLSEARCH() used in a wrong way
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
5713 set_no_hlsearch(!hlsearch_on); |
7 | 5714 #endif |
5715 } | |
5716 } | |
5717 } | |
5718 return viminfo_readline(virp); | |
5719 } | |
5720 | |
5721 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5722 write_viminfo_search_pattern(FILE *fp) |
7 | 5723 { |
5724 if (get_viminfo_parameter('/') != 0) | |
5725 { | |
5726 #ifdef FEAT_SEARCH_EXTRA | |
5727 fprintf(fp, "\n# hlsearch on (H) or off (h):\n~%c", | |
5728 (no_hlsearch || find_viminfo_parameter('h') != NULL) ? 'h' : 'H'); | |
5729 #endif | |
5730 wvsp_one(fp, RE_SEARCH, "", '/'); | |
1675 | 5731 wvsp_one(fp, RE_SUBST, _("Substitute "), '&'); |
7 | 5732 } |
5733 } | |
5734 | |
5735 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5736 wvsp_one( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5737 FILE *fp, /* file to write to */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5738 int idx, /* spats[] index */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5739 char *s, /* search pat */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5740 int sc) /* dir char */ |
7 | 5741 { |
5742 if (spats[idx].pat != NULL) | |
5743 { | |
835 | 5744 fprintf(fp, _("\n# Last %sSearch Pattern:\n~"), s); |
7 | 5745 /* off.dir is not stored, it's reset to forward */ |
5746 fprintf(fp, "%c%c%c%c%ld%s%c", | |
5747 spats[idx].magic ? 'M' : 'm', /* magic */ | |
5748 spats[idx].no_scs ? 's' : 'S', /* smartcase */ | |
5749 spats[idx].off.line ? 'L' : 'l', /* line offset */ | |
5750 spats[idx].off.end ? 'E' : 'e', /* offset from end */ | |
5751 spats[idx].off.off, /* offset */ | |
5752 last_idx == idx ? "~" : "", /* last used pat */ | |
5753 sc); | |
5754 viminfo_writestring(fp, spats[idx].pat); | |
5755 } | |
5756 } | |
5757 #endif /* FEAT_VIMINFO */ |