blob: 3145e9a0999e4bb41151be968aa7bfc95ba875f1 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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
Bram Moolenaar071d4272004-06-13 20:20:40 +000015#ifdef FEAT_EVAL
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010016static void set_vv_searchforward(void);
17static int first_submatch(regmmatch_T *rp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010019static int check_prevcol(char_u *linep, int col, int ch, int *prevcol);
20static int inmacro(char_u *, char_u *);
21static int check_linecomment(char_u *line);
22static int cls(void);
23static int skip_chars(int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000024#ifdef FEAT_TEXTOBJ
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010025static void back_in_line(void);
26static void find_first_blank(pos_T *);
27static void findsent_forward(long count, int at_start_sent);
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#endif
29#ifdef FEAT_FIND_ID
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010030static void show_pat_in_path(char_u *, int,
31 int, int, FILE *, linenr_T *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +000032#endif
33#ifdef FEAT_VIMINFO
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010034static void wvsp_one(FILE *fp, int idx, char *s, int sc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000035#endif
36
Bram Moolenaar071d4272004-06-13 20:20:40 +000037/*
38 * This file contains various searching-related routines. These fall into
39 * three groups:
40 * 1. string searches (for /, ?, n, and N)
41 * 2. character searches within a single line (for f, F, t, T, etc)
42 * 3. "other" kinds of searches like the '%' command, and 'word' searches.
43 */
44
45/*
46 * String searches
47 *
48 * The string search functions are divided into two levels:
49 * lowest: searchit(); uses an pos_T for starting position and found match.
50 * Highest: do_search(); uses curwin->w_cursor; calls searchit().
51 *
52 * The last search pattern is remembered for repeating the same search.
53 * This pattern is shared between the :g, :s, ? and / commands.
54 * This is in search_regcomp().
55 *
56 * The actual string matching is done using a heavily modified version of
57 * Henry Spencer's regular expression library. See regexp.c.
58 */
59
60/* The offset for a search command is store in a soff struct */
61/* Note: only spats[0].off is really used */
62struct soffset
63{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000064 int dir; /* search direction, '/' or '?' */
Bram Moolenaar071d4272004-06-13 20:20:40 +000065 int line; /* search has line offset */
66 int end; /* search set cursor at end */
67 long off; /* line or char offset */
68};
69
70/* A search pattern and its attributes are stored in a spat struct */
71struct spat
72{
73 char_u *pat; /* the pattern (in allocated memory) or NULL */
74 int magic; /* magicness of the pattern */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020075 int no_scs; /* no smartcase for this pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +000076 struct soffset off;
77};
78
79/*
80 * Two search patterns are remembered: One for the :substitute command and
81 * one for other searches. last_idx points to the one that was used the last
82 * time.
83 */
84static struct spat spats[2] =
85{
86 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}}, /* last used search pat */
87 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}} /* last used substitute pat */
88};
89
90static int last_idx = 0; /* index in spats[] for RE_LAST */
91
Bram Moolenaardbd24b52015-08-11 14:26:19 +020092static char_u lastc[2] = {NUL, NUL}; /* last character searched for */
93static int lastcdir = FORWARD; /* last direction of character search */
94static int last_t_cmd = TRUE; /* last search t_cmd */
95#ifdef FEAT_MBYTE
96static char_u lastc_bytes[MB_MAXBYTES + 1];
97static int lastc_bytelen = 1; /* >1 for multi-byte char */
98#endif
99
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100#if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO)
101/* copy of spats[], for keeping the search patterns while executing autocmds */
102static struct spat saved_spats[2];
103static int saved_last_idx = 0;
104# ifdef FEAT_SEARCH_EXTRA
105static int saved_no_hlsearch = 0;
106# endif
107#endif
108
109static char_u *mr_pattern = NULL; /* pattern used by search_regcomp() */
110#ifdef FEAT_RIGHTLEFT
111static int mr_pattern_alloced = FALSE; /* mr_pattern was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112#endif
113
114#ifdef FEAT_FIND_ID
115/*
116 * Type used by find_pattern_in_path() to remember which included files have
117 * been searched already.
118 */
119typedef struct SearchedFile
120{
121 FILE *fp; /* File pointer */
122 char_u *name; /* Full name of file */
123 linenr_T lnum; /* Line we were up to in file */
124 int matched; /* Found a match in this file */
125} SearchedFile;
126#endif
127
128/*
129 * translate search pattern for vim_regcomp()
130 *
131 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd)
132 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command)
133 * pat_save == RE_BOTH: save pat in both patterns (:global command)
134 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL
Bram Moolenaarb8017e72007-05-10 18:59:07 +0000135 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136 * pat_use == RE_LAST: use last used pattern if "pat" is NULL
137 * options & SEARCH_HIS: put search string in history
138 * options & SEARCH_KEEP: keep previous search pattern
139 *
140 * returns FAIL if failed, OK otherwise.
141 */
142 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100143search_regcomp(
144 char_u *pat,
145 int pat_save,
146 int pat_use,
147 int options,
148 regmmatch_T *regmatch) /* return: pattern and ignore-case flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149{
150 int magic;
151 int i;
152
153 rc_did_emsg = FALSE;
154 magic = p_magic;
155
156 /*
157 * If no pattern given, use a previously defined pattern.
158 */
159 if (pat == NULL || *pat == NUL)
160 {
161 if (pat_use == RE_LAST)
162 i = last_idx;
163 else
164 i = pat_use;
165 if (spats[i].pat == NULL) /* pattern was never defined */
166 {
167 if (pat_use == RE_SUBST)
168 EMSG(_(e_nopresub));
169 else
170 EMSG(_(e_noprevre));
171 rc_did_emsg = TRUE;
172 return FAIL;
173 }
174 pat = spats[i].pat;
175 magic = spats[i].magic;
176 no_smartcase = spats[i].no_scs;
177 }
178#ifdef FEAT_CMDHIST
179 else if (options & SEARCH_HIS) /* put new pattern in history */
180 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
181#endif
182
183#ifdef FEAT_RIGHTLEFT
184 if (mr_pattern_alloced)
185 {
186 vim_free(mr_pattern);
187 mr_pattern_alloced = FALSE;
188 }
189
190 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
191 {
192 char_u *rev_pattern;
193
194 rev_pattern = reverse_text(pat);
195 if (rev_pattern == NULL)
196 mr_pattern = pat; /* out of memory, keep normal pattern. */
197 else
198 {
199 mr_pattern = rev_pattern;
200 mr_pattern_alloced = TRUE;
201 }
202 }
203 else
204#endif
205 mr_pattern = pat;
206
207 /*
208 * Save the currently used pattern in the appropriate place,
209 * unless the pattern should not be remembered.
210 */
Bram Moolenaar14177b72014-01-14 15:53:51 +0100211 if (!(options & SEARCH_KEEP) && !cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 {
213 /* search or global command */
214 if (pat_save == RE_SEARCH || pat_save == RE_BOTH)
215 save_re_pat(RE_SEARCH, pat, magic);
216 /* substitute or global command */
217 if (pat_save == RE_SUBST || pat_save == RE_BOTH)
218 save_re_pat(RE_SUBST, pat, magic);
219 }
220
221 regmatch->rmm_ic = ignorecase(pat);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +0000222 regmatch->rmm_maxcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
224 if (regmatch->regprog == NULL)
225 return FAIL;
226 return OK;
227}
228
229/*
230 * Get search pattern used by search_regcomp().
231 */
232 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100233get_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234{
235 return mr_pattern;
236}
237
Bram Moolenaarabc97732007-08-08 20:49:37 +0000238#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239/*
240 * Reverse text into allocated memory.
241 * Returns the allocated string, NULL when out of memory.
242 */
Bram Moolenaarabc97732007-08-08 20:49:37 +0000243 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100244reverse_text(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245{
246 unsigned len;
247 unsigned s_i, rev_i;
248 char_u *rev;
249
250 /*
251 * Reverse the pattern.
252 */
253 len = (unsigned)STRLEN(s);
254 rev = alloc(len + 1);
255 if (rev != NULL)
256 {
257 rev_i = len;
258 for (s_i = 0; s_i < len; ++s_i)
259 {
260# ifdef FEAT_MBYTE
261 if (has_mbyte)
262 {
263 int mb_len;
264
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000265 mb_len = (*mb_ptr2len)(s + s_i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266 rev_i -= mb_len;
267 mch_memmove(rev + rev_i, s + s_i, mb_len);
268 s_i += mb_len - 1;
269 }
270 else
271# endif
272 rev[--rev_i] = s[s_i];
273
274 }
275 rev[len] = NUL;
276 }
277 return rev;
278}
279#endif
280
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +0100281 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100282save_re_pat(int idx, char_u *pat, int magic)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283{
284 if (spats[idx].pat != pat)
285 {
286 vim_free(spats[idx].pat);
287 spats[idx].pat = vim_strsave(pat);
288 spats[idx].magic = magic;
289 spats[idx].no_scs = no_smartcase;
290 last_idx = idx;
291#ifdef FEAT_SEARCH_EXTRA
292 /* If 'hlsearch' set and search pat changed: need redraw. */
293 if (p_hls)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000294 redraw_all_later(SOME_VALID);
Bram Moolenaar8050efa2013-11-08 04:30:20 +0100295 SET_NO_HLSEARCH(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296#endif
297 }
298}
299
300#if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO)
301/*
302 * Save the search patterns, so they can be restored later.
303 * Used before/after executing autocommands and user functions.
304 */
305static int save_level = 0;
306
307 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100308save_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309{
310 if (save_level++ == 0)
311 {
312 saved_spats[0] = spats[0];
313 if (spats[0].pat != NULL)
314 saved_spats[0].pat = vim_strsave(spats[0].pat);
315 saved_spats[1] = spats[1];
316 if (spats[1].pat != NULL)
317 saved_spats[1].pat = vim_strsave(spats[1].pat);
318 saved_last_idx = last_idx;
319# ifdef FEAT_SEARCH_EXTRA
320 saved_no_hlsearch = no_hlsearch;
321# endif
322 }
323}
324
325 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100326restore_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327{
328 if (--save_level == 0)
329 {
330 vim_free(spats[0].pat);
331 spats[0] = saved_spats[0];
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000332#if defined(FEAT_EVAL)
333 set_vv_searchforward();
334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 vim_free(spats[1].pat);
336 spats[1] = saved_spats[1];
337 last_idx = saved_last_idx;
338# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar8050efa2013-11-08 04:30:20 +0100339 SET_NO_HLSEARCH(saved_no_hlsearch);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340# endif
341 }
342}
343#endif
344
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000345#if defined(EXITFREE) || defined(PROTO)
346 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100347free_search_patterns(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000348{
349 vim_free(spats[0].pat);
350 vim_free(spats[1].pat);
Bram Moolenaarf2427622009-04-22 16:45:21 +0000351
352# ifdef FEAT_RIGHTLEFT
353 if (mr_pattern_alloced)
354 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200355 vim_free(mr_pattern);
356 mr_pattern_alloced = FALSE;
357 mr_pattern = NULL;
Bram Moolenaarf2427622009-04-22 16:45:21 +0000358 }
359# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000360}
361#endif
362
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363/*
364 * Return TRUE when case should be ignored for search pattern "pat".
365 * Uses the 'ignorecase' and 'smartcase' options.
366 */
367 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100368ignorecase(char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369{
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200370 return ignorecase_opt(pat, p_ic, p_scs);
371}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200373/*
374 * As ignorecase() put pass the "ic" and "scs" flags.
375 */
376 int
377ignorecase_opt(char_u *pat, int ic_in, int scs)
378{
379 int ic = ic_in;
380
381 if (ic && !no_smartcase && scs
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382#ifdef FEAT_INS_EXPAND
383 && !(ctrl_x_mode && curbuf->b_p_inf)
384#endif
385 )
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200386 ic = !pat_has_uppercase(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 no_smartcase = FALSE;
388
389 return ic;
390}
391
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200392/*
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200393 * Return TRUE if pattern "pat" has an uppercase character.
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200394 */
395 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100396pat_has_uppercase(char_u *pat)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200397{
398 char_u *p = pat;
399
400 while (*p != NUL)
401 {
402#ifdef FEAT_MBYTE
403 int l;
404
405 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
406 {
407 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
408 return TRUE;
409 p += l;
410 }
411 else
412#endif
413 if (*p == '\\')
414 {
415 if (p[1] == '_' && p[2] != NUL) /* skip "\_X" */
416 p += 3;
417 else if (p[1] == '%' && p[2] != NUL) /* skip "\%X" */
418 p += 3;
419 else if (p[1] != NUL) /* skip "\X" */
420 p += 2;
421 else
422 p += 1;
423 }
424 else if (MB_ISUPPER(*p))
425 return TRUE;
426 else
427 ++p;
428 }
429 return FALSE;
430}
431
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100433last_csearch(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200434{
435#ifdef FEAT_MBYTE
436 return lastc_bytes;
437#else
438 return lastc;
439#endif
440}
441
442 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100443last_csearch_forward(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200444{
445 return lastcdir == FORWARD;
446}
447
448 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100449last_csearch_until(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200450{
451 return last_t_cmd == TRUE;
452}
453
454 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100455set_last_csearch(int c, char_u *s UNUSED, int len UNUSED)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200456{
457 *lastc = c;
458#ifdef FEAT_MBYTE
459 lastc_bytelen = len;
460 if (len)
461 memcpy(lastc_bytes, s, len);
462 else
463 vim_memset(lastc_bytes, 0, sizeof(lastc_bytes));
464#endif
465}
466
467 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100468set_csearch_direction(int cdir)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200469{
470 lastcdir = cdir;
471}
472
473 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100474set_csearch_until(int t_cmd)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200475{
476 last_t_cmd = t_cmd;
477}
478
479 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100480last_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481{
482 return spats[last_idx].pat;
483}
484
485/*
486 * Reset search direction to forward. For "gd" and "gD" commands.
487 */
488 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100489reset_search_dir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490{
491 spats[0].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000492#if defined(FEAT_EVAL)
493 set_vv_searchforward();
494#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495}
496
497#if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
498/*
499 * Set the last search pattern. For ":let @/ =" and viminfo.
500 * Also set the saved search pattern, so that this works in an autocommand.
501 */
502 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100503set_last_search_pat(
504 char_u *s,
505 int idx,
506 int magic,
507 int setlast)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508{
509 vim_free(spats[idx].pat);
510 /* An empty string means that nothing should be matched. */
511 if (*s == NUL)
512 spats[idx].pat = NULL;
513 else
514 spats[idx].pat = vim_strsave(s);
515 spats[idx].magic = magic;
516 spats[idx].no_scs = FALSE;
517 spats[idx].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000518#if defined(FEAT_EVAL)
519 set_vv_searchforward();
520#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 spats[idx].off.line = FALSE;
522 spats[idx].off.end = FALSE;
523 spats[idx].off.off = 0;
524 if (setlast)
525 last_idx = idx;
526 if (save_level)
527 {
528 vim_free(saved_spats[idx].pat);
529 saved_spats[idx] = spats[0];
530 if (spats[idx].pat == NULL)
531 saved_spats[idx].pat = NULL;
532 else
533 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
534 saved_last_idx = last_idx;
535 }
536# ifdef FEAT_SEARCH_EXTRA
537 /* If 'hlsearch' set and search pat changed: need redraw. */
538 if (p_hls && idx == last_idx && !no_hlsearch)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000539 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540# endif
541}
542#endif
543
544#ifdef FEAT_SEARCH_EXTRA
545/*
546 * Get a regexp program for the last used search pattern.
547 * This is used for highlighting all matches in a window.
548 * Values returned in regmatch->regprog and regmatch->rmm_ic.
549 */
550 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100551last_pat_prog(regmmatch_T *regmatch)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552{
553 if (spats[last_idx].pat == NULL)
554 {
555 regmatch->regprog = NULL;
556 return;
557 }
558 ++emsg_off; /* So it doesn't beep if bad expr */
559 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
560 --emsg_off;
561}
562#endif
563
564/*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100565 * Lowest level search function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 * Search for 'count'th occurrence of pattern 'pat' in direction 'dir'.
567 * Start at position 'pos' and return the found position in 'pos'.
568 *
569 * if (options & SEARCH_MSG) == 0 don't give any messages
570 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
571 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
572 * if (options & SEARCH_HIS) put search pattern in history
573 * if (options & SEARCH_END) return position at end of match
574 * if (options & SEARCH_START) accept match at pos itself
575 * if (options & SEARCH_KEEP) keep previous search pattern
576 * if (options & SEARCH_FOLD) match only once in a closed fold
577 * if (options & SEARCH_PEEK) check for typed char, cancel search
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100578 * if (options & SEARCH_COL) start at pos->col instead of zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 *
580 * Return FAIL (zero) for failure, non-zero for success.
581 * When FEAT_EVAL is defined, returns the index of the first matching
582 * subpattern plus one; one if there was none.
583 */
584 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100585searchit(
586 win_T *win, /* window to search in; can be NULL for a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 buffer without a window! */
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100588 buf_T *buf,
589 pos_T *pos,
590 int dir,
591 char_u *pat,
592 long count,
593 int options,
594 int pat_use, /* which pattern to use when "pat" is empty */
595 linenr_T stop_lnum, /* stop after this line number when != 0 */
596 proftime_T *tm UNUSED) /* timeout limit or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597{
598 int found;
599 linenr_T lnum; /* no init to shut up Apollo cc */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100600 colnr_T col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 regmmatch_T regmatch;
602 char_u *ptr;
603 colnr_T matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 lpos_T endpos;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000605 lpos_T matchpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 int loop;
607 pos_T start_pos;
608 int at_first_line;
609 int extra_col;
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200610 int start_char_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 int match_ok;
612 long nmatched;
613 int submatch = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100614 int first_match = TRUE;
Bram Moolenaar280f1262006-01-30 00:14:18 +0000615 int save_called_emsg = called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616#ifdef FEAT_SEARCH_EXTRA
617 int break_loop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618#endif
619
620 if (search_regcomp(pat, RE_SEARCH, pat_use,
621 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
622 {
623 if ((options & SEARCH_MSG) && !rc_did_emsg)
624 EMSG2(_("E383: Invalid search string: %s"), mr_pattern);
625 return FAIL;
626 }
627
Bram Moolenaar280f1262006-01-30 00:14:18 +0000628 /*
629 * find the string
630 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631 called_emsg = FALSE;
632 do /* loop for count */
633 {
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100634 /* When not accepting a match at the start position set "extra_col" to
635 * a non-zero value. Don't do that when starting at MAXCOL, since
636 * MAXCOL + 1 is zero. */
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200637 if (pos->col == MAXCOL)
638 start_char_len = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100639#ifdef FEAT_MBYTE
640 /* Watch out for the "col" being MAXCOL - 2, used in a closed fold. */
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200641 else if (has_mbyte
642 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
643 && pos->col < MAXCOL - 2)
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100644 {
645 ptr = ml_get_buf(buf, pos->lnum, FALSE) + pos->col;
646 if (*ptr == NUL)
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200647 start_char_len = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100648 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200649 start_char_len = (*mb_ptr2len)(ptr);
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100650 }
651#endif
652 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200653 start_char_len = 1;
654 if (dir == FORWARD)
655 {
656 if (options & SEARCH_START)
657 extra_col = 0;
658 else
659 extra_col = start_char_len;
660 }
661 else
662 {
663 if (options & SEARCH_START)
664 extra_col = start_char_len;
665 else
666 extra_col = 0;
667 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100668
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669 start_pos = *pos; /* remember start pos for detecting no match */
670 found = 0; /* default: not found */
671 at_first_line = TRUE; /* default: start in first line */
672 if (pos->lnum == 0) /* correct lnum for when starting in line 0 */
673 {
674 pos->lnum = 1;
675 pos->col = 0;
676 at_first_line = FALSE; /* not in first line now */
677 }
678
679 /*
680 * Start searching in current line, unless searching backwards and
681 * we're in column 0.
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000682 * If we are searching backwards, in column 0, and not including the
683 * current position, gain some efficiency by skipping back a line.
684 * Otherwise begin the search in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 */
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000686 if (dir == BACKWARD && start_pos.col == 0
687 && (options & SEARCH_START) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 {
689 lnum = pos->lnum - 1;
690 at_first_line = FALSE;
691 }
692 else
693 lnum = pos->lnum;
694
695 for (loop = 0; loop <= 1; ++loop) /* loop twice if 'wrapscan' set */
696 {
697 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
698 lnum += dir, at_first_line = FALSE)
699 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000700 /* Stop after checking "stop_lnum", if it's set. */
701 if (stop_lnum != 0 && (dir == FORWARD
702 ? lnum > stop_lnum : lnum < stop_lnum))
703 break;
Bram Moolenaar76929292008-01-06 19:07:36 +0000704#ifdef FEAT_RELTIME
705 /* Stop after passing the "tm" time limit. */
706 if (tm != NULL && profile_passed_limit(tm))
707 break;
708#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000709
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000711 * Look for a match somewhere in line "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100713 col = at_first_line && (options & SEARCH_COL) ? pos->col
714 : (colnr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 nmatched = vim_regexec_multi(&regmatch, win, buf,
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100716 lnum, col,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000717#ifdef FEAT_RELTIME
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100718 tm
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000719#else
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100720 NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000721#endif
722 );
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723 /* Abort searching on an error (e.g., out of stack). */
724 if (called_emsg)
725 break;
726 if (nmatched > 0)
727 {
728 /* match may actually be in another line when using \zs */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000729 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 endpos = regmatch.endpos[0];
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000731#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 submatch = first_submatch(&regmatch);
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000733#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000734 /* "lnum" may be past end of buffer for "\n\zs". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000735 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
736 ptr = (char_u *)"";
737 else
738 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739
740 /*
741 * Forward search in the first line: match should be after
742 * the start position. If not, continue at the end of the
743 * match (this is vi compatible) or on the next char.
744 */
745 if (dir == FORWARD && at_first_line)
746 {
747 match_ok = TRUE;
748 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000749 * When the match starts in a next line it's certainly
750 * past the start position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 * When match lands on a NUL the cursor will be put
752 * one back afterwards, compare with that position,
753 * otherwise "/$" will get stuck on end of line.
754 */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000755 while (matchpos.lnum == 0
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100756 && ((options & SEARCH_END) && first_match
Bram Moolenaar677ee682005-01-27 14:41:15 +0000757 ? (nmatched == 1
758 && (int)endpos.col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 < (int)start_pos.col + extra_col)
Bram Moolenaar677ee682005-01-27 14:41:15 +0000760 : ((int)matchpos.col
761 - (ptr[matchpos.col] == NUL)
762 < (int)start_pos.col + extra_col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 {
764 /*
765 * If vi-compatible searching, continue at the end
766 * of the match, otherwise continue one position
767 * forward.
768 */
769 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
770 {
771 if (nmatched > 1)
772 {
773 /* end is in next line, thus no match in
774 * this line */
775 match_ok = FALSE;
776 break;
777 }
778 matchcol = endpos.col;
779 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000780 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 && ptr[matchcol] != NUL)
782 {
783#ifdef FEAT_MBYTE
784 if (has_mbyte)
785 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000786 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 else
788#endif
789 ++matchcol;
790 }
791 }
792 else
793 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000794 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 if (ptr[matchcol] != NUL)
796 {
797#ifdef FEAT_MBYTE
798 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000799 matchcol += (*mb_ptr2len)(ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 + matchcol);
801 else
802#endif
803 ++matchcol;
804 }
805 }
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200806 if (matchcol == 0 && (options & SEARCH_START))
Bram Moolenaardb333a52013-03-19 15:27:48 +0100807 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 if (ptr[matchcol] == NUL
809 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000810 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000811 matchcol,
812#ifdef FEAT_RELTIME
813 tm
814#else
815 NULL
816#endif
817 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 {
819 match_ok = FALSE;
820 break;
821 }
Bram Moolenaar677ee682005-01-27 14:41:15 +0000822 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 endpos = regmatch.endpos[0];
824# ifdef FEAT_EVAL
825 submatch = first_submatch(&regmatch);
826# endif
827
828 /* Need to get the line pointer again, a
829 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000830 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 }
832 if (!match_ok)
833 continue;
834 }
835 if (dir == BACKWARD)
836 {
837 /*
838 * Now, if there are multiple matches on this line,
839 * we have to get the last one. Or the last one before
840 * the cursor, if we're on that line.
841 * When putting the new cursor at the end, compare
842 * relative to the end of the match.
843 */
844 match_ok = FALSE;
845 for (;;)
846 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000847 /* Remember a position that is before the start
848 * position, we use it if it's the last match in
849 * the line. Always accept a position after
850 * wrapping around. */
851 if (loop
852 || ((options & SEARCH_END)
853 ? (lnum + regmatch.endpos[0].lnum
854 < start_pos.lnum
855 || (lnum + regmatch.endpos[0].lnum
856 == start_pos.lnum
857 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200858 < (int)start_pos.col
859 + extra_col))
Bram Moolenaar677ee682005-01-27 14:41:15 +0000860 : (lnum + regmatch.startpos[0].lnum
861 < start_pos.lnum
862 || (lnum + regmatch.startpos[0].lnum
863 == start_pos.lnum
864 && (int)regmatch.startpos[0].col
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200865 < (int)start_pos.col
866 + extra_col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000869 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 endpos = regmatch.endpos[0];
871# ifdef FEAT_EVAL
872 submatch = first_submatch(&regmatch);
873# endif
874 }
875 else
876 break;
877
878 /*
879 * We found a valid match, now check if there is
880 * another one after it.
881 * If vi-compatible searching, continue at the end
882 * of the match, otherwise continue one position
883 * forward.
884 */
885 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
886 {
887 if (nmatched > 1)
888 break;
889 matchcol = endpos.col;
890 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000891 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 && ptr[matchcol] != NUL)
893 {
894#ifdef FEAT_MBYTE
895 if (has_mbyte)
896 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000897 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 else
899#endif
900 ++matchcol;
901 }
902 }
903 else
904 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000905 /* Stop when the match is in a next line. */
906 if (matchpos.lnum > 0)
907 break;
908 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 if (ptr[matchcol] != NUL)
910 {
911#ifdef FEAT_MBYTE
912 if (has_mbyte)
913 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000914 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 else
916#endif
917 ++matchcol;
918 }
919 }
920 if (ptr[matchcol] == NUL
921 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000922 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000923 matchcol,
924#ifdef FEAT_RELTIME
925 tm
926#else
927 NULL
928#endif
929 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 break;
931
932 /* Need to get the line pointer again, a
933 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000934 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 }
936
937 /*
938 * If there is only a match after the cursor, skip
939 * this match.
940 */
941 if (!match_ok)
942 continue;
943 }
944
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000945 /* With the SEARCH_END option move to the last character
946 * of the match. Don't do it for an empty match, end
947 * should be same as start then. */
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200948 if ((options & SEARCH_END) && !(options & SEARCH_NOOF)
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000949 && !(matchpos.lnum == endpos.lnum
950 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000952 /* For a match in the first column, set the position
953 * on the NUL in the previous line. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000954 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000955 pos->col = endpos.col;
956 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000957 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000958 if (pos->lnum > 1) /* just in case */
959 {
960 --pos->lnum;
961 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
962 pos->lnum, FALSE));
963 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000964 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000965 else
966 {
967 --pos->col;
968#ifdef FEAT_MBYTE
969 if (has_mbyte
970 && pos->lnum <= buf->b_ml.ml_line_count)
971 {
972 ptr = ml_get_buf(buf, pos->lnum, FALSE);
973 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
974 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000975#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000976 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 }
978 else
979 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000980 pos->lnum = lnum + matchpos.lnum;
981 pos->col = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 }
983#ifdef FEAT_VIRTUALEDIT
984 pos->coladd = 0;
985#endif
986 found = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100987 first_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988
989 /* Set variables used for 'incsearch' highlighting. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000990 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 search_match_endcol = endpos.col;
992 break;
993 }
994 line_breakcheck(); /* stop if ctrl-C typed */
995 if (got_int)
996 break;
997
998#ifdef FEAT_SEARCH_EXTRA
999 /* Cancel searching if a character was typed. Used for
1000 * 'incsearch'. Don't check too often, that would slowdown
1001 * searching too much. */
1002 if ((options & SEARCH_PEEK)
1003 && ((lnum - pos->lnum) & 0x3f) == 0
1004 && char_avail())
1005 {
1006 break_loop = TRUE;
1007 break;
1008 }
1009#endif
1010
1011 if (loop && lnum == start_pos.lnum)
1012 break; /* if second loop, stop where started */
1013 }
1014 at_first_line = FALSE;
1015
1016 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001017 * Stop the search if wrapscan isn't set, "stop_lnum" is
1018 * specified, after an interrupt, after a match and after looping
1019 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001021 if (!p_ws || stop_lnum != 0 || got_int || called_emsg
Bram Moolenaar78a15312009-05-15 19:33:18 +00001022#ifdef FEAT_SEARCH_EXTRA
1023 || break_loop
1024#endif
1025 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026 break;
1027
1028 /*
1029 * If 'wrapscan' is set we continue at the other end of the file.
1030 * If 'shortmess' does not contain 's', we give a message.
1031 * This message is also remembered in keep_msg for when the screen
1032 * is redrawn. The keep_msg is cleared whenever another message is
1033 * written.
1034 */
1035 if (dir == BACKWARD) /* start second loop at the other end */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00001039 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
1040 give_warning((char_u *)_(dir == BACKWARD
1041 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00001043 if (got_int || called_emsg
1044#ifdef FEAT_SEARCH_EXTRA
1045 || break_loop
1046#endif
1047 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 break;
1049 }
1050 while (--count > 0 && found); /* stop after count matches or no match */
1051
Bram Moolenaar473de612013-06-08 18:19:48 +02001052 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053
Bram Moolenaar280f1262006-01-30 00:14:18 +00001054 called_emsg |= save_called_emsg;
1055
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 if (!found) /* did not find it */
1057 {
1058 if (got_int)
1059 EMSG(_(e_interr));
1060 else if ((options & SEARCH_MSG) == SEARCH_MSG)
1061 {
1062 if (p_ws)
1063 EMSG2(_(e_patnotf2), mr_pattern);
1064 else if (lnum == 0)
1065 EMSG2(_("E384: search hit TOP without match for: %s"),
1066 mr_pattern);
1067 else
1068 EMSG2(_("E385: search hit BOTTOM without match for: %s"),
1069 mr_pattern);
1070 }
1071 return FAIL;
1072 }
1073
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001074 /* A pattern like "\n\zs" may go past the last line. */
1075 if (pos->lnum > buf->b_ml.ml_line_count)
1076 {
1077 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001078 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001079 if (pos->col > 0)
1080 --pos->col;
1081 }
1082
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 return submatch + 1;
1084}
1085
1086#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001087 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001088set_search_direction(int cdir)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001089{
1090 spats[0].off.dir = cdir;
1091}
1092
1093 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001094set_vv_searchforward(void)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001095{
1096 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1097}
1098
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099/*
1100 * Return the number of the first subpat that matched.
Bram Moolenaarad4d8a12015-12-28 19:20:36 +01001101 * Return zero if none of them matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102 */
1103 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001104first_submatch(regmmatch_T *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105{
1106 int submatch;
1107
1108 for (submatch = 1; ; ++submatch)
1109 {
1110 if (rp->startpos[submatch].lnum >= 0)
1111 break;
1112 if (submatch == 9)
1113 {
1114 submatch = 0;
1115 break;
1116 }
1117 }
1118 return submatch;
1119}
1120#endif
1121
1122/*
1123 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001124 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 * If 'dirc' is 0: use previous dir.
1126 * If 'pat' is NULL or empty : use previous string.
1127 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1128 * If 'options & SEARCH_ECHO': echo the search command and handle options
1129 * If 'options & SEARCH_MSG' : may give error message
1130 * If 'options & SEARCH_OPT' : interpret optional flags
1131 * If 'options & SEARCH_HIS' : put search pattern in history
1132 * If 'options & SEARCH_NOOF': don't add offset to position
1133 * If 'options & SEARCH_MARK': set previous context mark
1134 * If 'options & SEARCH_KEEP': keep previous search pattern
1135 * If 'options & SEARCH_START': accept match at curpos itself
1136 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1137 *
1138 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1139 * makes the movement linewise without moving the match position.
1140 *
Bram Moolenaarb6c27352015-03-05 19:57:49 +01001141 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 */
1143 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001144do_search(
1145 oparg_T *oap, /* can be NULL */
1146 int dirc, /* '/' or '?' */
1147 char_u *pat,
1148 long count,
1149 int options,
1150 proftime_T *tm) /* timeout limit or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151{
1152 pos_T pos; /* position of the last match */
1153 char_u *searchstr;
1154 struct soffset old_off;
1155 int retval; /* Return value */
1156 char_u *p;
1157 long c;
1158 char_u *dircp;
1159 char_u *strcopy = NULL;
1160 char_u *ps;
1161
1162 /*
1163 * A line offset is not remembered, this is vi compatible.
1164 */
1165 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1166 {
1167 spats[0].off.line = FALSE;
1168 spats[0].off.off = 0;
1169 }
1170
1171 /*
1172 * Save the values for when (options & SEARCH_KEEP) is used.
1173 * (there is no "if ()" around this because gcc wants them initialized)
1174 */
1175 old_off = spats[0].off;
1176
1177 pos = curwin->w_cursor; /* start searching at the cursor position */
1178
1179 /*
1180 * Find out the direction of the search.
1181 */
1182 if (dirc == 0)
1183 dirc = spats[0].off.dir;
1184 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001185 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001187#if defined(FEAT_EVAL)
1188 set_vv_searchforward();
1189#endif
1190 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 if (options & SEARCH_REV)
1192 {
1193#ifdef WIN32
1194 /* There is a bug in the Visual C++ 2.2 compiler which means that
1195 * dirc always ends up being '/' */
1196 dirc = (dirc == '/') ? '?' : '/';
1197#else
1198 if (dirc == '/')
1199 dirc = '?';
1200 else
1201 dirc = '/';
1202#endif
1203 }
1204
1205#ifdef FEAT_FOLDING
1206 /* If the cursor is in a closed fold, don't find another match in the same
1207 * fold. */
1208 if (dirc == '/')
1209 {
1210 if (hasFolding(pos.lnum, NULL, &pos.lnum))
1211 pos.col = MAXCOL - 2; /* avoid overflow when adding 1 */
1212 }
1213 else
1214 {
1215 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1216 pos.col = 0;
1217 }
1218#endif
1219
1220#ifdef FEAT_SEARCH_EXTRA
1221 /*
1222 * Turn 'hlsearch' highlighting back on.
1223 */
1224 if (no_hlsearch && !(options & SEARCH_KEEP))
1225 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001226 redraw_all_later(SOME_VALID);
Bram Moolenaar8050efa2013-11-08 04:30:20 +01001227 SET_NO_HLSEARCH(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 }
1229#endif
1230
1231 /*
1232 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1233 */
1234 for (;;)
1235 {
1236 searchstr = pat;
1237 dircp = NULL;
1238 /* use previous pattern */
1239 if (pat == NULL || *pat == NUL || *pat == dirc)
1240 {
1241 if (spats[RE_SEARCH].pat == NULL) /* no previous pattern */
1242 {
Bram Moolenaarea683da2016-09-09 21:41:34 +02001243 searchstr = spats[RE_SUBST].pat;
1244 if (searchstr == NULL)
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001245 {
1246 EMSG(_(e_noprevre));
1247 retval = 0;
1248 goto end_do_search;
1249 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001251 else
1252 {
1253 /* make search_regcomp() use spats[RE_SEARCH].pat */
1254 searchstr = (char_u *)"";
1255 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 }
1257
1258 if (pat != NULL && *pat != NUL) /* look for (new) offset */
1259 {
1260 /*
1261 * Find end of regular expression.
1262 * If there is a matching '/' or '?', toss it.
1263 */
1264 ps = strcopy;
1265 p = skip_regexp(pat, dirc, (int)p_magic, &strcopy);
1266 if (strcopy != ps)
1267 {
1268 /* made a copy of "pat" to change "\?" to "?" */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001269 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 pat = strcopy;
1271 searchstr = strcopy;
1272 }
1273 if (*p == dirc)
1274 {
1275 dircp = p; /* remember where we put the NUL */
1276 *p++ = NUL;
1277 }
1278 spats[0].off.line = FALSE;
1279 spats[0].off.end = FALSE;
1280 spats[0].off.off = 0;
1281 /*
1282 * Check for a line offset or a character offset.
1283 * For get_address (echo off) we don't check for a character
1284 * offset, because it is meaningless and the 's' could be a
1285 * substitute command.
1286 */
1287 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1288 spats[0].off.line = TRUE;
1289 else if ((options & SEARCH_OPT) &&
1290 (*p == 'e' || *p == 's' || *p == 'b'))
1291 {
1292 if (*p == 'e') /* end */
1293 spats[0].off.end = SEARCH_END;
1294 ++p;
1295 }
1296 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') /* got an offset */
1297 {
1298 /* 'nr' or '+nr' or '-nr' */
1299 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1300 spats[0].off.off = atol((char *)p);
1301 else if (*p == '-') /* single '-' */
1302 spats[0].off.off = -1;
1303 else /* single '+' */
1304 spats[0].off.off = 1;
1305 ++p;
1306 while (VIM_ISDIGIT(*p)) /* skip number */
1307 ++p;
1308 }
1309
1310 /* compute length of search command for get_address() */
1311 searchcmdlen += (int)(p - pat);
1312
1313 pat = p; /* put pat after search command */
1314 }
1315
1316 if ((options & SEARCH_ECHO) && messaging()
1317 && !cmd_silent && msg_silent == 0)
1318 {
1319 char_u *msgbuf;
1320 char_u *trunc;
1321
1322 if (*searchstr == NUL)
1323 p = spats[last_idx].pat;
1324 else
1325 p = searchstr;
1326 msgbuf = alloc((unsigned)(STRLEN(p) + 40));
1327 if (msgbuf != NULL)
1328 {
1329 msgbuf[0] = dirc;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001330#ifdef FEAT_MBYTE
1331 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1332 {
1333 /* Use a space to draw the composing char on. */
1334 msgbuf[1] = ' ';
1335 STRCPY(msgbuf + 2, p);
1336 }
1337 else
1338#endif
1339 STRCPY(msgbuf + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 if (spats[0].off.line || spats[0].off.end || spats[0].off.off)
1341 {
1342 p = msgbuf + STRLEN(msgbuf);
1343 *p++ = dirc;
1344 if (spats[0].off.end)
1345 *p++ = 'e';
1346 else if (!spats[0].off.line)
1347 *p++ = 's';
1348 if (spats[0].off.off > 0 || spats[0].off.line)
1349 *p++ = '+';
1350 if (spats[0].off.off != 0 || spats[0].off.line)
1351 sprintf((char *)p, "%ld", spats[0].off.off);
1352 else
1353 *p = NUL;
1354 }
1355
1356 msg_start();
Bram Moolenaara4a08382005-09-09 19:52:02 +00001357 trunc = msg_strtrunc(msgbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358
1359#ifdef FEAT_RIGHTLEFT
1360 /* The search pattern could be shown on the right in rightleft
1361 * mode, but the 'ruler' and 'showcmd' area use it too, thus
1362 * it would be blanked out again very soon. Show it on the
1363 * left, but do reverse the text. */
1364 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1365 {
1366 char_u *r;
1367
1368 r = reverse_text(trunc != NULL ? trunc : msgbuf);
1369 if (r != NULL)
1370 {
1371 vim_free(trunc);
1372 trunc = r;
1373 }
1374 }
1375#endif
1376 if (trunc != NULL)
1377 {
1378 msg_outtrans(trunc);
1379 vim_free(trunc);
1380 }
1381 else
1382 msg_outtrans(msgbuf);
1383 msg_clr_eos();
1384 msg_check();
1385 vim_free(msgbuf);
1386
1387 gotocmdline(FALSE);
1388 out_flush();
1389 msg_nowait = TRUE; /* don't wait for this message */
1390 }
1391 }
1392
1393 /*
1394 * If there is a character offset, subtract it from the current
1395 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001396 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 * This is not done for a line offset, because then we would not be vi
1398 * compatible.
1399 */
Bram Moolenaared203462004-06-16 11:19:22 +00001400 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 {
1402 if (spats[0].off.off > 0)
1403 {
1404 for (c = spats[0].off.off; c; --c)
1405 if (decl(&pos) == -1)
1406 break;
1407 if (c) /* at start of buffer */
1408 {
1409 pos.lnum = 0; /* allow lnum == 0 here */
1410 pos.col = MAXCOL;
1411 }
1412 }
1413 else
1414 {
1415 for (c = spats[0].off.off; c; ++c)
1416 if (incl(&pos) == -1)
1417 break;
1418 if (c) /* at end of buffer */
1419 {
1420 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1421 pos.col = 0;
1422 }
1423 }
1424 }
1425
1426#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
1427 if (p_altkeymap && curwin->w_p_rl)
1428 lrFswap(searchstr,0);
1429#endif
1430
1431 c = searchit(curwin, curbuf, &pos, dirc == '/' ? FORWARD : BACKWARD,
1432 searchstr, count, spats[0].off.end + (options &
1433 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1434 + SEARCH_MSG + SEARCH_START
1435 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001436 RE_LAST, (linenr_T)0, tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437
1438 if (dircp != NULL)
1439 *dircp = dirc; /* restore second '/' or '?' for normal_cmd() */
1440 if (c == FAIL)
1441 {
1442 retval = 0;
1443 goto end_do_search;
1444 }
1445 if (spats[0].off.end && oap != NULL)
1446 oap->inclusive = TRUE; /* 'e' includes last character */
1447
1448 retval = 1; /* pattern found */
1449
1450 /*
1451 * Add character and/or line offset
1452 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001453 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 {
1455 if (spats[0].off.line) /* Add the offset to the line number. */
1456 {
1457 c = pos.lnum + spats[0].off.off;
1458 if (c < 1)
1459 pos.lnum = 1;
1460 else if (c > curbuf->b_ml.ml_line_count)
1461 pos.lnum = curbuf->b_ml.ml_line_count;
1462 else
1463 pos.lnum = c;
1464 pos.col = 0;
1465
1466 retval = 2; /* pattern found, line offset added */
1467 }
Bram Moolenaared203462004-06-16 11:19:22 +00001468 else if (pos.col < MAXCOL - 2) /* just in case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 {
1470 /* to the right, check for end of file */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001471 c = spats[0].off.off;
1472 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001474 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 if (incl(&pos) == -1)
1476 break;
1477 }
1478 /* to the left, check for start of file */
1479 else
1480 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001481 while (c++ < 0)
1482 if (decl(&pos) == -1)
1483 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484 }
1485 }
1486 }
1487
1488 /*
1489 * The search command can be followed by a ';' to do another search.
1490 * For example: "/pat/;/foo/+3;?bar"
1491 * This is like doing another search command, except:
1492 * - The remembered direction '/' or '?' is from the first search.
1493 * - When an error happens the cursor isn't moved at all.
1494 * Don't do this when called by get_address() (it handles ';' itself).
1495 */
1496 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1497 break;
1498
1499 dirc = *++pat;
1500 if (dirc != '?' && dirc != '/')
1501 {
1502 retval = 0;
1503 EMSG(_("E386: Expected '?' or '/' after ';'"));
1504 goto end_do_search;
1505 }
1506 ++pat;
1507 }
1508
1509 if (options & SEARCH_MARK)
1510 setpcmark();
1511 curwin->w_cursor = pos;
1512 curwin->w_set_curswant = TRUE;
1513
1514end_do_search:
Bram Moolenaarac8400d2014-01-14 21:31:34 +01001515 if ((options & SEARCH_KEEP) || cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 spats[0].off = old_off;
1517 vim_free(strcopy);
1518
1519 return retval;
1520}
1521
1522#if defined(FEAT_INS_EXPAND) || defined(PROTO)
1523/*
1524 * search_for_exact_line(buf, pos, dir, pat)
1525 *
1526 * Search for a line starting with the given pattern (ignoring leading
1527 * white-space), starting from pos and going in direction dir. pos will
1528 * contain the position of the match found. Blank lines match only if
1529 * ADDING is set. if p_ic is set then the pattern must be in lowercase.
1530 * Return OK for success, or FAIL if no line found.
1531 */
1532 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001533search_for_exact_line(
1534 buf_T *buf,
1535 pos_T *pos,
1536 int dir,
1537 char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538{
1539 linenr_T start = 0;
1540 char_u *ptr;
1541 char_u *p;
1542
1543 if (buf->b_ml.ml_line_count == 0)
1544 return FAIL;
1545 for (;;)
1546 {
1547 pos->lnum += dir;
1548 if (pos->lnum < 1)
1549 {
1550 if (p_ws)
1551 {
1552 pos->lnum = buf->b_ml.ml_line_count;
1553 if (!shortmess(SHM_SEARCH))
1554 give_warning((char_u *)_(top_bot_msg), TRUE);
1555 }
1556 else
1557 {
1558 pos->lnum = 1;
1559 break;
1560 }
1561 }
1562 else if (pos->lnum > buf->b_ml.ml_line_count)
1563 {
1564 if (p_ws)
1565 {
1566 pos->lnum = 1;
1567 if (!shortmess(SHM_SEARCH))
1568 give_warning((char_u *)_(bot_top_msg), TRUE);
1569 }
1570 else
1571 {
1572 pos->lnum = 1;
1573 break;
1574 }
1575 }
1576 if (pos->lnum == start)
1577 break;
1578 if (start == 0)
1579 start = pos->lnum;
1580 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1581 p = skipwhite(ptr);
1582 pos->col = (colnr_T) (p - ptr);
1583
1584 /* when adding lines the matching line may be empty but it is not
1585 * ignored because we are interested in the next line -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001586 if ((compl_cont_status & CONT_ADDING)
1587 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 {
1589 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1590 return OK;
1591 }
1592 else if (*p != NUL) /* ignore empty lines */
1593 { /* expanding lines or words */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001594 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1595 : STRNCMP(p, pat, compl_length)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 return OK;
1597 }
1598 }
1599 return FAIL;
1600}
1601#endif /* FEAT_INS_EXPAND */
1602
1603/*
1604 * Character Searches
1605 */
1606
1607/*
1608 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1609 * position of the character, otherwise move to just before the char.
1610 * Do this "cap->count1" times.
1611 * Return FAIL or OK.
1612 */
1613 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001614searchc(cmdarg_T *cap, int t_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615{
1616 int c = cap->nchar; /* char to search for */
1617 int dir = cap->arg; /* TRUE for searching forward */
1618 long count = cap->count1; /* repeat count */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 int col;
1620 char_u *p;
1621 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001622 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623
1624 if (c != NUL) /* normal search: remember args for repeat */
1625 {
1626 if (!KeyStuffed) /* don't remember when redoing */
1627 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001628 *lastc = c;
1629 set_csearch_direction(dir);
1630 set_csearch_until(t_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631#ifdef FEAT_MBYTE
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001632 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 if (cap->ncharC1 != 0)
1634 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001635 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1,
1636 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637 if (cap->ncharC2 != 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001638 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2,
1639 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640 }
1641#endif
1642 }
1643 }
1644 else /* repeat previous search */
1645 {
Bram Moolenaar454709b2017-03-12 16:37:14 +01001646 if (*lastc == NUL
1647#ifdef FEAT_MBYTE
1648 && lastc_bytelen == 1
1649#endif
1650 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651 return FAIL;
1652 if (dir) /* repeat in opposite direction */
1653 dir = -lastcdir;
1654 else
1655 dir = lastcdir;
1656 t_cmd = last_t_cmd;
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001657 c = *lastc;
1658 /* For multi-byte re-use last lastc_bytes[] and lastc_bytelen. */
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001659
1660 /* Force a move of at least one char, so ";" and "," will move the
1661 * cursor, even if the cursor is right in front of char we are looking
1662 * at. */
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001663 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001664 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665 }
1666
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001667 if (dir == BACKWARD)
1668 cap->oap->inclusive = FALSE;
1669 else
1670 cap->oap->inclusive = TRUE;
1671
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 p = ml_get_curline();
1673 col = curwin->w_cursor.col;
1674 len = (int)STRLEN(p);
1675
1676 while (count--)
1677 {
1678#ifdef FEAT_MBYTE
1679 if (has_mbyte)
1680 {
1681 for (;;)
1682 {
1683 if (dir > 0)
1684 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001685 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 if (col >= len)
1687 return FAIL;
1688 }
1689 else
1690 {
1691 if (col == 0)
1692 return FAIL;
1693 col -= (*mb_head_off)(p, p + col - 1) + 1;
1694 }
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001695 if (lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001697 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 break;
1699 }
Bram Moolenaar66727e12017-03-01 22:17:05 +01001700 else if (STRNCMP(p + col, lastc_bytes, lastc_bytelen) == 0
Bram Moolenaarb129a442016-12-01 17:25:20 +01001701 && stop)
Bram Moolenaar66727e12017-03-01 22:17:05 +01001702 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001703 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 }
1705 }
1706 else
1707#endif
1708 {
1709 for (;;)
1710 {
1711 if ((col += dir) < 0 || col >= len)
1712 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001713 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001715 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 }
1717 }
1718 }
1719
1720 if (t_cmd)
1721 {
1722 /* backup to before the character (possibly double-byte) */
1723 col -= dir;
1724#ifdef FEAT_MBYTE
1725 if (has_mbyte)
1726 {
1727 if (dir < 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001728 /* Landed on the search char which is lastc_bytelen long */
1729 col += lastc_bytelen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 else
1731 /* To previous char, which may be multi-byte. */
1732 col -= (*mb_head_off)(p, p + col);
1733 }
1734#endif
1735 }
1736 curwin->w_cursor.col = col;
1737
1738 return OK;
1739}
1740
1741/*
1742 * "Other" Searches
1743 */
1744
1745/*
1746 * findmatch - find the matching paren or brace
1747 *
1748 * Improvement over vi: Braces inside quotes are ignored.
1749 */
1750 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001751findmatch(oparg_T *oap, int initc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752{
1753 return findmatchlimit(oap, initc, 0, 0);
1754}
1755
1756/*
1757 * Return TRUE if the character before "linep[col]" equals "ch".
1758 * Return FALSE if "col" is zero.
1759 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1760 * is NULL.
1761 * Handles multibyte string correctly.
1762 */
1763 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001764check_prevcol(
1765 char_u *linep,
1766 int col,
1767 int ch,
1768 int *prevcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769{
1770 --col;
1771#ifdef FEAT_MBYTE
1772 if (col > 0 && has_mbyte)
1773 col -= (*mb_head_off)(linep, linep + col);
1774#endif
1775 if (prevcol)
1776 *prevcol = col;
1777 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1778}
1779
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001780static int find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001781
1782/*
1783 * Raw string start is found at linep[startpos.col - 1].
1784 * Return TRUE if the matching end can be found between startpos and endpos.
1785 */
1786 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001787find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos)
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001788{
1789 char_u *p;
1790 char_u *delim_copy;
1791 size_t delim_len;
1792 linenr_T lnum;
1793 int found = FALSE;
1794
1795 for (p = linep + startpos->col + 1; *p && *p != '('; ++p)
1796 ;
1797 delim_len = (p - linep) - startpos->col - 1;
Bram Moolenaar6ed535d2015-08-26 23:01:21 +02001798 delim_copy = vim_strnsave(linep + startpos->col + 1, (int)delim_len);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001799 if (delim_copy == NULL)
1800 return FALSE;
1801 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum)
1802 {
1803 char_u *line = ml_get(lnum);
1804
1805 for (p = line + (lnum == startpos->lnum
1806 ? startpos->col + 1 : 0); *p; ++p)
1807 {
1808 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col)
1809 break;
1810 if (*p == ')' && p[delim_len + 1] == '"'
1811 && STRNCMP(delim_copy, p + 1, delim_len) == 0)
1812 {
1813 found = TRUE;
1814 break;
1815 }
1816 }
1817 if (found)
1818 break;
1819 }
1820 vim_free(delim_copy);
1821 return found;
1822}
1823
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824/*
1825 * findmatchlimit -- find the matching paren or brace, if it exists within
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001826 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling
1827 * off the edge of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828 *
1829 * "initc" is the character to find a match for. NUL means to find the
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001830 * character at or after the cursor. Special values:
1831 * '*' look for C-style comment / *
1832 * '/' look for C-style comment / *, ignoring comment-end
1833 * '#' look for preprocessor directives
1834 * 'R' look for raw string start: R"delim(text)delim" (only backwards)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 *
1836 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
1837 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
1838 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
1839 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001840 *
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001841 * "oap" is only used to set oap->motion_type for a linewise motion, it can be
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001842 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 */
1844
1845 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001846findmatchlimit(
1847 oparg_T *oap,
1848 int initc,
1849 int flags,
1850 int maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851{
1852 static pos_T pos; /* current search position */
1853 int findc = 0; /* matching brace */
1854 int c;
1855 int count = 0; /* cumulative number of braces */
1856 int backwards = FALSE; /* init for gcc */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001857 int raw_string = FALSE; /* search for raw string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 int inquote = FALSE; /* TRUE when inside quotes */
1859 char_u *linep; /* pointer to current line */
1860 char_u *ptr;
1861 int do_quotes; /* check for quotes in current line */
1862 int at_start; /* do_quotes value at start position */
1863 int hash_dir = 0; /* Direction searched for # things */
1864 int comment_dir = 0; /* Direction searched for comments */
1865 pos_T match_pos; /* Where last slash-star was found */
1866 int start_in_quotes; /* start position is in quotes */
1867 int traveled = 0; /* how far we've searched so far */
1868 int ignore_cend = FALSE; /* ignore comment end */
1869 int cpo_match; /* vi compatible matching */
1870 int cpo_bsl; /* don't recognize backslashes */
1871 int match_escaped = 0; /* search for escaped match */
1872 int dir; /* Direction to search */
1873 int comment_col = MAXCOL; /* start of / / comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001874#ifdef FEAT_LISP
1875 int lispcomm = FALSE; /* inside of Lisp-style comment */
1876 int lisp = curbuf->b_p_lisp; /* engage Lisp-specific hacks ;) */
1877#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878
1879 pos = curwin->w_cursor;
Bram Moolenaarc56c4592013-08-14 17:45:29 +02001880#ifdef FEAT_VIRTUALEDIT
1881 pos.coladd = 0;
1882#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 linep = ml_get(pos.lnum);
1884
1885 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
1886 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
1887
1888 /* Direction to search when initc is '/', '*' or '#' */
1889 if (flags & FM_BACKWARD)
1890 dir = BACKWARD;
1891 else if (flags & FM_FORWARD)
1892 dir = FORWARD;
1893 else
1894 dir = 0;
1895
1896 /*
1897 * if initc given, look in the table for the matching character
1898 * '/' and '*' are special cases: look for start or end of comment.
1899 * When '/' is used, we ignore running backwards into an star-slash, for
1900 * "[*" command, we just want to find any comment.
1901 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001902 if (initc == '/' || initc == '*' || initc == 'R')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 {
1904 comment_dir = dir;
1905 if (initc == '/')
1906 ignore_cend = TRUE;
1907 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001908 raw_string = (initc == 'R');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 initc = NUL;
1910 }
1911 else if (initc != '#' && initc != NUL)
1912 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001913 find_mps_values(&initc, &findc, &backwards, TRUE);
1914 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 return NULL;
1916 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 else
1918 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001919 /*
1920 * Either initc is '#', or no initc was given and we need to look
1921 * under the cursor.
1922 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 if (initc == '#')
1924 {
1925 hash_dir = dir;
1926 }
1927 else
1928 {
1929 /*
1930 * initc was not given, must look for something to match under
1931 * or near the cursor.
1932 * Only check for special things when 'cpo' doesn't have '%'.
1933 */
1934 if (!cpo_match)
1935 {
1936 /* Are we before or at #if, #else etc.? */
1937 ptr = skipwhite(linep);
1938 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
1939 {
1940 ptr = skipwhite(ptr + 1);
1941 if ( STRNCMP(ptr, "if", 2) == 0
1942 || STRNCMP(ptr, "endif", 5) == 0
1943 || STRNCMP(ptr, "el", 2) == 0)
1944 hash_dir = 1;
1945 }
1946
1947 /* Are we on a comment? */
1948 else if (linep[pos.col] == '/')
1949 {
1950 if (linep[pos.col + 1] == '*')
1951 {
1952 comment_dir = FORWARD;
1953 backwards = FALSE;
1954 pos.col++;
1955 }
1956 else if (pos.col > 0 && linep[pos.col - 1] == '*')
1957 {
1958 comment_dir = BACKWARD;
1959 backwards = TRUE;
1960 pos.col--;
1961 }
1962 }
1963 else if (linep[pos.col] == '*')
1964 {
1965 if (linep[pos.col + 1] == '/')
1966 {
1967 comment_dir = BACKWARD;
1968 backwards = TRUE;
1969 }
1970 else if (pos.col > 0 && linep[pos.col - 1] == '/')
1971 {
1972 comment_dir = FORWARD;
1973 backwards = FALSE;
1974 }
1975 }
1976 }
1977
1978 /*
1979 * If we are not on a comment or the # at the start of a line, then
1980 * look for brace anywhere on this line after the cursor.
1981 */
1982 if (!hash_dir && !comment_dir)
1983 {
1984 /*
1985 * Find the brace under or after the cursor.
1986 * If beyond the end of the line, use the last character in
1987 * the line.
1988 */
1989 if (linep[pos.col] == NUL && pos.col)
1990 --pos.col;
1991 for (;;)
1992 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001993 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 if (initc == NUL)
1995 break;
1996
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001997 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 if (findc)
1999 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002000 pos.col += MB_PTR2LEN(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 }
2002 if (!findc)
2003 {
2004 /* no brace in the line, maybe use " #if" then */
2005 if (!cpo_match && *skipwhite(linep) == '#')
2006 hash_dir = 1;
2007 else
2008 return NULL;
2009 }
2010 else if (!cpo_bsl)
2011 {
2012 int col, bslcnt = 0;
2013
2014 /* Set "match_escaped" if there are an odd number of
2015 * backslashes. */
2016 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2017 bslcnt++;
2018 match_escaped = (bslcnt & 1);
2019 }
2020 }
2021 }
2022 if (hash_dir)
2023 {
2024 /*
2025 * Look for matching #if, #else, #elif, or #endif
2026 */
2027 if (oap != NULL)
2028 oap->motion_type = MLINE; /* Linewise for this case only */
2029 if (initc != '#')
2030 {
2031 ptr = skipwhite(skipwhite(linep) + 1);
2032 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
2033 hash_dir = 1;
2034 else if (STRNCMP(ptr, "endif", 5) == 0)
2035 hash_dir = -1;
2036 else
2037 return NULL;
2038 }
2039 pos.col = 0;
2040 while (!got_int)
2041 {
2042 if (hash_dir > 0)
2043 {
2044 if (pos.lnum == curbuf->b_ml.ml_line_count)
2045 break;
2046 }
2047 else if (pos.lnum == 1)
2048 break;
2049 pos.lnum += hash_dir;
2050 linep = ml_get(pos.lnum);
2051 line_breakcheck(); /* check for CTRL-C typed */
2052 ptr = skipwhite(linep);
2053 if (*ptr != '#')
2054 continue;
2055 pos.col = (colnr_T) (ptr - linep);
2056 ptr = skipwhite(ptr + 1);
2057 if (hash_dir > 0)
2058 {
2059 if (STRNCMP(ptr, "if", 2) == 0)
2060 count++;
2061 else if (STRNCMP(ptr, "el", 2) == 0)
2062 {
2063 if (count == 0)
2064 return &pos;
2065 }
2066 else if (STRNCMP(ptr, "endif", 5) == 0)
2067 {
2068 if (count == 0)
2069 return &pos;
2070 count--;
2071 }
2072 }
2073 else
2074 {
2075 if (STRNCMP(ptr, "if", 2) == 0)
2076 {
2077 if (count == 0)
2078 return &pos;
2079 count--;
2080 }
2081 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
2082 {
2083 if (count == 0)
2084 return &pos;
2085 }
2086 else if (STRNCMP(ptr, "endif", 5) == 0)
2087 count++;
2088 }
2089 }
2090 return NULL;
2091 }
2092 }
2093
2094#ifdef FEAT_RIGHTLEFT
Bram Moolenaarabc97732007-08-08 20:49:37 +00002095 /* This is just guessing: when 'rightleft' is set, search for a matching
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 * paren/brace in the other direction. */
2097 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
2098 backwards = !backwards;
2099#endif
2100
2101 do_quotes = -1;
2102 start_in_quotes = MAYBE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002103 CLEAR_POS(&match_pos);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002104
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105 /* backward search: Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002106 if ((backwards && comment_dir)
2107#ifdef FEAT_LISP
2108 || lisp
2109#endif
2110 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002112#ifdef FEAT_LISP
2113 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
2114 lispcomm = TRUE; /* find match inside this comment */
2115#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 while (!got_int)
2117 {
2118 /*
2119 * Go to the next position, forward or backward. We could use
2120 * inc() and dec() here, but that is much slower
2121 */
2122 if (backwards)
2123 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002124#ifdef FEAT_LISP
2125 /* char to match is inside of comment, don't search outside */
2126 if (lispcomm && pos.col < (colnr_T)comment_col)
2127 break;
2128#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 if (pos.col == 0) /* at start of line, go to prev. one */
2130 {
2131 if (pos.lnum == 1) /* start of file */
2132 break;
2133 --pos.lnum;
2134
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002135 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 break;
2137
2138 linep = ml_get(pos.lnum);
2139 pos.col = (colnr_T)STRLEN(linep); /* pos.col on trailing NUL */
2140 do_quotes = -1;
2141 line_breakcheck();
2142
2143 /* Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002144 if (comment_dir
2145#ifdef FEAT_LISP
2146 || lisp
2147#endif
2148 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002150#ifdef FEAT_LISP
2151 /* skip comment */
2152 if (lisp && comment_col != MAXCOL)
2153 pos.col = comment_col;
2154#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155 }
2156 else
2157 {
2158 --pos.col;
2159#ifdef FEAT_MBYTE
2160 if (has_mbyte)
2161 pos.col -= (*mb_head_off)(linep, linep + pos.col);
2162#endif
2163 }
2164 }
2165 else /* forward search */
2166 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002167 if (linep[pos.col] == NUL
2168 /* at end of line, go to next one */
2169#ifdef FEAT_LISP
2170 /* don't search for match in comment */
2171 || (lisp && comment_col != MAXCOL
2172 && pos.col == (colnr_T)comment_col)
2173#endif
2174 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002176 if (pos.lnum == curbuf->b_ml.ml_line_count /* end of file */
2177#ifdef FEAT_LISP
2178 /* line is exhausted and comment with it,
2179 * don't search for match in code */
2180 || lispcomm
2181#endif
2182 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 break;
2184 ++pos.lnum;
2185
2186 if (maxtravel && traveled++ > maxtravel)
2187 break;
2188
2189 linep = ml_get(pos.lnum);
2190 pos.col = 0;
2191 do_quotes = -1;
2192 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002193#ifdef FEAT_LISP
2194 if (lisp) /* find comment pos in new line */
2195 comment_col = check_linecomment(linep);
2196#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 }
2198 else
2199 {
2200#ifdef FEAT_MBYTE
2201 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002202 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 else
2204#endif
2205 ++pos.col;
2206 }
2207 }
2208
2209 /*
2210 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2211 */
2212 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2213 (linep[0] == '{' || linep[0] == '}'))
2214 {
2215 if (linep[0] == findc && count == 0) /* match! */
2216 return &pos;
2217 break; /* out of scope */
2218 }
2219
2220 if (comment_dir)
2221 {
2222 /* Note: comments do not nest, and we ignore quotes in them */
2223 /* TODO: ignore comment brackets inside strings */
2224 if (comment_dir == FORWARD)
2225 {
2226 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2227 {
2228 pos.col++;
2229 return &pos;
2230 }
2231 }
2232 else /* Searching backwards */
2233 {
2234 /*
2235 * A comment may contain / * or / /, it may also start or end
2236 * with / * /. Ignore a / * after / /.
2237 */
2238 if (pos.col == 0)
2239 continue;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002240 else if (raw_string)
2241 {
2242 if (linep[pos.col - 1] == 'R'
2243 && linep[pos.col] == '"'
2244 && vim_strchr(linep + pos.col + 1, '(') != NULL)
2245 {
2246 /* Possible start of raw string. Now that we have the
2247 * delimiter we can check if it ends before where we
2248 * started searching, or before the previously found
2249 * raw string start. */
2250 if (!find_rawstring_end(linep, &pos,
2251 count > 0 ? &match_pos : &curwin->w_cursor))
2252 {
2253 count++;
2254 match_pos = pos;
2255 match_pos.col--;
2256 }
2257 linep = ml_get(pos.lnum); /* may have been released */
2258 }
2259 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 else if ( linep[pos.col - 1] == '/'
2261 && linep[pos.col] == '*'
2262 && (int)pos.col < comment_col)
2263 {
2264 count++;
2265 match_pos = pos;
2266 match_pos.col--;
2267 }
2268 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2269 {
2270 if (count > 0)
2271 pos = match_pos;
2272 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2273 && (int)pos.col <= comment_col)
2274 pos.col -= 2;
2275 else if (ignore_cend)
2276 continue;
2277 else
2278 return NULL;
2279 return &pos;
2280 }
2281 }
2282 continue;
2283 }
2284
2285 /*
2286 * If smart matching ('cpoptions' does not contain '%'), braces inside
2287 * of quotes are ignored, but only if there is an even number of
2288 * quotes in the line.
2289 */
2290 if (cpo_match)
2291 do_quotes = 0;
2292 else if (do_quotes == -1)
2293 {
2294 /*
2295 * Count the number of quotes in the line, skipping \" and '"'.
2296 * Watch out for "\\".
2297 */
2298 at_start = do_quotes;
2299 for (ptr = linep; *ptr; ++ptr)
2300 {
2301 if (ptr == linep + pos.col + backwards)
2302 at_start = (do_quotes & 1);
2303 if (*ptr == '"'
2304 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2305 ++do_quotes;
2306 if (*ptr == '\\' && ptr[1] != NUL)
2307 ++ptr;
2308 }
2309 do_quotes &= 1; /* result is 1 with even number of quotes */
2310
2311 /*
2312 * If we find an uneven count, check current line and previous
2313 * one for a '\' at the end.
2314 */
2315 if (!do_quotes)
2316 {
2317 inquote = FALSE;
2318 if (ptr[-1] == '\\')
2319 {
2320 do_quotes = 1;
2321 if (start_in_quotes == MAYBE)
2322 {
2323 /* Do we need to use at_start here? */
2324 inquote = TRUE;
2325 start_in_quotes = TRUE;
2326 }
2327 else if (backwards)
2328 inquote = TRUE;
2329 }
2330 if (pos.lnum > 1)
2331 {
2332 ptr = ml_get(pos.lnum - 1);
2333 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2334 {
2335 do_quotes = 1;
2336 if (start_in_quotes == MAYBE)
2337 {
2338 inquote = at_start;
2339 if (inquote)
2340 start_in_quotes = TRUE;
2341 }
2342 else if (!backwards)
2343 inquote = TRUE;
2344 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002345
2346 /* ml_get() only keeps one line, need to get linep again */
2347 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 }
2349 }
2350 }
2351 if (start_in_quotes == MAYBE)
2352 start_in_quotes = FALSE;
2353
2354 /*
2355 * If 'smartmatch' is set:
2356 * Things inside quotes are ignored by setting 'inquote'. If we
2357 * find a quote without a preceding '\' invert 'inquote'. At the
2358 * end of a line not ending in '\' we reset 'inquote'.
2359 *
2360 * In lines with an uneven number of quotes (without preceding '\')
2361 * we do not know which part to ignore. Therefore we only set
2362 * inquote if the number of quotes in a line is even, unless this
2363 * line or the previous one ends in a '\'. Complicated, isn't it?
2364 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002365 c = PTR2CHAR(linep + pos.col);
2366 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 {
2368 case NUL:
2369 /* at end of line without trailing backslash, reset inquote */
2370 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2371 {
2372 inquote = FALSE;
2373 start_in_quotes = FALSE;
2374 }
2375 break;
2376
2377 case '"':
2378 /* a quote that is preceded with an odd number of backslashes is
2379 * ignored */
2380 if (do_quotes)
2381 {
2382 int col;
2383
2384 for (col = pos.col - 1; col >= 0; --col)
2385 if (linep[col] != '\\')
2386 break;
2387 if ((((int)pos.col - 1 - col) & 1) == 0)
2388 {
2389 inquote = !inquote;
2390 start_in_quotes = FALSE;
2391 }
2392 }
2393 break;
2394
2395 /*
2396 * If smart matching ('cpoptions' does not contain '%'):
2397 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2398 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2399 * skipped, there is never a brace in them.
2400 * Ignore this when finding matches for `'.
2401 */
2402 case '\'':
2403 if (!cpo_match && initc != '\'' && findc != '\'')
2404 {
2405 if (backwards)
2406 {
2407 if (pos.col > 1)
2408 {
2409 if (linep[pos.col - 2] == '\'')
2410 {
2411 pos.col -= 2;
2412 break;
2413 }
2414 else if (linep[pos.col - 2] == '\\' &&
2415 pos.col > 2 && linep[pos.col - 3] == '\'')
2416 {
2417 pos.col -= 3;
2418 break;
2419 }
2420 }
2421 }
2422 else if (linep[pos.col + 1]) /* forward search */
2423 {
2424 if (linep[pos.col + 1] == '\\' &&
2425 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2426 {
2427 pos.col += 3;
2428 break;
2429 }
2430 else if (linep[pos.col + 2] == '\'')
2431 {
2432 pos.col += 2;
2433 break;
2434 }
2435 }
2436 }
2437 /* FALLTHROUGH */
2438
2439 default:
2440#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002441 /*
2442 * For Lisp skip over backslashed (), {} and [].
2443 * (actually, we skip #\( et al)
2444 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 if (curbuf->b_p_lisp
2446 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002447 && pos.col > 1
2448 && check_prevcol(linep, pos.col, '\\', NULL)
2449 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 break;
2451#endif
2452
2453 /* Check for match outside of quotes, and inside of
2454 * quotes when the start is also inside of quotes. */
2455 if ((!inquote || start_in_quotes == TRUE)
2456 && (c == initc || c == findc))
2457 {
2458 int col, bslcnt = 0;
2459
2460 if (!cpo_bsl)
2461 {
2462 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2463 bslcnt++;
2464 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00002465 /* Only accept a match when 'M' is in 'cpo' or when escaping
2466 * is what we expect. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2468 {
2469 if (c == initc)
2470 count++;
2471 else
2472 {
2473 if (count == 0)
2474 return &pos;
2475 count--;
2476 }
2477 }
2478 }
2479 }
2480 }
2481
2482 if (comment_dir == BACKWARD && count > 0)
2483 {
2484 pos = match_pos;
2485 return &pos;
2486 }
2487 return (pos_T *)NULL; /* never found it */
2488}
2489
2490/*
2491 * Check if line[] contains a / / comment.
2492 * Return MAXCOL if not, otherwise return the column.
2493 * TODO: skip strings.
2494 */
2495 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002496check_linecomment(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497{
2498 char_u *p;
2499
2500 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002501#ifdef FEAT_LISP
2502 /* skip Lispish one-line comments */
2503 if (curbuf->b_p_lisp)
2504 {
2505 if (vim_strchr(p, ';') != NULL) /* there may be comments */
2506 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002507 int in_str = FALSE; /* inside of string */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002508
2509 p = line; /* scan from start */
Bram Moolenaar520470a2005-06-16 21:59:56 +00002510 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002511 {
2512 if (*p == '"')
2513 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002514 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002515 {
2516 if (*(p - 1) != '\\') /* skip escaped quote */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002517 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002518 }
2519 else if (p == line || ((p - line) >= 2
2520 /* skip #\" form */
2521 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002522 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002523 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002524 else if (!in_str && ((p - line) < 2
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002525 || (*(p - 1) != '\\' && *(p - 2) != '#')))
2526 break; /* found! */
2527 ++p;
2528 }
2529 }
2530 else
2531 p = NULL;
2532 }
2533 else
2534#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 while ((p = vim_strchr(p, '/')) != NULL)
2536 {
Bram Moolenaar78d4aba2008-01-01 14:43:35 +00002537 /* accept a double /, unless it's preceded with * and followed by *,
2538 * because * / / * is an end and start of a C comment */
2539 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 break;
2541 ++p;
2542 }
2543
2544 if (p == NULL)
2545 return MAXCOL;
2546 return (int)(p - line);
2547}
2548
2549/*
2550 * Move cursor briefly to character matching the one under the cursor.
2551 * Used for Insert mode and "r" command.
2552 * Show the match only if it is visible on the screen.
2553 * If there isn't a match, then beep.
2554 */
2555 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002556showmatch(
2557 int c) /* char to show match for */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558{
2559 pos_T *lpos, save_cursor;
2560 pos_T mpos;
2561 colnr_T vcol;
2562 long save_so;
2563 long save_siso;
2564#ifdef CURSOR_SHAPE
2565 int save_state;
2566#endif
2567 colnr_T save_dollar_vcol;
2568 char_u *p;
2569
2570 /*
2571 * Only show match for chars in the 'matchpairs' option.
2572 */
2573 /* 'matchpairs' is "x:y,x:y" */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002574 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 {
2576#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002577 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002578 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002579#endif
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002580 p += MB_PTR2LEN(p) + 1;
2581 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582#ifdef FEAT_RIGHTLEFT
2583 && !(curwin->w_p_rl ^ p_ri)
2584#endif
2585 )
2586 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002587 p += MB_PTR2LEN(p);
2588 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589 return;
2590 }
2591
2592 if ((lpos = findmatch(NULL, NUL)) == NULL) /* no match, so beep */
Bram Moolenaar165bc692015-07-21 17:53:25 +02002593 vim_beep(BO_MATCH);
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002594 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 {
2596 if (!curwin->w_p_wrap)
2597 getvcol(curwin, lpos, NULL, &vcol, NULL);
2598 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
2599 && vcol < curwin->w_leftcol + W_WIDTH(curwin)))
2600 {
2601 mpos = *lpos; /* save the pos, update_screen() may change it */
2602 save_cursor = curwin->w_cursor;
2603 save_so = p_so;
2604 save_siso = p_siso;
2605 /* Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2606 * stop displaying the "$". */
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002607 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2608 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 ++curwin->w_virtcol; /* do display ')' just before "$" */
2610 update_screen(VALID); /* show the new char first */
2611
2612 save_dollar_vcol = dollar_vcol;
2613#ifdef CURSOR_SHAPE
2614 save_state = State;
2615 State = SHOWMATCH;
2616 ui_cursor_shape(); /* may show different cursor shape */
2617#endif
2618 curwin->w_cursor = mpos; /* move to matching char */
2619 p_so = 0; /* don't use 'scrolloff' here */
2620 p_siso = 0; /* don't use 'sidescrolloff' here */
2621 showruler(FALSE);
2622 setcursor();
2623 cursor_on(); /* make sure that the cursor is shown */
2624 out_flush();
2625#ifdef FEAT_GUI
2626 if (gui.in_use)
2627 {
2628 gui_update_cursor(TRUE, FALSE);
2629 gui_mch_flush();
2630 }
2631#endif
2632 /* Restore dollar_vcol(), because setcursor() may call curs_rows()
2633 * which resets it if the matching position is in a previous line
2634 * and has a higher column number. */
2635 dollar_vcol = save_dollar_vcol;
2636
2637 /*
2638 * brief pause, unless 'm' is present in 'cpo' and a character is
2639 * available.
2640 */
2641 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
2642 ui_delay(p_mat * 100L, TRUE);
2643 else if (!char_avail())
2644 ui_delay(p_mat * 100L, FALSE);
2645 curwin->w_cursor = save_cursor; /* restore cursor position */
2646 p_so = save_so;
2647 p_siso = save_siso;
2648#ifdef CURSOR_SHAPE
2649 State = save_state;
2650 ui_cursor_shape(); /* may show different cursor shape */
2651#endif
2652 }
2653 }
2654}
2655
2656/*
2657 * findsent(dir, count) - Find the start of the next sentence in direction
Bram Moolenaarebefac62005-12-28 22:39:57 +00002658 * "dir" Sentences are supposed to end in ".", "!" or "?" followed by white
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 * space or a line break. Also stop at an empty line.
2660 * Return OK if the next sentence was found.
2661 */
2662 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002663findsent(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664{
2665 pos_T pos, tpos;
2666 int c;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002667 int (*func)(pos_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 int startlnum;
2669 int noskip = FALSE; /* do not skip blanks */
2670 int cpo_J;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002671 int found_dot;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672
2673 pos = curwin->w_cursor;
2674 if (dir == FORWARD)
2675 func = incl;
2676 else
2677 func = decl;
2678
2679 while (count--)
2680 {
2681 /*
2682 * if on an empty line, skip upto a non-empty line
2683 */
2684 if (gchar_pos(&pos) == NUL)
2685 {
2686 do
2687 if ((*func)(&pos) == -1)
2688 break;
2689 while (gchar_pos(&pos) == NUL);
2690 if (dir == FORWARD)
2691 goto found;
2692 }
2693 /*
2694 * if on the start of a paragraph or a section and searching forward,
2695 * go to the next line
2696 */
2697 else if (dir == FORWARD && pos.col == 0 &&
2698 startPS(pos.lnum, NUL, FALSE))
2699 {
2700 if (pos.lnum == curbuf->b_ml.ml_line_count)
2701 return FAIL;
2702 ++pos.lnum;
2703 goto found;
2704 }
2705 else if (dir == BACKWARD)
2706 decl(&pos);
2707
2708 /* go back to the previous non-blank char */
Bram Moolenaardef9e822004-12-31 20:58:58 +00002709 found_dot = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 while ((c = gchar_pos(&pos)) == ' ' || c == '\t' ||
2711 (dir == BACKWARD && vim_strchr((char_u *)".!?)]\"'", c) != NULL))
2712 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00002713 if (vim_strchr((char_u *)".!?", c) != NULL)
2714 {
2715 /* Only skip over a '.', '!' and '?' once. */
2716 if (found_dot)
2717 break;
2718 found_dot = TRUE;
2719 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 if (decl(&pos) == -1)
2721 break;
2722 /* when going forward: Stop in front of empty line */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002723 if (LINEEMPTY(pos.lnum) && dir == FORWARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 {
2725 incl(&pos);
2726 goto found;
2727 }
2728 }
2729
2730 /* remember the line where the search started */
2731 startlnum = pos.lnum;
2732 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL;
2733
2734 for (;;) /* find end of sentence */
2735 {
2736 c = gchar_pos(&pos);
2737 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE)))
2738 {
2739 if (dir == BACKWARD && pos.lnum != startlnum)
2740 ++pos.lnum;
2741 break;
2742 }
2743 if (c == '.' || c == '!' || c == '?')
2744 {
2745 tpos = pos;
2746 do
2747 if ((c = inc(&tpos)) == -1)
2748 break;
2749 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos))
2750 != NULL);
2751 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL
2752 || (cpo_J && (c == ' ' && inc(&tpos) >= 0
2753 && gchar_pos(&tpos) == ' ')))
2754 {
2755 pos = tpos;
2756 if (gchar_pos(&pos) == NUL) /* skip NUL at EOL */
2757 inc(&pos);
2758 break;
2759 }
2760 }
2761 if ((*func)(&pos) == -1)
2762 {
2763 if (count)
2764 return FAIL;
2765 noskip = TRUE;
2766 break;
2767 }
2768 }
2769found:
2770 /* skip white space */
2771 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t'))
2772 if (incl(&pos) == -1)
2773 break;
2774 }
2775
2776 setpcmark();
2777 curwin->w_cursor = pos;
2778 return OK;
2779}
2780
2781/*
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002782 * Find the next paragraph or section in direction 'dir'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 * Paragraphs are currently supposed to be separated by empty lines.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002784 * If 'what' is NUL we go to the next paragraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 * If 'what' is '{' or '}' we go to the next section.
2786 * If 'both' is TRUE also stop at '}'.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002787 * Return TRUE if the next paragraph or section was found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788 */
2789 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002790findpar(
2791 int *pincl, /* Return: TRUE if last char is to be included */
2792 int dir,
2793 long count,
2794 int what,
2795 int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796{
2797 linenr_T curr;
2798 int did_skip; /* TRUE after separating lines have been skipped */
2799 int first; /* TRUE on first line */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002800 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801#ifdef FEAT_FOLDING
2802 linenr_T fold_first; /* first line of a closed fold */
2803 linenr_T fold_last; /* last line of a closed fold */
2804 int fold_skipped; /* TRUE if a closed fold was skipped this
2805 iteration */
2806#endif
2807
2808 curr = curwin->w_cursor.lnum;
2809
2810 while (count--)
2811 {
2812 did_skip = FALSE;
2813 for (first = TRUE; ; first = FALSE)
2814 {
2815 if (*ml_get(curr) != NUL)
2816 did_skip = TRUE;
2817
2818#ifdef FEAT_FOLDING
2819 /* skip folded lines */
2820 fold_skipped = FALSE;
2821 if (first && hasFolding(curr, &fold_first, &fold_last))
2822 {
2823 curr = ((dir > 0) ? fold_last : fold_first) + dir;
2824 fold_skipped = TRUE;
2825 }
2826#endif
2827
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002828 /* POSIX has it's own ideas of what a paragraph boundary is and it
2829 * doesn't match historical Vi: It also stops at a "{" in the
2830 * first column and at an empty line. */
2831 if (!first && did_skip && (startPS(curr, what, both)
2832 || (posix && what == NUL && *ml_get(curr) == '{')))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 break;
2834
2835#ifdef FEAT_FOLDING
2836 if (fold_skipped)
2837 curr -= dir;
2838#endif
2839 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count)
2840 {
2841 if (count)
2842 return FALSE;
2843 curr -= dir;
2844 break;
2845 }
2846 }
2847 }
2848 setpcmark();
2849 if (both && *ml_get(curr) == '}') /* include line with '}' */
2850 ++curr;
2851 curwin->w_cursor.lnum = curr;
2852 if (curr == curbuf->b_ml.ml_line_count && what != '}')
2853 {
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02002854 char_u *line = ml_get(curr);
2855
2856 /* Put the cursor on the last character in the last line and make the
2857 * motion inclusive. */
2858 if ((curwin->w_cursor.col = (colnr_T)STRLEN(line)) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859 {
2860 --curwin->w_cursor.col;
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02002861#ifdef FEAT_MBYTE
2862 curwin->w_cursor.col -=
2863 (*mb_head_off)(line, line + curwin->w_cursor.col);
2864#endif
Bram Moolenaar92d640f2005-09-05 22:11:52 +00002865 *pincl = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 }
2867 }
2868 else
2869 curwin->w_cursor.col = 0;
2870 return TRUE;
2871}
2872
2873/*
2874 * check if the string 's' is a nroff macro that is in option 'opt'
2875 */
2876 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002877inmacro(char_u *opt, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878{
2879 char_u *macro;
2880
2881 for (macro = opt; macro[0]; ++macro)
2882 {
2883 /* Accept two characters in the option being equal to two characters
2884 * in the line. A space in the option matches with a space in the
2885 * line or the line having ended. */
2886 if ( (macro[0] == s[0]
2887 || (macro[0] == ' '
2888 && (s[0] == NUL || s[0] == ' ')))
2889 && (macro[1] == s[1]
2890 || ((macro[1] == NUL || macro[1] == ' ')
2891 && (s[0] == NUL || s[1] == NUL || s[1] == ' '))))
2892 break;
2893 ++macro;
2894 if (macro[0] == NUL)
2895 break;
2896 }
2897 return (macro[0] != NUL);
2898}
2899
2900/*
2901 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph.
2902 * If 'para' is '{' or '}' only check for sections.
2903 * If 'both' is TRUE also stop at '}'
2904 */
2905 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002906startPS(linenr_T lnum, int para, int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907{
2908 char_u *s;
2909
2910 s = ml_get(lnum);
2911 if (*s == para || *s == '\f' || (both && *s == '}'))
2912 return TRUE;
2913 if (*s == '.' && (inmacro(p_sections, s + 1) ||
2914 (!para && inmacro(p_para, s + 1))))
2915 return TRUE;
2916 return FALSE;
2917}
2918
2919/*
2920 * The following routines do the word searches performed by the 'w', 'W',
2921 * 'b', 'B', 'e', and 'E' commands.
2922 */
2923
2924/*
2925 * To perform these searches, characters are placed into one of three
2926 * classes, and transitions between classes determine word boundaries.
2927 *
2928 * The classes are:
2929 *
2930 * 0 - white space
2931 * 1 - punctuation
2932 * 2 or higher - keyword characters (letters, digits and underscore)
2933 */
2934
2935static int cls_bigword; /* TRUE for "W", "B" or "E" */
2936
2937/*
2938 * cls() - returns the class of character at curwin->w_cursor
2939 *
2940 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars
2941 * from class 2 and higher are reported as class 1 since only white space
2942 * boundaries are of interest.
2943 */
2944 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002945cls(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946{
2947 int c;
2948
2949 c = gchar_cursor();
2950#ifdef FEAT_FKMAP /* when 'akm' (Farsi mode), take care of Farsi blank */
2951 if (p_altkeymap && c == F_BLANK)
2952 return 0;
2953#endif
2954 if (c == ' ' || c == '\t' || c == NUL)
2955 return 0;
2956#ifdef FEAT_MBYTE
2957 if (enc_dbcs != 0 && c > 0xFF)
2958 {
2959 /* If cls_bigword, report multi-byte chars as class 1. */
2960 if (enc_dbcs == DBCS_KOR && cls_bigword)
2961 return 1;
2962
2963 /* process code leading/trailing bytes */
2964 return dbcs_class(((unsigned)c >> 8), (c & 0xFF));
2965 }
2966 if (enc_utf8)
2967 {
2968 c = utf_class(c);
2969 if (c != 0 && cls_bigword)
2970 return 1;
2971 return c;
2972 }
2973#endif
2974
2975 /* If cls_bigword is TRUE, report all non-blanks as class 1. */
2976 if (cls_bigword)
2977 return 1;
2978
2979 if (vim_iswordc(c))
2980 return 2;
2981 return 1;
2982}
2983
2984
2985/*
2986 * fwd_word(count, type, eol) - move forward one word
2987 *
2988 * Returns FAIL if the cursor was already at the end of the file.
2989 * If eol is TRUE, last word stops at end of line (for operators).
2990 */
2991 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002992fwd_word(
2993 long count,
2994 int bigword, /* "W", "E" or "B" */
2995 int eol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996{
2997 int sclass; /* starting class */
2998 int i;
2999 int last_line;
3000
3001#ifdef FEAT_VIRTUALEDIT
3002 curwin->w_cursor.coladd = 0;
3003#endif
3004 cls_bigword = bigword;
3005 while (--count >= 0)
3006 {
3007#ifdef FEAT_FOLDING
3008 /* When inside a range of folded lines, move to the last char of the
3009 * last line. */
3010 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3011 coladvance((colnr_T)MAXCOL);
3012#endif
3013 sclass = cls();
3014
3015 /*
3016 * We always move at least one character, unless on the last
3017 * character in the buffer.
3018 */
3019 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count);
3020 i = inc_cursor();
3021 if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */
3022 return FAIL;
Bram Moolenaar9a149792007-07-10 10:38:02 +00003023 if (i >= 1 && eol && count == 0) /* started at last char in line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 return OK;
3025
3026 /*
3027 * Go one char past end of current word (if any)
3028 */
3029 if (sclass != 0)
3030 while (cls() == sclass)
3031 {
3032 i = inc_cursor();
3033 if (i == -1 || (i >= 1 && eol && count == 0))
3034 return OK;
3035 }
3036
3037 /*
3038 * go to next non-white
3039 */
3040 while (cls() == 0)
3041 {
3042 /*
3043 * We'll stop if we land on a blank line
3044 */
3045 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL)
3046 break;
3047
3048 i = inc_cursor();
3049 if (i == -1 || (i >= 1 && eol && count == 0))
3050 return OK;
3051 }
3052 }
3053 return OK;
3054}
3055
3056/*
3057 * bck_word() - move backward 'count' words
3058 *
3059 * If stop is TRUE and we are already on the start of a word, move one less.
3060 *
3061 * Returns FAIL if top of the file was reached.
3062 */
3063 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003064bck_word(long count, int bigword, int stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065{
3066 int sclass; /* starting class */
3067
3068#ifdef FEAT_VIRTUALEDIT
3069 curwin->w_cursor.coladd = 0;
3070#endif
3071 cls_bigword = bigword;
3072 while (--count >= 0)
3073 {
3074#ifdef FEAT_FOLDING
3075 /* When inside a range of folded lines, move to the first char of the
3076 * first line. */
3077 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL))
3078 curwin->w_cursor.col = 0;
3079#endif
3080 sclass = cls();
3081 if (dec_cursor() == -1) /* started at start of file */
3082 return FAIL;
3083
3084 if (!stop || sclass == cls() || sclass == 0)
3085 {
3086 /*
3087 * Skip white space before the word.
3088 * Stop on an empty line.
3089 */
3090 while (cls() == 0)
3091 {
3092 if (curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003093 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 goto finished;
3095 if (dec_cursor() == -1) /* hit start of file, stop here */
3096 return OK;
3097 }
3098
3099 /*
3100 * Move backward to start of this word.
3101 */
3102 if (skip_chars(cls(), BACKWARD))
3103 return OK;
3104 }
3105
3106 inc_cursor(); /* overshot - forward one */
3107finished:
3108 stop = FALSE;
3109 }
3110 return OK;
3111}
3112
3113/*
3114 * end_word() - move to the end of the word
3115 *
3116 * There is an apparent bug in the 'e' motion of the real vi. At least on the
3117 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e'
3118 * motion crosses blank lines. When the real vi crosses a blank line in an
3119 * 'e' motion, the cursor is placed on the FIRST character of the next
3120 * non-blank line. The 'E' command, however, works correctly. Since this
3121 * appears to be a bug, I have not duplicated it here.
3122 *
3123 * Returns FAIL if end of the file was reached.
3124 *
3125 * If stop is TRUE and we are already on the end of a word, move one less.
3126 * If empty is TRUE stop on an empty line.
3127 */
3128 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003129end_word(
3130 long count,
3131 int bigword,
3132 int stop,
3133 int empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134{
3135 int sclass; /* starting class */
3136
3137#ifdef FEAT_VIRTUALEDIT
3138 curwin->w_cursor.coladd = 0;
3139#endif
3140 cls_bigword = bigword;
3141 while (--count >= 0)
3142 {
3143#ifdef FEAT_FOLDING
3144 /* When inside a range of folded lines, move to the last char of the
3145 * last line. */
3146 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3147 coladvance((colnr_T)MAXCOL);
3148#endif
3149 sclass = cls();
3150 if (inc_cursor() == -1)
3151 return FAIL;
3152
3153 /*
3154 * If we're in the middle of a word, we just have to move to the end
3155 * of it.
3156 */
3157 if (cls() == sclass && sclass != 0)
3158 {
3159 /*
3160 * Move forward to end of the current word
3161 */
3162 if (skip_chars(sclass, FORWARD))
3163 return FAIL;
3164 }
3165 else if (!stop || sclass == 0)
3166 {
3167 /*
3168 * We were at the end of a word. Go to the end of the next word.
3169 * First skip white space, if 'empty' is TRUE, stop at empty line.
3170 */
3171 while (cls() == 0)
3172 {
3173 if (empty && curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003174 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 goto finished;
3176 if (inc_cursor() == -1) /* hit end of file, stop here */
3177 return FAIL;
3178 }
3179
3180 /*
3181 * Move forward to the end of this word.
3182 */
3183 if (skip_chars(cls(), FORWARD))
3184 return FAIL;
3185 }
3186 dec_cursor(); /* overshot - one char backward */
3187finished:
3188 stop = FALSE; /* we move only one word less */
3189 }
3190 return OK;
3191}
3192
3193/*
3194 * Move back to the end of the word.
3195 *
3196 * Returns FAIL if start of the file was reached.
3197 */
3198 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003199bckend_word(
3200 long count,
3201 int bigword, /* TRUE for "B" */
3202 int eol) /* TRUE: stop at end of line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203{
3204 int sclass; /* starting class */
3205 int i;
3206
3207#ifdef FEAT_VIRTUALEDIT
3208 curwin->w_cursor.coladd = 0;
3209#endif
3210 cls_bigword = bigword;
3211 while (--count >= 0)
3212 {
3213 sclass = cls();
3214 if ((i = dec_cursor()) == -1)
3215 return FAIL;
3216 if (eol && i == 1)
3217 return OK;
3218
3219 /*
3220 * Move backward to before the start of this word.
3221 */
3222 if (sclass != 0)
3223 {
3224 while (cls() == sclass)
3225 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3226 return OK;
3227 }
3228
3229 /*
3230 * Move backward to end of the previous word
3231 */
3232 while (cls() == 0)
3233 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003234 if (curwin->w_cursor.col == 0 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235 break;
3236 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3237 return OK;
3238 }
3239 }
3240 return OK;
3241}
3242
3243/*
3244 * Skip a row of characters of the same class.
3245 * Return TRUE when end-of-file reached, FALSE otherwise.
3246 */
3247 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003248skip_chars(int cclass, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249{
3250 while (cls() == cclass)
3251 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1)
3252 return TRUE;
3253 return FALSE;
3254}
3255
3256#ifdef FEAT_TEXTOBJ
3257/*
3258 * Go back to the start of the word or the start of white space
3259 */
3260 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003261back_in_line(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262{
3263 int sclass; /* starting class */
3264
3265 sclass = cls();
3266 for (;;)
3267 {
3268 if (curwin->w_cursor.col == 0) /* stop at start of line */
3269 break;
3270 dec_cursor();
3271 if (cls() != sclass) /* stop at start of word */
3272 {
3273 inc_cursor();
3274 break;
3275 }
3276 }
3277}
3278
3279 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003280find_first_blank(pos_T *posp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281{
3282 int c;
3283
3284 while (decl(posp) != -1)
3285 {
3286 c = gchar_pos(posp);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003287 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288 {
3289 incl(posp);
3290 break;
3291 }
3292 }
3293}
3294
3295/*
3296 * Skip count/2 sentences and count/2 separating white spaces.
3297 */
3298 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003299findsent_forward(
3300 long count,
3301 int at_start_sent) /* cursor is at start of sentence */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302{
3303 while (count--)
3304 {
3305 findsent(FORWARD, 1L);
3306 if (at_start_sent)
3307 find_first_blank(&curwin->w_cursor);
3308 if (count == 0 || at_start_sent)
3309 decl(&curwin->w_cursor);
3310 at_start_sent = !at_start_sent;
3311 }
3312}
3313
3314/*
3315 * Find word under cursor, cursor at end.
3316 * Used while an operator is pending, and in Visual mode.
3317 */
3318 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003319current_word(
3320 oparg_T *oap,
3321 long count,
3322 int include, /* TRUE: include word and white space */
3323 int bigword) /* FALSE == word, TRUE == WORD */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324{
3325 pos_T start_pos;
3326 pos_T pos;
3327 int inclusive = TRUE;
3328 int include_white = FALSE;
3329
3330 cls_bigword = bigword;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003331 CLEAR_POS(&start_pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333 /* Correct cursor when 'selection' is exclusive */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003334 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335 dec_cursor();
3336
3337 /*
3338 * When Visual mode is not active, or when the VIsual area is only one
3339 * character, select the word and/or white space under the cursor.
3340 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003341 if (!VIsual_active || EQUAL_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342 {
3343 /*
3344 * Go to start of current word or white space.
3345 */
3346 back_in_line();
3347 start_pos = curwin->w_cursor;
3348
3349 /*
3350 * If the start is on white space, and white space should be included
3351 * (" word"), or start is not on white space, and white space should
3352 * not be included ("word"), find end of word.
3353 */
3354 if ((cls() == 0) == include)
3355 {
3356 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3357 return FAIL;
3358 }
3359 else
3360 {
3361 /*
3362 * If the start is not on white space, and white space should be
3363 * included ("word "), or start is on white space and white
3364 * space should not be included (" "), find start of word.
3365 * If we end up in the first column of the next line (single char
3366 * word) back up to end of the line.
3367 */
3368 fwd_word(1L, bigword, TRUE);
3369 if (curwin->w_cursor.col == 0)
3370 decl(&curwin->w_cursor);
3371 else
3372 oneleft();
3373
3374 if (include)
3375 include_white = TRUE;
3376 }
3377
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 if (VIsual_active)
3379 {
3380 /* should do something when inclusive == FALSE ! */
3381 VIsual = start_pos;
3382 redraw_curbuf_later(INVERTED); /* update the inversion */
3383 }
3384 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 {
3386 oap->start = start_pos;
3387 oap->motion_type = MCHAR;
3388 }
3389 --count;
3390 }
3391
3392 /*
3393 * When count is still > 0, extend with more objects.
3394 */
3395 while (count > 0)
3396 {
3397 inclusive = TRUE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003398 if (VIsual_active && LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 {
3400 /*
3401 * In Visual mode, with cursor at start: move cursor back.
3402 */
3403 if (decl(&curwin->w_cursor) == -1)
3404 return FAIL;
3405 if (include != (cls() != 0))
3406 {
3407 if (bck_word(1L, bigword, TRUE) == FAIL)
3408 return FAIL;
3409 }
3410 else
3411 {
3412 if (bckend_word(1L, bigword, TRUE) == FAIL)
3413 return FAIL;
3414 (void)incl(&curwin->w_cursor);
3415 }
3416 }
3417 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 {
3419 /*
3420 * Move cursor forward one word and/or white area.
3421 */
3422 if (incl(&curwin->w_cursor) == -1)
3423 return FAIL;
3424 if (include != (cls() == 0))
3425 {
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003426 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427 return FAIL;
3428 /*
3429 * If end is just past a new-line, we don't want to include
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003430 * the first character on the line.
3431 * Put cursor on last char of white.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 */
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003433 if (oneleft() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 inclusive = FALSE;
3435 }
3436 else
3437 {
3438 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3439 return FAIL;
3440 }
3441 }
3442 --count;
3443 }
3444
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003445 if (include_white && (cls() != 0
3446 || (curwin->w_cursor.col == 0 && !inclusive)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 {
3448 /*
3449 * If we don't include white space at the end, move the start
3450 * to include some white space there. This makes "daw" work
3451 * better on the last word in a sentence (and "2daw" on last-but-one
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003452 * word). Also when "2daw" deletes "word." at the end of the line
3453 * (cursor is at start of next line).
3454 * But don't delete white space at start of line (indent).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 */
3456 pos = curwin->w_cursor; /* save cursor position */
3457 curwin->w_cursor = start_pos;
3458 if (oneleft() == OK)
3459 {
3460 back_in_line();
3461 if (cls() == 0 && curwin->w_cursor.col > 0)
3462 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 if (VIsual_active)
3464 VIsual = curwin->w_cursor;
3465 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466 oap->start = curwin->w_cursor;
3467 }
3468 }
3469 curwin->w_cursor = pos; /* put cursor back at end */
3470 }
3471
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 if (VIsual_active)
3473 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003474 if (*p_sel == 'e' && inclusive && LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475 inc_cursor();
3476 if (VIsual_mode == 'V')
3477 {
3478 VIsual_mode = 'v';
3479 redraw_cmdline = TRUE; /* show mode later */
3480 }
3481 }
3482 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 oap->inclusive = inclusive;
3484
3485 return OK;
3486}
3487
3488/*
3489 * Find sentence(s) under the cursor, cursor at end.
3490 * When Visual active, extend it by one or more sentences.
3491 */
3492 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003493current_sent(oparg_T *oap, long count, int include)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494{
3495 pos_T start_pos;
3496 pos_T pos;
3497 int start_blank;
3498 int c;
3499 int at_start_sent;
3500 long ncount;
3501
3502 start_pos = curwin->w_cursor;
3503 pos = start_pos;
3504 findsent(FORWARD, 1L); /* Find start of next sentence. */
3505
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003507 * When the Visual area is bigger than one character: Extend it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003509 if (VIsual_active && !EQUAL_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510 {
3511extend:
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003512 if (LT_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 {
3514 /*
3515 * Cursor at start of Visual area.
3516 * Find out where we are:
3517 * - in the white space before a sentence
3518 * - in a sentence or just after it
3519 * - at the start of a sentence
3520 */
3521 at_start_sent = TRUE;
3522 decl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003523 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524 {
3525 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003526 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527 {
3528 at_start_sent = FALSE;
3529 break;
3530 }
3531 incl(&pos);
3532 }
3533 if (!at_start_sent)
3534 {
3535 findsent(BACKWARD, 1L);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003536 if (EQUAL_POS(curwin->w_cursor, start_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 at_start_sent = TRUE; /* exactly at start of sentence */
3538 else
3539 /* inside a sentence, go to its end (start of next) */
3540 findsent(FORWARD, 1L);
3541 }
3542 if (include) /* "as" gets twice as much as "is" */
3543 count *= 2;
3544 while (count--)
3545 {
3546 if (at_start_sent)
3547 find_first_blank(&curwin->w_cursor);
3548 c = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01003549 if (!at_start_sent || (!include && !VIM_ISWHITE(c)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 findsent(BACKWARD, 1L);
3551 at_start_sent = !at_start_sent;
3552 }
3553 }
3554 else
3555 {
3556 /*
3557 * Cursor at end of Visual area.
3558 * Find out where we are:
3559 * - just before a sentence
3560 * - just before or in the white space before a sentence
3561 * - in a sentence
3562 */
3563 incl(&pos);
3564 at_start_sent = TRUE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003565 /* not just before a sentence */
3566 if (!EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 {
3568 at_start_sent = FALSE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003569 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570 {
3571 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003572 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 {
3574 at_start_sent = TRUE;
3575 break;
3576 }
3577 incl(&pos);
3578 }
3579 if (at_start_sent) /* in the sentence */
3580 findsent(BACKWARD, 1L);
3581 else /* in/before white before a sentence */
3582 curwin->w_cursor = start_pos;
3583 }
3584
3585 if (include) /* "as" gets twice as much as "is" */
3586 count *= 2;
3587 findsent_forward(count, at_start_sent);
3588 if (*p_sel == 'e')
3589 ++curwin->w_cursor.col;
3590 }
3591 return OK;
3592 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593
3594 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003595 * If the cursor started on a blank, check if it is just before the start
3596 * of the next sentence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 */
Bram Moolenaar1c465442017-03-12 20:10:05 +01003598 while (c = gchar_pos(&pos), VIM_ISWHITE(c)) /* VIM_ISWHITE() is a macro */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 incl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003600 if (EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 {
3602 start_blank = TRUE;
3603 find_first_blank(&start_pos); /* go back to first blank */
3604 }
3605 else
3606 {
3607 start_blank = FALSE;
3608 findsent(BACKWARD, 1L);
3609 start_pos = curwin->w_cursor;
3610 }
3611 if (include)
3612 ncount = count * 2;
3613 else
3614 {
3615 ncount = count;
3616 if (start_blank)
3617 --ncount;
3618 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00003619 if (ncount > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 findsent_forward(ncount, TRUE);
3621 else
3622 decl(&curwin->w_cursor);
3623
3624 if (include)
3625 {
3626 /*
3627 * If the blank in front of the sentence is included, exclude the
3628 * blanks at the end of the sentence, go back to the first blank.
3629 * If there are no trailing blanks, try to include leading blanks.
3630 */
3631 if (start_blank)
3632 {
3633 find_first_blank(&curwin->w_cursor);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003634 c = gchar_pos(&curwin->w_cursor); /* VIM_ISWHITE() is a macro */
3635 if (VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 decl(&curwin->w_cursor);
3637 }
Bram Moolenaar1c465442017-03-12 20:10:05 +01003638 else if (c = gchar_cursor(), !VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639 find_first_blank(&start_pos);
3640 }
3641
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 if (VIsual_active)
3643 {
Bram Moolenaar641e2862012-07-25 15:06:34 +02003644 /* Avoid getting stuck with "is" on a single space before a sentence. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003645 if (EQUAL_POS(start_pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 goto extend;
3647 if (*p_sel == 'e')
3648 ++curwin->w_cursor.col;
3649 VIsual = start_pos;
3650 VIsual_mode = 'v';
Bram Moolenaar779f2fc2016-09-01 20:58:24 +02003651 redraw_cmdline = TRUE; /* show mode later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 redraw_curbuf_later(INVERTED); /* update the inversion */
3653 }
3654 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 {
3656 /* include a newline after the sentence, if there is one */
3657 if (incl(&curwin->w_cursor) == -1)
3658 oap->inclusive = TRUE;
3659 else
3660 oap->inclusive = FALSE;
3661 oap->start = start_pos;
3662 oap->motion_type = MCHAR;
3663 }
3664 return OK;
3665}
3666
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003667/*
3668 * Find block under the cursor, cursor at end.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003669 * "what" and "other" are two matching parenthesis/brace/etc.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003670 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003672current_block(
3673 oparg_T *oap,
3674 long count,
3675 int include, /* TRUE == include white space */
3676 int what, /* '(', '{', etc. */
3677 int other) /* ')', '}', etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678{
3679 pos_T old_pos;
3680 pos_T *pos = NULL;
3681 pos_T start_pos;
3682 pos_T *end_pos;
3683 pos_T old_start, old_end;
3684 char_u *save_cpo;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003685 int sol = FALSE; /* '{' at start of line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686
3687 old_pos = curwin->w_cursor;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003688 old_end = curwin->w_cursor; /* remember where we started */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 old_start = old_end;
3690
3691 /*
3692 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive.
3693 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003694 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 {
3696 setpcmark();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003697 if (what == '{') /* ignore indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 while (inindent(1))
3699 if (inc_cursor() != 0)
3700 break;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003701 if (gchar_cursor() == what)
3702 /* cursor on '(' or '{', move cursor just after it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 ++curwin->w_cursor.col;
3704 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003705 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 {
3707 old_start = VIsual;
3708 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3709 }
3710 else
3711 old_end = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712
3713 /*
3714 * Search backwards for unclosed '(', '{', etc..
3715 * Put this position in start_pos.
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003716 * Ignore quotes here. Keep the "M" flag in 'cpo', as that is what the
3717 * user wants.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 */
3719 save_cpo = p_cpo;
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003720 p_cpo = (char_u *)(vim_strchr(p_cpo, CPO_MATCHBSL) != NULL ? "%M" : "%");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 while (count-- > 0)
3722 {
3723 if ((pos = findmatch(NULL, what)) == NULL)
3724 break;
3725 curwin->w_cursor = *pos;
3726 start_pos = *pos; /* the findmatch for end_pos will overwrite *pos */
3727 }
3728 p_cpo = save_cpo;
3729
3730 /*
3731 * Search for matching ')', '}', etc.
3732 * Put this position in curwin->w_cursor.
3733 */
3734 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL)
3735 {
3736 curwin->w_cursor = old_pos;
3737 return FAIL;
3738 }
3739 curwin->w_cursor = *end_pos;
3740
3741 /*
3742 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE.
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003743 * If the ending '}', ')' or ']' is only preceded by indent, skip that
3744 * indent. But only if the resulting area is not smaller than what we
3745 * started with.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 */
3747 while (!include)
3748 {
3749 incl(&start_pos);
3750 sol = (curwin->w_cursor.col == 0);
3751 decl(&curwin->w_cursor);
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003752 while (inindent(1))
3753 {
3754 sol = TRUE;
3755 if (decl(&curwin->w_cursor) != 0)
3756 break;
3757 }
3758
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 /*
3760 * In Visual mode, when the resulting area is not bigger than what we
3761 * started with, extend it to the next block, and then exclude again.
3762 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003763 if (!LT_POS(start_pos, old_start) && !LT_POS(old_end, curwin->w_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 && VIsual_active)
3765 {
3766 curwin->w_cursor = old_start;
3767 decl(&curwin->w_cursor);
3768 if ((pos = findmatch(NULL, what)) == NULL)
3769 {
3770 curwin->w_cursor = old_pos;
3771 return FAIL;
3772 }
3773 start_pos = *pos;
3774 curwin->w_cursor = *pos;
3775 if ((end_pos = findmatch(NULL, other)) == NULL)
3776 {
3777 curwin->w_cursor = old_pos;
3778 return FAIL;
3779 }
3780 curwin->w_cursor = *end_pos;
3781 }
3782 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 break;
3784 }
3785
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 if (VIsual_active)
3787 {
3788 if (*p_sel == 'e')
Bram Moolenaar8667d662015-09-01 18:27:49 +02003789 inc(&curwin->w_cursor);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003790 if (sol && gchar_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791 inc(&curwin->w_cursor); /* include the line break */
3792 VIsual = start_pos;
3793 VIsual_mode = 'v';
3794 redraw_curbuf_later(INVERTED); /* update the inversion */
3795 showmode();
3796 }
3797 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 {
3799 oap->start = start_pos;
3800 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003801 oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 if (sol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803 incl(&curwin->w_cursor);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003804 else if (LTOREQ_POS(start_pos, curwin->w_cursor))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003805 /* Include the character under the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 oap->inclusive = TRUE;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003807 else
3808 /* End is before the start (no text in between <>, [], etc.): don't
3809 * operate on any text. */
3810 curwin->w_cursor = start_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 }
3812
3813 return OK;
3814}
3815
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003816static int in_html_tag(int);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003817
3818/*
3819 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>".
3820 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>".
3821 */
3822 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003823in_html_tag(
3824 int end_tag)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003825{
3826 char_u *line = ml_get_curline();
3827 char_u *p;
3828 int c;
3829 int lc = NUL;
3830 pos_T pos;
3831
3832#ifdef FEAT_MBYTE
3833 if (enc_dbcs)
3834 {
3835 char_u *lp = NULL;
3836
3837 /* We search forward until the cursor, because searching backwards is
3838 * very slow for DBCS encodings. */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003839 for (p = line; p < line + curwin->w_cursor.col; MB_PTR_ADV(p))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003840 if (*p == '>' || *p == '<')
3841 {
3842 lc = *p;
3843 lp = p;
3844 }
3845 if (*p != '<') /* check for '<' under cursor */
3846 {
3847 if (lc != '<')
3848 return FALSE;
3849 p = lp;
3850 }
3851 }
3852 else
3853#endif
3854 {
3855 for (p = line + curwin->w_cursor.col; p > line; )
3856 {
3857 if (*p == '<') /* find '<' under/before cursor */
3858 break;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003859 MB_PTR_BACK(line, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003860 if (*p == '>') /* find '>' before cursor */
3861 break;
3862 }
3863 if (*p != '<')
3864 return FALSE;
3865 }
3866
3867 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003868 pos.col = (colnr_T)(p - line);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003869
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003870 MB_PTR_ADV(p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003871 if (end_tag)
3872 /* check that there is a '/' after the '<' */
3873 return *p == '/';
3874
3875 /* check that there is no '/' after the '<' */
3876 if (*p == '/')
3877 return FALSE;
3878
3879 /* check that the matching '>' is not preceded by '/' */
3880 for (;;)
3881 {
3882 if (inc(&pos) < 0)
3883 return FALSE;
3884 c = *ml_get_pos(&pos);
3885 if (c == '>')
3886 break;
3887 lc = c;
3888 }
3889 return lc != '/';
3890}
3891
3892/*
3893 * Find tag block under the cursor, cursor at end.
3894 */
3895 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003896current_tagblock(
3897 oparg_T *oap,
3898 long count_arg,
3899 int include) /* TRUE == include white space */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003900{
3901 long count = count_arg;
3902 long n;
3903 pos_T old_pos;
3904 pos_T start_pos;
3905 pos_T end_pos;
3906 pos_T old_start, old_end;
3907 char_u *spat, *epat;
3908 char_u *p;
3909 char_u *cp;
3910 int len;
3911 int r;
3912 int do_include = include;
3913 int save_p_ws = p_ws;
3914 int retval = FAIL;
Bram Moolenaarb6c27352015-03-05 19:57:49 +01003915 int is_inclusive = TRUE;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003916
3917 p_ws = FALSE;
3918
3919 old_pos = curwin->w_cursor;
3920 old_end = curwin->w_cursor; /* remember where we started */
3921 old_start = old_end;
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003922 if (!VIsual_active || *p_sel == 'e')
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003923 decl(&old_end); /* old_end is inclusive */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003924
3925 /*
Bram Moolenaar45360022005-07-21 21:08:21 +00003926 * If we start on "<aaa>" select that block.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003927 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003928 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003929 {
3930 setpcmark();
3931
3932 /* ignore indent */
3933 while (inindent(1))
3934 if (inc_cursor() != 0)
3935 break;
3936
3937 if (in_html_tag(FALSE))
3938 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003939 /* cursor on start tag, move to its '>' */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003940 while (*ml_get_cursor() != '>')
3941 if (inc_cursor() < 0)
3942 break;
3943 }
3944 else if (in_html_tag(TRUE))
3945 {
3946 /* cursor on end tag, move to just before it */
3947 while (*ml_get_cursor() != '<')
3948 if (dec_cursor() < 0)
3949 break;
3950 dec_cursor();
3951 old_end = curwin->w_cursor;
3952 }
3953 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003954 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003955 {
3956 old_start = VIsual;
3957 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3958 }
3959 else
3960 old_end = VIsual;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003961
3962again:
3963 /*
3964 * Search backwards for unclosed "<aaa>".
3965 * Put this position in start_pos.
3966 */
3967 for (n = 0; n < count; ++n)
3968 {
Bram Moolenaar45360022005-07-21 21:08:21 +00003969 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)",
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003970 (char_u *)"",
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003971 (char_u *)"</[^>]*>", BACKWARD, (char_u *)"", 0,
Bram Moolenaar76929292008-01-06 19:07:36 +00003972 NULL, (linenr_T)0, 0L) <= 0)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003973 {
3974 curwin->w_cursor = old_pos;
3975 goto theend;
3976 }
3977 }
3978 start_pos = curwin->w_cursor;
3979
3980 /*
3981 * Search for matching "</aaa>". First isolate the "aaa".
3982 */
3983 inc_cursor();
3984 p = ml_get_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01003985 for (cp = p; *cp != NUL && *cp != '>' && !VIM_ISWHITE(*cp); MB_PTR_ADV(cp))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003986 ;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003987 len = (int)(cp - p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003988 if (len == 0)
3989 {
3990 curwin->w_cursor = old_pos;
3991 goto theend;
3992 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01003993 spat = alloc(len + 31);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003994 epat = alloc(len + 9);
3995 if (spat == NULL || epat == NULL)
3996 {
3997 vim_free(spat);
3998 vim_free(epat);
3999 curwin->w_cursor = old_pos;
4000 goto theend;
4001 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004002 sprintf((char *)spat, "<%.*s\\>\\%%(\\s\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004003 sprintf((char *)epat, "</%.*s>\\c", len, p);
4004
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004005 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, (char_u *)"",
Bram Moolenaar76929292008-01-06 19:07:36 +00004006 0, NULL, (linenr_T)0, 0L);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004007
4008 vim_free(spat);
4009 vim_free(epat);
4010
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004011 if (r < 1 || LT_POS(curwin->w_cursor, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004012 {
4013 /* Can't find other end or it's before the previous end. Could be a
4014 * HTML tag that doesn't have a matching end. Search backwards for
4015 * another starting tag. */
4016 count = 1;
4017 curwin->w_cursor = start_pos;
4018 goto again;
4019 }
4020
4021 if (do_include || r < 1)
4022 {
4023 /* Include up to the '>'. */
4024 while (*ml_get_cursor() != '>')
4025 if (inc_cursor() < 0)
4026 break;
4027 }
4028 else
4029 {
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004030 char_u *c = ml_get_cursor();
4031
4032 /* Exclude the '<' of the end tag.
4033 * If the closing tag is on new line, do not decrement cursor, but
4034 * make operation exclusive, so that the linefeed will be selected */
4035 if (*c == '<' && !VIsual_active && curwin->w_cursor.col == 0)
4036 /* do not decrement cursor */
4037 is_inclusive = FALSE;
4038 else if (*c == '<')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004039 dec_cursor();
4040 }
4041 end_pos = curwin->w_cursor;
4042
4043 if (!do_include)
4044 {
4045 /* Exclude the start tag. */
4046 curwin->w_cursor = start_pos;
4047 while (inc_cursor() >= 0)
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004048 if (*ml_get_cursor() == '>')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004049 {
4050 inc_cursor();
4051 start_pos = curwin->w_cursor;
4052 break;
4053 }
4054 curwin->w_cursor = end_pos;
4055
Bram Moolenaar45360022005-07-21 21:08:21 +00004056 /* If we now have the same text as before reset "do_include" and try
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004057 * again. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004058 if (EQUAL_POS(start_pos, old_start) && EQUAL_POS(end_pos, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004059 {
4060 do_include = TRUE;
4061 curwin->w_cursor = old_start;
4062 count = count_arg;
4063 goto again;
4064 }
4065 }
4066
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004067 if (VIsual_active)
4068 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004069 /* If the end is before the start there is no text between tags, select
4070 * the char under the cursor. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004071 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004072 curwin->w_cursor = start_pos;
4073 else if (*p_sel == 'e')
Bram Moolenaar8340dd92014-12-13 20:11:33 +01004074 inc_cursor();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004075 VIsual = start_pos;
4076 VIsual_mode = 'v';
4077 redraw_curbuf_later(INVERTED); /* update the inversion */
4078 showmode();
4079 }
4080 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004081 {
4082 oap->start = start_pos;
4083 oap->motion_type = MCHAR;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004084 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004085 {
4086 /* End is before the start: there is no text between tags; operate
4087 * on an empty area. */
4088 curwin->w_cursor = start_pos;
4089 oap->inclusive = FALSE;
4090 }
4091 else
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004092 oap->inclusive = is_inclusive;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004093 }
4094 retval = OK;
4095
4096theend:
4097 p_ws = save_p_ws;
4098 return retval;
4099}
4100
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004102current_par(
4103 oparg_T *oap,
4104 long count,
4105 int include, /* TRUE == include white space */
4106 int type) /* 'p' for paragraph, 'S' for section */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107{
4108 linenr_T start_lnum;
4109 linenr_T end_lnum;
4110 int white_in_front;
4111 int dir;
4112 int start_is_white;
4113 int prev_start_is_white;
4114 int retval = OK;
4115 int do_white = FALSE;
4116 int t;
4117 int i;
4118
4119 if (type == 'S') /* not implemented yet */
4120 return FAIL;
4121
4122 start_lnum = curwin->w_cursor.lnum;
4123
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 /*
4125 * When visual area is more than one line: extend it.
4126 */
4127 if (VIsual_active && start_lnum != VIsual.lnum)
4128 {
4129extend:
4130 if (start_lnum < VIsual.lnum)
4131 dir = BACKWARD;
4132 else
4133 dir = FORWARD;
4134 for (i = count; --i >= 0; )
4135 {
4136 if (start_lnum ==
4137 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
4138 {
4139 retval = FAIL;
4140 break;
4141 }
4142
4143 prev_start_is_white = -1;
4144 for (t = 0; t < 2; ++t)
4145 {
4146 start_lnum += dir;
4147 start_is_white = linewhite(start_lnum);
4148 if (prev_start_is_white == start_is_white)
4149 {
4150 start_lnum -= dir;
4151 break;
4152 }
4153 for (;;)
4154 {
4155 if (start_lnum == (dir == BACKWARD
4156 ? 1 : curbuf->b_ml.ml_line_count))
4157 break;
4158 if (start_is_white != linewhite(start_lnum + dir)
4159 || (!start_is_white
4160 && startPS(start_lnum + (dir > 0
4161 ? 1 : 0), 0, 0)))
4162 break;
4163 start_lnum += dir;
4164 }
4165 if (!include)
4166 break;
4167 if (start_lnum == (dir == BACKWARD
4168 ? 1 : curbuf->b_ml.ml_line_count))
4169 break;
4170 prev_start_is_white = start_is_white;
4171 }
4172 }
4173 curwin->w_cursor.lnum = start_lnum;
4174 curwin->w_cursor.col = 0;
4175 return retval;
4176 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177
4178 /*
4179 * First move back to the start_lnum of the paragraph or white lines
4180 */
4181 white_in_front = linewhite(start_lnum);
4182 while (start_lnum > 1)
4183 {
4184 if (white_in_front) /* stop at first white line */
4185 {
4186 if (!linewhite(start_lnum - 1))
4187 break;
4188 }
4189 else /* stop at first non-white line of start of paragraph */
4190 {
4191 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
4192 break;
4193 }
4194 --start_lnum;
4195 }
4196
4197 /*
4198 * Move past the end of any white lines.
4199 */
4200 end_lnum = start_lnum;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004201 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
4202 ++end_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203
4204 --end_lnum;
4205 i = count;
4206 if (!include && white_in_front)
4207 --i;
4208 while (i--)
4209 {
4210 if (end_lnum == curbuf->b_ml.ml_line_count)
4211 return FAIL;
4212
4213 if (!include)
4214 do_white = linewhite(end_lnum + 1);
4215
4216 if (include || !do_white)
4217 {
4218 ++end_lnum;
4219 /*
4220 * skip to end of paragraph
4221 */
4222 while (end_lnum < curbuf->b_ml.ml_line_count
4223 && !linewhite(end_lnum + 1)
4224 && !startPS(end_lnum + 1, 0, 0))
4225 ++end_lnum;
4226 }
4227
4228 if (i == 0 && white_in_front && include)
4229 break;
4230
4231 /*
4232 * skip to end of white lines after paragraph
4233 */
4234 if (include || do_white)
4235 while (end_lnum < curbuf->b_ml.ml_line_count
4236 && linewhite(end_lnum + 1))
4237 ++end_lnum;
4238 }
4239
4240 /*
4241 * If there are no empty lines at the end, try to find some empty lines at
4242 * the start (unless that has been done already).
4243 */
4244 if (!white_in_front && !linewhite(end_lnum) && include)
4245 while (start_lnum > 1 && linewhite(start_lnum - 1))
4246 --start_lnum;
4247
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248 if (VIsual_active)
4249 {
4250 /* Problem: when doing "Vipipip" nothing happens in a single white
4251 * line, we get stuck there. Trap this here. */
4252 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4253 goto extend;
Bram Moolenaar84b2a382017-02-17 11:40:00 +01004254 if (VIsual.lnum != start_lnum)
4255 {
4256 VIsual.lnum = start_lnum;
4257 VIsual.col = 0;
4258 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 VIsual_mode = 'V';
4260 redraw_curbuf_later(INVERTED); /* update the inversion */
4261 showmode();
4262 }
4263 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264 {
4265 oap->start.lnum = start_lnum;
4266 oap->start.col = 0;
4267 oap->motion_type = MLINE;
4268 }
4269 curwin->w_cursor.lnum = end_lnum;
4270 curwin->w_cursor.col = 0;
4271
4272 return OK;
4273}
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004274
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01004275static int find_next_quote(char_u *top_ptr, int col, int quotechar, char_u *escape);
4276static int find_prev_quote(char_u *line, int col_start, int quotechar, char_u *escape);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004277
4278/*
4279 * Search quote char from string line[col].
4280 * Quote character escaped by one of the characters in "escape" is not counted
4281 * as a quote.
4282 * Returns column number of "quotechar" or -1 when not found.
4283 */
4284 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004285find_next_quote(
4286 char_u *line,
4287 int col,
4288 int quotechar,
4289 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004290{
4291 int c;
4292
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004293 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004294 {
4295 c = line[col];
4296 if (c == NUL)
4297 return -1;
4298 else if (escape != NULL && vim_strchr(escape, c))
4299 ++col;
4300 else if (c == quotechar)
4301 break;
4302#ifdef FEAT_MBYTE
4303 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004304 col += (*mb_ptr2len)(line + col);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004305 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004307 ++col;
4308 }
4309 return col;
4310}
4311
4312/*
4313 * Search backwards in "line" from column "col_start" to find "quotechar".
4314 * Quote character escaped by one of the characters in "escape" is not counted
4315 * as a quote.
4316 * Return the found column or zero.
4317 */
4318 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004319find_prev_quote(
4320 char_u *line,
4321 int col_start,
4322 int quotechar,
4323 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004324{
4325 int n;
4326
4327 while (col_start > 0)
4328 {
4329 --col_start;
4330#ifdef FEAT_MBYTE
4331 col_start -= (*mb_head_off)(line, line + col_start);
4332#endif
4333 n = 0;
4334 if (escape != NULL)
4335 while (col_start - n > 0 && vim_strchr(escape,
4336 line[col_start - n - 1]) != NULL)
4337 ++n;
4338 if (n & 1)
4339 col_start -= n; /* uneven number of escape chars, skip it */
4340 else if (line[col_start] == quotechar)
4341 break;
4342 }
4343 return col_start;
4344}
4345
4346/*
4347 * Find quote under the cursor, cursor at end.
4348 * Returns TRUE if found, else FALSE.
4349 */
4350 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004351current_quote(
4352 oparg_T *oap,
4353 long count,
4354 int include, /* TRUE == include quote char */
4355 int quotechar) /* Quote character */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004356{
4357 char_u *line = ml_get_curline();
4358 int col_end;
4359 int col_start = curwin->w_cursor.col;
4360 int inclusive = FALSE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004361 int vis_empty = TRUE; /* Visual selection <= 1 char */
4362 int vis_bef_curs = FALSE; /* Visual starts before cursor */
Bram Moolenaarab194812005-09-14 21:40:12 +00004363 int inside_quotes = FALSE; /* Looks like "i'" done before */
4364 int selected_quote = FALSE; /* Has quote inside selection */
4365 int i;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004366
4367 /* Correct cursor when 'selection' is exclusive */
4368 if (VIsual_active)
4369 {
Bram Moolenaar46522af2017-02-18 23:12:01 +01004370 /* this only works within one line */
4371 if (VIsual.lnum != curwin->w_cursor.lnum)
4372 return FALSE;
4373
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004374 vis_bef_curs = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004375 if (*p_sel == 'e' && vis_bef_curs)
4376 dec_cursor();
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004377 vis_empty = EQUAL_POS(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004378 }
Bram Moolenaarab194812005-09-14 21:40:12 +00004379
4380 if (!vis_empty)
4381 {
4382 /* Check if the existing selection exactly spans the text inside
4383 * quotes. */
4384 if (vis_bef_curs)
4385 {
4386 inside_quotes = VIsual.col > 0
4387 && line[VIsual.col - 1] == quotechar
4388 && line[curwin->w_cursor.col] != NUL
4389 && line[curwin->w_cursor.col + 1] == quotechar;
4390 i = VIsual.col;
4391 col_end = curwin->w_cursor.col;
4392 }
4393 else
4394 {
4395 inside_quotes = curwin->w_cursor.col > 0
4396 && line[curwin->w_cursor.col - 1] == quotechar
4397 && line[VIsual.col] != NUL
4398 && line[VIsual.col + 1] == quotechar;
4399 i = curwin->w_cursor.col;
4400 col_end = VIsual.col;
4401 }
4402
4403 /* Find out if we have a quote in the selection. */
4404 while (i <= col_end)
4405 if (line[i++] == quotechar)
4406 {
4407 selected_quote = TRUE;
4408 break;
4409 }
4410 }
4411
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004412 if (!vis_empty && line[col_start] == quotechar)
4413 {
4414 /* Already selecting something and on a quote character. Find the
4415 * next quoted string. */
4416 if (vis_bef_curs)
4417 {
4418 /* Assume we are on a closing quote: move to after the next
4419 * opening quote. */
4420 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4421 if (col_start < 0)
4422 return FALSE;
4423 col_end = find_next_quote(line, col_start + 1, quotechar,
4424 curbuf->b_p_qe);
4425 if (col_end < 0)
4426 {
4427 /* We were on a starting quote perhaps? */
4428 col_end = col_start;
4429 col_start = curwin->w_cursor.col;
4430 }
4431 }
4432 else
4433 {
4434 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4435 if (line[col_end] != quotechar)
4436 return FALSE;
4437 col_start = find_prev_quote(line, col_end, quotechar,
4438 curbuf->b_p_qe);
4439 if (line[col_start] != quotechar)
4440 {
4441 /* We were on an ending quote perhaps? */
4442 col_start = col_end;
4443 col_end = curwin->w_cursor.col;
4444 }
4445 }
4446 }
4447 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004448
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004449 if (line[col_start] == quotechar || !vis_empty)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004450 {
4451 int first_col = col_start;
4452
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004453 if (!vis_empty)
4454 {
4455 if (vis_bef_curs)
4456 first_col = find_next_quote(line, col_start, quotechar, NULL);
4457 else
4458 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4459 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004460
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004461 /* The cursor is on a quote, we don't know if it's the opening or
4462 * closing quote. Search from the start of the line to find out.
4463 * Also do this when there is a Visual area, a' may leave the cursor
4464 * in between two strings. */
4465 col_start = 0;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004466 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004467 {
4468 /* Find open quote character. */
4469 col_start = find_next_quote(line, col_start, quotechar, NULL);
4470 if (col_start < 0 || col_start > first_col)
4471 return FALSE;
4472 /* Find close quote character. */
4473 col_end = find_next_quote(line, col_start + 1, quotechar,
4474 curbuf->b_p_qe);
4475 if (col_end < 0)
4476 return FALSE;
4477 /* If is cursor between start and end quote character, it is
4478 * target text object. */
4479 if (col_start <= first_col && first_col <= col_end)
4480 break;
4481 col_start = col_end + 1;
4482 }
4483 }
4484 else
4485 {
4486 /* Search backward for a starting quote. */
4487 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4488 if (line[col_start] != quotechar)
4489 {
4490 /* No quote before the cursor, look after the cursor. */
4491 col_start = find_next_quote(line, col_start, quotechar, NULL);
4492 if (col_start < 0)
4493 return FALSE;
4494 }
4495
4496 /* Find close quote character. */
4497 col_end = find_next_quote(line, col_start + 1, quotechar,
4498 curbuf->b_p_qe);
4499 if (col_end < 0)
4500 return FALSE;
4501 }
4502
4503 /* When "include" is TRUE, include spaces after closing quote or before
4504 * the starting quote. */
4505 if (include)
4506 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004507 if (VIM_ISWHITE(line[col_end + 1]))
4508 while (VIM_ISWHITE(line[col_end + 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004509 ++col_end;
4510 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004511 while (col_start > 0 && VIM_ISWHITE(line[col_start - 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004512 --col_start;
4513 }
4514
Bram Moolenaarab194812005-09-14 21:40:12 +00004515 /* Set start position. After vi" another i" must include the ".
4516 * For v2i" include the quotes. */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004517 if (!include && count < 2 && (vis_empty || !inside_quotes))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004518 ++col_start;
4519 curwin->w_cursor.col = col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004520 if (VIsual_active)
4521 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004522 /* Set the start of the Visual area when the Visual area was empty, we
4523 * were just inside quotes or the Visual area didn't start at a quote
4524 * and didn't include a quote.
4525 */
4526 if (vis_empty
4527 || (vis_bef_curs
4528 && !selected_quote
4529 && (inside_quotes
4530 || (line[VIsual.col] != quotechar
4531 && (VIsual.col == 0
4532 || line[VIsual.col - 1] != quotechar)))))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004533 {
4534 VIsual = curwin->w_cursor;
4535 redraw_curbuf_later(INVERTED);
4536 }
4537 }
4538 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004539 {
4540 oap->start = curwin->w_cursor;
4541 oap->motion_type = MCHAR;
4542 }
4543
4544 /* Set end position. */
4545 curwin->w_cursor.col = col_end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004546 if ((include || count > 1 /* After vi" another i" must include the ". */
Bram Moolenaarab194812005-09-14 21:40:12 +00004547 || (!vis_empty && inside_quotes)
Bram Moolenaarab194812005-09-14 21:40:12 +00004548 ) && inc_cursor() == 2)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004549 inclusive = TRUE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004550 if (VIsual_active)
4551 {
4552 if (vis_empty || vis_bef_curs)
4553 {
4554 /* decrement cursor when 'selection' is not exclusive */
4555 if (*p_sel != 'e')
4556 dec_cursor();
4557 }
4558 else
4559 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004560 /* Cursor is at start of Visual area. Set the end of the Visual
4561 * area when it was just inside quotes or it didn't end at a
4562 * quote. */
4563 if (inside_quotes
4564 || (!selected_quote
4565 && line[VIsual.col] != quotechar
4566 && (line[VIsual.col] == NUL
4567 || line[VIsual.col + 1] != quotechar)))
4568 {
4569 dec_cursor();
4570 VIsual = curwin->w_cursor;
4571 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004572 curwin->w_cursor.col = col_start;
4573 }
4574 if (VIsual_mode == 'V')
4575 {
4576 VIsual_mode = 'v';
4577 redraw_cmdline = TRUE; /* show mode later */
4578 }
4579 }
4580 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004581 {
4582 /* Set inclusive and other oap's flags. */
4583 oap->inclusive = inclusive;
4584 }
4585
4586 return OK;
4587}
4588
4589#endif /* FEAT_TEXTOBJ */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01004591static int is_one_char(char_u *pattern, int move);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004592
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004593/*
4594 * Find next search match under cursor, cursor at end.
4595 * Used while an operator is pending, and in Visual mode.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004596 */
4597 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004598current_search(
4599 long count,
4600 int forward) /* move forward or backwards */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004601{
4602 pos_T start_pos; /* position before the pattern */
4603 pos_T orig_pos; /* position of the cursor at beginning */
4604 pos_T pos; /* position after the pattern */
4605 int i;
4606 int dir;
4607 int result; /* result of various function calls */
4608 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004609 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02004610 pos_T save_VIsual = VIsual;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004611 int one_char;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004612
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004613 /* wrapping should not occur */
4614 p_ws = FALSE;
4615
4616 /* Correct cursor when 'selection' is exclusive */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004617 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004618 dec_cursor();
4619
4620 if (VIsual_active)
4621 {
4622 orig_pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004623
4624 pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004625
4626 /* make sure, searching further will extend the match */
4627 if (VIsual_active)
4628 {
4629 if (forward)
4630 incl(&pos);
4631 else
4632 decl(&pos);
4633 }
4634 }
4635 else
Bram Moolenaar268a06c2016-04-21 09:07:01 +02004636 orig_pos = pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004637
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004638 /* Is the pattern is zero-width? */
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004639 one_char = is_one_char(spats[last_idx].pat, TRUE);
Bram Moolenaare78495d2013-06-30 14:46:53 +02004640 if (one_char == -1)
Bram Moolenaarba2d44f2013-11-28 19:27:30 +01004641 {
4642 p_ws = old_p_ws;
4643 return FAIL; /* pattern not found */
4644 }
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004645
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004646 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004647 * The trick is to first search backwards and then search forward again,
4648 * so that a match at the current cursor position will be correctly
4649 * captured.
4650 */
4651 for (i = 0; i < 2; i++)
4652 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004653 if (forward)
4654 dir = i;
4655 else
4656 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004657
4658 flags = 0;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004659 if (!dir && !one_char)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004660 flags = SEARCH_END;
4661
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004662 result = searchit(curwin, curbuf, &pos, (dir ? FORWARD : BACKWARD),
4663 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004664 SEARCH_KEEP | flags, RE_SEARCH, 0, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004665
4666 /* First search may fail, but then start searching from the
4667 * beginning of the file (cursor might be on the search match)
4668 * except when Visual mode is active, so that extending the visual
4669 * selection works. */
4670 if (!result && i) /* not found, abort */
4671 {
4672 curwin->w_cursor = orig_pos;
4673 if (VIsual_active)
4674 VIsual = save_VIsual;
4675 p_ws = old_p_ws;
4676 return FAIL;
4677 }
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004678 else if (!i && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004679 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004680 if (forward)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004681 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004682 /* try again from start of buffer */
4683 CLEAR_POS(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004684 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004685 else
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004686 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004687 /* try again from end of buffer */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004688 /* searching backwards, so set pos to last line and col */
4689 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02004690 pos.col = (colnr_T)STRLEN(
4691 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004692 }
4693 }
Bram Moolenaarfcea03d2013-11-07 04:46:48 +01004694 p_ws = old_p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004695 }
4696
4697 start_pos = pos;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004698 flags = forward ? SEARCH_END : 0;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004699
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004700 /* Check again from the current cursor position,
4701 * since the next match might actually by only one char wide */
4702 one_char = is_one_char(spats[last_idx].pat, FALSE);
4703
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004704 /* move to match, except for zero-width matches, in which case, we are
4705 * already on the next match */
Bram Moolenaare78495d2013-06-30 14:46:53 +02004706 if (!one_char)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004707 result = searchit(curwin, curbuf, &pos, (forward ? FORWARD : BACKWARD),
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004708 spats[last_idx].pat, 0L, flags | SEARCH_KEEP, RE_SEARCH, 0, NULL);
4709
4710 if (!VIsual_active)
4711 VIsual = start_pos;
4712
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004713 curwin->w_cursor = pos;
4714 VIsual_active = TRUE;
4715 VIsual_mode = 'v';
4716
4717 if (VIsual_active)
4718 {
4719 redraw_curbuf_later(INVERTED); /* update the inversion */
Bram Moolenaar718f0072012-10-03 13:35:51 +02004720 if (*p_sel == 'e')
4721 {
4722 /* Correction for exclusive selection depends on the direction. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004723 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar718f0072012-10-03 13:35:51 +02004724 inc_cursor();
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004725 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual))
Bram Moolenaar718f0072012-10-03 13:35:51 +02004726 inc(&VIsual);
4727 }
4728
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004729 }
4730
4731#ifdef FEAT_FOLDING
4732 if (fdo_flags & FDO_SEARCH && KeyTyped)
4733 foldOpenCursor();
4734#endif
4735
4736 may_start_select('c');
4737#ifdef FEAT_MOUSE
4738 setmouse();
4739#endif
4740#ifdef FEAT_CLIPBOARD
4741 /* Make sure the clipboard gets updated. Needed because start and
4742 * end are still the same, and the selection needs to be owned */
4743 clip_star.vmode = NUL;
4744#endif
4745 redraw_curbuf_later(INVERTED);
4746 showmode();
4747
4748 return OK;
4749}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004750
4751/*
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004752 * Check if the pattern is one character long or zero-width.
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004753 * If move is TRUE, check from the beginning of the buffer, else from the
4754 * current cursor position.
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004755 * Returns TRUE, FALSE or -1 for failure.
4756 */
4757 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004758is_one_char(char_u *pattern, int move)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004759{
4760 regmmatch_T regmatch;
4761 int nmatched = 0;
4762 int result = -1;
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004763 pos_T pos;
4764 int save_called_emsg = called_emsg;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004765 int flag = 0;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004766
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004767 if (pattern == NULL)
4768 pattern = spats[last_idx].pat;
4769
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004770 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
4771 SEARCH_KEEP, &regmatch) == FAIL)
4772 return -1;
4773
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004774 /* init startcol correctly */
4775 regmatch.startpos[0].col = -1;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004776 /* move to match */
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004777 if (move)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004778 {
4779 CLEAR_POS(&pos);
4780 }
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004781 else
4782 {
4783 pos = curwin->w_cursor;
4784 /* accept a match at the cursor position */
4785 flag = SEARCH_START;
4786 }
4787
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004788 if (searchit(curwin, curbuf, &pos, FORWARD, pattern, 1,
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004789 SEARCH_KEEP + flag, RE_SEARCH, 0, NULL) != FAIL)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004790 {
4791 /* Zero-width pattern should match somewhere, then we can check if
4792 * start and end are in the same position. */
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004793 called_emsg = FALSE;
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004794 do
4795 {
4796 regmatch.startpos[0].col++;
4797 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
4798 pos.lnum, regmatch.startpos[0].col, NULL);
4799 if (!nmatched)
4800 break;
4801 } while (regmatch.startpos[0].col < pos.col);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004802
4803 if (!called_emsg)
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004804 {
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004805 result = (nmatched != 0
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004806 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
4807 && regmatch.startpos[0].col == regmatch.endpos[0].col);
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004808 /* one char width */
4809 if (!result && inc(&pos) >= 0 && pos.col == regmatch.endpos[0].col)
4810 result = TRUE;
4811 }
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004812 }
4813
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004814 called_emsg |= save_called_emsg;
Bram Moolenaar473de612013-06-08 18:19:48 +02004815 vim_regfree(regmatch.regprog);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004816 return result;
4817}
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004818
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4820 || defined(PROTO)
4821/*
4822 * return TRUE if line 'lnum' is empty or has white chars only.
4823 */
4824 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004825linewhite(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826{
4827 char_u *p;
4828
4829 p = skipwhite(ml_get(lnum));
4830 return (*p == NUL);
4831}
4832#endif
4833
4834#if defined(FEAT_FIND_ID) || defined(PROTO)
4835/*
4836 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01004837 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004840find_pattern_in_path(
4841 char_u *ptr, /* pointer to search pattern */
4842 int dir UNUSED, /* direction of expansion */
4843 int len, /* length of search pattern */
4844 int whole, /* match whole words only */
4845 int skip_comments, /* don't match inside comments */
4846 int type, /* Type of search; are we looking for a type?
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847 a macro? */
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004848 long count,
4849 int action, /* What to do when we find it */
4850 linenr_T start_lnum, /* first line to start searching */
4851 linenr_T end_lnum) /* last line for searching */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852{
4853 SearchedFile *files; /* Stack of included files */
4854 SearchedFile *bigger; /* When we need more space */
4855 int max_path_depth = 50;
4856 long match_count = 1;
4857
4858 char_u *pat;
4859 char_u *new_fname;
4860 char_u *curr_fname = curbuf->b_fname;
4861 char_u *prev_fname = NULL;
4862 linenr_T lnum;
4863 int depth;
4864 int depth_displayed; /* For type==CHECK_PATH */
4865 int old_files;
4866 int already_searched;
4867 char_u *file_line;
4868 char_u *line;
4869 char_u *p;
4870 char_u save_char;
4871 int define_matched;
4872 regmatch_T regmatch;
4873 regmatch_T incl_regmatch;
4874 regmatch_T def_regmatch;
4875 int matched = FALSE;
4876 int did_show = FALSE;
4877 int found = FALSE;
4878 int i;
4879 char_u *already = NULL;
4880 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004881 char_u *inc_opt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004882#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4883 win_T *curwin_save = NULL;
4884#endif
4885
4886 regmatch.regprog = NULL;
4887 incl_regmatch.regprog = NULL;
4888 def_regmatch.regprog = NULL;
4889
4890 file_line = alloc(LSIZE);
4891 if (file_line == NULL)
4892 return;
4893
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894 if (type != CHECK_PATH && type != FIND_DEFINE
4895#ifdef FEAT_INS_EXPAND
4896 /* when CONT_SOL is set compare "ptr" with the beginning of the line
4897 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004898 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899#endif
4900 )
4901 {
4902 pat = alloc(len + 5);
4903 if (pat == NULL)
4904 goto fpip_end;
4905 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
4906 /* ignore case according to p_ic, p_scs and pat */
4907 regmatch.rm_ic = ignorecase(pat);
4908 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4909 vim_free(pat);
4910 if (regmatch.regprog == NULL)
4911 goto fpip_end;
4912 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004913 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
4914 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004916 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 if (incl_regmatch.regprog == NULL)
4918 goto fpip_end;
4919 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */
4920 }
4921 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
4922 {
4923 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
4924 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
4925 if (def_regmatch.regprog == NULL)
4926 goto fpip_end;
4927 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */
4928 }
4929 files = (SearchedFile *)lalloc_clear((long_u)
4930 (max_path_depth * sizeof(SearchedFile)), TRUE);
4931 if (files == NULL)
4932 goto fpip_end;
4933 old_files = max_path_depth;
4934 depth = depth_displayed = -1;
4935
4936 lnum = start_lnum;
4937 if (end_lnum > curbuf->b_ml.ml_line_count)
4938 end_lnum = curbuf->b_ml.ml_line_count;
4939 if (lnum > end_lnum) /* do at least one line */
4940 lnum = end_lnum;
4941 line = ml_get(lnum);
4942
4943 for (;;)
4944 {
4945 if (incl_regmatch.regprog != NULL
4946 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
4947 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004948 char_u *p_fname = (curr_fname == curbuf->b_fname)
4949 ? curbuf->b_ffname : curr_fname;
4950
4951 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
4952 /* Use text from '\zs' to '\ze' (or end) of 'include'. */
4953 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02004954 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004955 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
4956 else
4957 /* Use text after match with 'include'. */
4958 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004959 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 already_searched = FALSE;
4961 if (new_fname != NULL)
4962 {
4963 /* Check whether we have already searched in this file */
4964 for (i = 0;; i++)
4965 {
4966 if (i == depth + 1)
4967 i = old_files;
4968 if (i == max_path_depth)
4969 break;
4970 if (fullpathcmp(new_fname, files[i].name, TRUE) & FPC_SAME)
4971 {
4972 if (type != CHECK_PATH &&
4973 action == ACTION_SHOW_ALL && files[i].matched)
4974 {
4975 msg_putchar('\n'); /* cursor below last one */
4976 if (!got_int) /* don't display if 'q'
4977 typed at "--more--"
Bram Moolenaarfe81d452009-04-22 14:44:41 +00004978 message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 {
4980 msg_home_replace_hl(new_fname);
4981 MSG_PUTS(_(" (includes previously listed match)"));
4982 prev_fname = NULL;
4983 }
4984 }
4985 vim_free(new_fname);
4986 new_fname = NULL;
4987 already_searched = TRUE;
4988 break;
4989 }
4990 }
4991 }
4992
4993 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
4994 || (new_fname == NULL && !already_searched)))
4995 {
4996 if (did_show)
4997 msg_putchar('\n'); /* cursor below last one */
4998 else
4999 {
5000 gotocmdline(TRUE); /* cursor at status line */
5001 MSG_PUTS_TITLE(_("--- Included files "));
5002 if (action != ACTION_SHOW_ALL)
5003 MSG_PUTS_TITLE(_("not found "));
5004 MSG_PUTS_TITLE(_("in path ---\n"));
5005 }
5006 did_show = TRUE;
5007 while (depth_displayed < depth && !got_int)
5008 {
5009 ++depth_displayed;
5010 for (i = 0; i < depth_displayed; i++)
5011 MSG_PUTS(" ");
5012 msg_home_replace(files[depth_displayed].name);
5013 MSG_PUTS(" -->\n");
5014 }
5015 if (!got_int) /* don't display if 'q' typed
5016 for "--more--" message */
5017 {
5018 for (i = 0; i <= depth_displayed; i++)
5019 MSG_PUTS(" ");
5020 if (new_fname != NULL)
5021 {
5022 /* using "new_fname" is more reliable, e.g., when
5023 * 'includeexpr' is set. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005024 msg_outtrans_attr(new_fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 }
5026 else
5027 {
5028 /*
5029 * Isolate the file name.
5030 * Include the surrounding "" or <> if present.
5031 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005032 if (inc_opt != NULL
5033 && strstr((char *)inc_opt, "\\zs") != NULL)
5034 {
5035 /* pattern contains \zs, use the match */
5036 p = incl_regmatch.startp[0];
5037 i = (int)(incl_regmatch.endp[0]
5038 - incl_regmatch.startp[0]);
5039 }
5040 else
5041 {
5042 /* find the file name after the end of the match */
5043 for (p = incl_regmatch.endp[0];
5044 *p && !vim_isfilec(*p); p++)
5045 ;
5046 for (i = 0; vim_isfilec(p[i]); i++)
5047 ;
5048 }
5049
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 if (i == 0)
5051 {
5052 /* Nothing found, use the rest of the line. */
5053 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005054 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 }
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005056 /* Avoid checking before the start of the line, can
5057 * happen if \zs appears in the regexp. */
5058 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 {
5060 if (p[-1] == '"' || p[-1] == '<')
5061 {
5062 --p;
5063 ++i;
5064 }
5065 if (p[i] == '"' || p[i] == '>')
5066 ++i;
5067 }
5068 save_char = p[i];
5069 p[i] = NUL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01005070 msg_outtrans_attr(p, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 p[i] = save_char;
5072 }
5073
5074 if (new_fname == NULL && action == ACTION_SHOW_ALL)
5075 {
5076 if (already_searched)
5077 MSG_PUTS(_(" (Already listed)"));
5078 else
5079 MSG_PUTS(_(" NOT FOUND"));
5080 }
5081 }
5082 out_flush(); /* output each line directly */
5083 }
5084
5085 if (new_fname != NULL)
5086 {
5087 /* Push the new file onto the file stack */
5088 if (depth + 1 == old_files)
5089 {
5090 bigger = (SearchedFile *)lalloc((long_u)(
5091 max_path_depth * 2 * sizeof(SearchedFile)), TRUE);
5092 if (bigger != NULL)
5093 {
5094 for (i = 0; i <= depth; i++)
5095 bigger[i] = files[i];
5096 for (i = depth + 1; i < old_files + max_path_depth; i++)
5097 {
5098 bigger[i].fp = NULL;
5099 bigger[i].name = NULL;
5100 bigger[i].lnum = 0;
5101 bigger[i].matched = FALSE;
5102 }
5103 for (i = old_files; i < max_path_depth; i++)
5104 bigger[i + max_path_depth] = files[i];
5105 old_files += max_path_depth;
5106 max_path_depth *= 2;
5107 vim_free(files);
5108 files = bigger;
5109 }
5110 }
5111 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
5112 == NULL)
5113 vim_free(new_fname);
5114 else
5115 {
5116 if (++depth == old_files)
5117 {
5118 /*
5119 * lalloc() for 'bigger' must have failed above. We
5120 * will forget one of our already visited files now.
5121 */
5122 vim_free(files[old_files].name);
5123 ++old_files;
5124 }
5125 files[depth].name = curr_fname = new_fname;
5126 files[depth].lnum = 0;
5127 files[depth].matched = FALSE;
5128#ifdef FEAT_INS_EXPAND
5129 if (action == ACTION_EXPAND)
5130 {
Bram Moolenaardf40adf2006-10-14 12:32:39 +00005131 msg_hist_off = TRUE; /* reset in msg_trunc_attr() */
Bram Moolenaar555b2802005-05-19 21:08:39 +00005132 vim_snprintf((char*)IObuff, IOSIZE,
5133 _("Scanning included file: %s"),
5134 (char *)new_fname);
Bram Moolenaar8820b482017-03-16 17:23:31 +01005135 msg_trunc_attr(IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 }
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005137 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138#endif
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005139 if (p_verbose >= 5)
5140 {
5141 verbose_enter();
5142 smsg((char_u *)_("Searching included file %s"),
5143 (char *)new_fname);
5144 verbose_leave();
5145 }
5146
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 }
5148 }
5149 }
5150 else
5151 {
5152 /*
5153 * Check if the line is a define (type == FIND_DEFINE)
5154 */
5155 p = line;
5156search_line:
5157 define_matched = FALSE;
5158 if (def_regmatch.regprog != NULL
5159 && vim_regexec(&def_regmatch, line, (colnr_T)0))
5160 {
5161 /*
5162 * Pattern must be first identifier after 'define', so skip
5163 * to that position before checking for match of pattern. Also
5164 * don't let it match beyond the end of this identifier.
5165 */
5166 p = def_regmatch.endp[0];
5167 while (*p && !vim_iswordc(*p))
5168 p++;
5169 define_matched = TRUE;
5170 }
5171
5172 /*
5173 * Look for a match. Don't do this if we are looking for a
5174 * define and this line didn't match define_prog above.
5175 */
5176 if (def_regmatch.regprog == NULL || define_matched)
5177 {
5178 if (define_matched
5179#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005180 || (compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181#endif
5182 )
5183 {
5184 /* compare the first "len" chars from "ptr" */
5185 startp = skipwhite(p);
5186 if (p_ic)
5187 matched = !MB_STRNICMP(startp, ptr, len);
5188 else
5189 matched = !STRNCMP(startp, ptr, len);
5190 if (matched && define_matched && whole
5191 && vim_iswordc(startp[len]))
5192 matched = FALSE;
5193 }
5194 else if (regmatch.regprog != NULL
5195 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
5196 {
5197 matched = TRUE;
5198 startp = regmatch.startp[0];
5199 /*
5200 * Check if the line is not a comment line (unless we are
5201 * looking for a define). A line starting with "# define"
5202 * is not considered to be a comment line.
5203 */
5204 if (!define_matched && skip_comments)
5205 {
5206#ifdef FEAT_COMMENTS
5207 if ((*line != '#' ||
5208 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02005209 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 matched = FALSE;
5211
5212 /*
5213 * Also check for a "/ *" or "/ /" before the match.
5214 * Skips lines like "int backwards; / * normal index
5215 * * /" when looking for "normal".
5216 * Note: Doesn't skip "/ *" in comments.
5217 */
5218 p = skipwhite(line);
5219 if (matched
5220 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
5221#endif
5222 for (p = line; *p && p < startp; ++p)
5223 {
5224 if (matched
5225 && p[0] == '/'
5226 && (p[1] == '*' || p[1] == '/'))
5227 {
5228 matched = FALSE;
5229 /* After "//" all text is comment */
5230 if (p[1] == '/')
5231 break;
5232 ++p;
5233 }
5234 else if (!matched && p[0] == '*' && p[1] == '/')
5235 {
5236 /* Can find match after "* /". */
5237 matched = TRUE;
5238 ++p;
5239 }
5240 }
5241 }
5242 }
5243 }
5244 }
5245 if (matched)
5246 {
5247#ifdef FEAT_INS_EXPAND
5248 if (action == ACTION_EXPAND)
5249 {
5250 int reuse = 0;
5251 int add_r;
5252 char_u *aux;
5253
5254 if (depth == -1 && lnum == curwin->w_cursor.lnum)
5255 break;
5256 found = TRUE;
5257 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005258 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005260 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261 if (vim_iswordp(p))
5262 goto exit_matched;
5263 p = find_word_start(p);
5264 }
5265 p = find_word_end(p);
5266 i = (int)(p - aux);
5267
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005268 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005270 /* IOSIZE > compl_length, so the STRNCPY works */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00005272
5273 /* Get the next line: when "depth" < 0 from the current
5274 * buffer, otherwise from the included file. Jump to
5275 * exit_matched when past the last line. */
5276 if (depth < 0)
5277 {
5278 if (lnum >= end_lnum)
5279 goto exit_matched;
5280 line = ml_get(++lnum);
5281 }
5282 else if (vim_fgets(line = file_line,
5283 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 goto exit_matched;
5285
5286 /* we read a line, set "already" to check this "line" later
5287 * if depth >= 0 we'll increase files[depth].lnum far
5288 * bellow -- Acevedo */
5289 already = aux = p = skipwhite(line);
5290 p = find_word_start(p);
5291 p = find_word_end(p);
5292 if (p > aux)
5293 {
5294 if (*aux != ')' && IObuff[i-1] != TAB)
5295 {
5296 if (IObuff[i-1] != ' ')
5297 IObuff[i++] = ' ';
5298 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/
5299 if (p_js
5300 && (IObuff[i-2] == '.'
5301 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
5302 && (IObuff[i-2] == '?'
5303 || IObuff[i-2] == '!'))))
5304 IObuff[i++] = ' ';
5305 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005306 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 if (p - aux >= IOSIZE - i)
5308 p = aux + IOSIZE - i - 1;
5309 STRNCPY(IObuff + i, aux, p - aux);
5310 i += (int)(p - aux);
5311 reuse |= CONT_S_IPOS;
5312 }
5313 IObuff[i] = NUL;
5314 aux = IObuff;
5315
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005316 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317 goto exit_matched;
5318 }
5319
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005320 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321 curr_fname == curbuf->b_fname ? NULL : curr_fname,
5322 dir, reuse);
5323 if (add_r == OK)
5324 /* if dir was BACKWARD then honor it just once */
5325 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005326 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 break;
5328 }
5329 else
5330#endif
5331 if (action == ACTION_SHOW_ALL)
5332 {
5333 found = TRUE;
5334 if (!did_show)
5335 gotocmdline(TRUE); /* cursor at status line */
5336 if (curr_fname != prev_fname)
5337 {
5338 if (did_show)
5339 msg_putchar('\n'); /* cursor below last one */
5340 if (!got_int) /* don't display if 'q' typed
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005341 at "--more--" message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 msg_home_replace_hl(curr_fname);
5343 prev_fname = curr_fname;
5344 }
5345 did_show = TRUE;
5346 if (!got_int)
5347 show_pat_in_path(line, type, TRUE, action,
5348 (depth == -1) ? NULL : files[depth].fp,
5349 (depth == -1) ? &lnum : &files[depth].lnum,
5350 match_count++);
5351
5352 /* Set matched flag for this file and all the ones that
5353 * include it */
5354 for (i = 0; i <= depth; ++i)
5355 files[i].matched = TRUE;
5356 }
5357 else if (--count <= 0)
5358 {
5359 found = TRUE;
5360 if (depth == -1 && lnum == curwin->w_cursor.lnum
5361#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5362 && g_do_tagpreview == 0
5363#endif
5364 )
5365 EMSG(_("E387: Match is on current line"));
5366 else if (action == ACTION_SHOW)
5367 {
5368 show_pat_in_path(line, type, did_show, action,
5369 (depth == -1) ? NULL : files[depth].fp,
5370 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
5371 did_show = TRUE;
5372 }
5373 else
5374 {
5375#ifdef FEAT_GUI
5376 need_mouse_correct = TRUE;
5377#endif
5378#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5379 /* ":psearch" uses the preview window */
5380 if (g_do_tagpreview != 0)
5381 {
5382 curwin_save = curwin;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005383 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005384 }
5385#endif
5386 if (action == ACTION_SPLIT)
5387 {
5388#ifdef FEAT_WINDOWS
5389 if (win_split(0, 0) == FAIL)
5390#endif
5391 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005392 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393 }
5394 if (depth == -1)
5395 {
5396 /* match in current file */
5397#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5398 if (g_do_tagpreview != 0)
5399 {
5400 if (getfile(0, curwin_save->w_buffer->b_fname,
5401 NULL, TRUE, lnum, FALSE) > 0)
5402 break; /* failed to jump to file */
5403 }
5404 else
5405#endif
5406 setpcmark();
5407 curwin->w_cursor.lnum = lnum;
5408 }
5409 else
5410 {
5411 if (getfile(0, files[depth].name, NULL, TRUE,
5412 files[depth].lnum, FALSE) > 0)
5413 break; /* failed to jump to file */
5414 /* autocommands may have changed the lnum, we don't
5415 * want that here */
5416 curwin->w_cursor.lnum = files[depth].lnum;
5417 }
5418 }
5419 if (action != ACTION_SHOW)
5420 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005421 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 curwin->w_set_curswant = TRUE;
5423 }
5424
5425#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5426 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005427 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 {
5429 /* Return cursor to where we were */
5430 validate_cursor();
5431 redraw_later(VALID);
5432 win_enter(curwin_save, TRUE);
5433 }
5434#endif
5435 break;
5436 }
5437#ifdef FEAT_INS_EXPAND
5438exit_matched:
5439#endif
5440 matched = FALSE;
5441 /* look for other matches in the rest of the line if we
5442 * are not at the end of it already */
5443 if (def_regmatch.regprog == NULL
5444#ifdef FEAT_INS_EXPAND
5445 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005446 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447#endif
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005448 && *startp != NUL
Bram Moolenaar94c465c2012-07-19 17:18:26 +02005449 && *(p = startp + MB_PTR2LEN(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450 goto search_line;
5451 }
5452 line_breakcheck();
5453#ifdef FEAT_INS_EXPAND
5454 if (action == ACTION_EXPAND)
Bram Moolenaar472e8592016-10-15 17:06:47 +02005455 ins_compl_check_keys(30, FALSE);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005456 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457#else
5458 if (got_int)
5459#endif
5460 break;
5461
5462 /*
5463 * Read the next line. When reading an included file and encountering
5464 * end-of-file, close the file and continue in the file that included
5465 * it.
5466 */
5467 while (depth >= 0 && !already
5468 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5469 {
5470 fclose(files[depth].fp);
5471 --old_files;
5472 files[old_files].name = files[depth].name;
5473 files[old_files].matched = files[depth].matched;
5474 --depth;
5475 curr_fname = (depth == -1) ? curbuf->b_fname
5476 : files[depth].name;
5477 if (depth < depth_displayed)
5478 depth_displayed = depth;
5479 }
5480 if (depth >= 0) /* we could read the line */
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005481 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 files[depth].lnum++;
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005483 /* Remove any CR and LF from the line. */
5484 i = (int)STRLEN(line);
5485 if (i > 0 && line[i - 1] == '\n')
5486 line[--i] = NUL;
5487 if (i > 0 && line[i - 1] == '\r')
5488 line[--i] = NUL;
5489 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 else if (!already)
5491 {
5492 if (++lnum > end_lnum)
5493 break;
5494 line = ml_get(lnum);
5495 }
5496 already = NULL;
5497 }
5498 /* End of big for (;;) loop. */
5499
5500 /* Close any files that are still open. */
5501 for (i = 0; i <= depth; i++)
5502 {
5503 fclose(files[i].fp);
5504 vim_free(files[i].name);
5505 }
5506 for (i = old_files; i < max_path_depth; i++)
5507 vim_free(files[i].name);
5508 vim_free(files);
5509
5510 if (type == CHECK_PATH)
5511 {
5512 if (!did_show)
5513 {
5514 if (action != ACTION_SHOW_ALL)
5515 MSG(_("All included files were found"));
5516 else
5517 MSG(_("No included files"));
5518 }
5519 }
5520 else if (!found
5521#ifdef FEAT_INS_EXPAND
5522 && action != ACTION_EXPAND
5523#endif
5524 )
5525 {
5526#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005527 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528#else
5529 if (got_int)
5530#endif
5531 EMSG(_(e_interr));
5532 else if (type == FIND_DEFINE)
5533 EMSG(_("E388: Couldn't find definition"));
5534 else
5535 EMSG(_("E389: Couldn't find pattern"));
5536 }
5537 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5538 msg_end();
5539
5540fpip_end:
5541 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02005542 vim_regfree(regmatch.regprog);
5543 vim_regfree(incl_regmatch.regprog);
5544 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545}
5546
5547 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005548show_pat_in_path(
5549 char_u *line,
5550 int type,
5551 int did_show,
5552 int action,
5553 FILE *fp,
5554 linenr_T *lnum,
5555 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556{
5557 char_u *p;
5558
5559 if (did_show)
5560 msg_putchar('\n'); /* cursor below last one */
Bram Moolenaar91170f82006-05-05 21:15:17 +00005561 else if (!msg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562 gotocmdline(TRUE); /* cursor at status line */
5563 if (got_int) /* 'q' typed at "--more--" message */
5564 return;
5565 for (;;)
5566 {
5567 p = line + STRLEN(line) - 1;
5568 if (fp != NULL)
5569 {
5570 /* We used fgets(), so get rid of newline at end */
5571 if (p >= line && *p == '\n')
5572 --p;
5573 if (p >= line && *p == '\r')
5574 --p;
5575 *(p + 1) = NUL;
5576 }
5577 if (action == ACTION_SHOW_ALL)
5578 {
5579 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */
5580 msg_puts(IObuff);
5581 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */
5582 /* Highlight line numbers */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005583 msg_puts_attr(IObuff, HL_ATTR(HLF_N));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584 MSG_PUTS(" ");
5585 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005586 msg_prt_line(line, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587 out_flush(); /* show one line at a time */
5588
5589 /* Definition continues until line that doesn't end with '\' */
5590 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5591 break;
5592
5593 if (fp != NULL)
5594 {
5595 if (vim_fgets(line, LSIZE, fp)) /* end of file */
5596 break;
5597 ++*lnum;
5598 }
5599 else
5600 {
5601 if (++*lnum > curbuf->b_ml.ml_line_count)
5602 break;
5603 line = ml_get(*lnum);
5604 }
5605 msg_putchar('\n');
5606 }
5607}
5608#endif
5609
5610#ifdef FEAT_VIMINFO
5611 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005612read_viminfo_search_pattern(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613{
5614 char_u *lp;
5615 int idx = -1;
5616 int magic = FALSE;
5617 int no_scs = FALSE;
5618 int off_line = FALSE;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005619 int off_end = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620 long off = 0;
5621 int setlast = FALSE;
5622#ifdef FEAT_SEARCH_EXTRA
5623 static int hlsearch_on = FALSE;
5624#endif
5625 char_u *val;
5626
5627 /*
5628 * Old line types:
5629 * "/pat", "&pat": search/subst. pat
5630 * "~/pat", "~&pat": last used search/subst. pat
5631 * New line types:
5632 * "~h", "~H": hlsearch highlighting off/on
5633 * "~<magic><smartcase><line><end><off><last><which>pat"
5634 * <magic>: 'm' off, 'M' on
5635 * <smartcase>: 's' off, 'S' on
5636 * <line>: 'L' line offset, 'l' char offset
5637 * <end>: 'E' from end, 'e' from start
5638 * <off>: decimal, offset
5639 * <last>: '~' last used pattern
5640 * <which>: '/' search pat, '&' subst. pat
5641 */
5642 lp = virp->vir_line;
5643 if (lp[0] == '~' && (lp[1] == 'm' || lp[1] == 'M')) /* new line type */
5644 {
5645 if (lp[1] == 'M') /* magic on */
5646 magic = TRUE;
5647 if (lp[2] == 's')
5648 no_scs = TRUE;
5649 if (lp[3] == 'L')
5650 off_line = TRUE;
5651 if (lp[4] == 'E')
Bram Moolenaared203462004-06-16 11:19:22 +00005652 off_end = SEARCH_END;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005653 lp += 5;
5654 off = getdigits(&lp);
5655 }
5656 if (lp[0] == '~') /* use this pattern for last-used pattern */
5657 {
5658 setlast = TRUE;
5659 lp++;
5660 }
5661 if (lp[0] == '/')
5662 idx = RE_SEARCH;
5663 else if (lp[0] == '&')
5664 idx = RE_SUBST;
5665#ifdef FEAT_SEARCH_EXTRA
5666 else if (lp[0] == 'h') /* ~h: 'hlsearch' highlighting off */
5667 hlsearch_on = FALSE;
5668 else if (lp[0] == 'H') /* ~H: 'hlsearch' highlighting on */
5669 hlsearch_on = TRUE;
5670#endif
5671 if (idx >= 0)
5672 {
5673 if (force || spats[idx].pat == NULL)
5674 {
5675 val = viminfo_readstring(virp, (int)(lp - virp->vir_line + 1),
5676 TRUE);
5677 if (val != NULL)
5678 {
5679 set_last_search_pat(val, idx, magic, setlast);
5680 vim_free(val);
5681 spats[idx].no_scs = no_scs;
5682 spats[idx].off.line = off_line;
5683 spats[idx].off.end = off_end;
5684 spats[idx].off.off = off;
5685#ifdef FEAT_SEARCH_EXTRA
5686 if (setlast)
Bram Moolenaar8050efa2013-11-08 04:30:20 +01005687 {
5688 SET_NO_HLSEARCH(!hlsearch_on);
5689 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005690#endif
5691 }
5692 }
5693 }
5694 return viminfo_readline(virp);
5695}
5696
5697 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005698write_viminfo_search_pattern(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699{
5700 if (get_viminfo_parameter('/') != 0)
5701 {
5702#ifdef FEAT_SEARCH_EXTRA
5703 fprintf(fp, "\n# hlsearch on (H) or off (h):\n~%c",
5704 (no_hlsearch || find_viminfo_parameter('h') != NULL) ? 'h' : 'H');
5705#endif
5706 wvsp_one(fp, RE_SEARCH, "", '/');
Bram Moolenaar9b228712008-07-18 10:05:58 +00005707 wvsp_one(fp, RE_SUBST, _("Substitute "), '&');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 }
5709}
5710
5711 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005712wvsp_one(
5713 FILE *fp, /* file to write to */
5714 int idx, /* spats[] index */
5715 char *s, /* search pat */
5716 int sc) /* dir char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717{
5718 if (spats[idx].pat != NULL)
5719 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005720 fprintf(fp, _("\n# Last %sSearch Pattern:\n~"), s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005721 /* off.dir is not stored, it's reset to forward */
5722 fprintf(fp, "%c%c%c%c%ld%s%c",
5723 spats[idx].magic ? 'M' : 'm', /* magic */
5724 spats[idx].no_scs ? 's' : 'S', /* smartcase */
5725 spats[idx].off.line ? 'L' : 'l', /* line offset */
5726 spats[idx].off.end ? 'E' : 'e', /* offset from end */
5727 spats[idx].off.off, /* offset */
5728 last_idx == idx ? "~" : "", /* last used pat */
5729 sc);
5730 viminfo_writestring(fp, spats[idx].pat);
5731 }
5732}
5733#endif /* FEAT_VIMINFO */