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