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