blob: c607f6d06e806bfa6ab60740604f09b84c93432d [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_linecomment(char_u *line);
20static int cls(void);
21static int skip_chars(int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022#ifdef FEAT_FIND_ID
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010023static void show_pat_in_path(char_u *, int,
24 int, int, FILE *, linenr_T *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +000025#endif
26#ifdef FEAT_VIMINFO
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010027static void wvsp_one(FILE *fp, int idx, char *s, int sc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#endif
29
Bram Moolenaar071d4272004-06-13 20:20:40 +000030/*
31 * This file contains various searching-related routines. These fall into
32 * three groups:
33 * 1. string searches (for /, ?, n, and N)
34 * 2. character searches within a single line (for f, F, t, T, etc)
35 * 3. "other" kinds of searches like the '%' command, and 'word' searches.
36 */
37
38/*
39 * String searches
40 *
41 * The string search functions are divided into two levels:
42 * lowest: searchit(); uses an pos_T for starting position and found match.
43 * Highest: do_search(); uses curwin->w_cursor; calls searchit().
44 *
45 * The last search pattern is remembered for repeating the same search.
46 * This pattern is shared between the :g, :s, ? and / commands.
47 * This is in search_regcomp().
48 *
49 * The actual string matching is done using a heavily modified version of
50 * Henry Spencer's regular expression library. See regexp.c.
51 */
52
53/* The offset for a search command is store in a soff struct */
54/* Note: only spats[0].off is really used */
55struct soffset
56{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000057 int dir; /* search direction, '/' or '?' */
Bram Moolenaar071d4272004-06-13 20:20:40 +000058 int line; /* search has line offset */
59 int end; /* search set cursor at end */
60 long off; /* line or char offset */
61};
62
63/* A search pattern and its attributes are stored in a spat struct */
64struct spat
65{
66 char_u *pat; /* the pattern (in allocated memory) or NULL */
67 int magic; /* magicness of the pattern */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020068 int no_scs; /* no smartcase for this pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +000069 struct soffset off;
70};
71
72/*
73 * Two search patterns are remembered: One for the :substitute command and
74 * one for other searches. last_idx points to the one that was used the last
75 * time.
76 */
77static struct spat spats[2] =
78{
79 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}}, /* last used search pat */
80 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}} /* last used substitute pat */
81};
82
83static int last_idx = 0; /* index in spats[] for RE_LAST */
84
Bram Moolenaardbd24b52015-08-11 14:26:19 +020085static char_u lastc[2] = {NUL, NUL}; /* last character searched for */
86static int lastcdir = FORWARD; /* last direction of character search */
87static int last_t_cmd = TRUE; /* last search t_cmd */
88#ifdef FEAT_MBYTE
89static char_u lastc_bytes[MB_MAXBYTES + 1];
90static int lastc_bytelen = 1; /* >1 for multi-byte char */
91#endif
92
Bram Moolenaar071d4272004-06-13 20:20:40 +000093/* copy of spats[], for keeping the search patterns while executing autocmds */
94static struct spat saved_spats[2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000095# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +010096static int saved_spats_last_idx = 0;
97static int saved_spats_no_hlsearch = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000098# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000099
100static char_u *mr_pattern = NULL; /* pattern used by search_regcomp() */
101#ifdef FEAT_RIGHTLEFT
102static int mr_pattern_alloced = FALSE; /* mr_pattern was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103#endif
104
105#ifdef FEAT_FIND_ID
106/*
107 * Type used by find_pattern_in_path() to remember which included files have
108 * been searched already.
109 */
110typedef struct SearchedFile
111{
112 FILE *fp; /* File pointer */
113 char_u *name; /* Full name of file */
114 linenr_T lnum; /* Line we were up to in file */
115 int matched; /* Found a match in this file */
116} SearchedFile;
117#endif
118
119/*
120 * translate search pattern for vim_regcomp()
121 *
122 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd)
123 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command)
124 * pat_save == RE_BOTH: save pat in both patterns (:global command)
125 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL
Bram Moolenaarb8017e72007-05-10 18:59:07 +0000126 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127 * pat_use == RE_LAST: use last used pattern if "pat" is NULL
128 * options & SEARCH_HIS: put search string in history
129 * options & SEARCH_KEEP: keep previous search pattern
130 *
131 * returns FAIL if failed, OK otherwise.
132 */
133 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100134search_regcomp(
135 char_u *pat,
136 int pat_save,
137 int pat_use,
138 int options,
139 regmmatch_T *regmatch) /* return: pattern and ignore-case flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140{
141 int magic;
142 int i;
143
144 rc_did_emsg = FALSE;
145 magic = p_magic;
146
147 /*
148 * If no pattern given, use a previously defined pattern.
149 */
150 if (pat == NULL || *pat == NUL)
151 {
152 if (pat_use == RE_LAST)
153 i = last_idx;
154 else
155 i = pat_use;
156 if (spats[i].pat == NULL) /* pattern was never defined */
157 {
158 if (pat_use == RE_SUBST)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100159 emsg(_(e_nopresub));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100161 emsg(_(e_noprevre));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162 rc_did_emsg = TRUE;
163 return FAIL;
164 }
165 pat = spats[i].pat;
166 magic = spats[i].magic;
167 no_smartcase = spats[i].no_scs;
168 }
169#ifdef FEAT_CMDHIST
170 else if (options & SEARCH_HIS) /* put new pattern in history */
171 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
172#endif
173
174#ifdef FEAT_RIGHTLEFT
175 if (mr_pattern_alloced)
176 {
177 vim_free(mr_pattern);
178 mr_pattern_alloced = FALSE;
179 }
180
181 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
182 {
183 char_u *rev_pattern;
184
185 rev_pattern = reverse_text(pat);
186 if (rev_pattern == NULL)
187 mr_pattern = pat; /* out of memory, keep normal pattern. */
188 else
189 {
190 mr_pattern = rev_pattern;
191 mr_pattern_alloced = TRUE;
192 }
193 }
194 else
195#endif
196 mr_pattern = pat;
197
198 /*
199 * Save the currently used pattern in the appropriate place,
200 * unless the pattern should not be remembered.
201 */
Bram Moolenaar14177b72014-01-14 15:53:51 +0100202 if (!(options & SEARCH_KEEP) && !cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 {
204 /* search or global command */
205 if (pat_save == RE_SEARCH || pat_save == RE_BOTH)
206 save_re_pat(RE_SEARCH, pat, magic);
207 /* substitute or global command */
208 if (pat_save == RE_SUBST || pat_save == RE_BOTH)
209 save_re_pat(RE_SUBST, pat, magic);
210 }
211
212 regmatch->rmm_ic = ignorecase(pat);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +0000213 regmatch->rmm_maxcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
215 if (regmatch->regprog == NULL)
216 return FAIL;
217 return OK;
218}
219
220/*
221 * Get search pattern used by search_regcomp().
222 */
223 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100224get_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225{
226 return mr_pattern;
227}
228
Bram Moolenaarabc97732007-08-08 20:49:37 +0000229#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230/*
231 * Reverse text into allocated memory.
232 * Returns the allocated string, NULL when out of memory.
233 */
Bram Moolenaarabc97732007-08-08 20:49:37 +0000234 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100235reverse_text(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236{
237 unsigned len;
238 unsigned s_i, rev_i;
239 char_u *rev;
240
241 /*
242 * Reverse the pattern.
243 */
244 len = (unsigned)STRLEN(s);
245 rev = alloc(len + 1);
246 if (rev != NULL)
247 {
248 rev_i = len;
249 for (s_i = 0; s_i < len; ++s_i)
250 {
251# ifdef FEAT_MBYTE
252 if (has_mbyte)
253 {
254 int mb_len;
255
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000256 mb_len = (*mb_ptr2len)(s + s_i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 rev_i -= mb_len;
258 mch_memmove(rev + rev_i, s + s_i, mb_len);
259 s_i += mb_len - 1;
260 }
261 else
262# endif
263 rev[--rev_i] = s[s_i];
264
265 }
266 rev[len] = NUL;
267 }
268 return rev;
269}
270#endif
271
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +0100272 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100273save_re_pat(int idx, char_u *pat, int magic)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274{
275 if (spats[idx].pat != pat)
276 {
277 vim_free(spats[idx].pat);
278 spats[idx].pat = vim_strsave(pat);
279 spats[idx].magic = magic;
280 spats[idx].no_scs = no_smartcase;
281 last_idx = idx;
282#ifdef FEAT_SEARCH_EXTRA
283 /* If 'hlsearch' set and search pat changed: need redraw. */
284 if (p_hls)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000285 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200286 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287#endif
288 }
289}
290
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291/*
292 * Save the search patterns, so they can be restored later.
293 * Used before/after executing autocommands and user functions.
294 */
295static int save_level = 0;
296
297 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100298save_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299{
300 if (save_level++ == 0)
301 {
302 saved_spats[0] = spats[0];
303 if (spats[0].pat != NULL)
304 saved_spats[0].pat = vim_strsave(spats[0].pat);
305 saved_spats[1] = spats[1];
306 if (spats[1].pat != NULL)
307 saved_spats[1].pat = vim_strsave(spats[1].pat);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100308#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100309 saved_spats_last_idx = last_idx;
310 saved_spats_no_hlsearch = no_hlsearch;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100311#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312 }
313}
314
315 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100316restore_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317{
318 if (--save_level == 0)
319 {
320 vim_free(spats[0].pat);
321 spats[0] = saved_spats[0];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100322#if defined(FEAT_EVAL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000323 set_vv_searchforward();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100324#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325 vim_free(spats[1].pat);
326 spats[1] = saved_spats[1];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100327#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100328 last_idx = saved_spats_last_idx;
329 set_no_hlsearch(saved_spats_no_hlsearch);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100330#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 }
332}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000334#if defined(EXITFREE) || defined(PROTO)
335 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100336free_search_patterns(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000337{
338 vim_free(spats[0].pat);
339 vim_free(spats[1].pat);
Bram Moolenaarf2427622009-04-22 16:45:21 +0000340
341# ifdef FEAT_RIGHTLEFT
342 if (mr_pattern_alloced)
343 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200344 vim_free(mr_pattern);
345 mr_pattern_alloced = FALSE;
346 mr_pattern = NULL;
Bram Moolenaarf2427622009-04-22 16:45:21 +0000347 }
348# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000349}
350#endif
351
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100352#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100353// copy of spats[RE_SEARCH], for keeping the search patterns while incremental
354// searching
355static struct spat saved_last_search_spat;
356static int did_save_last_search_spat = 0;
357static int saved_last_idx = 0;
358static int saved_no_hlsearch = 0;
359
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100360/*
361 * Save and restore the search pattern for incremental highlight search
362 * feature.
363 *
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100364 * It's similar to but different from save_search_patterns() and
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100365 * restore_search_patterns(), because the search pattern must be restored when
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100366 * canceling incremental searching even if it's called inside user functions.
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100367 */
368 void
369save_last_search_pattern(void)
370{
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100371 if (did_save_last_search_spat != 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100372 iemsg("did_save_last_search_spat is not zero");
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100373 else
374 ++did_save_last_search_spat;
375
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100376 saved_last_search_spat = spats[RE_SEARCH];
377 if (spats[RE_SEARCH].pat != NULL)
378 saved_last_search_spat.pat = vim_strsave(spats[RE_SEARCH].pat);
379 saved_last_idx = last_idx;
380 saved_no_hlsearch = no_hlsearch;
381}
382
383 void
384restore_last_search_pattern(void)
385{
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100386 if (did_save_last_search_spat != 1)
387 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100388 iemsg("did_save_last_search_spat is not one");
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100389 return;
390 }
391 --did_save_last_search_spat;
392
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100393 vim_free(spats[RE_SEARCH].pat);
394 spats[RE_SEARCH] = saved_last_search_spat;
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100395 saved_last_search_spat.pat = NULL;
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100396# if defined(FEAT_EVAL)
397 set_vv_searchforward();
398# endif
399 last_idx = saved_last_idx;
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200400 set_no_hlsearch(saved_no_hlsearch);
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100401}
Bram Moolenaard0480092017-11-16 22:20:39 +0100402
403 char_u *
404last_search_pattern(void)
405{
406 return spats[RE_SEARCH].pat;
407}
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100408#endif
409
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410/*
411 * Return TRUE when case should be ignored for search pattern "pat".
412 * Uses the 'ignorecase' and 'smartcase' options.
413 */
414 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100415ignorecase(char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416{
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200417 return ignorecase_opt(pat, p_ic, p_scs);
418}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200420/*
421 * As ignorecase() put pass the "ic" and "scs" flags.
422 */
423 int
424ignorecase_opt(char_u *pat, int ic_in, int scs)
425{
426 int ic = ic_in;
427
428 if (ic && !no_smartcase && scs
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429#ifdef FEAT_INS_EXPAND
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +0100430 && !(ctrl_x_mode_not_default() && curbuf->b_p_inf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431#endif
432 )
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200433 ic = !pat_has_uppercase(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434 no_smartcase = FALSE;
435
436 return ic;
437}
438
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200439/*
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200440 * Return TRUE if pattern "pat" has an uppercase character.
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200441 */
442 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100443pat_has_uppercase(char_u *pat)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200444{
445 char_u *p = pat;
446
447 while (*p != NUL)
448 {
449#ifdef FEAT_MBYTE
450 int l;
451
452 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
453 {
454 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
455 return TRUE;
456 p += l;
457 }
458 else
459#endif
460 if (*p == '\\')
461 {
462 if (p[1] == '_' && p[2] != NUL) /* skip "\_X" */
463 p += 3;
464 else if (p[1] == '%' && p[2] != NUL) /* skip "\%X" */
465 p += 3;
466 else if (p[1] != NUL) /* skip "\X" */
467 p += 2;
468 else
469 p += 1;
470 }
471 else if (MB_ISUPPER(*p))
472 return TRUE;
473 else
474 ++p;
475 }
476 return FALSE;
477}
478
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100480last_csearch(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200481{
482#ifdef FEAT_MBYTE
483 return lastc_bytes;
484#else
485 return lastc;
486#endif
487}
488
489 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100490last_csearch_forward(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200491{
492 return lastcdir == FORWARD;
493}
494
495 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100496last_csearch_until(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200497{
498 return last_t_cmd == TRUE;
499}
500
501 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100502set_last_csearch(int c, char_u *s UNUSED, int len UNUSED)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200503{
504 *lastc = c;
505#ifdef FEAT_MBYTE
506 lastc_bytelen = len;
507 if (len)
508 memcpy(lastc_bytes, s, len);
509 else
510 vim_memset(lastc_bytes, 0, sizeof(lastc_bytes));
511#endif
512}
513
514 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100515set_csearch_direction(int cdir)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200516{
517 lastcdir = cdir;
518}
519
520 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100521set_csearch_until(int t_cmd)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200522{
523 last_t_cmd = t_cmd;
524}
525
526 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100527last_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528{
529 return spats[last_idx].pat;
530}
531
532/*
533 * Reset search direction to forward. For "gd" and "gD" commands.
534 */
535 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100536reset_search_dir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537{
538 spats[0].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000539#if defined(FEAT_EVAL)
540 set_vv_searchforward();
541#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542}
543
544#if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
545/*
546 * Set the last search pattern. For ":let @/ =" and viminfo.
547 * Also set the saved search pattern, so that this works in an autocommand.
548 */
549 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100550set_last_search_pat(
551 char_u *s,
552 int idx,
553 int magic,
554 int setlast)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555{
556 vim_free(spats[idx].pat);
557 /* An empty string means that nothing should be matched. */
558 if (*s == NUL)
559 spats[idx].pat = NULL;
560 else
561 spats[idx].pat = vim_strsave(s);
562 spats[idx].magic = magic;
563 spats[idx].no_scs = FALSE;
564 spats[idx].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000565#if defined(FEAT_EVAL)
566 set_vv_searchforward();
567#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 spats[idx].off.line = FALSE;
569 spats[idx].off.end = FALSE;
570 spats[idx].off.off = 0;
571 if (setlast)
572 last_idx = idx;
573 if (save_level)
574 {
575 vim_free(saved_spats[idx].pat);
576 saved_spats[idx] = spats[0];
577 if (spats[idx].pat == NULL)
578 saved_spats[idx].pat = NULL;
579 else
580 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
Bram Moolenaared8bc782018-12-01 21:08:21 +0100581 saved_spats_last_idx = last_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 }
583# ifdef FEAT_SEARCH_EXTRA
584 /* If 'hlsearch' set and search pat changed: need redraw. */
585 if (p_hls && idx == last_idx && !no_hlsearch)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000586 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587# endif
588}
589#endif
590
591#ifdef FEAT_SEARCH_EXTRA
592/*
593 * Get a regexp program for the last used search pattern.
594 * This is used for highlighting all matches in a window.
595 * Values returned in regmatch->regprog and regmatch->rmm_ic.
596 */
597 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100598last_pat_prog(regmmatch_T *regmatch)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599{
600 if (spats[last_idx].pat == NULL)
601 {
602 regmatch->regprog = NULL;
603 return;
604 }
605 ++emsg_off; /* So it doesn't beep if bad expr */
606 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
607 --emsg_off;
608}
609#endif
610
611/*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100612 * Lowest level search function.
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100613 * Search for 'count'th occurrence of pattern "pat" in direction "dir".
614 * Start at position "pos" and return the found position in "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 *
616 * if (options & SEARCH_MSG) == 0 don't give any messages
617 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
618 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
619 * if (options & SEARCH_HIS) put search pattern in history
620 * if (options & SEARCH_END) return position at end of match
621 * if (options & SEARCH_START) accept match at pos itself
622 * if (options & SEARCH_KEEP) keep previous search pattern
623 * if (options & SEARCH_FOLD) match only once in a closed fold
624 * if (options & SEARCH_PEEK) check for typed char, cancel search
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100625 * if (options & SEARCH_COL) start at pos->col instead of zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626 *
627 * Return FAIL (zero) for failure, non-zero for success.
628 * When FEAT_EVAL is defined, returns the index of the first matching
629 * subpattern plus one; one if there was none.
630 */
631 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100632searchit(
633 win_T *win, /* window to search in; can be NULL for a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 buffer without a window! */
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100635 buf_T *buf,
636 pos_T *pos,
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100637 pos_T *end_pos, // set to end of the match, unless NULL
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100638 int dir,
639 char_u *pat,
640 long count,
641 int options,
642 int pat_use, /* which pattern to use when "pat" is empty */
643 linenr_T stop_lnum, /* stop after this line number when != 0 */
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200644 proftime_T *tm UNUSED, /* timeout limit or NULL */
645 int *timed_out UNUSED) /* set when timed out or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646{
647 int found;
648 linenr_T lnum; /* no init to shut up Apollo cc */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100649 colnr_T col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 regmmatch_T regmatch;
651 char_u *ptr;
652 colnr_T matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 lpos_T endpos;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000654 lpos_T matchpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655 int loop;
656 pos_T start_pos;
657 int at_first_line;
658 int extra_col;
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200659 int start_char_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 int match_ok;
661 long nmatched;
662 int submatch = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100663 int first_match = TRUE;
Bram Moolenaar280f1262006-01-30 00:14:18 +0000664 int save_called_emsg = called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665#ifdef FEAT_SEARCH_EXTRA
666 int break_loop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667#endif
668
669 if (search_regcomp(pat, RE_SEARCH, pat_use,
670 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
671 {
672 if ((options & SEARCH_MSG) && !rc_did_emsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100673 semsg(_("E383: Invalid search string: %s"), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 return FAIL;
675 }
676
Bram Moolenaar280f1262006-01-30 00:14:18 +0000677 /*
678 * find the string
679 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 called_emsg = FALSE;
681 do /* loop for count */
682 {
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100683 /* When not accepting a match at the start position set "extra_col" to
684 * a non-zero value. Don't do that when starting at MAXCOL, since
685 * MAXCOL + 1 is zero. */
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200686 if (pos->col == MAXCOL)
687 start_char_len = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100688#ifdef FEAT_MBYTE
689 /* Watch out for the "col" being MAXCOL - 2, used in a closed fold. */
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200690 else if (has_mbyte
691 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
692 && pos->col < MAXCOL - 2)
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100693 {
Bram Moolenaar82846a02018-02-09 18:09:54 +0100694 ptr = ml_get_buf(buf, pos->lnum, FALSE);
Bram Moolenaar8846ac52018-02-09 19:24:01 +0100695 if ((int)STRLEN(ptr) <= pos->col)
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200696 start_char_len = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100697 else
Bram Moolenaar82846a02018-02-09 18:09:54 +0100698 start_char_len = (*mb_ptr2len)(ptr + pos->col);
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100699 }
700#endif
701 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200702 start_char_len = 1;
703 if (dir == FORWARD)
704 {
705 if (options & SEARCH_START)
706 extra_col = 0;
707 else
708 extra_col = start_char_len;
709 }
710 else
711 {
712 if (options & SEARCH_START)
713 extra_col = start_char_len;
714 else
715 extra_col = 0;
716 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100717
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 start_pos = *pos; /* remember start pos for detecting no match */
719 found = 0; /* default: not found */
720 at_first_line = TRUE; /* default: start in first line */
721 if (pos->lnum == 0) /* correct lnum for when starting in line 0 */
722 {
723 pos->lnum = 1;
724 pos->col = 0;
725 at_first_line = FALSE; /* not in first line now */
726 }
727
728 /*
729 * Start searching in current line, unless searching backwards and
730 * we're in column 0.
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000731 * If we are searching backwards, in column 0, and not including the
732 * current position, gain some efficiency by skipping back a line.
733 * Otherwise begin the search in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 */
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000735 if (dir == BACKWARD && start_pos.col == 0
736 && (options & SEARCH_START) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737 {
738 lnum = pos->lnum - 1;
739 at_first_line = FALSE;
740 }
741 else
742 lnum = pos->lnum;
743
744 for (loop = 0; loop <= 1; ++loop) /* loop twice if 'wrapscan' set */
745 {
746 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
747 lnum += dir, at_first_line = FALSE)
748 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000749 /* Stop after checking "stop_lnum", if it's set. */
750 if (stop_lnum != 0 && (dir == FORWARD
751 ? lnum > stop_lnum : lnum < stop_lnum))
752 break;
Bram Moolenaar76929292008-01-06 19:07:36 +0000753#ifdef FEAT_RELTIME
754 /* Stop after passing the "tm" time limit. */
755 if (tm != NULL && profile_passed_limit(tm))
756 break;
757#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000758
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000760 * Look for a match somewhere in line "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100762 col = at_first_line && (options & SEARCH_COL) ? pos->col
763 : (colnr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 nmatched = vim_regexec_multi(&regmatch, win, buf,
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100765 lnum, col,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000766#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200767 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000768#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200769 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000770#endif
771 );
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 /* Abort searching on an error (e.g., out of stack). */
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200773 if (called_emsg
774#ifdef FEAT_RELTIME
775 || (timed_out != NULL && *timed_out)
776#endif
777 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 break;
779 if (nmatched > 0)
780 {
781 /* match may actually be in another line when using \zs */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000782 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 endpos = regmatch.endpos[0];
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000784#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 submatch = first_submatch(&regmatch);
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000786#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000787 /* "lnum" may be past end of buffer for "\n\zs". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000788 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
789 ptr = (char_u *)"";
790 else
791 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792
793 /*
794 * Forward search in the first line: match should be after
795 * the start position. If not, continue at the end of the
796 * match (this is vi compatible) or on the next char.
797 */
798 if (dir == FORWARD && at_first_line)
799 {
800 match_ok = TRUE;
801 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000802 * When the match starts in a next line it's certainly
803 * past the start position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804 * When match lands on a NUL the cursor will be put
805 * one back afterwards, compare with that position,
806 * otherwise "/$" will get stuck on end of line.
807 */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000808 while (matchpos.lnum == 0
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100809 && ((options & SEARCH_END) && first_match
Bram Moolenaar677ee682005-01-27 14:41:15 +0000810 ? (nmatched == 1
811 && (int)endpos.col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 < (int)start_pos.col + extra_col)
Bram Moolenaar677ee682005-01-27 14:41:15 +0000813 : ((int)matchpos.col
814 - (ptr[matchpos.col] == NUL)
815 < (int)start_pos.col + extra_col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 {
817 /*
818 * If vi-compatible searching, continue at the end
819 * of the match, otherwise continue one position
820 * forward.
821 */
822 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
823 {
824 if (nmatched > 1)
825 {
826 /* end is in next line, thus no match in
827 * this line */
828 match_ok = FALSE;
829 break;
830 }
831 matchcol = endpos.col;
832 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000833 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 && ptr[matchcol] != NUL)
835 {
836#ifdef FEAT_MBYTE
837 if (has_mbyte)
838 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000839 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 else
841#endif
842 ++matchcol;
843 }
844 }
845 else
846 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000847 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848 if (ptr[matchcol] != NUL)
849 {
850#ifdef FEAT_MBYTE
851 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000852 matchcol += (*mb_ptr2len)(ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 + matchcol);
854 else
855#endif
856 ++matchcol;
857 }
858 }
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200859 if (matchcol == 0 && (options & SEARCH_START))
Bram Moolenaardb333a52013-03-19 15:27:48 +0100860 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861 if (ptr[matchcol] == NUL
862 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000863 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000864 matchcol,
865#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200866 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000867#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200868 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000869#endif
870 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 {
872 match_ok = FALSE;
873 break;
874 }
Bram Moolenaar677ee682005-01-27 14:41:15 +0000875 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 endpos = regmatch.endpos[0];
877# ifdef FEAT_EVAL
878 submatch = first_submatch(&regmatch);
879# endif
880
881 /* Need to get the line pointer again, a
882 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000883 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 }
885 if (!match_ok)
886 continue;
887 }
888 if (dir == BACKWARD)
889 {
890 /*
891 * Now, if there are multiple matches on this line,
892 * we have to get the last one. Or the last one before
893 * the cursor, if we're on that line.
894 * When putting the new cursor at the end, compare
895 * relative to the end of the match.
896 */
897 match_ok = FALSE;
898 for (;;)
899 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000900 /* Remember a position that is before the start
901 * position, we use it if it's the last match in
902 * the line. Always accept a position after
903 * wrapping around. */
904 if (loop
905 || ((options & SEARCH_END)
906 ? (lnum + regmatch.endpos[0].lnum
907 < start_pos.lnum
908 || (lnum + regmatch.endpos[0].lnum
909 == start_pos.lnum
910 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200911 < (int)start_pos.col
912 + extra_col))
Bram Moolenaar677ee682005-01-27 14:41:15 +0000913 : (lnum + regmatch.startpos[0].lnum
914 < start_pos.lnum
915 || (lnum + regmatch.startpos[0].lnum
916 == start_pos.lnum
917 && (int)regmatch.startpos[0].col
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200918 < (int)start_pos.col
919 + extra_col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000922 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923 endpos = regmatch.endpos[0];
924# ifdef FEAT_EVAL
925 submatch = first_submatch(&regmatch);
926# endif
927 }
928 else
929 break;
930
931 /*
932 * We found a valid match, now check if there is
933 * another one after it.
934 * If vi-compatible searching, continue at the end
935 * of the match, otherwise continue one position
936 * forward.
937 */
938 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
939 {
940 if (nmatched > 1)
941 break;
942 matchcol = endpos.col;
943 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000944 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945 && ptr[matchcol] != NUL)
946 {
947#ifdef FEAT_MBYTE
948 if (has_mbyte)
949 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000950 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 else
952#endif
953 ++matchcol;
954 }
955 }
956 else
957 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000958 /* Stop when the match is in a next line. */
959 if (matchpos.lnum > 0)
960 break;
961 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 if (ptr[matchcol] != NUL)
963 {
964#ifdef FEAT_MBYTE
965 if (has_mbyte)
966 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000967 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 else
969#endif
970 ++matchcol;
971 }
972 }
973 if (ptr[matchcol] == NUL
974 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000975 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000976 matchcol,
977#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200978 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000979#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200980 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000981#endif
982 )) == 0)
Bram Moolenaar9d322762018-02-09 16:04:25 +0100983 {
984#ifdef FEAT_RELTIME
985 /* If the search timed out, we did find a match
986 * but it might be the wrong one, so that's not
987 * OK. */
988 if (timed_out != NULL && *timed_out)
989 match_ok = FALSE;
990#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 break;
Bram Moolenaar9d322762018-02-09 16:04:25 +0100992 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993
994 /* Need to get the line pointer again, a
995 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000996 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 }
998
999 /*
1000 * If there is only a match after the cursor, skip
1001 * this match.
1002 */
1003 if (!match_ok)
1004 continue;
1005 }
1006
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001007 /* With the SEARCH_END option move to the last character
1008 * of the match. Don't do it for an empty match, end
1009 * should be same as start then. */
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +02001010 if ((options & SEARCH_END) && !(options & SEARCH_NOOF)
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001011 && !(matchpos.lnum == endpos.lnum
1012 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001014 /* For a match in the first column, set the position
1015 * on the NUL in the previous line. */
Bram Moolenaar677ee682005-01-27 14:41:15 +00001016 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001017 pos->col = endpos.col;
1018 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001019 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001020 if (pos->lnum > 1) /* just in case */
1021 {
1022 --pos->lnum;
1023 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
1024 pos->lnum, FALSE));
1025 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001026 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001027 else
1028 {
1029 --pos->col;
1030#ifdef FEAT_MBYTE
1031 if (has_mbyte
1032 && pos->lnum <= buf->b_ml.ml_line_count)
1033 {
1034 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1035 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
1036 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001037#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001038 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001039 if (end_pos != NULL)
1040 {
1041 end_pos->lnum = lnum + matchpos.lnum;
1042 end_pos->col = matchpos.col;
1043 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 }
1045 else
1046 {
Bram Moolenaar677ee682005-01-27 14:41:15 +00001047 pos->lnum = lnum + matchpos.lnum;
1048 pos->col = matchpos.col;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001049 if (end_pos != NULL)
1050 {
1051 end_pos->lnum = lnum + endpos.lnum;
1052 end_pos->col = endpos.col;
1053 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 }
1055#ifdef FEAT_VIRTUALEDIT
1056 pos->coladd = 0;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001057 if (end_pos != NULL)
1058 end_pos->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059#endif
1060 found = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +01001061 first_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062
1063 /* Set variables used for 'incsearch' highlighting. */
Bram Moolenaar677ee682005-01-27 14:41:15 +00001064 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 search_match_endcol = endpos.col;
1066 break;
1067 }
1068 line_breakcheck(); /* stop if ctrl-C typed */
1069 if (got_int)
1070 break;
1071
1072#ifdef FEAT_SEARCH_EXTRA
1073 /* Cancel searching if a character was typed. Used for
1074 * 'incsearch'. Don't check too often, that would slowdown
1075 * searching too much. */
1076 if ((options & SEARCH_PEEK)
1077 && ((lnum - pos->lnum) & 0x3f) == 0
1078 && char_avail())
1079 {
1080 break_loop = TRUE;
1081 break;
1082 }
1083#endif
1084
1085 if (loop && lnum == start_pos.lnum)
1086 break; /* if second loop, stop where started */
1087 }
1088 at_first_line = FALSE;
1089
1090 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001091 * Stop the search if wrapscan isn't set, "stop_lnum" is
1092 * specified, after an interrupt, after a match and after looping
1093 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001095 if (!p_ws || stop_lnum != 0 || got_int || called_emsg
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001096#ifdef FEAT_RELTIME
1097 || (timed_out != NULL && *timed_out)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001098#endif
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001099#ifdef FEAT_SEARCH_EXTRA
1100 || break_loop
1101#endif
1102 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 break;
1104
1105 /*
1106 * If 'wrapscan' is set we continue at the other end of the file.
1107 * If 'shortmess' does not contain 's', we give a message.
1108 * This message is also remembered in keep_msg for when the screen
1109 * is redrawn. The keep_msg is cleared whenever another message is
1110 * written.
1111 */
1112 if (dir == BACKWARD) /* start second loop at the other end */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00001116 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
1117 give_warning((char_u *)_(dir == BACKWARD
1118 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00001120 if (got_int || called_emsg
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001121#ifdef FEAT_RELTIME
1122 || (timed_out != NULL && *timed_out)
1123#endif
Bram Moolenaar78a15312009-05-15 19:33:18 +00001124#ifdef FEAT_SEARCH_EXTRA
1125 || break_loop
1126#endif
1127 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 break;
1129 }
1130 while (--count > 0 && found); /* stop after count matches or no match */
1131
Bram Moolenaar473de612013-06-08 18:19:48 +02001132 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133
Bram Moolenaar280f1262006-01-30 00:14:18 +00001134 called_emsg |= save_called_emsg;
1135
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 if (!found) /* did not find it */
1137 {
1138 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001139 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 else if ((options & SEARCH_MSG) == SEARCH_MSG)
1141 {
1142 if (p_ws)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001143 semsg(_(e_patnotf2), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 else if (lnum == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001145 semsg(_("E384: search hit TOP without match for: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 mr_pattern);
1147 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001148 semsg(_("E385: search hit BOTTOM without match for: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 mr_pattern);
1150 }
1151 return FAIL;
1152 }
1153
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001154 /* A pattern like "\n\zs" may go past the last line. */
1155 if (pos->lnum > buf->b_ml.ml_line_count)
1156 {
1157 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001158 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001159 if (pos->col > 0)
1160 --pos->col;
1161 }
1162
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 return submatch + 1;
1164}
1165
1166#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001167 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001168set_search_direction(int cdir)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001169{
1170 spats[0].off.dir = cdir;
1171}
1172
1173 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001174set_vv_searchforward(void)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001175{
1176 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1177}
1178
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179/*
1180 * Return the number of the first subpat that matched.
Bram Moolenaarad4d8a12015-12-28 19:20:36 +01001181 * Return zero if none of them matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 */
1183 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001184first_submatch(regmmatch_T *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185{
1186 int submatch;
1187
1188 for (submatch = 1; ; ++submatch)
1189 {
1190 if (rp->startpos[submatch].lnum >= 0)
1191 break;
1192 if (submatch == 9)
1193 {
1194 submatch = 0;
1195 break;
1196 }
1197 }
1198 return submatch;
1199}
1200#endif
1201
1202/*
1203 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001204 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 * If 'dirc' is 0: use previous dir.
1206 * If 'pat' is NULL or empty : use previous string.
1207 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1208 * If 'options & SEARCH_ECHO': echo the search command and handle options
1209 * If 'options & SEARCH_MSG' : may give error message
1210 * If 'options & SEARCH_OPT' : interpret optional flags
1211 * If 'options & SEARCH_HIS' : put search pattern in history
1212 * If 'options & SEARCH_NOOF': don't add offset to position
1213 * If 'options & SEARCH_MARK': set previous context mark
1214 * If 'options & SEARCH_KEEP': keep previous search pattern
1215 * If 'options & SEARCH_START': accept match at curpos itself
1216 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1217 *
1218 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1219 * makes the movement linewise without moving the match position.
1220 *
Bram Moolenaarb6c27352015-03-05 19:57:49 +01001221 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 */
1223 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001224do_search(
1225 oparg_T *oap, /* can be NULL */
1226 int dirc, /* '/' or '?' */
1227 char_u *pat,
1228 long count,
1229 int options,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001230 proftime_T *tm, /* timeout limit or NULL */
1231 int *timed_out) /* flag set on timeout or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232{
1233 pos_T pos; /* position of the last match */
1234 char_u *searchstr;
1235 struct soffset old_off;
1236 int retval; /* Return value */
1237 char_u *p;
1238 long c;
1239 char_u *dircp;
1240 char_u *strcopy = NULL;
1241 char_u *ps;
1242
1243 /*
1244 * A line offset is not remembered, this is vi compatible.
1245 */
1246 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1247 {
1248 spats[0].off.line = FALSE;
1249 spats[0].off.off = 0;
1250 }
1251
1252 /*
1253 * Save the values for when (options & SEARCH_KEEP) is used.
1254 * (there is no "if ()" around this because gcc wants them initialized)
1255 */
1256 old_off = spats[0].off;
1257
1258 pos = curwin->w_cursor; /* start searching at the cursor position */
1259
1260 /*
1261 * Find out the direction of the search.
1262 */
1263 if (dirc == 0)
1264 dirc = spats[0].off.dir;
1265 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001266 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001268#if defined(FEAT_EVAL)
1269 set_vv_searchforward();
1270#endif
1271 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 if (options & SEARCH_REV)
1273 {
1274#ifdef WIN32
1275 /* There is a bug in the Visual C++ 2.2 compiler which means that
1276 * dirc always ends up being '/' */
1277 dirc = (dirc == '/') ? '?' : '/';
1278#else
1279 if (dirc == '/')
1280 dirc = '?';
1281 else
1282 dirc = '/';
1283#endif
1284 }
1285
1286#ifdef FEAT_FOLDING
1287 /* If the cursor is in a closed fold, don't find another match in the same
1288 * fold. */
1289 if (dirc == '/')
1290 {
1291 if (hasFolding(pos.lnum, NULL, &pos.lnum))
1292 pos.col = MAXCOL - 2; /* avoid overflow when adding 1 */
1293 }
1294 else
1295 {
1296 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1297 pos.col = 0;
1298 }
1299#endif
1300
1301#ifdef FEAT_SEARCH_EXTRA
1302 /*
1303 * Turn 'hlsearch' highlighting back on.
1304 */
1305 if (no_hlsearch && !(options & SEARCH_KEEP))
1306 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001307 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02001308 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 }
1310#endif
1311
1312 /*
1313 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1314 */
1315 for (;;)
1316 {
1317 searchstr = pat;
1318 dircp = NULL;
1319 /* use previous pattern */
1320 if (pat == NULL || *pat == NUL || *pat == dirc)
1321 {
1322 if (spats[RE_SEARCH].pat == NULL) /* no previous pattern */
1323 {
Bram Moolenaarea683da2016-09-09 21:41:34 +02001324 searchstr = spats[RE_SUBST].pat;
1325 if (searchstr == NULL)
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001326 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001327 emsg(_(e_noprevre));
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001328 retval = 0;
1329 goto end_do_search;
1330 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001332 else
1333 {
1334 /* make search_regcomp() use spats[RE_SEARCH].pat */
1335 searchstr = (char_u *)"";
1336 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 }
1338
1339 if (pat != NULL && *pat != NUL) /* look for (new) offset */
1340 {
1341 /*
1342 * Find end of regular expression.
1343 * If there is a matching '/' or '?', toss it.
1344 */
1345 ps = strcopy;
1346 p = skip_regexp(pat, dirc, (int)p_magic, &strcopy);
1347 if (strcopy != ps)
1348 {
1349 /* made a copy of "pat" to change "\?" to "?" */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001350 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 pat = strcopy;
1352 searchstr = strcopy;
1353 }
1354 if (*p == dirc)
1355 {
1356 dircp = p; /* remember where we put the NUL */
1357 *p++ = NUL;
1358 }
1359 spats[0].off.line = FALSE;
1360 spats[0].off.end = FALSE;
1361 spats[0].off.off = 0;
1362 /*
1363 * Check for a line offset or a character offset.
1364 * For get_address (echo off) we don't check for a character
1365 * offset, because it is meaningless and the 's' could be a
1366 * substitute command.
1367 */
1368 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1369 spats[0].off.line = TRUE;
1370 else if ((options & SEARCH_OPT) &&
1371 (*p == 'e' || *p == 's' || *p == 'b'))
1372 {
1373 if (*p == 'e') /* end */
1374 spats[0].off.end = SEARCH_END;
1375 ++p;
1376 }
1377 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') /* got an offset */
1378 {
1379 /* 'nr' or '+nr' or '-nr' */
1380 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1381 spats[0].off.off = atol((char *)p);
1382 else if (*p == '-') /* single '-' */
1383 spats[0].off.off = -1;
1384 else /* single '+' */
1385 spats[0].off.off = 1;
1386 ++p;
1387 while (VIM_ISDIGIT(*p)) /* skip number */
1388 ++p;
1389 }
1390
1391 /* compute length of search command for get_address() */
1392 searchcmdlen += (int)(p - pat);
1393
1394 pat = p; /* put pat after search command */
1395 }
1396
1397 if ((options & SEARCH_ECHO) && messaging()
1398 && !cmd_silent && msg_silent == 0)
1399 {
1400 char_u *msgbuf;
1401 char_u *trunc;
1402
1403 if (*searchstr == NUL)
Bram Moolenaar2fb8f682018-12-01 13:14:45 +01001404 p = spats[0].pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 else
1406 p = searchstr;
1407 msgbuf = alloc((unsigned)(STRLEN(p) + 40));
1408 if (msgbuf != NULL)
1409 {
1410 msgbuf[0] = dirc;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001411#ifdef FEAT_MBYTE
1412 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1413 {
1414 /* Use a space to draw the composing char on. */
1415 msgbuf[1] = ' ';
1416 STRCPY(msgbuf + 2, p);
1417 }
1418 else
1419#endif
1420 STRCPY(msgbuf + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 if (spats[0].off.line || spats[0].off.end || spats[0].off.off)
1422 {
1423 p = msgbuf + STRLEN(msgbuf);
1424 *p++ = dirc;
1425 if (spats[0].off.end)
1426 *p++ = 'e';
1427 else if (!spats[0].off.line)
1428 *p++ = 's';
1429 if (spats[0].off.off > 0 || spats[0].off.line)
1430 *p++ = '+';
1431 if (spats[0].off.off != 0 || spats[0].off.line)
1432 sprintf((char *)p, "%ld", spats[0].off.off);
1433 else
1434 *p = NUL;
1435 }
1436
1437 msg_start();
Bram Moolenaara4a08382005-09-09 19:52:02 +00001438 trunc = msg_strtrunc(msgbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439
1440#ifdef FEAT_RIGHTLEFT
1441 /* The search pattern could be shown on the right in rightleft
1442 * mode, but the 'ruler' and 'showcmd' area use it too, thus
1443 * it would be blanked out again very soon. Show it on the
1444 * left, but do reverse the text. */
1445 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1446 {
1447 char_u *r;
1448
1449 r = reverse_text(trunc != NULL ? trunc : msgbuf);
1450 if (r != NULL)
1451 {
1452 vim_free(trunc);
1453 trunc = r;
1454 }
1455 }
1456#endif
1457 if (trunc != NULL)
1458 {
1459 msg_outtrans(trunc);
1460 vim_free(trunc);
1461 }
1462 else
1463 msg_outtrans(msgbuf);
1464 msg_clr_eos();
1465 msg_check();
1466 vim_free(msgbuf);
1467
1468 gotocmdline(FALSE);
1469 out_flush();
1470 msg_nowait = TRUE; /* don't wait for this message */
1471 }
1472 }
1473
1474 /*
1475 * If there is a character offset, subtract it from the current
1476 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001477 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478 * This is not done for a line offset, because then we would not be vi
1479 * compatible.
1480 */
Bram Moolenaared203462004-06-16 11:19:22 +00001481 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482 {
1483 if (spats[0].off.off > 0)
1484 {
1485 for (c = spats[0].off.off; c; --c)
1486 if (decl(&pos) == -1)
1487 break;
1488 if (c) /* at start of buffer */
1489 {
1490 pos.lnum = 0; /* allow lnum == 0 here */
1491 pos.col = MAXCOL;
1492 }
1493 }
1494 else
1495 {
1496 for (c = spats[0].off.off; c; ++c)
1497 if (incl(&pos) == -1)
1498 break;
1499 if (c) /* at end of buffer */
1500 {
1501 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1502 pos.col = 0;
1503 }
1504 }
1505 }
1506
1507#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
1508 if (p_altkeymap && curwin->w_p_rl)
1509 lrFswap(searchstr,0);
1510#endif
1511
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001512 c = searchit(curwin, curbuf, &pos, NULL, dirc == '/' ? FORWARD : BACKWARD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 searchstr, count, spats[0].off.end + (options &
1514 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1515 + SEARCH_MSG + SEARCH_START
1516 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001517 RE_LAST, (linenr_T)0, tm, timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518
1519 if (dircp != NULL)
1520 *dircp = dirc; /* restore second '/' or '?' for normal_cmd() */
1521 if (c == FAIL)
1522 {
1523 retval = 0;
1524 goto end_do_search;
1525 }
1526 if (spats[0].off.end && oap != NULL)
1527 oap->inclusive = TRUE; /* 'e' includes last character */
1528
1529 retval = 1; /* pattern found */
1530
1531 /*
1532 * Add character and/or line offset
1533 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001534 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535 {
1536 if (spats[0].off.line) /* Add the offset to the line number. */
1537 {
1538 c = pos.lnum + spats[0].off.off;
1539 if (c < 1)
1540 pos.lnum = 1;
1541 else if (c > curbuf->b_ml.ml_line_count)
1542 pos.lnum = curbuf->b_ml.ml_line_count;
1543 else
1544 pos.lnum = c;
1545 pos.col = 0;
1546
1547 retval = 2; /* pattern found, line offset added */
1548 }
Bram Moolenaared203462004-06-16 11:19:22 +00001549 else if (pos.col < MAXCOL - 2) /* just in case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 {
1551 /* to the right, check for end of file */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001552 c = spats[0].off.off;
1553 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001555 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 if (incl(&pos) == -1)
1557 break;
1558 }
1559 /* to the left, check for start of file */
1560 else
1561 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001562 while (c++ < 0)
1563 if (decl(&pos) == -1)
1564 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 }
1566 }
1567 }
1568
1569 /*
1570 * The search command can be followed by a ';' to do another search.
1571 * For example: "/pat/;/foo/+3;?bar"
1572 * This is like doing another search command, except:
1573 * - The remembered direction '/' or '?' is from the first search.
1574 * - When an error happens the cursor isn't moved at all.
1575 * Don't do this when called by get_address() (it handles ';' itself).
1576 */
1577 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1578 break;
1579
1580 dirc = *++pat;
1581 if (dirc != '?' && dirc != '/')
1582 {
1583 retval = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001584 emsg(_("E386: Expected '?' or '/' after ';'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 goto end_do_search;
1586 }
1587 ++pat;
1588 }
1589
1590 if (options & SEARCH_MARK)
1591 setpcmark();
1592 curwin->w_cursor = pos;
1593 curwin->w_set_curswant = TRUE;
1594
1595end_do_search:
Bram Moolenaarac8400d2014-01-14 21:31:34 +01001596 if ((options & SEARCH_KEEP) || cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 spats[0].off = old_off;
1598 vim_free(strcopy);
1599
1600 return retval;
1601}
1602
1603#if defined(FEAT_INS_EXPAND) || defined(PROTO)
1604/*
1605 * search_for_exact_line(buf, pos, dir, pat)
1606 *
1607 * Search for a line starting with the given pattern (ignoring leading
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001608 * white-space), starting from pos and going in direction "dir". "pos" will
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 * contain the position of the match found. Blank lines match only if
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001610 * ADDING is set. If p_ic is set then the pattern must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 * Return OK for success, or FAIL if no line found.
1612 */
1613 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001614search_for_exact_line(
1615 buf_T *buf,
1616 pos_T *pos,
1617 int dir,
1618 char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619{
1620 linenr_T start = 0;
1621 char_u *ptr;
1622 char_u *p;
1623
1624 if (buf->b_ml.ml_line_count == 0)
1625 return FAIL;
1626 for (;;)
1627 {
1628 pos->lnum += dir;
1629 if (pos->lnum < 1)
1630 {
1631 if (p_ws)
1632 {
1633 pos->lnum = buf->b_ml.ml_line_count;
1634 if (!shortmess(SHM_SEARCH))
1635 give_warning((char_u *)_(top_bot_msg), TRUE);
1636 }
1637 else
1638 {
1639 pos->lnum = 1;
1640 break;
1641 }
1642 }
1643 else if (pos->lnum > buf->b_ml.ml_line_count)
1644 {
1645 if (p_ws)
1646 {
1647 pos->lnum = 1;
1648 if (!shortmess(SHM_SEARCH))
1649 give_warning((char_u *)_(bot_top_msg), TRUE);
1650 }
1651 else
1652 {
1653 pos->lnum = 1;
1654 break;
1655 }
1656 }
1657 if (pos->lnum == start)
1658 break;
1659 if (start == 0)
1660 start = pos->lnum;
1661 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1662 p = skipwhite(ptr);
1663 pos->col = (colnr_T) (p - ptr);
1664
1665 /* when adding lines the matching line may be empty but it is not
1666 * ignored because we are interested in the next line -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001667 if ((compl_cont_status & CONT_ADDING)
1668 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 {
1670 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1671 return OK;
1672 }
1673 else if (*p != NUL) /* ignore empty lines */
1674 { /* expanding lines or words */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001675 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1676 : STRNCMP(p, pat, compl_length)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 return OK;
1678 }
1679 }
1680 return FAIL;
1681}
1682#endif /* FEAT_INS_EXPAND */
1683
1684/*
1685 * Character Searches
1686 */
1687
1688/*
1689 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1690 * position of the character, otherwise move to just before the char.
1691 * Do this "cap->count1" times.
1692 * Return FAIL or OK.
1693 */
1694 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001695searchc(cmdarg_T *cap, int t_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696{
1697 int c = cap->nchar; /* char to search for */
1698 int dir = cap->arg; /* TRUE for searching forward */
1699 long count = cap->count1; /* repeat count */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 int col;
1701 char_u *p;
1702 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001703 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704
1705 if (c != NUL) /* normal search: remember args for repeat */
1706 {
1707 if (!KeyStuffed) /* don't remember when redoing */
1708 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001709 *lastc = c;
1710 set_csearch_direction(dir);
1711 set_csearch_until(t_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712#ifdef FEAT_MBYTE
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001713 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 if (cap->ncharC1 != 0)
1715 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001716 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1,
1717 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 if (cap->ncharC2 != 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001719 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2,
1720 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 }
1722#endif
1723 }
1724 }
1725 else /* repeat previous search */
1726 {
Bram Moolenaar454709b2017-03-12 16:37:14 +01001727 if (*lastc == NUL
1728#ifdef FEAT_MBYTE
1729 && lastc_bytelen == 1
1730#endif
1731 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 return FAIL;
1733 if (dir) /* repeat in opposite direction */
1734 dir = -lastcdir;
1735 else
1736 dir = lastcdir;
1737 t_cmd = last_t_cmd;
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001738 c = *lastc;
1739 /* For multi-byte re-use last lastc_bytes[] and lastc_bytelen. */
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001740
1741 /* Force a move of at least one char, so ";" and "," will move the
1742 * cursor, even if the cursor is right in front of char we are looking
1743 * at. */
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001744 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001745 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 }
1747
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001748 if (dir == BACKWARD)
1749 cap->oap->inclusive = FALSE;
1750 else
1751 cap->oap->inclusive = TRUE;
1752
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 p = ml_get_curline();
1754 col = curwin->w_cursor.col;
1755 len = (int)STRLEN(p);
1756
1757 while (count--)
1758 {
1759#ifdef FEAT_MBYTE
1760 if (has_mbyte)
1761 {
1762 for (;;)
1763 {
1764 if (dir > 0)
1765 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001766 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 if (col >= len)
1768 return FAIL;
1769 }
1770 else
1771 {
1772 if (col == 0)
1773 return FAIL;
1774 col -= (*mb_head_off)(p, p + col - 1) + 1;
1775 }
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001776 if (lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001778 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 break;
1780 }
Bram Moolenaar66727e12017-03-01 22:17:05 +01001781 else if (STRNCMP(p + col, lastc_bytes, lastc_bytelen) == 0
Bram Moolenaarb129a442016-12-01 17:25:20 +01001782 && stop)
Bram Moolenaar66727e12017-03-01 22:17:05 +01001783 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001784 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 }
1786 }
1787 else
1788#endif
1789 {
1790 for (;;)
1791 {
1792 if ((col += dir) < 0 || col >= len)
1793 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001794 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001796 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 }
1798 }
1799 }
1800
1801 if (t_cmd)
1802 {
1803 /* backup to before the character (possibly double-byte) */
1804 col -= dir;
1805#ifdef FEAT_MBYTE
1806 if (has_mbyte)
1807 {
1808 if (dir < 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001809 /* Landed on the search char which is lastc_bytelen long */
1810 col += lastc_bytelen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 else
1812 /* To previous char, which may be multi-byte. */
1813 col -= (*mb_head_off)(p, p + col);
1814 }
1815#endif
1816 }
1817 curwin->w_cursor.col = col;
1818
1819 return OK;
1820}
1821
1822/*
1823 * "Other" Searches
1824 */
1825
1826/*
1827 * findmatch - find the matching paren or brace
1828 *
1829 * Improvement over vi: Braces inside quotes are ignored.
1830 */
1831 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001832findmatch(oparg_T *oap, int initc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833{
1834 return findmatchlimit(oap, initc, 0, 0);
1835}
1836
1837/*
1838 * Return TRUE if the character before "linep[col]" equals "ch".
1839 * Return FALSE if "col" is zero.
1840 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1841 * is NULL.
1842 * Handles multibyte string correctly.
1843 */
1844 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001845check_prevcol(
1846 char_u *linep,
1847 int col,
1848 int ch,
1849 int *prevcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850{
1851 --col;
1852#ifdef FEAT_MBYTE
1853 if (col > 0 && has_mbyte)
1854 col -= (*mb_head_off)(linep, linep + col);
1855#endif
1856 if (prevcol)
1857 *prevcol = col;
1858 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1859}
1860
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001861/*
1862 * Raw string start is found at linep[startpos.col - 1].
1863 * Return TRUE if the matching end can be found between startpos and endpos.
1864 */
1865 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001866find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos)
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001867{
1868 char_u *p;
1869 char_u *delim_copy;
1870 size_t delim_len;
1871 linenr_T lnum;
1872 int found = FALSE;
1873
1874 for (p = linep + startpos->col + 1; *p && *p != '('; ++p)
1875 ;
1876 delim_len = (p - linep) - startpos->col - 1;
Bram Moolenaar6ed535d2015-08-26 23:01:21 +02001877 delim_copy = vim_strnsave(linep + startpos->col + 1, (int)delim_len);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001878 if (delim_copy == NULL)
1879 return FALSE;
1880 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum)
1881 {
1882 char_u *line = ml_get(lnum);
1883
1884 for (p = line + (lnum == startpos->lnum
1885 ? startpos->col + 1 : 0); *p; ++p)
1886 {
1887 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col)
1888 break;
1889 if (*p == ')' && p[delim_len + 1] == '"'
1890 && STRNCMP(delim_copy, p + 1, delim_len) == 0)
1891 {
1892 found = TRUE;
1893 break;
1894 }
1895 }
1896 if (found)
1897 break;
1898 }
1899 vim_free(delim_copy);
1900 return found;
1901}
1902
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903/*
1904 * findmatchlimit -- find the matching paren or brace, if it exists within
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001905 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling
1906 * off the edge of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 *
1908 * "initc" is the character to find a match for. NUL means to find the
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001909 * character at or after the cursor. Special values:
1910 * '*' look for C-style comment / *
1911 * '/' look for C-style comment / *, ignoring comment-end
1912 * '#' look for preprocessor directives
1913 * 'R' look for raw string start: R"delim(text)delim" (only backwards)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914 *
1915 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
1916 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
1917 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
1918 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001919 *
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001920 * "oap" is only used to set oap->motion_type for a linewise motion, it can be
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001921 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 */
1923
1924 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001925findmatchlimit(
1926 oparg_T *oap,
1927 int initc,
1928 int flags,
1929 int maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930{
1931 static pos_T pos; /* current search position */
1932 int findc = 0; /* matching brace */
1933 int c;
1934 int count = 0; /* cumulative number of braces */
1935 int backwards = FALSE; /* init for gcc */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001936 int raw_string = FALSE; /* search for raw string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937 int inquote = FALSE; /* TRUE when inside quotes */
1938 char_u *linep; /* pointer to current line */
1939 char_u *ptr;
1940 int do_quotes; /* check for quotes in current line */
1941 int at_start; /* do_quotes value at start position */
1942 int hash_dir = 0; /* Direction searched for # things */
1943 int comment_dir = 0; /* Direction searched for comments */
1944 pos_T match_pos; /* Where last slash-star was found */
1945 int start_in_quotes; /* start position is in quotes */
1946 int traveled = 0; /* how far we've searched so far */
1947 int ignore_cend = FALSE; /* ignore comment end */
1948 int cpo_match; /* vi compatible matching */
1949 int cpo_bsl; /* don't recognize backslashes */
1950 int match_escaped = 0; /* search for escaped match */
1951 int dir; /* Direction to search */
1952 int comment_col = MAXCOL; /* start of / / comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001953#ifdef FEAT_LISP
1954 int lispcomm = FALSE; /* inside of Lisp-style comment */
1955 int lisp = curbuf->b_p_lisp; /* engage Lisp-specific hacks ;) */
1956#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957
1958 pos = curwin->w_cursor;
Bram Moolenaarc56c4592013-08-14 17:45:29 +02001959#ifdef FEAT_VIRTUALEDIT
1960 pos.coladd = 0;
1961#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 linep = ml_get(pos.lnum);
1963
1964 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
1965 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
1966
1967 /* Direction to search when initc is '/', '*' or '#' */
1968 if (flags & FM_BACKWARD)
1969 dir = BACKWARD;
1970 else if (flags & FM_FORWARD)
1971 dir = FORWARD;
1972 else
1973 dir = 0;
1974
1975 /*
1976 * if initc given, look in the table for the matching character
1977 * '/' and '*' are special cases: look for start or end of comment.
1978 * When '/' is used, we ignore running backwards into an star-slash, for
1979 * "[*" command, we just want to find any comment.
1980 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001981 if (initc == '/' || initc == '*' || initc == 'R')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 {
1983 comment_dir = dir;
1984 if (initc == '/')
1985 ignore_cend = TRUE;
1986 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001987 raw_string = (initc == 'R');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 initc = NUL;
1989 }
1990 else if (initc != '#' && initc != NUL)
1991 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001992 find_mps_values(&initc, &findc, &backwards, TRUE);
1993 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 return NULL;
1995 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 else
1997 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001998 /*
1999 * Either initc is '#', or no initc was given and we need to look
2000 * under the cursor.
2001 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 if (initc == '#')
2003 {
2004 hash_dir = dir;
2005 }
2006 else
2007 {
2008 /*
2009 * initc was not given, must look for something to match under
2010 * or near the cursor.
2011 * Only check for special things when 'cpo' doesn't have '%'.
2012 */
2013 if (!cpo_match)
2014 {
2015 /* Are we before or at #if, #else etc.? */
2016 ptr = skipwhite(linep);
2017 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
2018 {
2019 ptr = skipwhite(ptr + 1);
2020 if ( STRNCMP(ptr, "if", 2) == 0
2021 || STRNCMP(ptr, "endif", 5) == 0
2022 || STRNCMP(ptr, "el", 2) == 0)
2023 hash_dir = 1;
2024 }
2025
2026 /* Are we on a comment? */
2027 else if (linep[pos.col] == '/')
2028 {
2029 if (linep[pos.col + 1] == '*')
2030 {
2031 comment_dir = FORWARD;
2032 backwards = FALSE;
2033 pos.col++;
2034 }
2035 else if (pos.col > 0 && linep[pos.col - 1] == '*')
2036 {
2037 comment_dir = BACKWARD;
2038 backwards = TRUE;
2039 pos.col--;
2040 }
2041 }
2042 else if (linep[pos.col] == '*')
2043 {
2044 if (linep[pos.col + 1] == '/')
2045 {
2046 comment_dir = BACKWARD;
2047 backwards = TRUE;
2048 }
2049 else if (pos.col > 0 && linep[pos.col - 1] == '/')
2050 {
2051 comment_dir = FORWARD;
2052 backwards = FALSE;
2053 }
2054 }
2055 }
2056
2057 /*
2058 * If we are not on a comment or the # at the start of a line, then
2059 * look for brace anywhere on this line after the cursor.
2060 */
2061 if (!hash_dir && !comment_dir)
2062 {
2063 /*
2064 * Find the brace under or after the cursor.
2065 * If beyond the end of the line, use the last character in
2066 * the line.
2067 */
2068 if (linep[pos.col] == NUL && pos.col)
2069 --pos.col;
2070 for (;;)
2071 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002072 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 if (initc == NUL)
2074 break;
2075
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002076 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 if (findc)
2078 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002079 pos.col += MB_PTR2LEN(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 }
2081 if (!findc)
2082 {
2083 /* no brace in the line, maybe use " #if" then */
2084 if (!cpo_match && *skipwhite(linep) == '#')
2085 hash_dir = 1;
2086 else
2087 return NULL;
2088 }
2089 else if (!cpo_bsl)
2090 {
2091 int col, bslcnt = 0;
2092
2093 /* Set "match_escaped" if there are an odd number of
2094 * backslashes. */
2095 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2096 bslcnt++;
2097 match_escaped = (bslcnt & 1);
2098 }
2099 }
2100 }
2101 if (hash_dir)
2102 {
2103 /*
2104 * Look for matching #if, #else, #elif, or #endif
2105 */
2106 if (oap != NULL)
2107 oap->motion_type = MLINE; /* Linewise for this case only */
2108 if (initc != '#')
2109 {
2110 ptr = skipwhite(skipwhite(linep) + 1);
2111 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
2112 hash_dir = 1;
2113 else if (STRNCMP(ptr, "endif", 5) == 0)
2114 hash_dir = -1;
2115 else
2116 return NULL;
2117 }
2118 pos.col = 0;
2119 while (!got_int)
2120 {
2121 if (hash_dir > 0)
2122 {
2123 if (pos.lnum == curbuf->b_ml.ml_line_count)
2124 break;
2125 }
2126 else if (pos.lnum == 1)
2127 break;
2128 pos.lnum += hash_dir;
2129 linep = ml_get(pos.lnum);
2130 line_breakcheck(); /* check for CTRL-C typed */
2131 ptr = skipwhite(linep);
2132 if (*ptr != '#')
2133 continue;
2134 pos.col = (colnr_T) (ptr - linep);
2135 ptr = skipwhite(ptr + 1);
2136 if (hash_dir > 0)
2137 {
2138 if (STRNCMP(ptr, "if", 2) == 0)
2139 count++;
2140 else if (STRNCMP(ptr, "el", 2) == 0)
2141 {
2142 if (count == 0)
2143 return &pos;
2144 }
2145 else if (STRNCMP(ptr, "endif", 5) == 0)
2146 {
2147 if (count == 0)
2148 return &pos;
2149 count--;
2150 }
2151 }
2152 else
2153 {
2154 if (STRNCMP(ptr, "if", 2) == 0)
2155 {
2156 if (count == 0)
2157 return &pos;
2158 count--;
2159 }
2160 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
2161 {
2162 if (count == 0)
2163 return &pos;
2164 }
2165 else if (STRNCMP(ptr, "endif", 5) == 0)
2166 count++;
2167 }
2168 }
2169 return NULL;
2170 }
2171 }
2172
2173#ifdef FEAT_RIGHTLEFT
Bram Moolenaarabc97732007-08-08 20:49:37 +00002174 /* This is just guessing: when 'rightleft' is set, search for a matching
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 * paren/brace in the other direction. */
2176 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
2177 backwards = !backwards;
2178#endif
2179
2180 do_quotes = -1;
2181 start_in_quotes = MAYBE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002182 CLEAR_POS(&match_pos);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002183
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184 /* backward search: Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002185 if ((backwards && comment_dir)
2186#ifdef FEAT_LISP
2187 || lisp
2188#endif
2189 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002191#ifdef FEAT_LISP
2192 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
2193 lispcomm = TRUE; /* find match inside this comment */
2194#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 while (!got_int)
2196 {
2197 /*
2198 * Go to the next position, forward or backward. We could use
2199 * inc() and dec() here, but that is much slower
2200 */
2201 if (backwards)
2202 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002203#ifdef FEAT_LISP
2204 /* char to match is inside of comment, don't search outside */
2205 if (lispcomm && pos.col < (colnr_T)comment_col)
2206 break;
2207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208 if (pos.col == 0) /* at start of line, go to prev. one */
2209 {
2210 if (pos.lnum == 1) /* start of file */
2211 break;
2212 --pos.lnum;
2213
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002214 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 break;
2216
2217 linep = ml_get(pos.lnum);
2218 pos.col = (colnr_T)STRLEN(linep); /* pos.col on trailing NUL */
2219 do_quotes = -1;
2220 line_breakcheck();
2221
2222 /* Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002223 if (comment_dir
2224#ifdef FEAT_LISP
2225 || lisp
2226#endif
2227 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002229#ifdef FEAT_LISP
2230 /* skip comment */
2231 if (lisp && comment_col != MAXCOL)
2232 pos.col = comment_col;
2233#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 }
2235 else
2236 {
2237 --pos.col;
2238#ifdef FEAT_MBYTE
2239 if (has_mbyte)
2240 pos.col -= (*mb_head_off)(linep, linep + pos.col);
2241#endif
2242 }
2243 }
2244 else /* forward search */
2245 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002246 if (linep[pos.col] == NUL
2247 /* at end of line, go to next one */
2248#ifdef FEAT_LISP
2249 /* don't search for match in comment */
2250 || (lisp && comment_col != MAXCOL
2251 && pos.col == (colnr_T)comment_col)
2252#endif
2253 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002255 if (pos.lnum == curbuf->b_ml.ml_line_count /* end of file */
2256#ifdef FEAT_LISP
2257 /* line is exhausted and comment with it,
2258 * don't search for match in code */
2259 || lispcomm
2260#endif
2261 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 break;
2263 ++pos.lnum;
2264
2265 if (maxtravel && traveled++ > maxtravel)
2266 break;
2267
2268 linep = ml_get(pos.lnum);
2269 pos.col = 0;
2270 do_quotes = -1;
2271 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002272#ifdef FEAT_LISP
2273 if (lisp) /* find comment pos in new line */
2274 comment_col = check_linecomment(linep);
2275#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 }
2277 else
2278 {
2279#ifdef FEAT_MBYTE
2280 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002281 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 else
2283#endif
2284 ++pos.col;
2285 }
2286 }
2287
2288 /*
2289 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2290 */
2291 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2292 (linep[0] == '{' || linep[0] == '}'))
2293 {
2294 if (linep[0] == findc && count == 0) /* match! */
2295 return &pos;
2296 break; /* out of scope */
2297 }
2298
2299 if (comment_dir)
2300 {
2301 /* Note: comments do not nest, and we ignore quotes in them */
2302 /* TODO: ignore comment brackets inside strings */
2303 if (comment_dir == FORWARD)
2304 {
2305 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2306 {
2307 pos.col++;
2308 return &pos;
2309 }
2310 }
2311 else /* Searching backwards */
2312 {
2313 /*
2314 * A comment may contain / * or / /, it may also start or end
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002315 * with / * /. Ignore a / * after / / and after *.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 */
2317 if (pos.col == 0)
2318 continue;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002319 else if (raw_string)
2320 {
2321 if (linep[pos.col - 1] == 'R'
2322 && linep[pos.col] == '"'
2323 && vim_strchr(linep + pos.col + 1, '(') != NULL)
2324 {
2325 /* Possible start of raw string. Now that we have the
2326 * delimiter we can check if it ends before where we
2327 * started searching, or before the previously found
2328 * raw string start. */
2329 if (!find_rawstring_end(linep, &pos,
2330 count > 0 ? &match_pos : &curwin->w_cursor))
2331 {
2332 count++;
2333 match_pos = pos;
2334 match_pos.col--;
2335 }
2336 linep = ml_get(pos.lnum); /* may have been released */
2337 }
2338 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 else if ( linep[pos.col - 1] == '/'
2340 && linep[pos.col] == '*'
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002341 && (pos.col == 1 || linep[pos.col - 2] != '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 && (int)pos.col < comment_col)
2343 {
2344 count++;
2345 match_pos = pos;
2346 match_pos.col--;
2347 }
2348 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2349 {
2350 if (count > 0)
2351 pos = match_pos;
2352 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2353 && (int)pos.col <= comment_col)
2354 pos.col -= 2;
2355 else if (ignore_cend)
2356 continue;
2357 else
2358 return NULL;
2359 return &pos;
2360 }
2361 }
2362 continue;
2363 }
2364
2365 /*
2366 * If smart matching ('cpoptions' does not contain '%'), braces inside
2367 * of quotes are ignored, but only if there is an even number of
2368 * quotes in the line.
2369 */
2370 if (cpo_match)
2371 do_quotes = 0;
2372 else if (do_quotes == -1)
2373 {
2374 /*
2375 * Count the number of quotes in the line, skipping \" and '"'.
2376 * Watch out for "\\".
2377 */
2378 at_start = do_quotes;
2379 for (ptr = linep; *ptr; ++ptr)
2380 {
2381 if (ptr == linep + pos.col + backwards)
2382 at_start = (do_quotes & 1);
2383 if (*ptr == '"'
2384 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2385 ++do_quotes;
2386 if (*ptr == '\\' && ptr[1] != NUL)
2387 ++ptr;
2388 }
2389 do_quotes &= 1; /* result is 1 with even number of quotes */
2390
2391 /*
2392 * If we find an uneven count, check current line and previous
2393 * one for a '\' at the end.
2394 */
2395 if (!do_quotes)
2396 {
2397 inquote = FALSE;
2398 if (ptr[-1] == '\\')
2399 {
2400 do_quotes = 1;
2401 if (start_in_quotes == MAYBE)
2402 {
2403 /* Do we need to use at_start here? */
2404 inquote = TRUE;
2405 start_in_quotes = TRUE;
2406 }
2407 else if (backwards)
2408 inquote = TRUE;
2409 }
2410 if (pos.lnum > 1)
2411 {
2412 ptr = ml_get(pos.lnum - 1);
2413 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2414 {
2415 do_quotes = 1;
2416 if (start_in_quotes == MAYBE)
2417 {
2418 inquote = at_start;
2419 if (inquote)
2420 start_in_quotes = TRUE;
2421 }
2422 else if (!backwards)
2423 inquote = TRUE;
2424 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002425
2426 /* ml_get() only keeps one line, need to get linep again */
2427 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 }
2429 }
2430 }
2431 if (start_in_quotes == MAYBE)
2432 start_in_quotes = FALSE;
2433
2434 /*
2435 * If 'smartmatch' is set:
2436 * Things inside quotes are ignored by setting 'inquote'. If we
2437 * find a quote without a preceding '\' invert 'inquote'. At the
2438 * end of a line not ending in '\' we reset 'inquote'.
2439 *
2440 * In lines with an uneven number of quotes (without preceding '\')
2441 * we do not know which part to ignore. Therefore we only set
2442 * inquote if the number of quotes in a line is even, unless this
2443 * line or the previous one ends in a '\'. Complicated, isn't it?
2444 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002445 c = PTR2CHAR(linep + pos.col);
2446 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 {
2448 case NUL:
2449 /* at end of line without trailing backslash, reset inquote */
2450 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2451 {
2452 inquote = FALSE;
2453 start_in_quotes = FALSE;
2454 }
2455 break;
2456
2457 case '"':
2458 /* a quote that is preceded with an odd number of backslashes is
2459 * ignored */
2460 if (do_quotes)
2461 {
2462 int col;
2463
2464 for (col = pos.col - 1; col >= 0; --col)
2465 if (linep[col] != '\\')
2466 break;
2467 if ((((int)pos.col - 1 - col) & 1) == 0)
2468 {
2469 inquote = !inquote;
2470 start_in_quotes = FALSE;
2471 }
2472 }
2473 break;
2474
2475 /*
2476 * If smart matching ('cpoptions' does not contain '%'):
2477 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2478 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2479 * skipped, there is never a brace in them.
2480 * Ignore this when finding matches for `'.
2481 */
2482 case '\'':
2483 if (!cpo_match && initc != '\'' && findc != '\'')
2484 {
2485 if (backwards)
2486 {
2487 if (pos.col > 1)
2488 {
2489 if (linep[pos.col - 2] == '\'')
2490 {
2491 pos.col -= 2;
2492 break;
2493 }
2494 else if (linep[pos.col - 2] == '\\' &&
2495 pos.col > 2 && linep[pos.col - 3] == '\'')
2496 {
2497 pos.col -= 3;
2498 break;
2499 }
2500 }
2501 }
2502 else if (linep[pos.col + 1]) /* forward search */
2503 {
2504 if (linep[pos.col + 1] == '\\' &&
2505 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2506 {
2507 pos.col += 3;
2508 break;
2509 }
2510 else if (linep[pos.col + 2] == '\'')
2511 {
2512 pos.col += 2;
2513 break;
2514 }
2515 }
2516 }
2517 /* FALLTHROUGH */
2518
2519 default:
2520#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002521 /*
2522 * For Lisp skip over backslashed (), {} and [].
2523 * (actually, we skip #\( et al)
2524 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525 if (curbuf->b_p_lisp
2526 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002527 && pos.col > 1
2528 && check_prevcol(linep, pos.col, '\\', NULL)
2529 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 break;
2531#endif
2532
2533 /* Check for match outside of quotes, and inside of
2534 * quotes when the start is also inside of quotes. */
2535 if ((!inquote || start_in_quotes == TRUE)
2536 && (c == initc || c == findc))
2537 {
2538 int col, bslcnt = 0;
2539
2540 if (!cpo_bsl)
2541 {
2542 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2543 bslcnt++;
2544 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00002545 /* Only accept a match when 'M' is in 'cpo' or when escaping
2546 * is what we expect. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2548 {
2549 if (c == initc)
2550 count++;
2551 else
2552 {
2553 if (count == 0)
2554 return &pos;
2555 count--;
2556 }
2557 }
2558 }
2559 }
2560 }
2561
2562 if (comment_dir == BACKWARD && count > 0)
2563 {
2564 pos = match_pos;
2565 return &pos;
2566 }
2567 return (pos_T *)NULL; /* never found it */
2568}
2569
2570/*
2571 * Check if line[] contains a / / comment.
2572 * Return MAXCOL if not, otherwise return the column.
2573 * TODO: skip strings.
2574 */
2575 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002576check_linecomment(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577{
2578 char_u *p;
2579
2580 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002581#ifdef FEAT_LISP
2582 /* skip Lispish one-line comments */
2583 if (curbuf->b_p_lisp)
2584 {
2585 if (vim_strchr(p, ';') != NULL) /* there may be comments */
2586 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002587 int in_str = FALSE; /* inside of string */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002588
2589 p = line; /* scan from start */
Bram Moolenaar520470a2005-06-16 21:59:56 +00002590 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002591 {
2592 if (*p == '"')
2593 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002594 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002595 {
2596 if (*(p - 1) != '\\') /* skip escaped quote */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002597 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002598 }
2599 else if (p == line || ((p - line) >= 2
2600 /* skip #\" form */
2601 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002602 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002603 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002604 else if (!in_str && ((p - line) < 2
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002605 || (*(p - 1) != '\\' && *(p - 2) != '#')))
2606 break; /* found! */
2607 ++p;
2608 }
2609 }
2610 else
2611 p = NULL;
2612 }
2613 else
2614#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 while ((p = vim_strchr(p, '/')) != NULL)
2616 {
Bram Moolenaar78d4aba2008-01-01 14:43:35 +00002617 /* accept a double /, unless it's preceded with * and followed by *,
2618 * because * / / * is an end and start of a C comment */
2619 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620 break;
2621 ++p;
2622 }
2623
2624 if (p == NULL)
2625 return MAXCOL;
2626 return (int)(p - line);
2627}
2628
2629/*
2630 * Move cursor briefly to character matching the one under the cursor.
2631 * Used for Insert mode and "r" command.
2632 * Show the match only if it is visible on the screen.
2633 * If there isn't a match, then beep.
2634 */
2635 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002636showmatch(
2637 int c) /* char to show match for */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638{
2639 pos_T *lpos, save_cursor;
2640 pos_T mpos;
2641 colnr_T vcol;
2642 long save_so;
2643 long save_siso;
2644#ifdef CURSOR_SHAPE
2645 int save_state;
2646#endif
2647 colnr_T save_dollar_vcol;
2648 char_u *p;
2649
2650 /*
2651 * Only show match for chars in the 'matchpairs' option.
2652 */
2653 /* 'matchpairs' is "x:y,x:y" */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002654 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655 {
2656#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002657 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002658 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002659#endif
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002660 p += MB_PTR2LEN(p) + 1;
2661 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662#ifdef FEAT_RIGHTLEFT
2663 && !(curwin->w_p_rl ^ p_ri)
2664#endif
2665 )
2666 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002667 p += MB_PTR2LEN(p);
2668 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669 return;
2670 }
2671
2672 if ((lpos = findmatch(NULL, NUL)) == NULL) /* no match, so beep */
Bram Moolenaar165bc692015-07-21 17:53:25 +02002673 vim_beep(BO_MATCH);
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002674 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 {
2676 if (!curwin->w_p_wrap)
2677 getvcol(curwin, lpos, NULL, &vcol, NULL);
2678 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
Bram Moolenaar02631462017-09-22 15:20:32 +02002679 && vcol < curwin->w_leftcol + curwin->w_width))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680 {
2681 mpos = *lpos; /* save the pos, update_screen() may change it */
2682 save_cursor = curwin->w_cursor;
2683 save_so = p_so;
2684 save_siso = p_siso;
2685 /* Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2686 * stop displaying the "$". */
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002687 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2688 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 ++curwin->w_virtcol; /* do display ')' just before "$" */
2690 update_screen(VALID); /* show the new char first */
2691
2692 save_dollar_vcol = dollar_vcol;
2693#ifdef CURSOR_SHAPE
2694 save_state = State;
2695 State = SHOWMATCH;
2696 ui_cursor_shape(); /* may show different cursor shape */
2697#endif
2698 curwin->w_cursor = mpos; /* move to matching char */
2699 p_so = 0; /* don't use 'scrolloff' here */
2700 p_siso = 0; /* don't use 'sidescrolloff' here */
2701 showruler(FALSE);
2702 setcursor();
2703 cursor_on(); /* make sure that the cursor is shown */
Bram Moolenaara338adc2018-01-31 20:51:47 +01002704 out_flush_cursor(TRUE, FALSE);
2705
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 /* Restore dollar_vcol(), because setcursor() may call curs_rows()
2707 * which resets it if the matching position is in a previous line
2708 * and has a higher column number. */
2709 dollar_vcol = save_dollar_vcol;
2710
2711 /*
2712 * brief pause, unless 'm' is present in 'cpo' and a character is
2713 * available.
2714 */
2715 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
2716 ui_delay(p_mat * 100L, TRUE);
2717 else if (!char_avail())
2718 ui_delay(p_mat * 100L, FALSE);
2719 curwin->w_cursor = save_cursor; /* restore cursor position */
2720 p_so = save_so;
2721 p_siso = save_siso;
2722#ifdef CURSOR_SHAPE
2723 State = save_state;
2724 ui_cursor_shape(); /* may show different cursor shape */
2725#endif
2726 }
2727 }
2728}
2729
2730/*
Bram Moolenaar85160712018-06-19 18:27:41 +02002731 * Find the start of the next sentence, searching in the direction specified
2732 * by the "dir" argument. The cursor is positioned on the start of the next
2733 * sentence when found. If the next sentence is found, return OK. Return FAIL
2734 * otherwise. See ":h sentence" for the precise definition of a "sentence"
2735 * text object.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736 */
2737 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002738findsent(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739{
2740 pos_T pos, tpos;
2741 int c;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002742 int (*func)(pos_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 int startlnum;
2744 int noskip = FALSE; /* do not skip blanks */
2745 int cpo_J;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002746 int found_dot;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747
2748 pos = curwin->w_cursor;
2749 if (dir == FORWARD)
2750 func = incl;
2751 else
2752 func = decl;
2753
2754 while (count--)
2755 {
2756 /*
2757 * if on an empty line, skip upto a non-empty line
2758 */
2759 if (gchar_pos(&pos) == NUL)
2760 {
2761 do
2762 if ((*func)(&pos) == -1)
2763 break;
2764 while (gchar_pos(&pos) == NUL);
2765 if (dir == FORWARD)
2766 goto found;
2767 }
2768 /*
2769 * if on the start of a paragraph or a section and searching forward,
2770 * go to the next line
2771 */
2772 else if (dir == FORWARD && pos.col == 0 &&
2773 startPS(pos.lnum, NUL, FALSE))
2774 {
2775 if (pos.lnum == curbuf->b_ml.ml_line_count)
2776 return FAIL;
2777 ++pos.lnum;
2778 goto found;
2779 }
2780 else if (dir == BACKWARD)
2781 decl(&pos);
2782
Bram Moolenaar85160712018-06-19 18:27:41 +02002783 // go back to the previous non-white non-punctuation character
Bram Moolenaardef9e822004-12-31 20:58:58 +00002784 found_dot = FALSE;
Bram Moolenaar85160712018-06-19 18:27:41 +02002785 while (c = gchar_pos(&pos), VIM_ISWHITE(c)
2786 || vim_strchr((char_u *)".!?)]\"'", c) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 {
Bram Moolenaar85160712018-06-19 18:27:41 +02002788 tpos = pos;
2789 if (decl(&tpos) == -1 || (LINEEMPTY(tpos.lnum) && dir == FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 break;
Bram Moolenaar85160712018-06-19 18:27:41 +02002791
2792 if (found_dot)
2793 break;
2794 if (vim_strchr((char_u *) ".!?", c) != NULL)
2795 found_dot = TRUE;
2796
2797 if (vim_strchr((char_u *) ")]\"'", c) != NULL
2798 && vim_strchr((char_u *) ".!?)]\"'", gchar_pos(&tpos)) == NULL)
2799 break;
2800
2801 decl(&pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 }
2803
2804 /* remember the line where the search started */
2805 startlnum = pos.lnum;
2806 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL;
2807
2808 for (;;) /* find end of sentence */
2809 {
2810 c = gchar_pos(&pos);
2811 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE)))
2812 {
2813 if (dir == BACKWARD && pos.lnum != startlnum)
2814 ++pos.lnum;
2815 break;
2816 }
2817 if (c == '.' || c == '!' || c == '?')
2818 {
2819 tpos = pos;
2820 do
2821 if ((c = inc(&tpos)) == -1)
2822 break;
2823 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos))
2824 != NULL);
2825 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL
2826 || (cpo_J && (c == ' ' && inc(&tpos) >= 0
2827 && gchar_pos(&tpos) == ' ')))
2828 {
2829 pos = tpos;
2830 if (gchar_pos(&pos) == NUL) /* skip NUL at EOL */
2831 inc(&pos);
2832 break;
2833 }
2834 }
2835 if ((*func)(&pos) == -1)
2836 {
2837 if (count)
2838 return FAIL;
2839 noskip = TRUE;
2840 break;
2841 }
2842 }
2843found:
2844 /* skip white space */
2845 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t'))
2846 if (incl(&pos) == -1)
2847 break;
2848 }
2849
2850 setpcmark();
2851 curwin->w_cursor = pos;
2852 return OK;
2853}
2854
2855/*
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002856 * Find the next paragraph or section in direction 'dir'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 * Paragraphs are currently supposed to be separated by empty lines.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002858 * If 'what' is NUL we go to the next paragraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859 * If 'what' is '{' or '}' we go to the next section.
2860 * If 'both' is TRUE also stop at '}'.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002861 * Return TRUE if the next paragraph or section was found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 */
2863 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002864findpar(
2865 int *pincl, /* Return: TRUE if last char is to be included */
2866 int dir,
2867 long count,
2868 int what,
2869 int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870{
2871 linenr_T curr;
2872 int did_skip; /* TRUE after separating lines have been skipped */
2873 int first; /* TRUE on first line */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002874 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875#ifdef FEAT_FOLDING
2876 linenr_T fold_first; /* first line of a closed fold */
2877 linenr_T fold_last; /* last line of a closed fold */
2878 int fold_skipped; /* TRUE if a closed fold was skipped this
2879 iteration */
2880#endif
2881
2882 curr = curwin->w_cursor.lnum;
2883
2884 while (count--)
2885 {
2886 did_skip = FALSE;
2887 for (first = TRUE; ; first = FALSE)
2888 {
2889 if (*ml_get(curr) != NUL)
2890 did_skip = TRUE;
2891
2892#ifdef FEAT_FOLDING
2893 /* skip folded lines */
2894 fold_skipped = FALSE;
2895 if (first && hasFolding(curr, &fold_first, &fold_last))
2896 {
2897 curr = ((dir > 0) ? fold_last : fold_first) + dir;
2898 fold_skipped = TRUE;
2899 }
2900#endif
2901
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01002902 /* POSIX has its own ideas of what a paragraph boundary is and it
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002903 * doesn't match historical Vi: It also stops at a "{" in the
2904 * first column and at an empty line. */
2905 if (!first && did_skip && (startPS(curr, what, both)
2906 || (posix && what == NUL && *ml_get(curr) == '{')))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907 break;
2908
2909#ifdef FEAT_FOLDING
2910 if (fold_skipped)
2911 curr -= dir;
2912#endif
2913 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count)
2914 {
2915 if (count)
2916 return FALSE;
2917 curr -= dir;
2918 break;
2919 }
2920 }
2921 }
2922 setpcmark();
2923 if (both && *ml_get(curr) == '}') /* include line with '}' */
2924 ++curr;
2925 curwin->w_cursor.lnum = curr;
2926 if (curr == curbuf->b_ml.ml_line_count && what != '}')
2927 {
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02002928 char_u *line = ml_get(curr);
2929
2930 /* Put the cursor on the last character in the last line and make the
2931 * motion inclusive. */
2932 if ((curwin->w_cursor.col = (colnr_T)STRLEN(line)) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 {
2934 --curwin->w_cursor.col;
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02002935#ifdef FEAT_MBYTE
2936 curwin->w_cursor.col -=
2937 (*mb_head_off)(line, line + curwin->w_cursor.col);
2938#endif
Bram Moolenaar92d640f2005-09-05 22:11:52 +00002939 *pincl = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 }
2941 }
2942 else
2943 curwin->w_cursor.col = 0;
2944 return TRUE;
2945}
2946
2947/*
2948 * check if the string 's' is a nroff macro that is in option 'opt'
2949 */
2950 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002951inmacro(char_u *opt, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952{
2953 char_u *macro;
2954
2955 for (macro = opt; macro[0]; ++macro)
2956 {
2957 /* Accept two characters in the option being equal to two characters
2958 * in the line. A space in the option matches with a space in the
2959 * line or the line having ended. */
2960 if ( (macro[0] == s[0]
2961 || (macro[0] == ' '
2962 && (s[0] == NUL || s[0] == ' ')))
2963 && (macro[1] == s[1]
2964 || ((macro[1] == NUL || macro[1] == ' ')
2965 && (s[0] == NUL || s[1] == NUL || s[1] == ' '))))
2966 break;
2967 ++macro;
2968 if (macro[0] == NUL)
2969 break;
2970 }
2971 return (macro[0] != NUL);
2972}
2973
2974/*
2975 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph.
2976 * If 'para' is '{' or '}' only check for sections.
2977 * If 'both' is TRUE also stop at '}'
2978 */
2979 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002980startPS(linenr_T lnum, int para, int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981{
2982 char_u *s;
2983
2984 s = ml_get(lnum);
2985 if (*s == para || *s == '\f' || (both && *s == '}'))
2986 return TRUE;
2987 if (*s == '.' && (inmacro(p_sections, s + 1) ||
2988 (!para && inmacro(p_para, s + 1))))
2989 return TRUE;
2990 return FALSE;
2991}
2992
2993/*
2994 * The following routines do the word searches performed by the 'w', 'W',
2995 * 'b', 'B', 'e', and 'E' commands.
2996 */
2997
2998/*
2999 * To perform these searches, characters are placed into one of three
3000 * classes, and transitions between classes determine word boundaries.
3001 *
3002 * The classes are:
3003 *
3004 * 0 - white space
3005 * 1 - punctuation
3006 * 2 or higher - keyword characters (letters, digits and underscore)
3007 */
3008
3009static int cls_bigword; /* TRUE for "W", "B" or "E" */
3010
3011/*
3012 * cls() - returns the class of character at curwin->w_cursor
3013 *
3014 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars
3015 * from class 2 and higher are reported as class 1 since only white space
3016 * boundaries are of interest.
3017 */
3018 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003019cls(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020{
3021 int c;
3022
3023 c = gchar_cursor();
3024#ifdef FEAT_FKMAP /* when 'akm' (Farsi mode), take care of Farsi blank */
3025 if (p_altkeymap && c == F_BLANK)
3026 return 0;
3027#endif
3028 if (c == ' ' || c == '\t' || c == NUL)
3029 return 0;
3030#ifdef FEAT_MBYTE
3031 if (enc_dbcs != 0 && c > 0xFF)
3032 {
3033 /* If cls_bigword, report multi-byte chars as class 1. */
3034 if (enc_dbcs == DBCS_KOR && cls_bigword)
3035 return 1;
3036
3037 /* process code leading/trailing bytes */
3038 return dbcs_class(((unsigned)c >> 8), (c & 0xFF));
3039 }
3040 if (enc_utf8)
3041 {
3042 c = utf_class(c);
3043 if (c != 0 && cls_bigword)
3044 return 1;
3045 return c;
3046 }
3047#endif
3048
3049 /* If cls_bigword is TRUE, report all non-blanks as class 1. */
3050 if (cls_bigword)
3051 return 1;
3052
3053 if (vim_iswordc(c))
3054 return 2;
3055 return 1;
3056}
3057
3058
3059/*
3060 * fwd_word(count, type, eol) - move forward one word
3061 *
3062 * Returns FAIL if the cursor was already at the end of the file.
3063 * If eol is TRUE, last word stops at end of line (for operators).
3064 */
3065 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003066fwd_word(
3067 long count,
3068 int bigword, /* "W", "E" or "B" */
3069 int eol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070{
3071 int sclass; /* starting class */
3072 int i;
3073 int last_line;
3074
3075#ifdef FEAT_VIRTUALEDIT
3076 curwin->w_cursor.coladd = 0;
3077#endif
3078 cls_bigword = bigword;
3079 while (--count >= 0)
3080 {
3081#ifdef FEAT_FOLDING
3082 /* When inside a range of folded lines, move to the last char of the
3083 * last line. */
3084 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3085 coladvance((colnr_T)MAXCOL);
3086#endif
3087 sclass = cls();
3088
3089 /*
3090 * We always move at least one character, unless on the last
3091 * character in the buffer.
3092 */
3093 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count);
3094 i = inc_cursor();
3095 if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */
3096 return FAIL;
Bram Moolenaar9a149792007-07-10 10:38:02 +00003097 if (i >= 1 && eol && count == 0) /* started at last char in line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098 return OK;
3099
3100 /*
3101 * Go one char past end of current word (if any)
3102 */
3103 if (sclass != 0)
3104 while (cls() == sclass)
3105 {
3106 i = inc_cursor();
3107 if (i == -1 || (i >= 1 && eol && count == 0))
3108 return OK;
3109 }
3110
3111 /*
3112 * go to next non-white
3113 */
3114 while (cls() == 0)
3115 {
3116 /*
3117 * We'll stop if we land on a blank line
3118 */
3119 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL)
3120 break;
3121
3122 i = inc_cursor();
3123 if (i == -1 || (i >= 1 && eol && count == 0))
3124 return OK;
3125 }
3126 }
3127 return OK;
3128}
3129
3130/*
3131 * bck_word() - move backward 'count' words
3132 *
3133 * If stop is TRUE and we are already on the start of a word, move one less.
3134 *
3135 * Returns FAIL if top of the file was reached.
3136 */
3137 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003138bck_word(long count, int bigword, int stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139{
3140 int sclass; /* starting class */
3141
3142#ifdef FEAT_VIRTUALEDIT
3143 curwin->w_cursor.coladd = 0;
3144#endif
3145 cls_bigword = bigword;
3146 while (--count >= 0)
3147 {
3148#ifdef FEAT_FOLDING
3149 /* When inside a range of folded lines, move to the first char of the
3150 * first line. */
3151 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL))
3152 curwin->w_cursor.col = 0;
3153#endif
3154 sclass = cls();
3155 if (dec_cursor() == -1) /* started at start of file */
3156 return FAIL;
3157
3158 if (!stop || sclass == cls() || sclass == 0)
3159 {
3160 /*
3161 * Skip white space before the word.
3162 * Stop on an empty line.
3163 */
3164 while (cls() == 0)
3165 {
3166 if (curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003167 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 goto finished;
3169 if (dec_cursor() == -1) /* hit start of file, stop here */
3170 return OK;
3171 }
3172
3173 /*
3174 * Move backward to start of this word.
3175 */
3176 if (skip_chars(cls(), BACKWARD))
3177 return OK;
3178 }
3179
3180 inc_cursor(); /* overshot - forward one */
3181finished:
3182 stop = FALSE;
3183 }
3184 return OK;
3185}
3186
3187/*
3188 * end_word() - move to the end of the word
3189 *
3190 * There is an apparent bug in the 'e' motion of the real vi. At least on the
3191 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e'
3192 * motion crosses blank lines. When the real vi crosses a blank line in an
3193 * 'e' motion, the cursor is placed on the FIRST character of the next
3194 * non-blank line. The 'E' command, however, works correctly. Since this
3195 * appears to be a bug, I have not duplicated it here.
3196 *
3197 * Returns FAIL if end of the file was reached.
3198 *
3199 * If stop is TRUE and we are already on the end of a word, move one less.
3200 * If empty is TRUE stop on an empty line.
3201 */
3202 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003203end_word(
3204 long count,
3205 int bigword,
3206 int stop,
3207 int empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208{
3209 int sclass; /* starting class */
3210
3211#ifdef FEAT_VIRTUALEDIT
3212 curwin->w_cursor.coladd = 0;
3213#endif
3214 cls_bigword = bigword;
3215 while (--count >= 0)
3216 {
3217#ifdef FEAT_FOLDING
3218 /* When inside a range of folded lines, move to the last char of the
3219 * last line. */
3220 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3221 coladvance((colnr_T)MAXCOL);
3222#endif
3223 sclass = cls();
3224 if (inc_cursor() == -1)
3225 return FAIL;
3226
3227 /*
3228 * If we're in the middle of a word, we just have to move to the end
3229 * of it.
3230 */
3231 if (cls() == sclass && sclass != 0)
3232 {
3233 /*
3234 * Move forward to end of the current word
3235 */
3236 if (skip_chars(sclass, FORWARD))
3237 return FAIL;
3238 }
3239 else if (!stop || sclass == 0)
3240 {
3241 /*
3242 * We were at the end of a word. Go to the end of the next word.
3243 * First skip white space, if 'empty' is TRUE, stop at empty line.
3244 */
3245 while (cls() == 0)
3246 {
3247 if (empty && curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003248 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249 goto finished;
3250 if (inc_cursor() == -1) /* hit end of file, stop here */
3251 return FAIL;
3252 }
3253
3254 /*
3255 * Move forward to the end of this word.
3256 */
3257 if (skip_chars(cls(), FORWARD))
3258 return FAIL;
3259 }
3260 dec_cursor(); /* overshot - one char backward */
3261finished:
3262 stop = FALSE; /* we move only one word less */
3263 }
3264 return OK;
3265}
3266
3267/*
3268 * Move back to the end of the word.
3269 *
3270 * Returns FAIL if start of the file was reached.
3271 */
3272 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003273bckend_word(
3274 long count,
3275 int bigword, /* TRUE for "B" */
3276 int eol) /* TRUE: stop at end of line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277{
3278 int sclass; /* starting class */
3279 int i;
3280
3281#ifdef FEAT_VIRTUALEDIT
3282 curwin->w_cursor.coladd = 0;
3283#endif
3284 cls_bigword = bigword;
3285 while (--count >= 0)
3286 {
3287 sclass = cls();
3288 if ((i = dec_cursor()) == -1)
3289 return FAIL;
3290 if (eol && i == 1)
3291 return OK;
3292
3293 /*
3294 * Move backward to before the start of this word.
3295 */
3296 if (sclass != 0)
3297 {
3298 while (cls() == sclass)
3299 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3300 return OK;
3301 }
3302
3303 /*
3304 * Move backward to end of the previous word
3305 */
3306 while (cls() == 0)
3307 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003308 if (curwin->w_cursor.col == 0 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309 break;
3310 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3311 return OK;
3312 }
3313 }
3314 return OK;
3315}
3316
3317/*
3318 * Skip a row of characters of the same class.
3319 * Return TRUE when end-of-file reached, FALSE otherwise.
3320 */
3321 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003322skip_chars(int cclass, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323{
3324 while (cls() == cclass)
3325 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1)
3326 return TRUE;
3327 return FALSE;
3328}
3329
3330#ifdef FEAT_TEXTOBJ
3331/*
3332 * Go back to the start of the word or the start of white space
3333 */
3334 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003335back_in_line(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336{
3337 int sclass; /* starting class */
3338
3339 sclass = cls();
3340 for (;;)
3341 {
3342 if (curwin->w_cursor.col == 0) /* stop at start of line */
3343 break;
3344 dec_cursor();
3345 if (cls() != sclass) /* stop at start of word */
3346 {
3347 inc_cursor();
3348 break;
3349 }
3350 }
3351}
3352
3353 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003354find_first_blank(pos_T *posp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355{
3356 int c;
3357
3358 while (decl(posp) != -1)
3359 {
3360 c = gchar_pos(posp);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003361 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 {
3363 incl(posp);
3364 break;
3365 }
3366 }
3367}
3368
3369/*
3370 * Skip count/2 sentences and count/2 separating white spaces.
3371 */
3372 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003373findsent_forward(
3374 long count,
3375 int at_start_sent) /* cursor is at start of sentence */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376{
3377 while (count--)
3378 {
3379 findsent(FORWARD, 1L);
3380 if (at_start_sent)
3381 find_first_blank(&curwin->w_cursor);
3382 if (count == 0 || at_start_sent)
3383 decl(&curwin->w_cursor);
3384 at_start_sent = !at_start_sent;
3385 }
3386}
3387
3388/*
3389 * Find word under cursor, cursor at end.
3390 * Used while an operator is pending, and in Visual mode.
3391 */
3392 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003393current_word(
3394 oparg_T *oap,
3395 long count,
3396 int include, /* TRUE: include word and white space */
3397 int bigword) /* FALSE == word, TRUE == WORD */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398{
3399 pos_T start_pos;
3400 pos_T pos;
3401 int inclusive = TRUE;
3402 int include_white = FALSE;
3403
3404 cls_bigword = bigword;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003405 CLEAR_POS(&start_pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 /* Correct cursor when 'selection' is exclusive */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003408 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 dec_cursor();
3410
3411 /*
3412 * When Visual mode is not active, or when the VIsual area is only one
3413 * character, select the word and/or white space under the cursor.
3414 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003415 if (!VIsual_active || EQUAL_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 {
3417 /*
3418 * Go to start of current word or white space.
3419 */
3420 back_in_line();
3421 start_pos = curwin->w_cursor;
3422
3423 /*
3424 * If the start is on white space, and white space should be included
3425 * (" word"), or start is not on white space, and white space should
3426 * not be included ("word"), find end of word.
3427 */
3428 if ((cls() == 0) == include)
3429 {
3430 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3431 return FAIL;
3432 }
3433 else
3434 {
3435 /*
3436 * If the start is not on white space, and white space should be
3437 * included ("word "), or start is on white space and white
3438 * space should not be included (" "), find start of word.
3439 * If we end up in the first column of the next line (single char
3440 * word) back up to end of the line.
3441 */
3442 fwd_word(1L, bigword, TRUE);
3443 if (curwin->w_cursor.col == 0)
3444 decl(&curwin->w_cursor);
3445 else
3446 oneleft();
3447
3448 if (include)
3449 include_white = TRUE;
3450 }
3451
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452 if (VIsual_active)
3453 {
3454 /* should do something when inclusive == FALSE ! */
3455 VIsual = start_pos;
3456 redraw_curbuf_later(INVERTED); /* update the inversion */
3457 }
3458 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 {
3460 oap->start = start_pos;
3461 oap->motion_type = MCHAR;
3462 }
3463 --count;
3464 }
3465
3466 /*
3467 * When count is still > 0, extend with more objects.
3468 */
3469 while (count > 0)
3470 {
3471 inclusive = TRUE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003472 if (VIsual_active && LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473 {
3474 /*
3475 * In Visual mode, with cursor at start: move cursor back.
3476 */
3477 if (decl(&curwin->w_cursor) == -1)
3478 return FAIL;
3479 if (include != (cls() != 0))
3480 {
3481 if (bck_word(1L, bigword, TRUE) == FAIL)
3482 return FAIL;
3483 }
3484 else
3485 {
3486 if (bckend_word(1L, bigword, TRUE) == FAIL)
3487 return FAIL;
3488 (void)incl(&curwin->w_cursor);
3489 }
3490 }
3491 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 {
3493 /*
3494 * Move cursor forward one word and/or white area.
3495 */
3496 if (incl(&curwin->w_cursor) == -1)
3497 return FAIL;
3498 if (include != (cls() == 0))
3499 {
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003500 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 return FAIL;
3502 /*
3503 * If end is just past a new-line, we don't want to include
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003504 * the first character on the line.
3505 * Put cursor on last char of white.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506 */
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003507 if (oneleft() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 inclusive = FALSE;
3509 }
3510 else
3511 {
3512 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3513 return FAIL;
3514 }
3515 }
3516 --count;
3517 }
3518
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003519 if (include_white && (cls() != 0
3520 || (curwin->w_cursor.col == 0 && !inclusive)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003521 {
3522 /*
3523 * If we don't include white space at the end, move the start
3524 * to include some white space there. This makes "daw" work
3525 * better on the last word in a sentence (and "2daw" on last-but-one
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003526 * word). Also when "2daw" deletes "word." at the end of the line
3527 * (cursor is at start of next line).
3528 * But don't delete white space at start of line (indent).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529 */
3530 pos = curwin->w_cursor; /* save cursor position */
3531 curwin->w_cursor = start_pos;
3532 if (oneleft() == OK)
3533 {
3534 back_in_line();
3535 if (cls() == 0 && curwin->w_cursor.col > 0)
3536 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 if (VIsual_active)
3538 VIsual = curwin->w_cursor;
3539 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 oap->start = curwin->w_cursor;
3541 }
3542 }
3543 curwin->w_cursor = pos; /* put cursor back at end */
3544 }
3545
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546 if (VIsual_active)
3547 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003548 if (*p_sel == 'e' && inclusive && LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549 inc_cursor();
3550 if (VIsual_mode == 'V')
3551 {
3552 VIsual_mode = 'v';
3553 redraw_cmdline = TRUE; /* show mode later */
3554 }
3555 }
3556 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 oap->inclusive = inclusive;
3558
3559 return OK;
3560}
3561
3562/*
3563 * Find sentence(s) under the cursor, cursor at end.
3564 * When Visual active, extend it by one or more sentences.
3565 */
3566 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003567current_sent(oparg_T *oap, long count, int include)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568{
3569 pos_T start_pos;
3570 pos_T pos;
3571 int start_blank;
3572 int c;
3573 int at_start_sent;
3574 long ncount;
3575
3576 start_pos = curwin->w_cursor;
3577 pos = start_pos;
3578 findsent(FORWARD, 1L); /* Find start of next sentence. */
3579
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003581 * When the Visual area is bigger than one character: Extend it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003583 if (VIsual_active && !EQUAL_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 {
3585extend:
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003586 if (LT_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587 {
3588 /*
3589 * Cursor at start of Visual area.
3590 * Find out where we are:
3591 * - in the white space before a sentence
3592 * - in a sentence or just after it
3593 * - at the start of a sentence
3594 */
3595 at_start_sent = TRUE;
3596 decl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003597 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 {
3599 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003600 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 {
3602 at_start_sent = FALSE;
3603 break;
3604 }
3605 incl(&pos);
3606 }
3607 if (!at_start_sent)
3608 {
3609 findsent(BACKWARD, 1L);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003610 if (EQUAL_POS(curwin->w_cursor, start_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611 at_start_sent = TRUE; /* exactly at start of sentence */
3612 else
3613 /* inside a sentence, go to its end (start of next) */
3614 findsent(FORWARD, 1L);
3615 }
3616 if (include) /* "as" gets twice as much as "is" */
3617 count *= 2;
3618 while (count--)
3619 {
3620 if (at_start_sent)
3621 find_first_blank(&curwin->w_cursor);
3622 c = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01003623 if (!at_start_sent || (!include && !VIM_ISWHITE(c)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624 findsent(BACKWARD, 1L);
3625 at_start_sent = !at_start_sent;
3626 }
3627 }
3628 else
3629 {
3630 /*
3631 * Cursor at end of Visual area.
3632 * Find out where we are:
3633 * - just before a sentence
3634 * - just before or in the white space before a sentence
3635 * - in a sentence
3636 */
3637 incl(&pos);
3638 at_start_sent = TRUE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003639 /* not just before a sentence */
3640 if (!EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 {
3642 at_start_sent = FALSE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003643 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 {
3645 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003646 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647 {
3648 at_start_sent = TRUE;
3649 break;
3650 }
3651 incl(&pos);
3652 }
3653 if (at_start_sent) /* in the sentence */
3654 findsent(BACKWARD, 1L);
3655 else /* in/before white before a sentence */
3656 curwin->w_cursor = start_pos;
3657 }
3658
3659 if (include) /* "as" gets twice as much as "is" */
3660 count *= 2;
3661 findsent_forward(count, at_start_sent);
3662 if (*p_sel == 'e')
3663 ++curwin->w_cursor.col;
3664 }
3665 return OK;
3666 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667
3668 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003669 * If the cursor started on a blank, check if it is just before the start
3670 * of the next sentence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671 */
Bram Moolenaar1c465442017-03-12 20:10:05 +01003672 while (c = gchar_pos(&pos), VIM_ISWHITE(c)) /* VIM_ISWHITE() is a macro */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673 incl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003674 if (EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 {
3676 start_blank = TRUE;
3677 find_first_blank(&start_pos); /* go back to first blank */
3678 }
3679 else
3680 {
3681 start_blank = FALSE;
3682 findsent(BACKWARD, 1L);
3683 start_pos = curwin->w_cursor;
3684 }
3685 if (include)
3686 ncount = count * 2;
3687 else
3688 {
3689 ncount = count;
3690 if (start_blank)
3691 --ncount;
3692 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00003693 if (ncount > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 findsent_forward(ncount, TRUE);
3695 else
3696 decl(&curwin->w_cursor);
3697
3698 if (include)
3699 {
3700 /*
3701 * If the blank in front of the sentence is included, exclude the
3702 * blanks at the end of the sentence, go back to the first blank.
3703 * If there are no trailing blanks, try to include leading blanks.
3704 */
3705 if (start_blank)
3706 {
3707 find_first_blank(&curwin->w_cursor);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003708 c = gchar_pos(&curwin->w_cursor); /* VIM_ISWHITE() is a macro */
3709 if (VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 decl(&curwin->w_cursor);
3711 }
Bram Moolenaar1c465442017-03-12 20:10:05 +01003712 else if (c = gchar_cursor(), !VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 find_first_blank(&start_pos);
3714 }
3715
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 if (VIsual_active)
3717 {
Bram Moolenaar641e2862012-07-25 15:06:34 +02003718 /* Avoid getting stuck with "is" on a single space before a sentence. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003719 if (EQUAL_POS(start_pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 goto extend;
3721 if (*p_sel == 'e')
3722 ++curwin->w_cursor.col;
3723 VIsual = start_pos;
3724 VIsual_mode = 'v';
Bram Moolenaar779f2fc2016-09-01 20:58:24 +02003725 redraw_cmdline = TRUE; /* show mode later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 redraw_curbuf_later(INVERTED); /* update the inversion */
3727 }
3728 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 {
3730 /* include a newline after the sentence, if there is one */
3731 if (incl(&curwin->w_cursor) == -1)
3732 oap->inclusive = TRUE;
3733 else
3734 oap->inclusive = FALSE;
3735 oap->start = start_pos;
3736 oap->motion_type = MCHAR;
3737 }
3738 return OK;
3739}
3740
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003741/*
3742 * Find block under the cursor, cursor at end.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003743 * "what" and "other" are two matching parenthesis/brace/etc.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003744 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003746current_block(
3747 oparg_T *oap,
3748 long count,
3749 int include, /* TRUE == include white space */
3750 int what, /* '(', '{', etc. */
3751 int other) /* ')', '}', etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752{
3753 pos_T old_pos;
3754 pos_T *pos = NULL;
3755 pos_T start_pos;
3756 pos_T *end_pos;
3757 pos_T old_start, old_end;
3758 char_u *save_cpo;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003759 int sol = FALSE; /* '{' at start of line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760
3761 old_pos = curwin->w_cursor;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003762 old_end = curwin->w_cursor; /* remember where we started */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 old_start = old_end;
3764
3765 /*
3766 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive.
3767 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003768 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 {
3770 setpcmark();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003771 if (what == '{') /* ignore indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 while (inindent(1))
3773 if (inc_cursor() != 0)
3774 break;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003775 if (gchar_cursor() == what)
3776 /* cursor on '(' or '{', move cursor just after it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 ++curwin->w_cursor.col;
3778 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003779 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 {
3781 old_start = VIsual;
3782 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3783 }
3784 else
3785 old_end = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786
3787 /*
3788 * Search backwards for unclosed '(', '{', etc..
3789 * Put this position in start_pos.
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003790 * Ignore quotes here. Keep the "M" flag in 'cpo', as that is what the
3791 * user wants.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792 */
3793 save_cpo = p_cpo;
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003794 p_cpo = (char_u *)(vim_strchr(p_cpo, CPO_MATCHBSL) != NULL ? "%M" : "%");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 while (count-- > 0)
3796 {
3797 if ((pos = findmatch(NULL, what)) == NULL)
3798 break;
3799 curwin->w_cursor = *pos;
3800 start_pos = *pos; /* the findmatch for end_pos will overwrite *pos */
3801 }
3802 p_cpo = save_cpo;
3803
3804 /*
3805 * Search for matching ')', '}', etc.
3806 * Put this position in curwin->w_cursor.
3807 */
3808 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL)
3809 {
3810 curwin->w_cursor = old_pos;
3811 return FAIL;
3812 }
3813 curwin->w_cursor = *end_pos;
3814
3815 /*
3816 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE.
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003817 * If the ending '}', ')' or ']' is only preceded by indent, skip that
3818 * indent. But only if the resulting area is not smaller than what we
3819 * started with.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 */
3821 while (!include)
3822 {
3823 incl(&start_pos);
3824 sol = (curwin->w_cursor.col == 0);
3825 decl(&curwin->w_cursor);
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003826 while (inindent(1))
3827 {
3828 sol = TRUE;
3829 if (decl(&curwin->w_cursor) != 0)
3830 break;
3831 }
3832
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 /*
3834 * In Visual mode, when the resulting area is not bigger than what we
3835 * started with, extend it to the next block, and then exclude again.
3836 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003837 if (!LT_POS(start_pos, old_start) && !LT_POS(old_end, curwin->w_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838 && VIsual_active)
3839 {
3840 curwin->w_cursor = old_start;
3841 decl(&curwin->w_cursor);
3842 if ((pos = findmatch(NULL, what)) == NULL)
3843 {
3844 curwin->w_cursor = old_pos;
3845 return FAIL;
3846 }
3847 start_pos = *pos;
3848 curwin->w_cursor = *pos;
3849 if ((end_pos = findmatch(NULL, other)) == NULL)
3850 {
3851 curwin->w_cursor = old_pos;
3852 return FAIL;
3853 }
3854 curwin->w_cursor = *end_pos;
3855 }
3856 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 break;
3858 }
3859
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 if (VIsual_active)
3861 {
3862 if (*p_sel == 'e')
Bram Moolenaar8667d662015-09-01 18:27:49 +02003863 inc(&curwin->w_cursor);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003864 if (sol && gchar_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 inc(&curwin->w_cursor); /* include the line break */
3866 VIsual = start_pos;
3867 VIsual_mode = 'v';
3868 redraw_curbuf_later(INVERTED); /* update the inversion */
3869 showmode();
3870 }
3871 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 {
3873 oap->start = start_pos;
3874 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003875 oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876 if (sol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877 incl(&curwin->w_cursor);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003878 else if (LTOREQ_POS(start_pos, curwin->w_cursor))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003879 /* Include the character under the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 oap->inclusive = TRUE;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003881 else
3882 /* End is before the start (no text in between <>, [], etc.): don't
3883 * operate on any text. */
3884 curwin->w_cursor = start_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885 }
3886
3887 return OK;
3888}
3889
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003890/*
3891 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>".
3892 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>".
3893 */
3894 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003895in_html_tag(
3896 int end_tag)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003897{
3898 char_u *line = ml_get_curline();
3899 char_u *p;
3900 int c;
3901 int lc = NUL;
3902 pos_T pos;
3903
3904#ifdef FEAT_MBYTE
3905 if (enc_dbcs)
3906 {
3907 char_u *lp = NULL;
3908
3909 /* We search forward until the cursor, because searching backwards is
3910 * very slow for DBCS encodings. */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003911 for (p = line; p < line + curwin->w_cursor.col; MB_PTR_ADV(p))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003912 if (*p == '>' || *p == '<')
3913 {
3914 lc = *p;
3915 lp = p;
3916 }
3917 if (*p != '<') /* check for '<' under cursor */
3918 {
3919 if (lc != '<')
3920 return FALSE;
3921 p = lp;
3922 }
3923 }
3924 else
3925#endif
3926 {
3927 for (p = line + curwin->w_cursor.col; p > line; )
3928 {
3929 if (*p == '<') /* find '<' under/before cursor */
3930 break;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003931 MB_PTR_BACK(line, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003932 if (*p == '>') /* find '>' before cursor */
3933 break;
3934 }
3935 if (*p != '<')
3936 return FALSE;
3937 }
3938
3939 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003940 pos.col = (colnr_T)(p - line);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003941
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003942 MB_PTR_ADV(p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003943 if (end_tag)
3944 /* check that there is a '/' after the '<' */
3945 return *p == '/';
3946
3947 /* check that there is no '/' after the '<' */
3948 if (*p == '/')
3949 return FALSE;
3950
3951 /* check that the matching '>' is not preceded by '/' */
3952 for (;;)
3953 {
3954 if (inc(&pos) < 0)
3955 return FALSE;
3956 c = *ml_get_pos(&pos);
3957 if (c == '>')
3958 break;
3959 lc = c;
3960 }
3961 return lc != '/';
3962}
3963
3964/*
3965 * Find tag block under the cursor, cursor at end.
3966 */
3967 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003968current_tagblock(
3969 oparg_T *oap,
3970 long count_arg,
3971 int include) /* TRUE == include white space */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003972{
3973 long count = count_arg;
3974 long n;
3975 pos_T old_pos;
3976 pos_T start_pos;
3977 pos_T end_pos;
3978 pos_T old_start, old_end;
3979 char_u *spat, *epat;
3980 char_u *p;
3981 char_u *cp;
3982 int len;
3983 int r;
3984 int do_include = include;
3985 int save_p_ws = p_ws;
3986 int retval = FAIL;
Bram Moolenaarb6c27352015-03-05 19:57:49 +01003987 int is_inclusive = TRUE;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003988
3989 p_ws = FALSE;
3990
3991 old_pos = curwin->w_cursor;
3992 old_end = curwin->w_cursor; /* remember where we started */
3993 old_start = old_end;
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003994 if (!VIsual_active || *p_sel == 'e')
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003995 decl(&old_end); /* old_end is inclusive */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003996
3997 /*
Bram Moolenaar45360022005-07-21 21:08:21 +00003998 * If we start on "<aaa>" select that block.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003999 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004000 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004001 {
4002 setpcmark();
4003
4004 /* ignore indent */
4005 while (inindent(1))
4006 if (inc_cursor() != 0)
4007 break;
4008
4009 if (in_html_tag(FALSE))
4010 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004011 /* cursor on start tag, move to its '>' */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004012 while (*ml_get_cursor() != '>')
4013 if (inc_cursor() < 0)
4014 break;
4015 }
4016 else if (in_html_tag(TRUE))
4017 {
4018 /* cursor on end tag, move to just before it */
4019 while (*ml_get_cursor() != '<')
4020 if (dec_cursor() < 0)
4021 break;
4022 dec_cursor();
4023 old_end = curwin->w_cursor;
4024 }
4025 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004026 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004027 {
4028 old_start = VIsual;
4029 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
4030 }
4031 else
4032 old_end = VIsual;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004033
4034again:
4035 /*
4036 * Search backwards for unclosed "<aaa>".
4037 * Put this position in start_pos.
4038 */
4039 for (n = 0; n < count; ++n)
4040 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004041 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)",
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004042 (char_u *)"",
Bram Moolenaar48570482017-10-30 21:48:41 +01004043 (char_u *)"</[^>]*>", BACKWARD, NULL, 0,
Bram Moolenaar76929292008-01-06 19:07:36 +00004044 NULL, (linenr_T)0, 0L) <= 0)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004045 {
4046 curwin->w_cursor = old_pos;
4047 goto theend;
4048 }
4049 }
4050 start_pos = curwin->w_cursor;
4051
4052 /*
4053 * Search for matching "</aaa>". First isolate the "aaa".
4054 */
4055 inc_cursor();
4056 p = ml_get_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01004057 for (cp = p; *cp != NUL && *cp != '>' && !VIM_ISWHITE(*cp); MB_PTR_ADV(cp))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004058 ;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004059 len = (int)(cp - p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004060 if (len == 0)
4061 {
4062 curwin->w_cursor = old_pos;
4063 goto theend;
4064 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004065 spat = alloc(len + 31);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004066 epat = alloc(len + 9);
4067 if (spat == NULL || epat == NULL)
4068 {
4069 vim_free(spat);
4070 vim_free(epat);
4071 curwin->w_cursor = old_pos;
4072 goto theend;
4073 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004074 sprintf((char *)spat, "<%.*s\\>\\%%(\\s\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004075 sprintf((char *)epat, "</%.*s>\\c", len, p);
4076
Bram Moolenaar48570482017-10-30 21:48:41 +01004077 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, NULL,
Bram Moolenaar76929292008-01-06 19:07:36 +00004078 0, NULL, (linenr_T)0, 0L);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004079
4080 vim_free(spat);
4081 vim_free(epat);
4082
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004083 if (r < 1 || LT_POS(curwin->w_cursor, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004084 {
4085 /* Can't find other end or it's before the previous end. Could be a
4086 * HTML tag that doesn't have a matching end. Search backwards for
4087 * another starting tag. */
4088 count = 1;
4089 curwin->w_cursor = start_pos;
4090 goto again;
4091 }
4092
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02004093 if (do_include)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004094 {
4095 /* Include up to the '>'. */
4096 while (*ml_get_cursor() != '>')
4097 if (inc_cursor() < 0)
4098 break;
4099 }
4100 else
4101 {
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004102 char_u *c = ml_get_cursor();
4103
4104 /* Exclude the '<' of the end tag.
4105 * If the closing tag is on new line, do not decrement cursor, but
4106 * make operation exclusive, so that the linefeed will be selected */
4107 if (*c == '<' && !VIsual_active && curwin->w_cursor.col == 0)
4108 /* do not decrement cursor */
4109 is_inclusive = FALSE;
4110 else if (*c == '<')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004111 dec_cursor();
4112 }
4113 end_pos = curwin->w_cursor;
4114
4115 if (!do_include)
4116 {
4117 /* Exclude the start tag. */
4118 curwin->w_cursor = start_pos;
4119 while (inc_cursor() >= 0)
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004120 if (*ml_get_cursor() == '>')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004121 {
4122 inc_cursor();
4123 start_pos = curwin->w_cursor;
4124 break;
4125 }
4126 curwin->w_cursor = end_pos;
4127
Bram Moolenaarb476cb72018-08-16 21:37:50 +02004128 // If we are in Visual mode and now have the same text as before set
4129 // "do_include" and try again.
4130 if (VIsual_active && EQUAL_POS(start_pos, old_start)
4131 && EQUAL_POS(end_pos, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004132 {
4133 do_include = TRUE;
4134 curwin->w_cursor = old_start;
4135 count = count_arg;
4136 goto again;
4137 }
4138 }
4139
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004140 if (VIsual_active)
4141 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004142 /* If the end is before the start there is no text between tags, select
4143 * the char under the cursor. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004144 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004145 curwin->w_cursor = start_pos;
4146 else if (*p_sel == 'e')
Bram Moolenaar8340dd92014-12-13 20:11:33 +01004147 inc_cursor();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004148 VIsual = start_pos;
4149 VIsual_mode = 'v';
4150 redraw_curbuf_later(INVERTED); /* update the inversion */
4151 showmode();
4152 }
4153 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004154 {
4155 oap->start = start_pos;
4156 oap->motion_type = MCHAR;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004157 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004158 {
4159 /* End is before the start: there is no text between tags; operate
4160 * on an empty area. */
4161 curwin->w_cursor = start_pos;
4162 oap->inclusive = FALSE;
4163 }
4164 else
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004165 oap->inclusive = is_inclusive;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004166 }
4167 retval = OK;
4168
4169theend:
4170 p_ws = save_p_ws;
4171 return retval;
4172}
4173
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004175current_par(
4176 oparg_T *oap,
4177 long count,
4178 int include, /* TRUE == include white space */
4179 int type) /* 'p' for paragraph, 'S' for section */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180{
4181 linenr_T start_lnum;
4182 linenr_T end_lnum;
4183 int white_in_front;
4184 int dir;
4185 int start_is_white;
4186 int prev_start_is_white;
4187 int retval = OK;
4188 int do_white = FALSE;
4189 int t;
4190 int i;
4191
4192 if (type == 'S') /* not implemented yet */
4193 return FAIL;
4194
4195 start_lnum = curwin->w_cursor.lnum;
4196
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 /*
4198 * When visual area is more than one line: extend it.
4199 */
4200 if (VIsual_active && start_lnum != VIsual.lnum)
4201 {
4202extend:
4203 if (start_lnum < VIsual.lnum)
4204 dir = BACKWARD;
4205 else
4206 dir = FORWARD;
4207 for (i = count; --i >= 0; )
4208 {
4209 if (start_lnum ==
4210 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
4211 {
4212 retval = FAIL;
4213 break;
4214 }
4215
4216 prev_start_is_white = -1;
4217 for (t = 0; t < 2; ++t)
4218 {
4219 start_lnum += dir;
4220 start_is_white = linewhite(start_lnum);
4221 if (prev_start_is_white == start_is_white)
4222 {
4223 start_lnum -= dir;
4224 break;
4225 }
4226 for (;;)
4227 {
4228 if (start_lnum == (dir == BACKWARD
4229 ? 1 : curbuf->b_ml.ml_line_count))
4230 break;
4231 if (start_is_white != linewhite(start_lnum + dir)
4232 || (!start_is_white
4233 && startPS(start_lnum + (dir > 0
4234 ? 1 : 0), 0, 0)))
4235 break;
4236 start_lnum += dir;
4237 }
4238 if (!include)
4239 break;
4240 if (start_lnum == (dir == BACKWARD
4241 ? 1 : curbuf->b_ml.ml_line_count))
4242 break;
4243 prev_start_is_white = start_is_white;
4244 }
4245 }
4246 curwin->w_cursor.lnum = start_lnum;
4247 curwin->w_cursor.col = 0;
4248 return retval;
4249 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250
4251 /*
4252 * First move back to the start_lnum of the paragraph or white lines
4253 */
4254 white_in_front = linewhite(start_lnum);
4255 while (start_lnum > 1)
4256 {
4257 if (white_in_front) /* stop at first white line */
4258 {
4259 if (!linewhite(start_lnum - 1))
4260 break;
4261 }
4262 else /* stop at first non-white line of start of paragraph */
4263 {
4264 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
4265 break;
4266 }
4267 --start_lnum;
4268 }
4269
4270 /*
4271 * Move past the end of any white lines.
4272 */
4273 end_lnum = start_lnum;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004274 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
4275 ++end_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276
4277 --end_lnum;
4278 i = count;
4279 if (!include && white_in_front)
4280 --i;
4281 while (i--)
4282 {
4283 if (end_lnum == curbuf->b_ml.ml_line_count)
4284 return FAIL;
4285
4286 if (!include)
4287 do_white = linewhite(end_lnum + 1);
4288
4289 if (include || !do_white)
4290 {
4291 ++end_lnum;
4292 /*
4293 * skip to end of paragraph
4294 */
4295 while (end_lnum < curbuf->b_ml.ml_line_count
4296 && !linewhite(end_lnum + 1)
4297 && !startPS(end_lnum + 1, 0, 0))
4298 ++end_lnum;
4299 }
4300
4301 if (i == 0 && white_in_front && include)
4302 break;
4303
4304 /*
4305 * skip to end of white lines after paragraph
4306 */
4307 if (include || do_white)
4308 while (end_lnum < curbuf->b_ml.ml_line_count
4309 && linewhite(end_lnum + 1))
4310 ++end_lnum;
4311 }
4312
4313 /*
4314 * If there are no empty lines at the end, try to find some empty lines at
4315 * the start (unless that has been done already).
4316 */
4317 if (!white_in_front && !linewhite(end_lnum) && include)
4318 while (start_lnum > 1 && linewhite(start_lnum - 1))
4319 --start_lnum;
4320
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321 if (VIsual_active)
4322 {
4323 /* Problem: when doing "Vipipip" nothing happens in a single white
4324 * line, we get stuck there. Trap this here. */
4325 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4326 goto extend;
Bram Moolenaar84b2a382017-02-17 11:40:00 +01004327 if (VIsual.lnum != start_lnum)
4328 {
4329 VIsual.lnum = start_lnum;
4330 VIsual.col = 0;
4331 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332 VIsual_mode = 'V';
4333 redraw_curbuf_later(INVERTED); /* update the inversion */
4334 showmode();
4335 }
4336 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337 {
4338 oap->start.lnum = start_lnum;
4339 oap->start.col = 0;
4340 oap->motion_type = MLINE;
4341 }
4342 curwin->w_cursor.lnum = end_lnum;
4343 curwin->w_cursor.col = 0;
4344
4345 return OK;
4346}
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004347
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004348/*
4349 * Search quote char from string line[col].
4350 * Quote character escaped by one of the characters in "escape" is not counted
4351 * as a quote.
4352 * Returns column number of "quotechar" or -1 when not found.
4353 */
4354 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004355find_next_quote(
4356 char_u *line,
4357 int col,
4358 int quotechar,
4359 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004360{
4361 int c;
4362
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004363 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004364 {
4365 c = line[col];
4366 if (c == NUL)
4367 return -1;
4368 else if (escape != NULL && vim_strchr(escape, c))
4369 ++col;
4370 else if (c == quotechar)
4371 break;
4372#ifdef FEAT_MBYTE
4373 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004374 col += (*mb_ptr2len)(line + col);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004375 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004377 ++col;
4378 }
4379 return col;
4380}
4381
4382/*
4383 * Search backwards in "line" from column "col_start" to find "quotechar".
4384 * Quote character escaped by one of the characters in "escape" is not counted
4385 * as a quote.
4386 * Return the found column or zero.
4387 */
4388 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004389find_prev_quote(
4390 char_u *line,
4391 int col_start,
4392 int quotechar,
4393 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004394{
4395 int n;
4396
4397 while (col_start > 0)
4398 {
4399 --col_start;
4400#ifdef FEAT_MBYTE
4401 col_start -= (*mb_head_off)(line, line + col_start);
4402#endif
4403 n = 0;
4404 if (escape != NULL)
4405 while (col_start - n > 0 && vim_strchr(escape,
4406 line[col_start - n - 1]) != NULL)
4407 ++n;
4408 if (n & 1)
4409 col_start -= n; /* uneven number of escape chars, skip it */
4410 else if (line[col_start] == quotechar)
4411 break;
4412 }
4413 return col_start;
4414}
4415
4416/*
4417 * Find quote under the cursor, cursor at end.
4418 * Returns TRUE if found, else FALSE.
4419 */
4420 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004421current_quote(
4422 oparg_T *oap,
4423 long count,
4424 int include, /* TRUE == include quote char */
4425 int quotechar) /* Quote character */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004426{
4427 char_u *line = ml_get_curline();
4428 int col_end;
4429 int col_start = curwin->w_cursor.col;
4430 int inclusive = FALSE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004431 int vis_empty = TRUE; /* Visual selection <= 1 char */
4432 int vis_bef_curs = FALSE; /* Visual starts before cursor */
Bram Moolenaarab194812005-09-14 21:40:12 +00004433 int inside_quotes = FALSE; /* Looks like "i'" done before */
4434 int selected_quote = FALSE; /* Has quote inside selection */
4435 int i;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004436
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004437 /* Correct cursor when 'selection' is "exclusive". */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004438 if (VIsual_active)
4439 {
Bram Moolenaar46522af2017-02-18 23:12:01 +01004440 /* this only works within one line */
4441 if (VIsual.lnum != curwin->w_cursor.lnum)
4442 return FALSE;
4443
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004444 vis_bef_curs = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004445 if (*p_sel == 'e')
4446 {
4447 if (!vis_bef_curs)
4448 {
4449 /* VIsual needs to be start of Visual selection. */
4450 pos_T t = curwin->w_cursor;
4451
4452 curwin->w_cursor = VIsual;
4453 VIsual = t;
4454 vis_bef_curs = TRUE;
4455 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004456 dec_cursor();
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004457 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004458 vis_empty = EQUAL_POS(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004459 }
Bram Moolenaarab194812005-09-14 21:40:12 +00004460
4461 if (!vis_empty)
4462 {
4463 /* Check if the existing selection exactly spans the text inside
4464 * quotes. */
4465 if (vis_bef_curs)
4466 {
4467 inside_quotes = VIsual.col > 0
4468 && line[VIsual.col - 1] == quotechar
4469 && line[curwin->w_cursor.col] != NUL
4470 && line[curwin->w_cursor.col + 1] == quotechar;
4471 i = VIsual.col;
4472 col_end = curwin->w_cursor.col;
4473 }
4474 else
4475 {
4476 inside_quotes = curwin->w_cursor.col > 0
4477 && line[curwin->w_cursor.col - 1] == quotechar
4478 && line[VIsual.col] != NUL
4479 && line[VIsual.col + 1] == quotechar;
4480 i = curwin->w_cursor.col;
4481 col_end = VIsual.col;
4482 }
4483
4484 /* Find out if we have a quote in the selection. */
4485 while (i <= col_end)
4486 if (line[i++] == quotechar)
4487 {
4488 selected_quote = TRUE;
4489 break;
4490 }
4491 }
4492
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004493 if (!vis_empty && line[col_start] == quotechar)
4494 {
4495 /* Already selecting something and on a quote character. Find the
4496 * next quoted string. */
4497 if (vis_bef_curs)
4498 {
4499 /* Assume we are on a closing quote: move to after the next
4500 * opening quote. */
4501 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4502 if (col_start < 0)
4503 return FALSE;
4504 col_end = find_next_quote(line, col_start + 1, quotechar,
4505 curbuf->b_p_qe);
4506 if (col_end < 0)
4507 {
4508 /* We were on a starting quote perhaps? */
4509 col_end = col_start;
4510 col_start = curwin->w_cursor.col;
4511 }
4512 }
4513 else
4514 {
4515 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4516 if (line[col_end] != quotechar)
4517 return FALSE;
4518 col_start = find_prev_quote(line, col_end, quotechar,
4519 curbuf->b_p_qe);
4520 if (line[col_start] != quotechar)
4521 {
4522 /* We were on an ending quote perhaps? */
4523 col_start = col_end;
4524 col_end = curwin->w_cursor.col;
4525 }
4526 }
4527 }
4528 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004529
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004530 if (line[col_start] == quotechar || !vis_empty)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004531 {
4532 int first_col = col_start;
4533
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004534 if (!vis_empty)
4535 {
4536 if (vis_bef_curs)
4537 first_col = find_next_quote(line, col_start, quotechar, NULL);
4538 else
4539 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4540 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004541
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004542 /* The cursor is on a quote, we don't know if it's the opening or
4543 * closing quote. Search from the start of the line to find out.
4544 * Also do this when there is a Visual area, a' may leave the cursor
4545 * in between two strings. */
4546 col_start = 0;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004547 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004548 {
4549 /* Find open quote character. */
4550 col_start = find_next_quote(line, col_start, quotechar, NULL);
4551 if (col_start < 0 || col_start > first_col)
4552 return FALSE;
4553 /* Find close quote character. */
4554 col_end = find_next_quote(line, col_start + 1, quotechar,
4555 curbuf->b_p_qe);
4556 if (col_end < 0)
4557 return FALSE;
4558 /* If is cursor between start and end quote character, it is
4559 * target text object. */
4560 if (col_start <= first_col && first_col <= col_end)
4561 break;
4562 col_start = col_end + 1;
4563 }
4564 }
4565 else
4566 {
4567 /* Search backward for a starting quote. */
4568 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4569 if (line[col_start] != quotechar)
4570 {
4571 /* No quote before the cursor, look after the cursor. */
4572 col_start = find_next_quote(line, col_start, quotechar, NULL);
4573 if (col_start < 0)
4574 return FALSE;
4575 }
4576
4577 /* Find close quote character. */
4578 col_end = find_next_quote(line, col_start + 1, quotechar,
4579 curbuf->b_p_qe);
4580 if (col_end < 0)
4581 return FALSE;
4582 }
4583
4584 /* When "include" is TRUE, include spaces after closing quote or before
4585 * the starting quote. */
4586 if (include)
4587 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004588 if (VIM_ISWHITE(line[col_end + 1]))
4589 while (VIM_ISWHITE(line[col_end + 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004590 ++col_end;
4591 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004592 while (col_start > 0 && VIM_ISWHITE(line[col_start - 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004593 --col_start;
4594 }
4595
Bram Moolenaarab194812005-09-14 21:40:12 +00004596 /* Set start position. After vi" another i" must include the ".
4597 * For v2i" include the quotes. */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004598 if (!include && count < 2 && (vis_empty || !inside_quotes))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004599 ++col_start;
4600 curwin->w_cursor.col = col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004601 if (VIsual_active)
4602 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004603 /* Set the start of the Visual area when the Visual area was empty, we
4604 * were just inside quotes or the Visual area didn't start at a quote
4605 * and didn't include a quote.
4606 */
4607 if (vis_empty
4608 || (vis_bef_curs
4609 && !selected_quote
4610 && (inside_quotes
4611 || (line[VIsual.col] != quotechar
4612 && (VIsual.col == 0
4613 || line[VIsual.col - 1] != quotechar)))))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004614 {
4615 VIsual = curwin->w_cursor;
4616 redraw_curbuf_later(INVERTED);
4617 }
4618 }
4619 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004620 {
4621 oap->start = curwin->w_cursor;
4622 oap->motion_type = MCHAR;
4623 }
4624
4625 /* Set end position. */
4626 curwin->w_cursor.col = col_end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004627 if ((include || count > 1 /* After vi" another i" must include the ". */
Bram Moolenaarab194812005-09-14 21:40:12 +00004628 || (!vis_empty && inside_quotes)
Bram Moolenaarab194812005-09-14 21:40:12 +00004629 ) && inc_cursor() == 2)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004630 inclusive = TRUE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004631 if (VIsual_active)
4632 {
4633 if (vis_empty || vis_bef_curs)
4634 {
4635 /* decrement cursor when 'selection' is not exclusive */
4636 if (*p_sel != 'e')
4637 dec_cursor();
4638 }
4639 else
4640 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004641 /* Cursor is at start of Visual area. Set the end of the Visual
4642 * area when it was just inside quotes or it didn't end at a
4643 * quote. */
4644 if (inside_quotes
4645 || (!selected_quote
4646 && line[VIsual.col] != quotechar
4647 && (line[VIsual.col] == NUL
4648 || line[VIsual.col + 1] != quotechar)))
4649 {
4650 dec_cursor();
4651 VIsual = curwin->w_cursor;
4652 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004653 curwin->w_cursor.col = col_start;
4654 }
4655 if (VIsual_mode == 'V')
4656 {
4657 VIsual_mode = 'v';
4658 redraw_cmdline = TRUE; /* show mode later */
4659 }
4660 }
4661 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004662 {
4663 /* Set inclusive and other oap's flags. */
4664 oap->inclusive = inclusive;
4665 }
4666
4667 return OK;
4668}
4669
4670#endif /* FEAT_TEXTOBJ */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004672static int is_one_char(char_u *pattern, int move, pos_T *cur, int direction);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004673
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004674/*
4675 * Find next search match under cursor, cursor at end.
4676 * Used while an operator is pending, and in Visual mode.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004677 */
4678 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004679current_search(
4680 long count,
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004681 int forward) // TRUE for forward, FALSE for backward
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004682{
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004683 pos_T start_pos; // start position of the pattern match
4684 pos_T end_pos; // end position of the pattern match
4685 pos_T orig_pos; // position of the cursor at beginning
4686 pos_T pos; // position after the pattern
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004687 int i;
4688 int dir;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004689 int result; // result of various function calls
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004690 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004691 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02004692 pos_T save_VIsual = VIsual;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004693 int one_char;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004694
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004695 /* wrapping should not occur */
4696 p_ws = FALSE;
4697
4698 /* Correct cursor when 'selection' is exclusive */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004699 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004700 dec_cursor();
4701
4702 if (VIsual_active)
4703 {
4704 orig_pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004705
4706 pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004707
4708 /* make sure, searching further will extend the match */
4709 if (VIsual_active)
4710 {
4711 if (forward)
4712 incl(&pos);
4713 else
4714 decl(&pos);
4715 }
4716 }
4717 else
Bram Moolenaar268a06c2016-04-21 09:07:01 +02004718 orig_pos = pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004719
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004720 /* Is the pattern is zero-width?, this time, don't care about the direction
4721 */
4722 one_char = is_one_char(spats[last_idx].pat, TRUE, &curwin->w_cursor,
4723 FORWARD);
Bram Moolenaare78495d2013-06-30 14:46:53 +02004724 if (one_char == -1)
Bram Moolenaarba2d44f2013-11-28 19:27:30 +01004725 {
4726 p_ws = old_p_ws;
4727 return FAIL; /* pattern not found */
4728 }
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004729
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004730 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004731 * The trick is to first search backwards and then search forward again,
4732 * so that a match at the current cursor position will be correctly
4733 * captured.
4734 */
4735 for (i = 0; i < 2; i++)
4736 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004737 if (forward)
4738 dir = i;
4739 else
4740 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004741
4742 flags = 0;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004743 if (!dir && !one_char)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004744 flags = SEARCH_END;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004745 end_pos = pos;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004746
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004747 result = searchit(curwin, curbuf, &pos, &end_pos,
4748 (dir ? FORWARD : BACKWARD),
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004749 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004750 SEARCH_KEEP | flags, RE_SEARCH, 0, NULL, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004751
4752 /* First search may fail, but then start searching from the
4753 * beginning of the file (cursor might be on the search match)
4754 * except when Visual mode is active, so that extending the visual
4755 * selection works. */
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004756 if (i == 1 && !result) /* not found, abort */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004757 {
4758 curwin->w_cursor = orig_pos;
4759 if (VIsual_active)
4760 VIsual = save_VIsual;
4761 p_ws = old_p_ws;
4762 return FAIL;
4763 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004764 else if (i == 0 && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004765 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004766 if (forward)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004767 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004768 /* try again from start of buffer */
4769 CLEAR_POS(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004770 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004771 else
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004772 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004773 /* try again from end of buffer */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004774 /* searching backwards, so set pos to last line and col */
4775 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02004776 pos.col = (colnr_T)STRLEN(
4777 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004778 }
4779 }
Bram Moolenaarfcea03d2013-11-07 04:46:48 +01004780 p_ws = old_p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004781 }
4782
4783 start_pos = pos;
Bram Moolenaarbdb65792018-05-22 17:50:42 +02004784 p_ws = old_p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004785
4786 if (!VIsual_active)
4787 VIsual = start_pos;
4788
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004789 // put cursor on last character of match
4790 curwin->w_cursor = end_pos;
4791 if (LT_POS(VIsual, end_pos))
4792 dec_cursor();
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004793 VIsual_active = TRUE;
4794 VIsual_mode = 'v';
4795
4796 if (VIsual_active)
4797 {
4798 redraw_curbuf_later(INVERTED); /* update the inversion */
Bram Moolenaar718f0072012-10-03 13:35:51 +02004799 if (*p_sel == 'e')
4800 {
4801 /* Correction for exclusive selection depends on the direction. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004802 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar718f0072012-10-03 13:35:51 +02004803 inc_cursor();
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004804 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual))
Bram Moolenaar718f0072012-10-03 13:35:51 +02004805 inc(&VIsual);
4806 }
4807
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004808 }
4809
4810#ifdef FEAT_FOLDING
4811 if (fdo_flags & FDO_SEARCH && KeyTyped)
4812 foldOpenCursor();
4813#endif
4814
4815 may_start_select('c');
4816#ifdef FEAT_MOUSE
4817 setmouse();
4818#endif
4819#ifdef FEAT_CLIPBOARD
4820 /* Make sure the clipboard gets updated. Needed because start and
4821 * end are still the same, and the selection needs to be owned */
4822 clip_star.vmode = NUL;
4823#endif
4824 redraw_curbuf_later(INVERTED);
4825 showmode();
4826
4827 return OK;
4828}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004829
4830/*
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004831 * Check if the pattern is one character long or zero-width.
Bram Moolenaaradd8dce2017-06-05 19:56:04 +02004832 * If move is TRUE, check from the beginning of the buffer, else from position
4833 * "cur".
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004834 * "direction" is FORWARD or BACKWARD.
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004835 * Returns TRUE, FALSE or -1 for failure.
4836 */
4837 static int
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004838is_one_char(char_u *pattern, int move, pos_T *cur, int direction)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004839{
4840 regmmatch_T regmatch;
4841 int nmatched = 0;
4842 int result = -1;
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004843 pos_T pos;
4844 int save_called_emsg = called_emsg;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004845 int flag = 0;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004846
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004847 if (pattern == NULL)
4848 pattern = spats[last_idx].pat;
4849
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004850 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
4851 SEARCH_KEEP, &regmatch) == FAIL)
4852 return -1;
4853
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004854 /* init startcol correctly */
4855 regmatch.startpos[0].col = -1;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004856 /* move to match */
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004857 if (move)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004858 {
4859 CLEAR_POS(&pos);
4860 }
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004861 else
4862 {
Bram Moolenaaradd8dce2017-06-05 19:56:04 +02004863 pos = *cur;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004864 /* accept a match at the cursor position */
4865 flag = SEARCH_START;
4866 }
4867
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004868 if (searchit(curwin, curbuf, &pos, NULL, direction, pattern, 1,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004869 SEARCH_KEEP + flag, RE_SEARCH, 0, NULL, NULL) != FAIL)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004870 {
4871 /* Zero-width pattern should match somewhere, then we can check if
4872 * start and end are in the same position. */
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004873 called_emsg = FALSE;
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004874 do
4875 {
4876 regmatch.startpos[0].col++;
4877 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004878 pos.lnum, regmatch.startpos[0].col, NULL, NULL);
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004879 if (!nmatched)
4880 break;
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004881 } while (direction == FORWARD ? regmatch.startpos[0].col < pos.col
4882 : regmatch.startpos[0].col > pos.col);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004883
4884 if (!called_emsg)
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004885 {
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004886 result = (nmatched != 0
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004887 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
4888 && regmatch.startpos[0].col == regmatch.endpos[0].col);
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004889 /* one char width */
4890 if (!result && inc(&pos) >= 0 && pos.col == regmatch.endpos[0].col)
4891 result = TRUE;
4892 }
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004893 }
4894
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004895 called_emsg |= save_called_emsg;
Bram Moolenaar473de612013-06-08 18:19:48 +02004896 vim_regfree(regmatch.regprog);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004897 return result;
4898}
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004899
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4901 || defined(PROTO)
4902/*
4903 * return TRUE if line 'lnum' is empty or has white chars only.
4904 */
4905 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004906linewhite(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907{
4908 char_u *p;
4909
4910 p = skipwhite(ml_get(lnum));
4911 return (*p == NUL);
4912}
4913#endif
4914
4915#if defined(FEAT_FIND_ID) || defined(PROTO)
4916/*
4917 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01004918 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004921find_pattern_in_path(
4922 char_u *ptr, /* pointer to search pattern */
4923 int dir UNUSED, /* direction of expansion */
4924 int len, /* length of search pattern */
4925 int whole, /* match whole words only */
4926 int skip_comments, /* don't match inside comments */
4927 int type, /* Type of search; are we looking for a type?
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 a macro? */
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004929 long count,
4930 int action, /* What to do when we find it */
4931 linenr_T start_lnum, /* first line to start searching */
4932 linenr_T end_lnum) /* last line for searching */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933{
4934 SearchedFile *files; /* Stack of included files */
4935 SearchedFile *bigger; /* When we need more space */
4936 int max_path_depth = 50;
4937 long match_count = 1;
4938
4939 char_u *pat;
4940 char_u *new_fname;
4941 char_u *curr_fname = curbuf->b_fname;
4942 char_u *prev_fname = NULL;
4943 linenr_T lnum;
4944 int depth;
4945 int depth_displayed; /* For type==CHECK_PATH */
4946 int old_files;
4947 int already_searched;
4948 char_u *file_line;
4949 char_u *line;
4950 char_u *p;
4951 char_u save_char;
4952 int define_matched;
4953 regmatch_T regmatch;
4954 regmatch_T incl_regmatch;
4955 regmatch_T def_regmatch;
4956 int matched = FALSE;
4957 int did_show = FALSE;
4958 int found = FALSE;
4959 int i;
4960 char_u *already = NULL;
4961 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004962 char_u *inc_opt = NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02004963#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 win_T *curwin_save = NULL;
4965#endif
4966
4967 regmatch.regprog = NULL;
4968 incl_regmatch.regprog = NULL;
4969 def_regmatch.regprog = NULL;
4970
4971 file_line = alloc(LSIZE);
4972 if (file_line == NULL)
4973 return;
4974
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 if (type != CHECK_PATH && type != FIND_DEFINE
4976#ifdef FEAT_INS_EXPAND
4977 /* when CONT_SOL is set compare "ptr" with the beginning of the line
4978 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004979 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980#endif
4981 )
4982 {
4983 pat = alloc(len + 5);
4984 if (pat == NULL)
4985 goto fpip_end;
4986 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
4987 /* ignore case according to p_ic, p_scs and pat */
4988 regmatch.rm_ic = ignorecase(pat);
4989 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4990 vim_free(pat);
4991 if (regmatch.regprog == NULL)
4992 goto fpip_end;
4993 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004994 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
4995 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004997 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 if (incl_regmatch.regprog == NULL)
4999 goto fpip_end;
5000 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */
5001 }
5002 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
5003 {
5004 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
5005 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
5006 if (def_regmatch.regprog == NULL)
5007 goto fpip_end;
5008 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */
5009 }
5010 files = (SearchedFile *)lalloc_clear((long_u)
5011 (max_path_depth * sizeof(SearchedFile)), TRUE);
5012 if (files == NULL)
5013 goto fpip_end;
5014 old_files = max_path_depth;
5015 depth = depth_displayed = -1;
5016
5017 lnum = start_lnum;
5018 if (end_lnum > curbuf->b_ml.ml_line_count)
5019 end_lnum = curbuf->b_ml.ml_line_count;
5020 if (lnum > end_lnum) /* do at least one line */
5021 lnum = end_lnum;
5022 line = ml_get(lnum);
5023
5024 for (;;)
5025 {
5026 if (incl_regmatch.regprog != NULL
5027 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
5028 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005029 char_u *p_fname = (curr_fname == curbuf->b_fname)
5030 ? curbuf->b_ffname : curr_fname;
5031
5032 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
5033 /* Use text from '\zs' to '\ze' (or end) of 'include'. */
5034 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005035 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005036 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
5037 else
5038 /* Use text after match with 'include'. */
5039 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005040 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 already_searched = FALSE;
5042 if (new_fname != NULL)
5043 {
5044 /* Check whether we have already searched in this file */
5045 for (i = 0;; i++)
5046 {
5047 if (i == depth + 1)
5048 i = old_files;
5049 if (i == max_path_depth)
5050 break;
5051 if (fullpathcmp(new_fname, files[i].name, TRUE) & FPC_SAME)
5052 {
5053 if (type != CHECK_PATH &&
5054 action == ACTION_SHOW_ALL && files[i].matched)
5055 {
5056 msg_putchar('\n'); /* cursor below last one */
5057 if (!got_int) /* don't display if 'q'
5058 typed at "--more--"
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005059 message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 {
5061 msg_home_replace_hl(new_fname);
5062 MSG_PUTS(_(" (includes previously listed match)"));
5063 prev_fname = NULL;
5064 }
5065 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01005066 VIM_CLEAR(new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 already_searched = TRUE;
5068 break;
5069 }
5070 }
5071 }
5072
5073 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
5074 || (new_fname == NULL && !already_searched)))
5075 {
5076 if (did_show)
5077 msg_putchar('\n'); /* cursor below last one */
5078 else
5079 {
5080 gotocmdline(TRUE); /* cursor at status line */
5081 MSG_PUTS_TITLE(_("--- Included files "));
5082 if (action != ACTION_SHOW_ALL)
5083 MSG_PUTS_TITLE(_("not found "));
5084 MSG_PUTS_TITLE(_("in path ---\n"));
5085 }
5086 did_show = TRUE;
5087 while (depth_displayed < depth && !got_int)
5088 {
5089 ++depth_displayed;
5090 for (i = 0; i < depth_displayed; i++)
5091 MSG_PUTS(" ");
5092 msg_home_replace(files[depth_displayed].name);
5093 MSG_PUTS(" -->\n");
5094 }
5095 if (!got_int) /* don't display if 'q' typed
5096 for "--more--" message */
5097 {
5098 for (i = 0; i <= depth_displayed; i++)
5099 MSG_PUTS(" ");
5100 if (new_fname != NULL)
5101 {
5102 /* using "new_fname" is more reliable, e.g., when
5103 * 'includeexpr' is set. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005104 msg_outtrans_attr(new_fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 }
5106 else
5107 {
5108 /*
5109 * Isolate the file name.
5110 * Include the surrounding "" or <> if present.
5111 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005112 if (inc_opt != NULL
5113 && strstr((char *)inc_opt, "\\zs") != NULL)
5114 {
5115 /* pattern contains \zs, use the match */
5116 p = incl_regmatch.startp[0];
5117 i = (int)(incl_regmatch.endp[0]
5118 - incl_regmatch.startp[0]);
5119 }
5120 else
5121 {
5122 /* find the file name after the end of the match */
5123 for (p = incl_regmatch.endp[0];
5124 *p && !vim_isfilec(*p); p++)
5125 ;
5126 for (i = 0; vim_isfilec(p[i]); i++)
5127 ;
5128 }
5129
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130 if (i == 0)
5131 {
5132 /* Nothing found, use the rest of the line. */
5133 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005134 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 }
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005136 /* Avoid checking before the start of the line, can
5137 * happen if \zs appears in the regexp. */
5138 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 {
5140 if (p[-1] == '"' || p[-1] == '<')
5141 {
5142 --p;
5143 ++i;
5144 }
5145 if (p[i] == '"' || p[i] == '>')
5146 ++i;
5147 }
5148 save_char = p[i];
5149 p[i] = NUL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01005150 msg_outtrans_attr(p, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 p[i] = save_char;
5152 }
5153
5154 if (new_fname == NULL && action == ACTION_SHOW_ALL)
5155 {
5156 if (already_searched)
5157 MSG_PUTS(_(" (Already listed)"));
5158 else
5159 MSG_PUTS(_(" NOT FOUND"));
5160 }
5161 }
5162 out_flush(); /* output each line directly */
5163 }
5164
5165 if (new_fname != NULL)
5166 {
5167 /* Push the new file onto the file stack */
5168 if (depth + 1 == old_files)
5169 {
5170 bigger = (SearchedFile *)lalloc((long_u)(
5171 max_path_depth * 2 * sizeof(SearchedFile)), TRUE);
5172 if (bigger != NULL)
5173 {
5174 for (i = 0; i <= depth; i++)
5175 bigger[i] = files[i];
5176 for (i = depth + 1; i < old_files + max_path_depth; i++)
5177 {
5178 bigger[i].fp = NULL;
5179 bigger[i].name = NULL;
5180 bigger[i].lnum = 0;
5181 bigger[i].matched = FALSE;
5182 }
5183 for (i = old_files; i < max_path_depth; i++)
5184 bigger[i + max_path_depth] = files[i];
5185 old_files += max_path_depth;
5186 max_path_depth *= 2;
5187 vim_free(files);
5188 files = bigger;
5189 }
5190 }
5191 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
5192 == NULL)
5193 vim_free(new_fname);
5194 else
5195 {
5196 if (++depth == old_files)
5197 {
5198 /*
5199 * lalloc() for 'bigger' must have failed above. We
5200 * will forget one of our already visited files now.
5201 */
5202 vim_free(files[old_files].name);
5203 ++old_files;
5204 }
5205 files[depth].name = curr_fname = new_fname;
5206 files[depth].lnum = 0;
5207 files[depth].matched = FALSE;
5208#ifdef FEAT_INS_EXPAND
5209 if (action == ACTION_EXPAND)
5210 {
Bram Moolenaardf40adf2006-10-14 12:32:39 +00005211 msg_hist_off = TRUE; /* reset in msg_trunc_attr() */
Bram Moolenaar555b2802005-05-19 21:08:39 +00005212 vim_snprintf((char*)IObuff, IOSIZE,
5213 _("Scanning included file: %s"),
5214 (char *)new_fname);
Bram Moolenaar8820b482017-03-16 17:23:31 +01005215 msg_trunc_attr(IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216 }
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005217 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218#endif
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005219 if (p_verbose >= 5)
5220 {
5221 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005222 smsg(_("Searching included file %s"),
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005223 (char *)new_fname);
5224 verbose_leave();
5225 }
5226
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 }
5228 }
5229 }
5230 else
5231 {
5232 /*
5233 * Check if the line is a define (type == FIND_DEFINE)
5234 */
5235 p = line;
5236search_line:
5237 define_matched = FALSE;
5238 if (def_regmatch.regprog != NULL
5239 && vim_regexec(&def_regmatch, line, (colnr_T)0))
5240 {
5241 /*
5242 * Pattern must be first identifier after 'define', so skip
5243 * to that position before checking for match of pattern. Also
5244 * don't let it match beyond the end of this identifier.
5245 */
5246 p = def_regmatch.endp[0];
5247 while (*p && !vim_iswordc(*p))
5248 p++;
5249 define_matched = TRUE;
5250 }
5251
5252 /*
5253 * Look for a match. Don't do this if we are looking for a
5254 * define and this line didn't match define_prog above.
5255 */
5256 if (def_regmatch.regprog == NULL || define_matched)
5257 {
5258 if (define_matched
5259#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005260 || (compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261#endif
5262 )
5263 {
5264 /* compare the first "len" chars from "ptr" */
5265 startp = skipwhite(p);
5266 if (p_ic)
5267 matched = !MB_STRNICMP(startp, ptr, len);
5268 else
5269 matched = !STRNCMP(startp, ptr, len);
5270 if (matched && define_matched && whole
5271 && vim_iswordc(startp[len]))
5272 matched = FALSE;
5273 }
5274 else if (regmatch.regprog != NULL
5275 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
5276 {
5277 matched = TRUE;
5278 startp = regmatch.startp[0];
5279 /*
5280 * Check if the line is not a comment line (unless we are
5281 * looking for a define). A line starting with "# define"
5282 * is not considered to be a comment line.
5283 */
5284 if (!define_matched && skip_comments)
5285 {
5286#ifdef FEAT_COMMENTS
5287 if ((*line != '#' ||
5288 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02005289 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290 matched = FALSE;
5291
5292 /*
5293 * Also check for a "/ *" or "/ /" before the match.
5294 * Skips lines like "int backwards; / * normal index
5295 * * /" when looking for "normal".
5296 * Note: Doesn't skip "/ *" in comments.
5297 */
5298 p = skipwhite(line);
5299 if (matched
5300 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
5301#endif
5302 for (p = line; *p && p < startp; ++p)
5303 {
5304 if (matched
5305 && p[0] == '/'
5306 && (p[1] == '*' || p[1] == '/'))
5307 {
5308 matched = FALSE;
5309 /* After "//" all text is comment */
5310 if (p[1] == '/')
5311 break;
5312 ++p;
5313 }
5314 else if (!matched && p[0] == '*' && p[1] == '/')
5315 {
5316 /* Can find match after "* /". */
5317 matched = TRUE;
5318 ++p;
5319 }
5320 }
5321 }
5322 }
5323 }
5324 }
5325 if (matched)
5326 {
5327#ifdef FEAT_INS_EXPAND
5328 if (action == ACTION_EXPAND)
5329 {
5330 int reuse = 0;
5331 int add_r;
5332 char_u *aux;
5333
5334 if (depth == -1 && lnum == curwin->w_cursor.lnum)
5335 break;
5336 found = TRUE;
5337 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005338 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005340 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341 if (vim_iswordp(p))
5342 goto exit_matched;
5343 p = find_word_start(p);
5344 }
5345 p = find_word_end(p);
5346 i = (int)(p - aux);
5347
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005348 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005350 /* IOSIZE > compl_length, so the STRNCPY works */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00005352
5353 /* Get the next line: when "depth" < 0 from the current
5354 * buffer, otherwise from the included file. Jump to
5355 * exit_matched when past the last line. */
5356 if (depth < 0)
5357 {
5358 if (lnum >= end_lnum)
5359 goto exit_matched;
5360 line = ml_get(++lnum);
5361 }
5362 else if (vim_fgets(line = file_line,
5363 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 goto exit_matched;
5365
5366 /* we read a line, set "already" to check this "line" later
5367 * if depth >= 0 we'll increase files[depth].lnum far
5368 * bellow -- Acevedo */
5369 already = aux = p = skipwhite(line);
5370 p = find_word_start(p);
5371 p = find_word_end(p);
5372 if (p > aux)
5373 {
5374 if (*aux != ')' && IObuff[i-1] != TAB)
5375 {
5376 if (IObuff[i-1] != ' ')
5377 IObuff[i++] = ' ';
5378 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/
5379 if (p_js
5380 && (IObuff[i-2] == '.'
5381 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
5382 && (IObuff[i-2] == '?'
5383 || IObuff[i-2] == '!'))))
5384 IObuff[i++] = ' ';
5385 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005386 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387 if (p - aux >= IOSIZE - i)
5388 p = aux + IOSIZE - i - 1;
5389 STRNCPY(IObuff + i, aux, p - aux);
5390 i += (int)(p - aux);
5391 reuse |= CONT_S_IPOS;
5392 }
5393 IObuff[i] = NUL;
5394 aux = IObuff;
5395
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005396 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397 goto exit_matched;
5398 }
5399
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005400 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401 curr_fname == curbuf->b_fname ? NULL : curr_fname,
5402 dir, reuse);
5403 if (add_r == OK)
5404 /* if dir was BACKWARD then honor it just once */
5405 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005406 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 break;
5408 }
5409 else
5410#endif
5411 if (action == ACTION_SHOW_ALL)
5412 {
5413 found = TRUE;
5414 if (!did_show)
5415 gotocmdline(TRUE); /* cursor at status line */
5416 if (curr_fname != prev_fname)
5417 {
5418 if (did_show)
5419 msg_putchar('\n'); /* cursor below last one */
5420 if (!got_int) /* don't display if 'q' typed
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005421 at "--more--" message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 msg_home_replace_hl(curr_fname);
5423 prev_fname = curr_fname;
5424 }
5425 did_show = TRUE;
5426 if (!got_int)
5427 show_pat_in_path(line, type, TRUE, action,
5428 (depth == -1) ? NULL : files[depth].fp,
5429 (depth == -1) ? &lnum : &files[depth].lnum,
5430 match_count++);
5431
5432 /* Set matched flag for this file and all the ones that
5433 * include it */
5434 for (i = 0; i <= depth; ++i)
5435 files[i].matched = TRUE;
5436 }
5437 else if (--count <= 0)
5438 {
5439 found = TRUE;
5440 if (depth == -1 && lnum == curwin->w_cursor.lnum
Bram Moolenaar4033c552017-09-16 20:54:51 +02005441#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 && g_do_tagpreview == 0
5443#endif
5444 )
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005445 emsg(_("E387: Match is on current line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446 else if (action == ACTION_SHOW)
5447 {
5448 show_pat_in_path(line, type, did_show, action,
5449 (depth == -1) ? NULL : files[depth].fp,
5450 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
5451 did_show = TRUE;
5452 }
5453 else
5454 {
5455#ifdef FEAT_GUI
5456 need_mouse_correct = TRUE;
5457#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005458#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459 /* ":psearch" uses the preview window */
5460 if (g_do_tagpreview != 0)
5461 {
5462 curwin_save = curwin;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005463 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 }
5465#endif
5466 if (action == ACTION_SPLIT)
5467 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005470 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 }
5472 if (depth == -1)
5473 {
5474 /* match in current file */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005475#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 if (g_do_tagpreview != 0)
5477 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005478 if (!GETFILE_SUCCESS(getfile(
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005479 curwin_save->w_buffer->b_fnum, NULL,
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005480 NULL, TRUE, lnum, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481 break; /* failed to jump to file */
5482 }
5483 else
5484#endif
5485 setpcmark();
5486 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005487 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488 }
5489 else
5490 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005491 if (!GETFILE_SUCCESS(getfile(
5492 0, files[depth].name, NULL, TRUE,
5493 files[depth].lnum, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 break; /* failed to jump to file */
5495 /* autocommands may have changed the lnum, we don't
5496 * want that here */
5497 curwin->w_cursor.lnum = files[depth].lnum;
5498 }
5499 }
5500 if (action != ACTION_SHOW)
5501 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005502 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 curwin->w_set_curswant = TRUE;
5504 }
5505
Bram Moolenaar4033c552017-09-16 20:54:51 +02005506#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005508 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509 {
5510 /* Return cursor to where we were */
5511 validate_cursor();
5512 redraw_later(VALID);
5513 win_enter(curwin_save, TRUE);
5514 }
5515#endif
5516 break;
5517 }
5518#ifdef FEAT_INS_EXPAND
5519exit_matched:
5520#endif
5521 matched = FALSE;
5522 /* look for other matches in the rest of the line if we
5523 * are not at the end of it already */
5524 if (def_regmatch.regprog == NULL
5525#ifdef FEAT_INS_EXPAND
5526 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005527 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528#endif
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005529 && *startp != NUL
Bram Moolenaar94c465c2012-07-19 17:18:26 +02005530 && *(p = startp + MB_PTR2LEN(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 goto search_line;
5532 }
5533 line_breakcheck();
5534#ifdef FEAT_INS_EXPAND
5535 if (action == ACTION_EXPAND)
Bram Moolenaar472e8592016-10-15 17:06:47 +02005536 ins_compl_check_keys(30, FALSE);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005537 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538#else
5539 if (got_int)
5540#endif
5541 break;
5542
5543 /*
5544 * Read the next line. When reading an included file and encountering
5545 * end-of-file, close the file and continue in the file that included
5546 * it.
5547 */
5548 while (depth >= 0 && !already
5549 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5550 {
5551 fclose(files[depth].fp);
5552 --old_files;
5553 files[old_files].name = files[depth].name;
5554 files[old_files].matched = files[depth].matched;
5555 --depth;
5556 curr_fname = (depth == -1) ? curbuf->b_fname
5557 : files[depth].name;
5558 if (depth < depth_displayed)
5559 depth_displayed = depth;
5560 }
5561 if (depth >= 0) /* we could read the line */
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005562 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 files[depth].lnum++;
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005564 /* Remove any CR and LF from the line. */
5565 i = (int)STRLEN(line);
5566 if (i > 0 && line[i - 1] == '\n')
5567 line[--i] = NUL;
5568 if (i > 0 && line[i - 1] == '\r')
5569 line[--i] = NUL;
5570 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571 else if (!already)
5572 {
5573 if (++lnum > end_lnum)
5574 break;
5575 line = ml_get(lnum);
5576 }
5577 already = NULL;
5578 }
5579 /* End of big for (;;) loop. */
5580
5581 /* Close any files that are still open. */
5582 for (i = 0; i <= depth; i++)
5583 {
5584 fclose(files[i].fp);
5585 vim_free(files[i].name);
5586 }
5587 for (i = old_files; i < max_path_depth; i++)
5588 vim_free(files[i].name);
5589 vim_free(files);
5590
5591 if (type == CHECK_PATH)
5592 {
5593 if (!did_show)
5594 {
5595 if (action != ACTION_SHOW_ALL)
5596 MSG(_("All included files were found"));
5597 else
5598 MSG(_("No included files"));
5599 }
5600 }
5601 else if (!found
5602#ifdef FEAT_INS_EXPAND
5603 && action != ACTION_EXPAND
5604#endif
5605 )
5606 {
5607#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005608 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609#else
5610 if (got_int)
5611#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005612 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613 else if (type == FIND_DEFINE)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005614 emsg(_("E388: Couldn't find definition"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005616 emsg(_("E389: Couldn't find pattern"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617 }
5618 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5619 msg_end();
5620
5621fpip_end:
5622 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02005623 vim_regfree(regmatch.regprog);
5624 vim_regfree(incl_regmatch.regprog);
5625 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005626}
5627
5628 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005629show_pat_in_path(
5630 char_u *line,
5631 int type,
5632 int did_show,
5633 int action,
5634 FILE *fp,
5635 linenr_T *lnum,
5636 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637{
5638 char_u *p;
5639
5640 if (did_show)
5641 msg_putchar('\n'); /* cursor below last one */
Bram Moolenaar91170f82006-05-05 21:15:17 +00005642 else if (!msg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005643 gotocmdline(TRUE); /* cursor at status line */
5644 if (got_int) /* 'q' typed at "--more--" message */
5645 return;
5646 for (;;)
5647 {
5648 p = line + STRLEN(line) - 1;
5649 if (fp != NULL)
5650 {
5651 /* We used fgets(), so get rid of newline at end */
5652 if (p >= line && *p == '\n')
5653 --p;
5654 if (p >= line && *p == '\r')
5655 --p;
5656 *(p + 1) = NUL;
5657 }
5658 if (action == ACTION_SHOW_ALL)
5659 {
5660 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */
5661 msg_puts(IObuff);
5662 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */
5663 /* Highlight line numbers */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005664 msg_puts_attr(IObuff, HL_ATTR(HLF_N));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005665 MSG_PUTS(" ");
5666 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005667 msg_prt_line(line, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005668 out_flush(); /* show one line at a time */
5669
5670 /* Definition continues until line that doesn't end with '\' */
5671 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5672 break;
5673
5674 if (fp != NULL)
5675 {
5676 if (vim_fgets(line, LSIZE, fp)) /* end of file */
5677 break;
5678 ++*lnum;
5679 }
5680 else
5681 {
5682 if (++*lnum > curbuf->b_ml.ml_line_count)
5683 break;
5684 line = ml_get(*lnum);
5685 }
5686 msg_putchar('\n');
5687 }
5688}
5689#endif
5690
5691#ifdef FEAT_VIMINFO
5692 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005693read_viminfo_search_pattern(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005694{
5695 char_u *lp;
5696 int idx = -1;
5697 int magic = FALSE;
5698 int no_scs = FALSE;
5699 int off_line = FALSE;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005700 int off_end = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701 long off = 0;
5702 int setlast = FALSE;
5703#ifdef FEAT_SEARCH_EXTRA
5704 static int hlsearch_on = FALSE;
5705#endif
5706 char_u *val;
5707
5708 /*
5709 * Old line types:
5710 * "/pat", "&pat": search/subst. pat
5711 * "~/pat", "~&pat": last used search/subst. pat
5712 * New line types:
5713 * "~h", "~H": hlsearch highlighting off/on
5714 * "~<magic><smartcase><line><end><off><last><which>pat"
5715 * <magic>: 'm' off, 'M' on
5716 * <smartcase>: 's' off, 'S' on
5717 * <line>: 'L' line offset, 'l' char offset
5718 * <end>: 'E' from end, 'e' from start
5719 * <off>: decimal, offset
5720 * <last>: '~' last used pattern
5721 * <which>: '/' search pat, '&' subst. pat
5722 */
5723 lp = virp->vir_line;
5724 if (lp[0] == '~' && (lp[1] == 'm' || lp[1] == 'M')) /* new line type */
5725 {
5726 if (lp[1] == 'M') /* magic on */
5727 magic = TRUE;
5728 if (lp[2] == 's')
5729 no_scs = TRUE;
5730 if (lp[3] == 'L')
5731 off_line = TRUE;
5732 if (lp[4] == 'E')
Bram Moolenaared203462004-06-16 11:19:22 +00005733 off_end = SEARCH_END;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 lp += 5;
5735 off = getdigits(&lp);
5736 }
5737 if (lp[0] == '~') /* use this pattern for last-used pattern */
5738 {
5739 setlast = TRUE;
5740 lp++;
5741 }
5742 if (lp[0] == '/')
5743 idx = RE_SEARCH;
5744 else if (lp[0] == '&')
5745 idx = RE_SUBST;
5746#ifdef FEAT_SEARCH_EXTRA
5747 else if (lp[0] == 'h') /* ~h: 'hlsearch' highlighting off */
5748 hlsearch_on = FALSE;
5749 else if (lp[0] == 'H') /* ~H: 'hlsearch' highlighting on */
5750 hlsearch_on = TRUE;
5751#endif
5752 if (idx >= 0)
5753 {
5754 if (force || spats[idx].pat == NULL)
5755 {
5756 val = viminfo_readstring(virp, (int)(lp - virp->vir_line + 1),
5757 TRUE);
5758 if (val != NULL)
5759 {
5760 set_last_search_pat(val, idx, magic, setlast);
5761 vim_free(val);
5762 spats[idx].no_scs = no_scs;
5763 spats[idx].off.line = off_line;
5764 spats[idx].off.end = off_end;
5765 spats[idx].off.off = off;
5766#ifdef FEAT_SEARCH_EXTRA
5767 if (setlast)
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02005768 set_no_hlsearch(!hlsearch_on);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769#endif
5770 }
5771 }
5772 }
5773 return viminfo_readline(virp);
5774}
5775
5776 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005777write_viminfo_search_pattern(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005778{
5779 if (get_viminfo_parameter('/') != 0)
5780 {
5781#ifdef FEAT_SEARCH_EXTRA
5782 fprintf(fp, "\n# hlsearch on (H) or off (h):\n~%c",
5783 (no_hlsearch || find_viminfo_parameter('h') != NULL) ? 'h' : 'H');
5784#endif
5785 wvsp_one(fp, RE_SEARCH, "", '/');
Bram Moolenaar9b228712008-07-18 10:05:58 +00005786 wvsp_one(fp, RE_SUBST, _("Substitute "), '&');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005787 }
5788}
5789
5790 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005791wvsp_one(
5792 FILE *fp, /* file to write to */
5793 int idx, /* spats[] index */
5794 char *s, /* search pat */
5795 int sc) /* dir char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796{
5797 if (spats[idx].pat != NULL)
5798 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005799 fprintf(fp, _("\n# Last %sSearch Pattern:\n~"), s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005800 /* off.dir is not stored, it's reset to forward */
5801 fprintf(fp, "%c%c%c%c%ld%s%c",
5802 spats[idx].magic ? 'M' : 'm', /* magic */
5803 spats[idx].no_scs ? 's' : 'S', /* smartcase */
5804 spats[idx].off.line ? 'L' : 'l', /* line offset */
5805 spats[idx].off.end ? 'E' : 'e', /* offset from end */
5806 spats[idx].off.off, /* offset */
5807 last_idx == idx ? "~" : "", /* last used pat */
5808 sc);
5809 viminfo_writestring(fp, spats[idx].pat);
5810 }
5811}
5812#endif /* FEAT_VIMINFO */