blob: 7d57e85b5000c07d63844e5f269cb5ac11699616 [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 */
Bram Moolenaardbd24b52015-08-11 14:26:19 +020088static char_u lastc_bytes[MB_MAXBYTES + 1];
89static int lastc_bytelen = 1; /* >1 for multi-byte char */
Bram Moolenaardbd24b52015-08-11 14:26:19 +020090
Bram Moolenaar071d4272004-06-13 20:20:40 +000091/* copy of spats[], for keeping the search patterns while executing autocmds */
92static struct spat saved_spats[2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000093# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +010094static int saved_spats_last_idx = 0;
95static int saved_spats_no_hlsearch = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000096# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000097
98static char_u *mr_pattern = NULL; /* pattern used by search_regcomp() */
99#ifdef FEAT_RIGHTLEFT
100static int mr_pattern_alloced = FALSE; /* mr_pattern was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101#endif
102
103#ifdef FEAT_FIND_ID
104/*
105 * Type used by find_pattern_in_path() to remember which included files have
106 * been searched already.
107 */
108typedef struct SearchedFile
109{
110 FILE *fp; /* File pointer */
111 char_u *name; /* Full name of file */
112 linenr_T lnum; /* Line we were up to in file */
113 int matched; /* Found a match in this file */
114} SearchedFile;
115#endif
116
117/*
118 * translate search pattern for vim_regcomp()
119 *
120 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd)
121 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command)
122 * pat_save == RE_BOTH: save pat in both patterns (:global command)
123 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL
Bram Moolenaarb8017e72007-05-10 18:59:07 +0000124 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125 * pat_use == RE_LAST: use last used pattern if "pat" is NULL
126 * options & SEARCH_HIS: put search string in history
127 * options & SEARCH_KEEP: keep previous search pattern
128 *
129 * returns FAIL if failed, OK otherwise.
130 */
131 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100132search_regcomp(
133 char_u *pat,
134 int pat_save,
135 int pat_use,
136 int options,
137 regmmatch_T *regmatch) /* return: pattern and ignore-case flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138{
139 int magic;
140 int i;
141
142 rc_did_emsg = FALSE;
143 magic = p_magic;
144
145 /*
146 * If no pattern given, use a previously defined pattern.
147 */
148 if (pat == NULL || *pat == NUL)
149 {
150 if (pat_use == RE_LAST)
151 i = last_idx;
152 else
153 i = pat_use;
154 if (spats[i].pat == NULL) /* pattern was never defined */
155 {
156 if (pat_use == RE_SUBST)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100157 emsg(_(e_nopresub));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100159 emsg(_(e_noprevre));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 rc_did_emsg = TRUE;
161 return FAIL;
162 }
163 pat = spats[i].pat;
164 magic = spats[i].magic;
165 no_smartcase = spats[i].no_scs;
166 }
167#ifdef FEAT_CMDHIST
168 else if (options & SEARCH_HIS) /* put new pattern in history */
169 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
170#endif
171
172#ifdef FEAT_RIGHTLEFT
173 if (mr_pattern_alloced)
174 {
175 vim_free(mr_pattern);
176 mr_pattern_alloced = FALSE;
177 }
178
179 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
180 {
181 char_u *rev_pattern;
182
183 rev_pattern = reverse_text(pat);
184 if (rev_pattern == NULL)
185 mr_pattern = pat; /* out of memory, keep normal pattern. */
186 else
187 {
188 mr_pattern = rev_pattern;
189 mr_pattern_alloced = TRUE;
190 }
191 }
192 else
193#endif
194 mr_pattern = pat;
195
196 /*
197 * Save the currently used pattern in the appropriate place,
198 * unless the pattern should not be remembered.
199 */
Bram Moolenaar14177b72014-01-14 15:53:51 +0100200 if (!(options & SEARCH_KEEP) && !cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201 {
202 /* search or global command */
203 if (pat_save == RE_SEARCH || pat_save == RE_BOTH)
204 save_re_pat(RE_SEARCH, pat, magic);
205 /* substitute or global command */
206 if (pat_save == RE_SUBST || pat_save == RE_BOTH)
207 save_re_pat(RE_SUBST, pat, magic);
208 }
209
210 regmatch->rmm_ic = ignorecase(pat);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +0000211 regmatch->rmm_maxcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
213 if (regmatch->regprog == NULL)
214 return FAIL;
215 return OK;
216}
217
218/*
219 * Get search pattern used by search_regcomp().
220 */
221 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100222get_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223{
224 return mr_pattern;
225}
226
Bram Moolenaarabc97732007-08-08 20:49:37 +0000227#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228/*
229 * Reverse text into allocated memory.
230 * Returns the allocated string, NULL when out of memory.
231 */
Bram Moolenaarabc97732007-08-08 20:49:37 +0000232 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100233reverse_text(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234{
235 unsigned len;
236 unsigned s_i, rev_i;
237 char_u *rev;
238
239 /*
240 * Reverse the pattern.
241 */
242 len = (unsigned)STRLEN(s);
243 rev = alloc(len + 1);
244 if (rev != NULL)
245 {
246 rev_i = len;
247 for (s_i = 0; s_i < len; ++s_i)
248 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249 if (has_mbyte)
250 {
251 int mb_len;
252
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000253 mb_len = (*mb_ptr2len)(s + s_i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254 rev_i -= mb_len;
255 mch_memmove(rev + rev_i, s + s_i, mb_len);
256 s_i += mb_len - 1;
257 }
258 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259 rev[--rev_i] = s[s_i];
260
261 }
262 rev[len] = NUL;
263 }
264 return rev;
265}
266#endif
267
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +0100268 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100269save_re_pat(int idx, char_u *pat, int magic)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270{
271 if (spats[idx].pat != pat)
272 {
273 vim_free(spats[idx].pat);
274 spats[idx].pat = vim_strsave(pat);
275 spats[idx].magic = magic;
276 spats[idx].no_scs = no_smartcase;
277 last_idx = idx;
278#ifdef FEAT_SEARCH_EXTRA
279 /* If 'hlsearch' set and search pat changed: need redraw. */
280 if (p_hls)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000281 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200282 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283#endif
284 }
285}
286
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287/*
288 * Save the search patterns, so they can be restored later.
289 * Used before/after executing autocommands and user functions.
290 */
291static int save_level = 0;
292
293 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100294save_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295{
296 if (save_level++ == 0)
297 {
298 saved_spats[0] = spats[0];
299 if (spats[0].pat != NULL)
300 saved_spats[0].pat = vim_strsave(spats[0].pat);
301 saved_spats[1] = spats[1];
302 if (spats[1].pat != NULL)
303 saved_spats[1].pat = vim_strsave(spats[1].pat);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100304#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100305 saved_spats_last_idx = last_idx;
306 saved_spats_no_hlsearch = no_hlsearch;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100307#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308 }
309}
310
311 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100312restore_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313{
314 if (--save_level == 0)
315 {
316 vim_free(spats[0].pat);
317 spats[0] = saved_spats[0];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100318#if defined(FEAT_EVAL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000319 set_vv_searchforward();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100320#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321 vim_free(spats[1].pat);
322 spats[1] = saved_spats[1];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100323#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100324 last_idx = saved_spats_last_idx;
325 set_no_hlsearch(saved_spats_no_hlsearch);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100326#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327 }
328}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000330#if defined(EXITFREE) || defined(PROTO)
331 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100332free_search_patterns(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000333{
334 vim_free(spats[0].pat);
335 vim_free(spats[1].pat);
Bram Moolenaarf2427622009-04-22 16:45:21 +0000336
337# ifdef FEAT_RIGHTLEFT
338 if (mr_pattern_alloced)
339 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200340 vim_free(mr_pattern);
341 mr_pattern_alloced = FALSE;
342 mr_pattern = NULL;
Bram Moolenaarf2427622009-04-22 16:45:21 +0000343 }
344# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000345}
346#endif
347
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100348#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100349// copy of spats[RE_SEARCH], for keeping the search patterns while incremental
350// searching
351static struct spat saved_last_search_spat;
352static int did_save_last_search_spat = 0;
353static int saved_last_idx = 0;
354static int saved_no_hlsearch = 0;
355
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100356/*
357 * Save and restore the search pattern for incremental highlight search
358 * feature.
359 *
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100360 * It's similar to but different from save_search_patterns() and
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100361 * restore_search_patterns(), because the search pattern must be restored when
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100362 * canceling incremental searching even if it's called inside user functions.
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100363 */
364 void
365save_last_search_pattern(void)
366{
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100367 if (did_save_last_search_spat != 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100368 iemsg("did_save_last_search_spat is not zero");
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100369 else
370 ++did_save_last_search_spat;
371
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100372 saved_last_search_spat = spats[RE_SEARCH];
373 if (spats[RE_SEARCH].pat != NULL)
374 saved_last_search_spat.pat = vim_strsave(spats[RE_SEARCH].pat);
375 saved_last_idx = last_idx;
376 saved_no_hlsearch = no_hlsearch;
377}
378
379 void
380restore_last_search_pattern(void)
381{
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100382 if (did_save_last_search_spat != 1)
383 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100384 iemsg("did_save_last_search_spat is not one");
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100385 return;
386 }
387 --did_save_last_search_spat;
388
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100389 vim_free(spats[RE_SEARCH].pat);
390 spats[RE_SEARCH] = saved_last_search_spat;
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100391 saved_last_search_spat.pat = NULL;
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100392# if defined(FEAT_EVAL)
393 set_vv_searchforward();
394# endif
395 last_idx = saved_last_idx;
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200396 set_no_hlsearch(saved_no_hlsearch);
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100397}
Bram Moolenaard0480092017-11-16 22:20:39 +0100398
399 char_u *
400last_search_pattern(void)
401{
402 return spats[RE_SEARCH].pat;
403}
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100404#endif
405
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406/*
407 * Return TRUE when case should be ignored for search pattern "pat".
408 * Uses the 'ignorecase' and 'smartcase' options.
409 */
410 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100411ignorecase(char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412{
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200413 return ignorecase_opt(pat, p_ic, p_scs);
414}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200416/*
417 * As ignorecase() put pass the "ic" and "scs" flags.
418 */
419 int
420ignorecase_opt(char_u *pat, int ic_in, int scs)
421{
422 int ic = ic_in;
423
424 if (ic && !no_smartcase && scs
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425#ifdef FEAT_INS_EXPAND
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +0100426 && !(ctrl_x_mode_not_default() && curbuf->b_p_inf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427#endif
428 )
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200429 ic = !pat_has_uppercase(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430 no_smartcase = FALSE;
431
432 return ic;
433}
434
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200435/*
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200436 * Return TRUE if pattern "pat" has an uppercase character.
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200437 */
438 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100439pat_has_uppercase(char_u *pat)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200440{
441 char_u *p = pat;
442
443 while (*p != NUL)
444 {
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200445 int l;
446
447 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
448 {
449 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
450 return TRUE;
451 p += l;
452 }
Bram Moolenaar264b74f2019-01-24 17:18:42 +0100453 else if (*p == '\\')
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200454 {
455 if (p[1] == '_' && p[2] != NUL) /* skip "\_X" */
456 p += 3;
457 else if (p[1] == '%' && p[2] != NUL) /* skip "\%X" */
458 p += 3;
459 else if (p[1] != NUL) /* skip "\X" */
460 p += 2;
461 else
462 p += 1;
463 }
464 else if (MB_ISUPPER(*p))
465 return TRUE;
466 else
467 ++p;
468 }
469 return FALSE;
470}
471
Bram Moolenaar113e1072019-01-20 15:30:40 +0100472#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100474last_csearch(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200475{
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200476 return lastc_bytes;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200477}
478
479 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100480last_csearch_forward(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200481{
482 return lastcdir == FORWARD;
483}
484
485 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100486last_csearch_until(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200487{
488 return last_t_cmd == TRUE;
489}
490
491 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100492set_last_csearch(int c, char_u *s UNUSED, int len UNUSED)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200493{
494 *lastc = c;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200495 lastc_bytelen = len;
496 if (len)
497 memcpy(lastc_bytes, s, len);
498 else
499 vim_memset(lastc_bytes, 0, sizeof(lastc_bytes));
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200500}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100501#endif
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200502
503 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100504set_csearch_direction(int cdir)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200505{
506 lastcdir = cdir;
507}
508
509 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100510set_csearch_until(int t_cmd)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200511{
512 last_t_cmd = t_cmd;
513}
514
515 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100516last_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517{
518 return spats[last_idx].pat;
519}
520
521/*
522 * Reset search direction to forward. For "gd" and "gD" commands.
523 */
524 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100525reset_search_dir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526{
527 spats[0].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000528#if defined(FEAT_EVAL)
529 set_vv_searchforward();
530#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531}
532
533#if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
534/*
535 * Set the last search pattern. For ":let @/ =" and viminfo.
536 * Also set the saved search pattern, so that this works in an autocommand.
537 */
538 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100539set_last_search_pat(
540 char_u *s,
541 int idx,
542 int magic,
543 int setlast)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544{
545 vim_free(spats[idx].pat);
546 /* An empty string means that nothing should be matched. */
547 if (*s == NUL)
548 spats[idx].pat = NULL;
549 else
550 spats[idx].pat = vim_strsave(s);
551 spats[idx].magic = magic;
552 spats[idx].no_scs = FALSE;
553 spats[idx].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000554#if defined(FEAT_EVAL)
555 set_vv_searchforward();
556#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 spats[idx].off.line = FALSE;
558 spats[idx].off.end = FALSE;
559 spats[idx].off.off = 0;
560 if (setlast)
561 last_idx = idx;
562 if (save_level)
563 {
564 vim_free(saved_spats[idx].pat);
565 saved_spats[idx] = spats[0];
566 if (spats[idx].pat == NULL)
567 saved_spats[idx].pat = NULL;
568 else
569 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
Bram Moolenaar975880b2019-03-03 14:42:11 +0100570# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100571 saved_spats_last_idx = last_idx;
Bram Moolenaar975880b2019-03-03 14:42:11 +0100572# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 }
574# ifdef FEAT_SEARCH_EXTRA
575 /* If 'hlsearch' set and search pat changed: need redraw. */
576 if (p_hls && idx == last_idx && !no_hlsearch)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000577 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578# endif
579}
580#endif
581
582#ifdef FEAT_SEARCH_EXTRA
583/*
584 * Get a regexp program for the last used search pattern.
585 * This is used for highlighting all matches in a window.
586 * Values returned in regmatch->regprog and regmatch->rmm_ic.
587 */
588 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100589last_pat_prog(regmmatch_T *regmatch)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590{
591 if (spats[last_idx].pat == NULL)
592 {
593 regmatch->regprog = NULL;
594 return;
595 }
596 ++emsg_off; /* So it doesn't beep if bad expr */
597 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
598 --emsg_off;
599}
600#endif
601
602/*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100603 * Lowest level search function.
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100604 * Search for 'count'th occurrence of pattern "pat" in direction "dir".
605 * Start at position "pos" and return the found position in "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 *
607 * if (options & SEARCH_MSG) == 0 don't give any messages
608 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
609 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
610 * if (options & SEARCH_HIS) put search pattern in history
611 * if (options & SEARCH_END) return position at end of match
612 * if (options & SEARCH_START) accept match at pos itself
613 * if (options & SEARCH_KEEP) keep previous search pattern
614 * if (options & SEARCH_FOLD) match only once in a closed fold
615 * if (options & SEARCH_PEEK) check for typed char, cancel search
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100616 * if (options & SEARCH_COL) start at pos->col instead of zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617 *
618 * Return FAIL (zero) for failure, non-zero for success.
619 * When FEAT_EVAL is defined, returns the index of the first matching
620 * subpattern plus one; one if there was none.
621 */
622 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100623searchit(
624 win_T *win, /* window to search in; can be NULL for a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625 buffer without a window! */
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100626 buf_T *buf,
627 pos_T *pos,
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100628 pos_T *end_pos, // set to end of the match, unless NULL
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100629 int dir,
630 char_u *pat,
631 long count,
632 int options,
633 int pat_use, /* which pattern to use when "pat" is empty */
634 linenr_T stop_lnum, /* stop after this line number when != 0 */
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200635 proftime_T *tm UNUSED, /* timeout limit or NULL */
636 int *timed_out UNUSED) /* set when timed out or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637{
638 int found;
639 linenr_T lnum; /* no init to shut up Apollo cc */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100640 colnr_T col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 regmmatch_T regmatch;
642 char_u *ptr;
643 colnr_T matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 lpos_T endpos;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000645 lpos_T matchpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 int loop;
647 pos_T start_pos;
648 int at_first_line;
649 int extra_col;
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200650 int start_char_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651 int match_ok;
652 long nmatched;
653 int submatch = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100654 int first_match = TRUE;
Bram Moolenaar280f1262006-01-30 00:14:18 +0000655 int save_called_emsg = called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656#ifdef FEAT_SEARCH_EXTRA
657 int break_loop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658#endif
659
660 if (search_regcomp(pat, RE_SEARCH, pat_use,
661 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
662 {
663 if ((options & SEARCH_MSG) && !rc_did_emsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100664 semsg(_("E383: Invalid search string: %s"), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665 return FAIL;
666 }
667
Bram Moolenaar280f1262006-01-30 00:14:18 +0000668 /*
669 * find the string
670 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 called_emsg = FALSE;
672 do /* loop for count */
673 {
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100674 /* When not accepting a match at the start position set "extra_col" to
675 * a non-zero value. Don't do that when starting at MAXCOL, since
676 * MAXCOL + 1 is zero. */
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200677 if (pos->col == MAXCOL)
678 start_char_len = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100679 /* Watch out for the "col" being MAXCOL - 2, used in a closed fold. */
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200680 else if (has_mbyte
681 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
682 && pos->col < MAXCOL - 2)
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100683 {
Bram Moolenaar82846a02018-02-09 18:09:54 +0100684 ptr = ml_get_buf(buf, pos->lnum, FALSE);
Bram Moolenaar8846ac52018-02-09 19:24:01 +0100685 if ((int)STRLEN(ptr) <= pos->col)
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200686 start_char_len = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100687 else
Bram Moolenaar82846a02018-02-09 18:09:54 +0100688 start_char_len = (*mb_ptr2len)(ptr + pos->col);
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100689 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100690 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200691 start_char_len = 1;
692 if (dir == FORWARD)
693 {
694 if (options & SEARCH_START)
695 extra_col = 0;
696 else
697 extra_col = start_char_len;
698 }
699 else
700 {
701 if (options & SEARCH_START)
702 extra_col = start_char_len;
703 else
704 extra_col = 0;
705 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100706
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 start_pos = *pos; /* remember start pos for detecting no match */
708 found = 0; /* default: not found */
709 at_first_line = TRUE; /* default: start in first line */
710 if (pos->lnum == 0) /* correct lnum for when starting in line 0 */
711 {
712 pos->lnum = 1;
713 pos->col = 0;
714 at_first_line = FALSE; /* not in first line now */
715 }
716
717 /*
718 * Start searching in current line, unless searching backwards and
719 * we're in column 0.
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000720 * If we are searching backwards, in column 0, and not including the
721 * current position, gain some efficiency by skipping back a line.
722 * Otherwise begin the search in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723 */
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000724 if (dir == BACKWARD && start_pos.col == 0
725 && (options & SEARCH_START) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726 {
727 lnum = pos->lnum - 1;
728 at_first_line = FALSE;
729 }
730 else
731 lnum = pos->lnum;
732
733 for (loop = 0; loop <= 1; ++loop) /* loop twice if 'wrapscan' set */
734 {
735 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
736 lnum += dir, at_first_line = FALSE)
737 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000738 /* Stop after checking "stop_lnum", if it's set. */
739 if (stop_lnum != 0 && (dir == FORWARD
740 ? lnum > stop_lnum : lnum < stop_lnum))
741 break;
Bram Moolenaar76929292008-01-06 19:07:36 +0000742#ifdef FEAT_RELTIME
743 /* Stop after passing the "tm" time limit. */
744 if (tm != NULL && profile_passed_limit(tm))
745 break;
746#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000747
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000749 * Look for a match somewhere in line "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100751 col = at_first_line && (options & SEARCH_COL) ? pos->col
752 : (colnr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 nmatched = vim_regexec_multi(&regmatch, win, buf,
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100754 lnum, col,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000755#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200756 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000757#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200758 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000759#endif
760 );
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 /* Abort searching on an error (e.g., out of stack). */
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200762 if (called_emsg
763#ifdef FEAT_RELTIME
764 || (timed_out != NULL && *timed_out)
765#endif
766 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 break;
768 if (nmatched > 0)
769 {
770 /* match may actually be in another line when using \zs */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000771 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 endpos = regmatch.endpos[0];
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000773#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 submatch = first_submatch(&regmatch);
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000775#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000776 /* "lnum" may be past end of buffer for "\n\zs". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000777 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
778 ptr = (char_u *)"";
779 else
780 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781
782 /*
783 * Forward search in the first line: match should be after
784 * the start position. If not, continue at the end of the
785 * match (this is vi compatible) or on the next char.
786 */
787 if (dir == FORWARD && at_first_line)
788 {
789 match_ok = TRUE;
790 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000791 * When the match starts in a next line it's certainly
792 * past the start position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793 * When match lands on a NUL the cursor will be put
794 * one back afterwards, compare with that position,
795 * otherwise "/$" will get stuck on end of line.
796 */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000797 while (matchpos.lnum == 0
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100798 && ((options & SEARCH_END) && first_match
Bram Moolenaar677ee682005-01-27 14:41:15 +0000799 ? (nmatched == 1
800 && (int)endpos.col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801 < (int)start_pos.col + extra_col)
Bram Moolenaar677ee682005-01-27 14:41:15 +0000802 : ((int)matchpos.col
803 - (ptr[matchpos.col] == NUL)
804 < (int)start_pos.col + extra_col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805 {
806 /*
807 * If vi-compatible searching, continue at the end
808 * of the match, otherwise continue one position
809 * forward.
810 */
811 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
812 {
813 if (nmatched > 1)
814 {
815 /* end is in next line, thus no match in
816 * this line */
817 match_ok = FALSE;
818 break;
819 }
820 matchcol = endpos.col;
821 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000822 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 && ptr[matchcol] != NUL)
824 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 if (has_mbyte)
826 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000827 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 ++matchcol;
830 }
831 }
832 else
833 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000834 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 if (ptr[matchcol] != NUL)
836 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000838 matchcol += (*mb_ptr2len)(ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 + matchcol);
840 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 ++matchcol;
842 }
843 }
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200844 if (matchcol == 0 && (options & SEARCH_START))
Bram Moolenaardb333a52013-03-19 15:27:48 +0100845 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 if (ptr[matchcol] == NUL
847 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000848 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000849 matchcol,
850#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200851 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000852#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200853 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000854#endif
855 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 {
857 match_ok = FALSE;
858 break;
859 }
Bram Moolenaar677ee682005-01-27 14:41:15 +0000860 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861 endpos = regmatch.endpos[0];
862# ifdef FEAT_EVAL
863 submatch = first_submatch(&regmatch);
864# endif
865
866 /* Need to get the line pointer again, a
867 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000868 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 }
870 if (!match_ok)
871 continue;
872 }
873 if (dir == BACKWARD)
874 {
875 /*
876 * Now, if there are multiple matches on this line,
877 * we have to get the last one. Or the last one before
878 * the cursor, if we're on that line.
879 * When putting the new cursor at the end, compare
880 * relative to the end of the match.
881 */
882 match_ok = FALSE;
883 for (;;)
884 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000885 /* Remember a position that is before the start
886 * position, we use it if it's the last match in
887 * the line. Always accept a position after
888 * wrapping around. */
889 if (loop
890 || ((options & SEARCH_END)
891 ? (lnum + regmatch.endpos[0].lnum
892 < start_pos.lnum
893 || (lnum + regmatch.endpos[0].lnum
894 == start_pos.lnum
895 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200896 < (int)start_pos.col
897 + extra_col))
Bram Moolenaar677ee682005-01-27 14:41:15 +0000898 : (lnum + regmatch.startpos[0].lnum
899 < start_pos.lnum
900 || (lnum + regmatch.startpos[0].lnum
901 == start_pos.lnum
902 && (int)regmatch.startpos[0].col
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200903 < (int)start_pos.col
904 + extra_col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000907 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 endpos = regmatch.endpos[0];
909# ifdef FEAT_EVAL
910 submatch = first_submatch(&regmatch);
911# endif
912 }
913 else
914 break;
915
916 /*
917 * We found a valid match, now check if there is
918 * another one after it.
919 * If vi-compatible searching, continue at the end
920 * of the match, otherwise continue one position
921 * forward.
922 */
923 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
924 {
925 if (nmatched > 1)
926 break;
927 matchcol = endpos.col;
928 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000929 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 && ptr[matchcol] != NUL)
931 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 if (has_mbyte)
933 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000934 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 ++matchcol;
937 }
938 }
939 else
940 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000941 /* Stop when the match is in a next line. */
942 if (matchpos.lnum > 0)
943 break;
944 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945 if (ptr[matchcol] != NUL)
946 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 if (has_mbyte)
948 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000949 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 ++matchcol;
952 }
953 }
954 if (ptr[matchcol] == NUL
955 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000956 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000957 matchcol,
958#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200959 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000960#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200961 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000962#endif
963 )) == 0)
Bram Moolenaar9d322762018-02-09 16:04:25 +0100964 {
965#ifdef FEAT_RELTIME
966 /* If the search timed out, we did find a match
967 * but it might be the wrong one, so that's not
968 * OK. */
969 if (timed_out != NULL && *timed_out)
970 match_ok = FALSE;
971#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972 break;
Bram Moolenaar9d322762018-02-09 16:04:25 +0100973 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974
975 /* Need to get the line pointer again, a
976 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000977 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978 }
979
980 /*
981 * If there is only a match after the cursor, skip
982 * this match.
983 */
984 if (!match_ok)
985 continue;
986 }
987
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000988 /* With the SEARCH_END option move to the last character
989 * of the match. Don't do it for an empty match, end
990 * should be same as start then. */
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200991 if ((options & SEARCH_END) && !(options & SEARCH_NOOF)
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000992 && !(matchpos.lnum == endpos.lnum
993 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000995 /* For a match in the first column, set the position
996 * on the NUL in the previous line. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000997 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000998 pos->col = endpos.col;
999 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001000 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001001 if (pos->lnum > 1) /* just in case */
1002 {
1003 --pos->lnum;
1004 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
1005 pos->lnum, FALSE));
1006 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001007 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001008 else
1009 {
1010 --pos->col;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001011 if (has_mbyte
1012 && pos->lnum <= buf->b_ml.ml_line_count)
1013 {
1014 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1015 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
1016 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001017 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001018 if (end_pos != NULL)
1019 {
1020 end_pos->lnum = lnum + matchpos.lnum;
1021 end_pos->col = matchpos.col;
1022 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 }
1024 else
1025 {
Bram Moolenaar677ee682005-01-27 14:41:15 +00001026 pos->lnum = lnum + matchpos.lnum;
1027 pos->col = matchpos.col;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001028 if (end_pos != NULL)
1029 {
1030 end_pos->lnum = lnum + endpos.lnum;
1031 end_pos->col = endpos.col;
1032 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 pos->coladd = 0;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001035 if (end_pos != NULL)
1036 end_pos->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 found = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +01001038 first_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039
1040 /* Set variables used for 'incsearch' highlighting. */
Bram Moolenaar677ee682005-01-27 14:41:15 +00001041 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 search_match_endcol = endpos.col;
1043 break;
1044 }
1045 line_breakcheck(); /* stop if ctrl-C typed */
1046 if (got_int)
1047 break;
1048
1049#ifdef FEAT_SEARCH_EXTRA
1050 /* Cancel searching if a character was typed. Used for
1051 * 'incsearch'. Don't check too often, that would slowdown
1052 * searching too much. */
1053 if ((options & SEARCH_PEEK)
1054 && ((lnum - pos->lnum) & 0x3f) == 0
1055 && char_avail())
1056 {
1057 break_loop = TRUE;
1058 break;
1059 }
1060#endif
1061
1062 if (loop && lnum == start_pos.lnum)
1063 break; /* if second loop, stop where started */
1064 }
1065 at_first_line = FALSE;
1066
1067 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001068 * Stop the search if wrapscan isn't set, "stop_lnum" is
1069 * specified, after an interrupt, after a match and after looping
1070 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071 */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001072 if (!p_ws || stop_lnum != 0 || got_int || called_emsg
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001073#ifdef FEAT_RELTIME
1074 || (timed_out != NULL && *timed_out)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001075#endif
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001076#ifdef FEAT_SEARCH_EXTRA
1077 || break_loop
1078#endif
1079 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 break;
1081
1082 /*
1083 * If 'wrapscan' is set we continue at the other end of the file.
1084 * If 'shortmess' does not contain 's', we give a message.
1085 * This message is also remembered in keep_msg for when the screen
1086 * is redrawn. The keep_msg is cleared whenever another message is
1087 * written.
1088 */
1089 if (dir == BACKWARD) /* start second loop at the other end */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00001093 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
1094 give_warning((char_u *)_(dir == BACKWARD
1095 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00001097 if (got_int || called_emsg
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001098#ifdef FEAT_RELTIME
1099 || (timed_out != NULL && *timed_out)
1100#endif
Bram Moolenaar78a15312009-05-15 19:33:18 +00001101#ifdef FEAT_SEARCH_EXTRA
1102 || break_loop
1103#endif
1104 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 break;
1106 }
1107 while (--count > 0 && found); /* stop after count matches or no match */
1108
Bram Moolenaar473de612013-06-08 18:19:48 +02001109 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110
Bram Moolenaar280f1262006-01-30 00:14:18 +00001111 called_emsg |= save_called_emsg;
1112
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 if (!found) /* did not find it */
1114 {
1115 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001116 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 else if ((options & SEARCH_MSG) == SEARCH_MSG)
1118 {
1119 if (p_ws)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001120 semsg(_(e_patnotf2), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 else if (lnum == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001122 semsg(_("E384: search hit TOP without match for: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123 mr_pattern);
1124 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001125 semsg(_("E385: search hit BOTTOM without match for: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 mr_pattern);
1127 }
1128 return FAIL;
1129 }
1130
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001131 /* A pattern like "\n\zs" may go past the last line. */
1132 if (pos->lnum > buf->b_ml.ml_line_count)
1133 {
1134 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001135 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001136 if (pos->col > 0)
1137 --pos->col;
1138 }
1139
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 return submatch + 1;
1141}
1142
1143#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001144 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001145set_search_direction(int cdir)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001146{
1147 spats[0].off.dir = cdir;
1148}
1149
1150 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001151set_vv_searchforward(void)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001152{
1153 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1154}
1155
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156/*
1157 * Return the number of the first subpat that matched.
Bram Moolenaarad4d8a12015-12-28 19:20:36 +01001158 * Return zero if none of them matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 */
1160 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001161first_submatch(regmmatch_T *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162{
1163 int submatch;
1164
1165 for (submatch = 1; ; ++submatch)
1166 {
1167 if (rp->startpos[submatch].lnum >= 0)
1168 break;
1169 if (submatch == 9)
1170 {
1171 submatch = 0;
1172 break;
1173 }
1174 }
1175 return submatch;
1176}
1177#endif
1178
1179/*
1180 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001181 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 * If 'dirc' is 0: use previous dir.
1183 * If 'pat' is NULL or empty : use previous string.
1184 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1185 * If 'options & SEARCH_ECHO': echo the search command and handle options
1186 * If 'options & SEARCH_MSG' : may give error message
1187 * If 'options & SEARCH_OPT' : interpret optional flags
1188 * If 'options & SEARCH_HIS' : put search pattern in history
1189 * If 'options & SEARCH_NOOF': don't add offset to position
1190 * If 'options & SEARCH_MARK': set previous context mark
1191 * If 'options & SEARCH_KEEP': keep previous search pattern
1192 * If 'options & SEARCH_START': accept match at curpos itself
1193 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1194 *
1195 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1196 * makes the movement linewise without moving the match position.
1197 *
Bram Moolenaarb6c27352015-03-05 19:57:49 +01001198 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 */
1200 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001201do_search(
1202 oparg_T *oap, /* can be NULL */
1203 int dirc, /* '/' or '?' */
1204 char_u *pat,
1205 long count,
1206 int options,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001207 proftime_T *tm, /* timeout limit or NULL */
1208 int *timed_out) /* flag set on timeout or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209{
1210 pos_T pos; /* position of the last match */
1211 char_u *searchstr;
1212 struct soffset old_off;
1213 int retval; /* Return value */
1214 char_u *p;
1215 long c;
1216 char_u *dircp;
1217 char_u *strcopy = NULL;
1218 char_u *ps;
1219
1220 /*
1221 * A line offset is not remembered, this is vi compatible.
1222 */
1223 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1224 {
1225 spats[0].off.line = FALSE;
1226 spats[0].off.off = 0;
1227 }
1228
1229 /*
1230 * Save the values for when (options & SEARCH_KEEP) is used.
1231 * (there is no "if ()" around this because gcc wants them initialized)
1232 */
1233 old_off = spats[0].off;
1234
1235 pos = curwin->w_cursor; /* start searching at the cursor position */
1236
1237 /*
1238 * Find out the direction of the search.
1239 */
1240 if (dirc == 0)
1241 dirc = spats[0].off.dir;
1242 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001243 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001245#if defined(FEAT_EVAL)
1246 set_vv_searchforward();
1247#endif
1248 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 if (options & SEARCH_REV)
1250 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001251#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 /* There is a bug in the Visual C++ 2.2 compiler which means that
1253 * dirc always ends up being '/' */
1254 dirc = (dirc == '/') ? '?' : '/';
1255#else
1256 if (dirc == '/')
1257 dirc = '?';
1258 else
1259 dirc = '/';
1260#endif
1261 }
1262
1263#ifdef FEAT_FOLDING
1264 /* If the cursor is in a closed fold, don't find another match in the same
1265 * fold. */
1266 if (dirc == '/')
1267 {
1268 if (hasFolding(pos.lnum, NULL, &pos.lnum))
1269 pos.col = MAXCOL - 2; /* avoid overflow when adding 1 */
1270 }
1271 else
1272 {
1273 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1274 pos.col = 0;
1275 }
1276#endif
1277
1278#ifdef FEAT_SEARCH_EXTRA
1279 /*
1280 * Turn 'hlsearch' highlighting back on.
1281 */
1282 if (no_hlsearch && !(options & SEARCH_KEEP))
1283 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001284 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02001285 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 }
1287#endif
1288
1289 /*
1290 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1291 */
1292 for (;;)
1293 {
1294 searchstr = pat;
1295 dircp = NULL;
1296 /* use previous pattern */
1297 if (pat == NULL || *pat == NUL || *pat == dirc)
1298 {
1299 if (spats[RE_SEARCH].pat == NULL) /* no previous pattern */
1300 {
Bram Moolenaarea683da2016-09-09 21:41:34 +02001301 searchstr = spats[RE_SUBST].pat;
1302 if (searchstr == NULL)
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001303 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001304 emsg(_(e_noprevre));
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001305 retval = 0;
1306 goto end_do_search;
1307 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001309 else
1310 {
1311 /* make search_regcomp() use spats[RE_SEARCH].pat */
1312 searchstr = (char_u *)"";
1313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 }
1315
1316 if (pat != NULL && *pat != NUL) /* look for (new) offset */
1317 {
1318 /*
1319 * Find end of regular expression.
1320 * If there is a matching '/' or '?', toss it.
1321 */
1322 ps = strcopy;
1323 p = skip_regexp(pat, dirc, (int)p_magic, &strcopy);
1324 if (strcopy != ps)
1325 {
1326 /* made a copy of "pat" to change "\?" to "?" */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001327 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 pat = strcopy;
1329 searchstr = strcopy;
1330 }
1331 if (*p == dirc)
1332 {
1333 dircp = p; /* remember where we put the NUL */
1334 *p++ = NUL;
1335 }
1336 spats[0].off.line = FALSE;
1337 spats[0].off.end = FALSE;
1338 spats[0].off.off = 0;
1339 /*
1340 * Check for a line offset or a character offset.
1341 * For get_address (echo off) we don't check for a character
1342 * offset, because it is meaningless and the 's' could be a
1343 * substitute command.
1344 */
1345 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1346 spats[0].off.line = TRUE;
1347 else if ((options & SEARCH_OPT) &&
1348 (*p == 'e' || *p == 's' || *p == 'b'))
1349 {
1350 if (*p == 'e') /* end */
1351 spats[0].off.end = SEARCH_END;
1352 ++p;
1353 }
1354 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') /* got an offset */
1355 {
1356 /* 'nr' or '+nr' or '-nr' */
1357 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1358 spats[0].off.off = atol((char *)p);
1359 else if (*p == '-') /* single '-' */
1360 spats[0].off.off = -1;
1361 else /* single '+' */
1362 spats[0].off.off = 1;
1363 ++p;
1364 while (VIM_ISDIGIT(*p)) /* skip number */
1365 ++p;
1366 }
1367
1368 /* compute length of search command for get_address() */
1369 searchcmdlen += (int)(p - pat);
1370
1371 pat = p; /* put pat after search command */
1372 }
1373
1374 if ((options & SEARCH_ECHO) && messaging()
1375 && !cmd_silent && msg_silent == 0)
1376 {
1377 char_u *msgbuf;
1378 char_u *trunc;
1379
1380 if (*searchstr == NUL)
Bram Moolenaar2fb8f682018-12-01 13:14:45 +01001381 p = spats[0].pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 else
1383 p = searchstr;
1384 msgbuf = alloc((unsigned)(STRLEN(p) + 40));
1385 if (msgbuf != NULL)
1386 {
1387 msgbuf[0] = dirc;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001388 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1389 {
1390 /* Use a space to draw the composing char on. */
1391 msgbuf[1] = ' ';
1392 STRCPY(msgbuf + 2, p);
1393 }
1394 else
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001395 STRCPY(msgbuf + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 if (spats[0].off.line || spats[0].off.end || spats[0].off.off)
1397 {
1398 p = msgbuf + STRLEN(msgbuf);
1399 *p++ = dirc;
1400 if (spats[0].off.end)
1401 *p++ = 'e';
1402 else if (!spats[0].off.line)
1403 *p++ = 's';
1404 if (spats[0].off.off > 0 || spats[0].off.line)
1405 *p++ = '+';
1406 if (spats[0].off.off != 0 || spats[0].off.line)
1407 sprintf((char *)p, "%ld", spats[0].off.off);
1408 else
1409 *p = NUL;
1410 }
1411
1412 msg_start();
Bram Moolenaara4a08382005-09-09 19:52:02 +00001413 trunc = msg_strtrunc(msgbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414
1415#ifdef FEAT_RIGHTLEFT
1416 /* The search pattern could be shown on the right in rightleft
1417 * mode, but the 'ruler' and 'showcmd' area use it too, thus
1418 * it would be blanked out again very soon. Show it on the
1419 * left, but do reverse the text. */
1420 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1421 {
1422 char_u *r;
1423
1424 r = reverse_text(trunc != NULL ? trunc : msgbuf);
1425 if (r != NULL)
1426 {
1427 vim_free(trunc);
1428 trunc = r;
1429 }
1430 }
1431#endif
1432 if (trunc != NULL)
1433 {
1434 msg_outtrans(trunc);
1435 vim_free(trunc);
1436 }
1437 else
1438 msg_outtrans(msgbuf);
1439 msg_clr_eos();
1440 msg_check();
1441 vim_free(msgbuf);
1442
1443 gotocmdline(FALSE);
1444 out_flush();
1445 msg_nowait = TRUE; /* don't wait for this message */
1446 }
1447 }
1448
1449 /*
1450 * If there is a character offset, subtract it from the current
1451 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001452 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453 * This is not done for a line offset, because then we would not be vi
1454 * compatible.
1455 */
Bram Moolenaared203462004-06-16 11:19:22 +00001456 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 {
1458 if (spats[0].off.off > 0)
1459 {
1460 for (c = spats[0].off.off; c; --c)
1461 if (decl(&pos) == -1)
1462 break;
1463 if (c) /* at start of buffer */
1464 {
1465 pos.lnum = 0; /* allow lnum == 0 here */
1466 pos.col = MAXCOL;
1467 }
1468 }
1469 else
1470 {
1471 for (c = spats[0].off.off; c; ++c)
1472 if (incl(&pos) == -1)
1473 break;
1474 if (c) /* at end of buffer */
1475 {
1476 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1477 pos.col = 0;
1478 }
1479 }
1480 }
1481
Bram Moolenaar14184a32019-02-16 15:10:30 +01001482 c = searchit(curwin, curbuf, &pos, NULL,
1483 dirc == '/' ? FORWARD : BACKWARD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484 searchstr, count, spats[0].off.end + (options &
1485 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1486 + SEARCH_MSG + SEARCH_START
1487 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001488 RE_LAST, (linenr_T)0, tm, timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489
1490 if (dircp != NULL)
1491 *dircp = dirc; /* restore second '/' or '?' for normal_cmd() */
1492 if (c == FAIL)
1493 {
1494 retval = 0;
1495 goto end_do_search;
1496 }
1497 if (spats[0].off.end && oap != NULL)
1498 oap->inclusive = TRUE; /* 'e' includes last character */
1499
1500 retval = 1; /* pattern found */
1501
1502 /*
1503 * Add character and/or line offset
1504 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001505 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506 {
1507 if (spats[0].off.line) /* Add the offset to the line number. */
1508 {
1509 c = pos.lnum + spats[0].off.off;
1510 if (c < 1)
1511 pos.lnum = 1;
1512 else if (c > curbuf->b_ml.ml_line_count)
1513 pos.lnum = curbuf->b_ml.ml_line_count;
1514 else
1515 pos.lnum = c;
1516 pos.col = 0;
1517
1518 retval = 2; /* pattern found, line offset added */
1519 }
Bram Moolenaared203462004-06-16 11:19:22 +00001520 else if (pos.col < MAXCOL - 2) /* just in case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 {
1522 /* to the right, check for end of file */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001523 c = spats[0].off.off;
1524 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001526 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 if (incl(&pos) == -1)
1528 break;
1529 }
1530 /* to the left, check for start of file */
1531 else
1532 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001533 while (c++ < 0)
1534 if (decl(&pos) == -1)
1535 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 }
1537 }
1538 }
1539
1540 /*
1541 * The search command can be followed by a ';' to do another search.
1542 * For example: "/pat/;/foo/+3;?bar"
1543 * This is like doing another search command, except:
1544 * - The remembered direction '/' or '?' is from the first search.
1545 * - When an error happens the cursor isn't moved at all.
1546 * Don't do this when called by get_address() (it handles ';' itself).
1547 */
1548 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1549 break;
1550
1551 dirc = *++pat;
1552 if (dirc != '?' && dirc != '/')
1553 {
1554 retval = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001555 emsg(_("E386: Expected '?' or '/' after ';'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 goto end_do_search;
1557 }
1558 ++pat;
1559 }
1560
1561 if (options & SEARCH_MARK)
1562 setpcmark();
1563 curwin->w_cursor = pos;
1564 curwin->w_set_curswant = TRUE;
1565
1566end_do_search:
Bram Moolenaarac8400d2014-01-14 21:31:34 +01001567 if ((options & SEARCH_KEEP) || cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 spats[0].off = old_off;
1569 vim_free(strcopy);
1570
1571 return retval;
1572}
1573
1574#if defined(FEAT_INS_EXPAND) || defined(PROTO)
1575/*
1576 * search_for_exact_line(buf, pos, dir, pat)
1577 *
1578 * Search for a line starting with the given pattern (ignoring leading
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001579 * white-space), starting from pos and going in direction "dir". "pos" will
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 * contain the position of the match found. Blank lines match only if
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001581 * ADDING is set. If p_ic is set then the pattern must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 * Return OK for success, or FAIL if no line found.
1583 */
1584 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001585search_for_exact_line(
1586 buf_T *buf,
1587 pos_T *pos,
1588 int dir,
1589 char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590{
1591 linenr_T start = 0;
1592 char_u *ptr;
1593 char_u *p;
1594
1595 if (buf->b_ml.ml_line_count == 0)
1596 return FAIL;
1597 for (;;)
1598 {
1599 pos->lnum += dir;
1600 if (pos->lnum < 1)
1601 {
1602 if (p_ws)
1603 {
1604 pos->lnum = buf->b_ml.ml_line_count;
1605 if (!shortmess(SHM_SEARCH))
1606 give_warning((char_u *)_(top_bot_msg), TRUE);
1607 }
1608 else
1609 {
1610 pos->lnum = 1;
1611 break;
1612 }
1613 }
1614 else if (pos->lnum > buf->b_ml.ml_line_count)
1615 {
1616 if (p_ws)
1617 {
1618 pos->lnum = 1;
1619 if (!shortmess(SHM_SEARCH))
1620 give_warning((char_u *)_(bot_top_msg), TRUE);
1621 }
1622 else
1623 {
1624 pos->lnum = 1;
1625 break;
1626 }
1627 }
1628 if (pos->lnum == start)
1629 break;
1630 if (start == 0)
1631 start = pos->lnum;
1632 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1633 p = skipwhite(ptr);
1634 pos->col = (colnr_T) (p - ptr);
1635
1636 /* when adding lines the matching line may be empty but it is not
1637 * ignored because we are interested in the next line -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001638 if ((compl_cont_status & CONT_ADDING)
1639 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640 {
1641 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1642 return OK;
1643 }
1644 else if (*p != NUL) /* ignore empty lines */
1645 { /* expanding lines or words */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001646 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1647 : STRNCMP(p, pat, compl_length)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 return OK;
1649 }
1650 }
1651 return FAIL;
1652}
1653#endif /* FEAT_INS_EXPAND */
1654
1655/*
1656 * Character Searches
1657 */
1658
1659/*
1660 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1661 * position of the character, otherwise move to just before the char.
1662 * Do this "cap->count1" times.
1663 * Return FAIL or OK.
1664 */
1665 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001666searchc(cmdarg_T *cap, int t_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667{
1668 int c = cap->nchar; /* char to search for */
1669 int dir = cap->arg; /* TRUE for searching forward */
1670 long count = cap->count1; /* repeat count */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 int col;
1672 char_u *p;
1673 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001674 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675
1676 if (c != NUL) /* normal search: remember args for repeat */
1677 {
1678 if (!KeyStuffed) /* don't remember when redoing */
1679 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001680 *lastc = c;
1681 set_csearch_direction(dir);
1682 set_csearch_until(t_cmd);
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001683 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 if (cap->ncharC1 != 0)
1685 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001686 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1,
1687 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 if (cap->ncharC2 != 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001689 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2,
1690 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692 }
1693 }
1694 else /* repeat previous search */
1695 {
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001696 if (*lastc == NUL && lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 return FAIL;
1698 if (dir) /* repeat in opposite direction */
1699 dir = -lastcdir;
1700 else
1701 dir = lastcdir;
1702 t_cmd = last_t_cmd;
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001703 c = *lastc;
1704 /* For multi-byte re-use last lastc_bytes[] and lastc_bytelen. */
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001705
1706 /* Force a move of at least one char, so ";" and "," will move the
1707 * cursor, even if the cursor is right in front of char we are looking
1708 * at. */
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001709 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001710 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 }
1712
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001713 if (dir == BACKWARD)
1714 cap->oap->inclusive = FALSE;
1715 else
1716 cap->oap->inclusive = TRUE;
1717
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 p = ml_get_curline();
1719 col = curwin->w_cursor.col;
1720 len = (int)STRLEN(p);
1721
1722 while (count--)
1723 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724 if (has_mbyte)
1725 {
1726 for (;;)
1727 {
1728 if (dir > 0)
1729 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001730 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 if (col >= len)
1732 return FAIL;
1733 }
1734 else
1735 {
1736 if (col == 0)
1737 return FAIL;
1738 col -= (*mb_head_off)(p, p + col - 1) + 1;
1739 }
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001740 if (lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001742 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 break;
1744 }
Bram Moolenaar66727e12017-03-01 22:17:05 +01001745 else if (STRNCMP(p + col, lastc_bytes, lastc_bytelen) == 0
Bram Moolenaarb129a442016-12-01 17:25:20 +01001746 && stop)
Bram Moolenaar66727e12017-03-01 22:17:05 +01001747 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001748 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 }
1750 }
1751 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 {
1753 for (;;)
1754 {
1755 if ((col += dir) < 0 || col >= len)
1756 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001757 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001759 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 }
1761 }
1762 }
1763
1764 if (t_cmd)
1765 {
1766 /* backup to before the character (possibly double-byte) */
1767 col -= dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 if (has_mbyte)
1769 {
1770 if (dir < 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001771 /* Landed on the search char which is lastc_bytelen long */
1772 col += lastc_bytelen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 else
1774 /* To previous char, which may be multi-byte. */
1775 col -= (*mb_head_off)(p, p + col);
1776 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 }
1778 curwin->w_cursor.col = col;
1779
1780 return OK;
1781}
1782
1783/*
1784 * "Other" Searches
1785 */
1786
1787/*
1788 * findmatch - find the matching paren or brace
1789 *
1790 * Improvement over vi: Braces inside quotes are ignored.
1791 */
1792 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001793findmatch(oparg_T *oap, int initc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794{
1795 return findmatchlimit(oap, initc, 0, 0);
1796}
1797
1798/*
1799 * Return TRUE if the character before "linep[col]" equals "ch".
1800 * Return FALSE if "col" is zero.
1801 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1802 * is NULL.
1803 * Handles multibyte string correctly.
1804 */
1805 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001806check_prevcol(
1807 char_u *linep,
1808 int col,
1809 int ch,
1810 int *prevcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811{
1812 --col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 if (col > 0 && has_mbyte)
1814 col -= (*mb_head_off)(linep, linep + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 if (prevcol)
1816 *prevcol = col;
1817 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1818}
1819
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001820/*
1821 * Raw string start is found at linep[startpos.col - 1].
1822 * Return TRUE if the matching end can be found between startpos and endpos.
1823 */
1824 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001825find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos)
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001826{
1827 char_u *p;
1828 char_u *delim_copy;
1829 size_t delim_len;
1830 linenr_T lnum;
1831 int found = FALSE;
1832
1833 for (p = linep + startpos->col + 1; *p && *p != '('; ++p)
1834 ;
1835 delim_len = (p - linep) - startpos->col - 1;
Bram Moolenaar6ed535d2015-08-26 23:01:21 +02001836 delim_copy = vim_strnsave(linep + startpos->col + 1, (int)delim_len);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001837 if (delim_copy == NULL)
1838 return FALSE;
1839 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum)
1840 {
1841 char_u *line = ml_get(lnum);
1842
1843 for (p = line + (lnum == startpos->lnum
1844 ? startpos->col + 1 : 0); *p; ++p)
1845 {
1846 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col)
1847 break;
1848 if (*p == ')' && p[delim_len + 1] == '"'
1849 && STRNCMP(delim_copy, p + 1, delim_len) == 0)
1850 {
1851 found = TRUE;
1852 break;
1853 }
1854 }
1855 if (found)
1856 break;
1857 }
1858 vim_free(delim_copy);
1859 return found;
1860}
1861
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862/*
1863 * findmatchlimit -- find the matching paren or brace, if it exists within
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001864 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling
1865 * off the edge of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 *
1867 * "initc" is the character to find a match for. NUL means to find the
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001868 * character at or after the cursor. Special values:
1869 * '*' look for C-style comment / *
1870 * '/' look for C-style comment / *, ignoring comment-end
1871 * '#' look for preprocessor directives
1872 * 'R' look for raw string start: R"delim(text)delim" (only backwards)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 *
1874 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
1875 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
1876 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
1877 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001878 *
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001879 * "oap" is only used to set oap->motion_type for a linewise motion, it can be
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001880 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881 */
1882
1883 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001884findmatchlimit(
1885 oparg_T *oap,
1886 int initc,
1887 int flags,
1888 int maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889{
1890 static pos_T pos; /* current search position */
1891 int findc = 0; /* matching brace */
1892 int c;
1893 int count = 0; /* cumulative number of braces */
1894 int backwards = FALSE; /* init for gcc */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001895 int raw_string = FALSE; /* search for raw string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 int inquote = FALSE; /* TRUE when inside quotes */
1897 char_u *linep; /* pointer to current line */
1898 char_u *ptr;
1899 int do_quotes; /* check for quotes in current line */
1900 int at_start; /* do_quotes value at start position */
1901 int hash_dir = 0; /* Direction searched for # things */
1902 int comment_dir = 0; /* Direction searched for comments */
1903 pos_T match_pos; /* Where last slash-star was found */
1904 int start_in_quotes; /* start position is in quotes */
1905 int traveled = 0; /* how far we've searched so far */
1906 int ignore_cend = FALSE; /* ignore comment end */
1907 int cpo_match; /* vi compatible matching */
1908 int cpo_bsl; /* don't recognize backslashes */
1909 int match_escaped = 0; /* search for escaped match */
1910 int dir; /* Direction to search */
1911 int comment_col = MAXCOL; /* start of / / comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001912#ifdef FEAT_LISP
1913 int lispcomm = FALSE; /* inside of Lisp-style comment */
1914 int lisp = curbuf->b_p_lisp; /* engage Lisp-specific hacks ;) */
1915#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916
1917 pos = curwin->w_cursor;
Bram Moolenaarc56c4592013-08-14 17:45:29 +02001918 pos.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 linep = ml_get(pos.lnum);
1920
1921 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
1922 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
1923
1924 /* Direction to search when initc is '/', '*' or '#' */
1925 if (flags & FM_BACKWARD)
1926 dir = BACKWARD;
1927 else if (flags & FM_FORWARD)
1928 dir = FORWARD;
1929 else
1930 dir = 0;
1931
1932 /*
1933 * if initc given, look in the table for the matching character
1934 * '/' and '*' are special cases: look for start or end of comment.
1935 * When '/' is used, we ignore running backwards into an star-slash, for
1936 * "[*" command, we just want to find any comment.
1937 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001938 if (initc == '/' || initc == '*' || initc == 'R')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 {
1940 comment_dir = dir;
1941 if (initc == '/')
1942 ignore_cend = TRUE;
1943 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001944 raw_string = (initc == 'R');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 initc = NUL;
1946 }
1947 else if (initc != '#' && initc != NUL)
1948 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001949 find_mps_values(&initc, &findc, &backwards, TRUE);
1950 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 return NULL;
1952 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 else
1954 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001955 /*
1956 * Either initc is '#', or no initc was given and we need to look
1957 * under the cursor.
1958 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 if (initc == '#')
1960 {
1961 hash_dir = dir;
1962 }
1963 else
1964 {
1965 /*
1966 * initc was not given, must look for something to match under
1967 * or near the cursor.
1968 * Only check for special things when 'cpo' doesn't have '%'.
1969 */
1970 if (!cpo_match)
1971 {
1972 /* Are we before or at #if, #else etc.? */
1973 ptr = skipwhite(linep);
1974 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
1975 {
1976 ptr = skipwhite(ptr + 1);
1977 if ( STRNCMP(ptr, "if", 2) == 0
1978 || STRNCMP(ptr, "endif", 5) == 0
1979 || STRNCMP(ptr, "el", 2) == 0)
1980 hash_dir = 1;
1981 }
1982
1983 /* Are we on a comment? */
1984 else if (linep[pos.col] == '/')
1985 {
1986 if (linep[pos.col + 1] == '*')
1987 {
1988 comment_dir = FORWARD;
1989 backwards = FALSE;
1990 pos.col++;
1991 }
1992 else if (pos.col > 0 && linep[pos.col - 1] == '*')
1993 {
1994 comment_dir = BACKWARD;
1995 backwards = TRUE;
1996 pos.col--;
1997 }
1998 }
1999 else if (linep[pos.col] == '*')
2000 {
2001 if (linep[pos.col + 1] == '/')
2002 {
2003 comment_dir = BACKWARD;
2004 backwards = TRUE;
2005 }
2006 else if (pos.col > 0 && linep[pos.col - 1] == '/')
2007 {
2008 comment_dir = FORWARD;
2009 backwards = FALSE;
2010 }
2011 }
2012 }
2013
2014 /*
2015 * If we are not on a comment or the # at the start of a line, then
2016 * look for brace anywhere on this line after the cursor.
2017 */
2018 if (!hash_dir && !comment_dir)
2019 {
2020 /*
2021 * Find the brace under or after the cursor.
2022 * If beyond the end of the line, use the last character in
2023 * the line.
2024 */
2025 if (linep[pos.col] == NUL && pos.col)
2026 --pos.col;
2027 for (;;)
2028 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002029 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 if (initc == NUL)
2031 break;
2032
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002033 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 if (findc)
2035 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002036 pos.col += MB_PTR2LEN(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 }
2038 if (!findc)
2039 {
2040 /* no brace in the line, maybe use " #if" then */
2041 if (!cpo_match && *skipwhite(linep) == '#')
2042 hash_dir = 1;
2043 else
2044 return NULL;
2045 }
2046 else if (!cpo_bsl)
2047 {
2048 int col, bslcnt = 0;
2049
2050 /* Set "match_escaped" if there are an odd number of
2051 * backslashes. */
2052 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2053 bslcnt++;
2054 match_escaped = (bslcnt & 1);
2055 }
2056 }
2057 }
2058 if (hash_dir)
2059 {
2060 /*
2061 * Look for matching #if, #else, #elif, or #endif
2062 */
2063 if (oap != NULL)
2064 oap->motion_type = MLINE; /* Linewise for this case only */
2065 if (initc != '#')
2066 {
2067 ptr = skipwhite(skipwhite(linep) + 1);
2068 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
2069 hash_dir = 1;
2070 else if (STRNCMP(ptr, "endif", 5) == 0)
2071 hash_dir = -1;
2072 else
2073 return NULL;
2074 }
2075 pos.col = 0;
2076 while (!got_int)
2077 {
2078 if (hash_dir > 0)
2079 {
2080 if (pos.lnum == curbuf->b_ml.ml_line_count)
2081 break;
2082 }
2083 else if (pos.lnum == 1)
2084 break;
2085 pos.lnum += hash_dir;
2086 linep = ml_get(pos.lnum);
2087 line_breakcheck(); /* check for CTRL-C typed */
2088 ptr = skipwhite(linep);
2089 if (*ptr != '#')
2090 continue;
2091 pos.col = (colnr_T) (ptr - linep);
2092 ptr = skipwhite(ptr + 1);
2093 if (hash_dir > 0)
2094 {
2095 if (STRNCMP(ptr, "if", 2) == 0)
2096 count++;
2097 else if (STRNCMP(ptr, "el", 2) == 0)
2098 {
2099 if (count == 0)
2100 return &pos;
2101 }
2102 else if (STRNCMP(ptr, "endif", 5) == 0)
2103 {
2104 if (count == 0)
2105 return &pos;
2106 count--;
2107 }
2108 }
2109 else
2110 {
2111 if (STRNCMP(ptr, "if", 2) == 0)
2112 {
2113 if (count == 0)
2114 return &pos;
2115 count--;
2116 }
2117 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
2118 {
2119 if (count == 0)
2120 return &pos;
2121 }
2122 else if (STRNCMP(ptr, "endif", 5) == 0)
2123 count++;
2124 }
2125 }
2126 return NULL;
2127 }
2128 }
2129
2130#ifdef FEAT_RIGHTLEFT
Bram Moolenaarabc97732007-08-08 20:49:37 +00002131 /* This is just guessing: when 'rightleft' is set, search for a matching
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 * paren/brace in the other direction. */
2133 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
2134 backwards = !backwards;
2135#endif
2136
2137 do_quotes = -1;
2138 start_in_quotes = MAYBE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002139 CLEAR_POS(&match_pos);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002140
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 /* backward search: Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002142 if ((backwards && comment_dir)
2143#ifdef FEAT_LISP
2144 || lisp
2145#endif
2146 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002148#ifdef FEAT_LISP
2149 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
2150 lispcomm = TRUE; /* find match inside this comment */
2151#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 while (!got_int)
2153 {
2154 /*
2155 * Go to the next position, forward or backward. We could use
2156 * inc() and dec() here, but that is much slower
2157 */
2158 if (backwards)
2159 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002160#ifdef FEAT_LISP
2161 /* char to match is inside of comment, don't search outside */
2162 if (lispcomm && pos.col < (colnr_T)comment_col)
2163 break;
2164#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 if (pos.col == 0) /* at start of line, go to prev. one */
2166 {
2167 if (pos.lnum == 1) /* start of file */
2168 break;
2169 --pos.lnum;
2170
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002171 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 break;
2173
2174 linep = ml_get(pos.lnum);
2175 pos.col = (colnr_T)STRLEN(linep); /* pos.col on trailing NUL */
2176 do_quotes = -1;
2177 line_breakcheck();
2178
2179 /* Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002180 if (comment_dir
2181#ifdef FEAT_LISP
2182 || lisp
2183#endif
2184 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002186#ifdef FEAT_LISP
2187 /* skip comment */
2188 if (lisp && comment_col != MAXCOL)
2189 pos.col = comment_col;
2190#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 }
2192 else
2193 {
2194 --pos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 if (has_mbyte)
2196 pos.col -= (*mb_head_off)(linep, linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 }
2198 }
2199 else /* forward search */
2200 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002201 if (linep[pos.col] == NUL
2202 /* at end of line, go to next one */
2203#ifdef FEAT_LISP
2204 /* don't search for match in comment */
2205 || (lisp && comment_col != MAXCOL
2206 && pos.col == (colnr_T)comment_col)
2207#endif
2208 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002210 if (pos.lnum == curbuf->b_ml.ml_line_count /* end of file */
2211#ifdef FEAT_LISP
2212 /* line is exhausted and comment with it,
2213 * don't search for match in code */
2214 || lispcomm
2215#endif
2216 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 break;
2218 ++pos.lnum;
2219
2220 if (maxtravel && traveled++ > maxtravel)
2221 break;
2222
2223 linep = ml_get(pos.lnum);
2224 pos.col = 0;
2225 do_quotes = -1;
2226 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002227#ifdef FEAT_LISP
2228 if (lisp) /* find comment pos in new line */
2229 comment_col = check_linecomment(linep);
2230#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 }
2232 else
2233 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002235 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 ++pos.col;
2238 }
2239 }
2240
2241 /*
2242 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2243 */
2244 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2245 (linep[0] == '{' || linep[0] == '}'))
2246 {
2247 if (linep[0] == findc && count == 0) /* match! */
2248 return &pos;
2249 break; /* out of scope */
2250 }
2251
2252 if (comment_dir)
2253 {
2254 /* Note: comments do not nest, and we ignore quotes in them */
2255 /* TODO: ignore comment brackets inside strings */
2256 if (comment_dir == FORWARD)
2257 {
2258 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2259 {
2260 pos.col++;
2261 return &pos;
2262 }
2263 }
2264 else /* Searching backwards */
2265 {
2266 /*
2267 * A comment may contain / * or / /, it may also start or end
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002268 * with / * /. Ignore a / * after / / and after *.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 */
2270 if (pos.col == 0)
2271 continue;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002272 else if (raw_string)
2273 {
2274 if (linep[pos.col - 1] == 'R'
2275 && linep[pos.col] == '"'
2276 && vim_strchr(linep + pos.col + 1, '(') != NULL)
2277 {
2278 /* Possible start of raw string. Now that we have the
2279 * delimiter we can check if it ends before where we
2280 * started searching, or before the previously found
2281 * raw string start. */
2282 if (!find_rawstring_end(linep, &pos,
2283 count > 0 ? &match_pos : &curwin->w_cursor))
2284 {
2285 count++;
2286 match_pos = pos;
2287 match_pos.col--;
2288 }
2289 linep = ml_get(pos.lnum); /* may have been released */
2290 }
2291 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 else if ( linep[pos.col - 1] == '/'
2293 && linep[pos.col] == '*'
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002294 && (pos.col == 1 || linep[pos.col - 2] != '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 && (int)pos.col < comment_col)
2296 {
2297 count++;
2298 match_pos = pos;
2299 match_pos.col--;
2300 }
2301 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2302 {
2303 if (count > 0)
2304 pos = match_pos;
2305 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2306 && (int)pos.col <= comment_col)
2307 pos.col -= 2;
2308 else if (ignore_cend)
2309 continue;
2310 else
2311 return NULL;
2312 return &pos;
2313 }
2314 }
2315 continue;
2316 }
2317
2318 /*
2319 * If smart matching ('cpoptions' does not contain '%'), braces inside
2320 * of quotes are ignored, but only if there is an even number of
2321 * quotes in the line.
2322 */
2323 if (cpo_match)
2324 do_quotes = 0;
2325 else if (do_quotes == -1)
2326 {
2327 /*
2328 * Count the number of quotes in the line, skipping \" and '"'.
2329 * Watch out for "\\".
2330 */
2331 at_start = do_quotes;
2332 for (ptr = linep; *ptr; ++ptr)
2333 {
2334 if (ptr == linep + pos.col + backwards)
2335 at_start = (do_quotes & 1);
2336 if (*ptr == '"'
2337 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2338 ++do_quotes;
2339 if (*ptr == '\\' && ptr[1] != NUL)
2340 ++ptr;
2341 }
2342 do_quotes &= 1; /* result is 1 with even number of quotes */
2343
2344 /*
2345 * If we find an uneven count, check current line and previous
2346 * one for a '\' at the end.
2347 */
2348 if (!do_quotes)
2349 {
2350 inquote = FALSE;
2351 if (ptr[-1] == '\\')
2352 {
2353 do_quotes = 1;
2354 if (start_in_quotes == MAYBE)
2355 {
2356 /* Do we need to use at_start here? */
2357 inquote = TRUE;
2358 start_in_quotes = TRUE;
2359 }
2360 else if (backwards)
2361 inquote = TRUE;
2362 }
2363 if (pos.lnum > 1)
2364 {
2365 ptr = ml_get(pos.lnum - 1);
2366 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2367 {
2368 do_quotes = 1;
2369 if (start_in_quotes == MAYBE)
2370 {
2371 inquote = at_start;
2372 if (inquote)
2373 start_in_quotes = TRUE;
2374 }
2375 else if (!backwards)
2376 inquote = TRUE;
2377 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002378
2379 /* ml_get() only keeps one line, need to get linep again */
2380 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 }
2382 }
2383 }
2384 if (start_in_quotes == MAYBE)
2385 start_in_quotes = FALSE;
2386
2387 /*
2388 * If 'smartmatch' is set:
2389 * Things inside quotes are ignored by setting 'inquote'. If we
2390 * find a quote without a preceding '\' invert 'inquote'. At the
2391 * end of a line not ending in '\' we reset 'inquote'.
2392 *
2393 * In lines with an uneven number of quotes (without preceding '\')
2394 * we do not know which part to ignore. Therefore we only set
2395 * inquote if the number of quotes in a line is even, unless this
2396 * line or the previous one ends in a '\'. Complicated, isn't it?
2397 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002398 c = PTR2CHAR(linep + pos.col);
2399 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 {
2401 case NUL:
2402 /* at end of line without trailing backslash, reset inquote */
2403 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2404 {
2405 inquote = FALSE;
2406 start_in_quotes = FALSE;
2407 }
2408 break;
2409
2410 case '"':
2411 /* a quote that is preceded with an odd number of backslashes is
2412 * ignored */
2413 if (do_quotes)
2414 {
2415 int col;
2416
2417 for (col = pos.col - 1; col >= 0; --col)
2418 if (linep[col] != '\\')
2419 break;
2420 if ((((int)pos.col - 1 - col) & 1) == 0)
2421 {
2422 inquote = !inquote;
2423 start_in_quotes = FALSE;
2424 }
2425 }
2426 break;
2427
2428 /*
2429 * If smart matching ('cpoptions' does not contain '%'):
2430 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2431 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2432 * skipped, there is never a brace in them.
2433 * Ignore this when finding matches for `'.
2434 */
2435 case '\'':
2436 if (!cpo_match && initc != '\'' && findc != '\'')
2437 {
2438 if (backwards)
2439 {
2440 if (pos.col > 1)
2441 {
2442 if (linep[pos.col - 2] == '\'')
2443 {
2444 pos.col -= 2;
2445 break;
2446 }
2447 else if (linep[pos.col - 2] == '\\' &&
2448 pos.col > 2 && linep[pos.col - 3] == '\'')
2449 {
2450 pos.col -= 3;
2451 break;
2452 }
2453 }
2454 }
2455 else if (linep[pos.col + 1]) /* forward search */
2456 {
2457 if (linep[pos.col + 1] == '\\' &&
2458 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2459 {
2460 pos.col += 3;
2461 break;
2462 }
2463 else if (linep[pos.col + 2] == '\'')
2464 {
2465 pos.col += 2;
2466 break;
2467 }
2468 }
2469 }
2470 /* FALLTHROUGH */
2471
2472 default:
2473#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002474 /*
2475 * For Lisp skip over backslashed (), {} and [].
2476 * (actually, we skip #\( et al)
2477 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478 if (curbuf->b_p_lisp
2479 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002480 && pos.col > 1
2481 && check_prevcol(linep, pos.col, '\\', NULL)
2482 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 break;
2484#endif
2485
2486 /* Check for match outside of quotes, and inside of
2487 * quotes when the start is also inside of quotes. */
2488 if ((!inquote || start_in_quotes == TRUE)
2489 && (c == initc || c == findc))
2490 {
2491 int col, bslcnt = 0;
2492
2493 if (!cpo_bsl)
2494 {
2495 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2496 bslcnt++;
2497 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00002498 /* Only accept a match when 'M' is in 'cpo' or when escaping
2499 * is what we expect. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2501 {
2502 if (c == initc)
2503 count++;
2504 else
2505 {
2506 if (count == 0)
2507 return &pos;
2508 count--;
2509 }
2510 }
2511 }
2512 }
2513 }
2514
2515 if (comment_dir == BACKWARD && count > 0)
2516 {
2517 pos = match_pos;
2518 return &pos;
2519 }
2520 return (pos_T *)NULL; /* never found it */
2521}
2522
2523/*
2524 * Check if line[] contains a / / comment.
2525 * Return MAXCOL if not, otherwise return the column.
2526 * TODO: skip strings.
2527 */
2528 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002529check_linecomment(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530{
2531 char_u *p;
2532
2533 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002534#ifdef FEAT_LISP
2535 /* skip Lispish one-line comments */
2536 if (curbuf->b_p_lisp)
2537 {
2538 if (vim_strchr(p, ';') != NULL) /* there may be comments */
2539 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002540 int in_str = FALSE; /* inside of string */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002541
2542 p = line; /* scan from start */
Bram Moolenaar520470a2005-06-16 21:59:56 +00002543 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002544 {
2545 if (*p == '"')
2546 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002547 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002548 {
2549 if (*(p - 1) != '\\') /* skip escaped quote */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002550 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002551 }
2552 else if (p == line || ((p - line) >= 2
2553 /* skip #\" form */
2554 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002555 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002556 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002557 else if (!in_str && ((p - line) < 2
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002558 || (*(p - 1) != '\\' && *(p - 2) != '#')))
2559 break; /* found! */
2560 ++p;
2561 }
2562 }
2563 else
2564 p = NULL;
2565 }
2566 else
2567#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 while ((p = vim_strchr(p, '/')) != NULL)
2569 {
Bram Moolenaar78d4aba2008-01-01 14:43:35 +00002570 /* accept a double /, unless it's preceded with * and followed by *,
2571 * because * / / * is an end and start of a C comment */
2572 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 break;
2574 ++p;
2575 }
2576
2577 if (p == NULL)
2578 return MAXCOL;
2579 return (int)(p - line);
2580}
2581
2582/*
2583 * Move cursor briefly to character matching the one under the cursor.
2584 * Used for Insert mode and "r" command.
2585 * Show the match only if it is visible on the screen.
2586 * If there isn't a match, then beep.
2587 */
2588 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002589showmatch(
2590 int c) /* char to show match for */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591{
2592 pos_T *lpos, save_cursor;
2593 pos_T mpos;
2594 colnr_T vcol;
2595 long save_so;
2596 long save_siso;
2597#ifdef CURSOR_SHAPE
2598 int save_state;
2599#endif
2600 colnr_T save_dollar_vcol;
2601 char_u *p;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002602 long *so = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so;
2603 long *siso = curwin->w_p_siso >= 0 ? &curwin->w_p_siso : &p_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604
2605 /*
2606 * Only show match for chars in the 'matchpairs' option.
2607 */
2608 /* 'matchpairs' is "x:y,x:y" */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002609 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 {
2611#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002612 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002613 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002614#endif
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002615 p += MB_PTR2LEN(p) + 1;
2616 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617#ifdef FEAT_RIGHTLEFT
2618 && !(curwin->w_p_rl ^ p_ri)
2619#endif
2620 )
2621 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002622 p += MB_PTR2LEN(p);
2623 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624 return;
2625 }
2626
2627 if ((lpos = findmatch(NULL, NUL)) == NULL) /* no match, so beep */
Bram Moolenaar165bc692015-07-21 17:53:25 +02002628 vim_beep(BO_MATCH);
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002629 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630 {
2631 if (!curwin->w_p_wrap)
2632 getvcol(curwin, lpos, NULL, &vcol, NULL);
2633 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
Bram Moolenaar02631462017-09-22 15:20:32 +02002634 && vcol < curwin->w_leftcol + curwin->w_width))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 {
2636 mpos = *lpos; /* save the pos, update_screen() may change it */
2637 save_cursor = curwin->w_cursor;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002638 save_so = *so;
2639 save_siso = *siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 /* Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2641 * stop displaying the "$". */
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002642 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2643 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 ++curwin->w_virtcol; /* do display ')' just before "$" */
2645 update_screen(VALID); /* show the new char first */
2646
2647 save_dollar_vcol = dollar_vcol;
2648#ifdef CURSOR_SHAPE
2649 save_state = State;
2650 State = SHOWMATCH;
2651 ui_cursor_shape(); /* may show different cursor shape */
2652#endif
2653 curwin->w_cursor = mpos; /* move to matching char */
Bram Moolenaar375e3392019-01-31 18:26:10 +01002654 *so = 0; /* don't use 'scrolloff' here */
2655 *siso = 0; /* don't use 'sidescrolloff' here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 showruler(FALSE);
2657 setcursor();
2658 cursor_on(); /* make sure that the cursor is shown */
Bram Moolenaara338adc2018-01-31 20:51:47 +01002659 out_flush_cursor(TRUE, FALSE);
2660
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 /* Restore dollar_vcol(), because setcursor() may call curs_rows()
2662 * which resets it if the matching position is in a previous line
2663 * and has a higher column number. */
2664 dollar_vcol = save_dollar_vcol;
2665
2666 /*
2667 * brief pause, unless 'm' is present in 'cpo' and a character is
2668 * available.
2669 */
2670 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
2671 ui_delay(p_mat * 100L, TRUE);
2672 else if (!char_avail())
2673 ui_delay(p_mat * 100L, FALSE);
2674 curwin->w_cursor = save_cursor; /* restore cursor position */
Bram Moolenaar375e3392019-01-31 18:26:10 +01002675 *so = save_so;
2676 *siso = save_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677#ifdef CURSOR_SHAPE
2678 State = save_state;
2679 ui_cursor_shape(); /* may show different cursor shape */
2680#endif
2681 }
2682 }
2683}
2684
2685/*
Bram Moolenaar85160712018-06-19 18:27:41 +02002686 * Find the start of the next sentence, searching in the direction specified
2687 * by the "dir" argument. The cursor is positioned on the start of the next
2688 * sentence when found. If the next sentence is found, return OK. Return FAIL
2689 * otherwise. See ":h sentence" for the precise definition of a "sentence"
2690 * text object.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 */
2692 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002693findsent(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694{
2695 pos_T pos, tpos;
2696 int c;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002697 int (*func)(pos_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 int startlnum;
2699 int noskip = FALSE; /* do not skip blanks */
2700 int cpo_J;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002701 int found_dot;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702
2703 pos = curwin->w_cursor;
2704 if (dir == FORWARD)
2705 func = incl;
2706 else
2707 func = decl;
2708
2709 while (count--)
2710 {
2711 /*
2712 * if on an empty line, skip upto a non-empty line
2713 */
2714 if (gchar_pos(&pos) == NUL)
2715 {
2716 do
2717 if ((*func)(&pos) == -1)
2718 break;
2719 while (gchar_pos(&pos) == NUL);
2720 if (dir == FORWARD)
2721 goto found;
2722 }
2723 /*
2724 * if on the start of a paragraph or a section and searching forward,
2725 * go to the next line
2726 */
2727 else if (dir == FORWARD && pos.col == 0 &&
2728 startPS(pos.lnum, NUL, FALSE))
2729 {
2730 if (pos.lnum == curbuf->b_ml.ml_line_count)
2731 return FAIL;
2732 ++pos.lnum;
2733 goto found;
2734 }
2735 else if (dir == BACKWARD)
2736 decl(&pos);
2737
Bram Moolenaar85160712018-06-19 18:27:41 +02002738 // go back to the previous non-white non-punctuation character
Bram Moolenaardef9e822004-12-31 20:58:58 +00002739 found_dot = FALSE;
Bram Moolenaar85160712018-06-19 18:27:41 +02002740 while (c = gchar_pos(&pos), VIM_ISWHITE(c)
2741 || vim_strchr((char_u *)".!?)]\"'", c) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 {
Bram Moolenaar85160712018-06-19 18:27:41 +02002743 tpos = pos;
2744 if (decl(&tpos) == -1 || (LINEEMPTY(tpos.lnum) && dir == FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745 break;
Bram Moolenaar85160712018-06-19 18:27:41 +02002746
2747 if (found_dot)
2748 break;
2749 if (vim_strchr((char_u *) ".!?", c) != NULL)
2750 found_dot = TRUE;
2751
2752 if (vim_strchr((char_u *) ")]\"'", c) != NULL
2753 && vim_strchr((char_u *) ".!?)]\"'", gchar_pos(&tpos)) == NULL)
2754 break;
2755
2756 decl(&pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 }
2758
2759 /* remember the line where the search started */
2760 startlnum = pos.lnum;
2761 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL;
2762
2763 for (;;) /* find end of sentence */
2764 {
2765 c = gchar_pos(&pos);
2766 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE)))
2767 {
2768 if (dir == BACKWARD && pos.lnum != startlnum)
2769 ++pos.lnum;
2770 break;
2771 }
2772 if (c == '.' || c == '!' || c == '?')
2773 {
2774 tpos = pos;
2775 do
2776 if ((c = inc(&tpos)) == -1)
2777 break;
2778 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos))
2779 != NULL);
2780 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL
2781 || (cpo_J && (c == ' ' && inc(&tpos) >= 0
2782 && gchar_pos(&tpos) == ' ')))
2783 {
2784 pos = tpos;
2785 if (gchar_pos(&pos) == NUL) /* skip NUL at EOL */
2786 inc(&pos);
2787 break;
2788 }
2789 }
2790 if ((*func)(&pos) == -1)
2791 {
2792 if (count)
2793 return FAIL;
2794 noskip = TRUE;
2795 break;
2796 }
2797 }
2798found:
2799 /* skip white space */
2800 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t'))
2801 if (incl(&pos) == -1)
2802 break;
2803 }
2804
2805 setpcmark();
2806 curwin->w_cursor = pos;
2807 return OK;
2808}
2809
2810/*
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002811 * Find the next paragraph or section in direction 'dir'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 * Paragraphs are currently supposed to be separated by empty lines.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002813 * If 'what' is NUL we go to the next paragraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814 * If 'what' is '{' or '}' we go to the next section.
2815 * If 'both' is TRUE also stop at '}'.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002816 * Return TRUE if the next paragraph or section was found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817 */
2818 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002819findpar(
2820 int *pincl, /* Return: TRUE if last char is to be included */
2821 int dir,
2822 long count,
2823 int what,
2824 int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825{
2826 linenr_T curr;
2827 int did_skip; /* TRUE after separating lines have been skipped */
2828 int first; /* TRUE on first line */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002829 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830#ifdef FEAT_FOLDING
2831 linenr_T fold_first; /* first line of a closed fold */
2832 linenr_T fold_last; /* last line of a closed fold */
2833 int fold_skipped; /* TRUE if a closed fold was skipped this
2834 iteration */
2835#endif
2836
2837 curr = curwin->w_cursor.lnum;
2838
2839 while (count--)
2840 {
2841 did_skip = FALSE;
2842 for (first = TRUE; ; first = FALSE)
2843 {
2844 if (*ml_get(curr) != NUL)
2845 did_skip = TRUE;
2846
2847#ifdef FEAT_FOLDING
2848 /* skip folded lines */
2849 fold_skipped = FALSE;
2850 if (first && hasFolding(curr, &fold_first, &fold_last))
2851 {
2852 curr = ((dir > 0) ? fold_last : fold_first) + dir;
2853 fold_skipped = TRUE;
2854 }
2855#endif
2856
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01002857 /* POSIX has its own ideas of what a paragraph boundary is and it
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002858 * doesn't match historical Vi: It also stops at a "{" in the
2859 * first column and at an empty line. */
2860 if (!first && did_skip && (startPS(curr, what, both)
2861 || (posix && what == NUL && *ml_get(curr) == '{')))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 break;
2863
2864#ifdef FEAT_FOLDING
2865 if (fold_skipped)
2866 curr -= dir;
2867#endif
2868 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count)
2869 {
2870 if (count)
2871 return FALSE;
2872 curr -= dir;
2873 break;
2874 }
2875 }
2876 }
2877 setpcmark();
2878 if (both && *ml_get(curr) == '}') /* include line with '}' */
2879 ++curr;
2880 curwin->w_cursor.lnum = curr;
2881 if (curr == curbuf->b_ml.ml_line_count && what != '}')
2882 {
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02002883 char_u *line = ml_get(curr);
2884
2885 /* Put the cursor on the last character in the last line and make the
2886 * motion inclusive. */
2887 if ((curwin->w_cursor.col = (colnr_T)STRLEN(line)) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888 {
2889 --curwin->w_cursor.col;
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02002890 curwin->w_cursor.col -=
2891 (*mb_head_off)(line, line + curwin->w_cursor.col);
Bram Moolenaar92d640f2005-09-05 22:11:52 +00002892 *pincl = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893 }
2894 }
2895 else
2896 curwin->w_cursor.col = 0;
2897 return TRUE;
2898}
2899
2900/*
2901 * check if the string 's' is a nroff macro that is in option 'opt'
2902 */
2903 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002904inmacro(char_u *opt, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905{
2906 char_u *macro;
2907
2908 for (macro = opt; macro[0]; ++macro)
2909 {
2910 /* Accept two characters in the option being equal to two characters
2911 * in the line. A space in the option matches with a space in the
2912 * line or the line having ended. */
2913 if ( (macro[0] == s[0]
2914 || (macro[0] == ' '
2915 && (s[0] == NUL || s[0] == ' ')))
2916 && (macro[1] == s[1]
2917 || ((macro[1] == NUL || macro[1] == ' ')
2918 && (s[0] == NUL || s[1] == NUL || s[1] == ' '))))
2919 break;
2920 ++macro;
2921 if (macro[0] == NUL)
2922 break;
2923 }
2924 return (macro[0] != NUL);
2925}
2926
2927/*
2928 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph.
2929 * If 'para' is '{' or '}' only check for sections.
2930 * If 'both' is TRUE also stop at '}'
2931 */
2932 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002933startPS(linenr_T lnum, int para, int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934{
2935 char_u *s;
2936
2937 s = ml_get(lnum);
2938 if (*s == para || *s == '\f' || (both && *s == '}'))
2939 return TRUE;
2940 if (*s == '.' && (inmacro(p_sections, s + 1) ||
2941 (!para && inmacro(p_para, s + 1))))
2942 return TRUE;
2943 return FALSE;
2944}
2945
2946/*
2947 * The following routines do the word searches performed by the 'w', 'W',
2948 * 'b', 'B', 'e', and 'E' commands.
2949 */
2950
2951/*
2952 * To perform these searches, characters are placed into one of three
2953 * classes, and transitions between classes determine word boundaries.
2954 *
2955 * The classes are:
2956 *
2957 * 0 - white space
2958 * 1 - punctuation
2959 * 2 or higher - keyword characters (letters, digits and underscore)
2960 */
2961
2962static int cls_bigword; /* TRUE for "W", "B" or "E" */
2963
2964/*
2965 * cls() - returns the class of character at curwin->w_cursor
2966 *
2967 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars
2968 * from class 2 and higher are reported as class 1 since only white space
2969 * boundaries are of interest.
2970 */
2971 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002972cls(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973{
2974 int c;
2975
2976 c = gchar_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977 if (c == ' ' || c == '\t' || c == NUL)
2978 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 if (enc_dbcs != 0 && c > 0xFF)
2980 {
2981 /* If cls_bigword, report multi-byte chars as class 1. */
2982 if (enc_dbcs == DBCS_KOR && cls_bigword)
2983 return 1;
2984
2985 /* process code leading/trailing bytes */
2986 return dbcs_class(((unsigned)c >> 8), (c & 0xFF));
2987 }
2988 if (enc_utf8)
2989 {
2990 c = utf_class(c);
2991 if (c != 0 && cls_bigword)
2992 return 1;
2993 return c;
2994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995
2996 /* If cls_bigword is TRUE, report all non-blanks as class 1. */
2997 if (cls_bigword)
2998 return 1;
2999
3000 if (vim_iswordc(c))
3001 return 2;
3002 return 1;
3003}
3004
3005
3006/*
3007 * fwd_word(count, type, eol) - move forward one word
3008 *
3009 * Returns FAIL if the cursor was already at the end of the file.
3010 * If eol is TRUE, last word stops at end of line (for operators).
3011 */
3012 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003013fwd_word(
3014 long count,
3015 int bigword, /* "W", "E" or "B" */
3016 int eol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017{
3018 int sclass; /* starting class */
3019 int i;
3020 int last_line;
3021
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023 cls_bigword = bigword;
3024 while (--count >= 0)
3025 {
3026#ifdef FEAT_FOLDING
3027 /* When inside a range of folded lines, move to the last char of the
3028 * last line. */
3029 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3030 coladvance((colnr_T)MAXCOL);
3031#endif
3032 sclass = cls();
3033
3034 /*
3035 * We always move at least one character, unless on the last
3036 * character in the buffer.
3037 */
3038 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count);
3039 i = inc_cursor();
3040 if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */
3041 return FAIL;
Bram Moolenaar9a149792007-07-10 10:38:02 +00003042 if (i >= 1 && eol && count == 0) /* started at last char in line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 return OK;
3044
3045 /*
3046 * Go one char past end of current word (if any)
3047 */
3048 if (sclass != 0)
3049 while (cls() == sclass)
3050 {
3051 i = inc_cursor();
3052 if (i == -1 || (i >= 1 && eol && count == 0))
3053 return OK;
3054 }
3055
3056 /*
3057 * go to next non-white
3058 */
3059 while (cls() == 0)
3060 {
3061 /*
3062 * We'll stop if we land on a blank line
3063 */
3064 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL)
3065 break;
3066
3067 i = inc_cursor();
3068 if (i == -1 || (i >= 1 && eol && count == 0))
3069 return OK;
3070 }
3071 }
3072 return OK;
3073}
3074
3075/*
3076 * bck_word() - move backward 'count' words
3077 *
3078 * If stop is TRUE and we are already on the start of a word, move one less.
3079 *
3080 * Returns FAIL if top of the file was reached.
3081 */
3082 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003083bck_word(long count, int bigword, int stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084{
3085 int sclass; /* starting class */
3086
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 cls_bigword = bigword;
3089 while (--count >= 0)
3090 {
3091#ifdef FEAT_FOLDING
3092 /* When inside a range of folded lines, move to the first char of the
3093 * first line. */
3094 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL))
3095 curwin->w_cursor.col = 0;
3096#endif
3097 sclass = cls();
3098 if (dec_cursor() == -1) /* started at start of file */
3099 return FAIL;
3100
3101 if (!stop || sclass == cls() || sclass == 0)
3102 {
3103 /*
3104 * Skip white space before the word.
3105 * Stop on an empty line.
3106 */
3107 while (cls() == 0)
3108 {
3109 if (curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003110 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111 goto finished;
3112 if (dec_cursor() == -1) /* hit start of file, stop here */
3113 return OK;
3114 }
3115
3116 /*
3117 * Move backward to start of this word.
3118 */
3119 if (skip_chars(cls(), BACKWARD))
3120 return OK;
3121 }
3122
3123 inc_cursor(); /* overshot - forward one */
3124finished:
3125 stop = FALSE;
3126 }
3127 return OK;
3128}
3129
3130/*
3131 * end_word() - move to the end of the word
3132 *
3133 * There is an apparent bug in the 'e' motion of the real vi. At least on the
3134 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e'
3135 * motion crosses blank lines. When the real vi crosses a blank line in an
3136 * 'e' motion, the cursor is placed on the FIRST character of the next
3137 * non-blank line. The 'E' command, however, works correctly. Since this
3138 * appears to be a bug, I have not duplicated it here.
3139 *
3140 * Returns FAIL if end of the file was reached.
3141 *
3142 * If stop is TRUE and we are already on the end of a word, move one less.
3143 * If empty is TRUE stop on an empty line.
3144 */
3145 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003146end_word(
3147 long count,
3148 int bigword,
3149 int stop,
3150 int empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151{
3152 int sclass; /* starting class */
3153
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155 cls_bigword = bigword;
3156 while (--count >= 0)
3157 {
3158#ifdef FEAT_FOLDING
3159 /* When inside a range of folded lines, move to the last char of the
3160 * last line. */
3161 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3162 coladvance((colnr_T)MAXCOL);
3163#endif
3164 sclass = cls();
3165 if (inc_cursor() == -1)
3166 return FAIL;
3167
3168 /*
3169 * If we're in the middle of a word, we just have to move to the end
3170 * of it.
3171 */
3172 if (cls() == sclass && sclass != 0)
3173 {
3174 /*
3175 * Move forward to end of the current word
3176 */
3177 if (skip_chars(sclass, FORWARD))
3178 return FAIL;
3179 }
3180 else if (!stop || sclass == 0)
3181 {
3182 /*
3183 * We were at the end of a word. Go to the end of the next word.
3184 * First skip white space, if 'empty' is TRUE, stop at empty line.
3185 */
3186 while (cls() == 0)
3187 {
3188 if (empty && curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003189 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 goto finished;
3191 if (inc_cursor() == -1) /* hit end of file, stop here */
3192 return FAIL;
3193 }
3194
3195 /*
3196 * Move forward to the end of this word.
3197 */
3198 if (skip_chars(cls(), FORWARD))
3199 return FAIL;
3200 }
3201 dec_cursor(); /* overshot - one char backward */
3202finished:
3203 stop = FALSE; /* we move only one word less */
3204 }
3205 return OK;
3206}
3207
3208/*
3209 * Move back to the end of the word.
3210 *
3211 * Returns FAIL if start of the file was reached.
3212 */
3213 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003214bckend_word(
3215 long count,
3216 int bigword, /* TRUE for "B" */
3217 int eol) /* TRUE: stop at end of line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218{
3219 int sclass; /* starting class */
3220 int i;
3221
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 cls_bigword = bigword;
3224 while (--count >= 0)
3225 {
3226 sclass = cls();
3227 if ((i = dec_cursor()) == -1)
3228 return FAIL;
3229 if (eol && i == 1)
3230 return OK;
3231
3232 /*
3233 * Move backward to before the start of this word.
3234 */
3235 if (sclass != 0)
3236 {
3237 while (cls() == sclass)
3238 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3239 return OK;
3240 }
3241
3242 /*
3243 * Move backward to end of the previous word
3244 */
3245 while (cls() == 0)
3246 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003247 if (curwin->w_cursor.col == 0 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 break;
3249 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3250 return OK;
3251 }
3252 }
3253 return OK;
3254}
3255
3256/*
3257 * Skip a row of characters of the same class.
3258 * Return TRUE when end-of-file reached, FALSE otherwise.
3259 */
3260 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003261skip_chars(int cclass, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262{
3263 while (cls() == cclass)
3264 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1)
3265 return TRUE;
3266 return FALSE;
3267}
3268
3269#ifdef FEAT_TEXTOBJ
3270/*
3271 * Go back to the start of the word or the start of white space
3272 */
3273 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003274back_in_line(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275{
3276 int sclass; /* starting class */
3277
3278 sclass = cls();
3279 for (;;)
3280 {
3281 if (curwin->w_cursor.col == 0) /* stop at start of line */
3282 break;
3283 dec_cursor();
3284 if (cls() != sclass) /* stop at start of word */
3285 {
3286 inc_cursor();
3287 break;
3288 }
3289 }
3290}
3291
3292 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003293find_first_blank(pos_T *posp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294{
3295 int c;
3296
3297 while (decl(posp) != -1)
3298 {
3299 c = gchar_pos(posp);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003300 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 {
3302 incl(posp);
3303 break;
3304 }
3305 }
3306}
3307
3308/*
3309 * Skip count/2 sentences and count/2 separating white spaces.
3310 */
3311 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003312findsent_forward(
3313 long count,
3314 int at_start_sent) /* cursor is at start of sentence */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315{
3316 while (count--)
3317 {
3318 findsent(FORWARD, 1L);
3319 if (at_start_sent)
3320 find_first_blank(&curwin->w_cursor);
3321 if (count == 0 || at_start_sent)
3322 decl(&curwin->w_cursor);
3323 at_start_sent = !at_start_sent;
3324 }
3325}
3326
3327/*
3328 * Find word under cursor, cursor at end.
3329 * Used while an operator is pending, and in Visual mode.
3330 */
3331 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003332current_word(
3333 oparg_T *oap,
3334 long count,
3335 int include, /* TRUE: include word and white space */
3336 int bigword) /* FALSE == word, TRUE == WORD */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337{
3338 pos_T start_pos;
3339 pos_T pos;
3340 int inclusive = TRUE;
3341 int include_white = FALSE;
3342
3343 cls_bigword = bigword;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003344 CLEAR_POS(&start_pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346 /* Correct cursor when 'selection' is exclusive */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003347 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 dec_cursor();
3349
3350 /*
3351 * When Visual mode is not active, or when the VIsual area is only one
3352 * character, select the word and/or white space under the cursor.
3353 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003354 if (!VIsual_active || EQUAL_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 {
3356 /*
3357 * Go to start of current word or white space.
3358 */
3359 back_in_line();
3360 start_pos = curwin->w_cursor;
3361
3362 /*
3363 * If the start is on white space, and white space should be included
3364 * (" word"), or start is not on white space, and white space should
3365 * not be included ("word"), find end of word.
3366 */
3367 if ((cls() == 0) == include)
3368 {
3369 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3370 return FAIL;
3371 }
3372 else
3373 {
3374 /*
3375 * If the start is not on white space, and white space should be
3376 * included ("word "), or start is on white space and white
3377 * space should not be included (" "), find start of word.
3378 * If we end up in the first column of the next line (single char
3379 * word) back up to end of the line.
3380 */
3381 fwd_word(1L, bigword, TRUE);
3382 if (curwin->w_cursor.col == 0)
3383 decl(&curwin->w_cursor);
3384 else
3385 oneleft();
3386
3387 if (include)
3388 include_white = TRUE;
3389 }
3390
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 if (VIsual_active)
3392 {
3393 /* should do something when inclusive == FALSE ! */
3394 VIsual = start_pos;
3395 redraw_curbuf_later(INVERTED); /* update the inversion */
3396 }
3397 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 {
3399 oap->start = start_pos;
3400 oap->motion_type = MCHAR;
3401 }
3402 --count;
3403 }
3404
3405 /*
3406 * When count is still > 0, extend with more objects.
3407 */
3408 while (count > 0)
3409 {
3410 inclusive = TRUE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003411 if (VIsual_active && LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412 {
3413 /*
3414 * In Visual mode, with cursor at start: move cursor back.
3415 */
3416 if (decl(&curwin->w_cursor) == -1)
3417 return FAIL;
3418 if (include != (cls() != 0))
3419 {
3420 if (bck_word(1L, bigword, TRUE) == FAIL)
3421 return FAIL;
3422 }
3423 else
3424 {
3425 if (bckend_word(1L, bigword, TRUE) == FAIL)
3426 return FAIL;
3427 (void)incl(&curwin->w_cursor);
3428 }
3429 }
3430 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431 {
3432 /*
3433 * Move cursor forward one word and/or white area.
3434 */
3435 if (incl(&curwin->w_cursor) == -1)
3436 return FAIL;
3437 if (include != (cls() == 0))
3438 {
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003439 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 return FAIL;
3441 /*
3442 * If end is just past a new-line, we don't want to include
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003443 * the first character on the line.
3444 * Put cursor on last char of white.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 */
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003446 if (oneleft() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 inclusive = FALSE;
3448 }
3449 else
3450 {
3451 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3452 return FAIL;
3453 }
3454 }
3455 --count;
3456 }
3457
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003458 if (include_white && (cls() != 0
3459 || (curwin->w_cursor.col == 0 && !inclusive)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460 {
3461 /*
3462 * If we don't include white space at the end, move the start
3463 * to include some white space there. This makes "daw" work
3464 * better on the last word in a sentence (and "2daw" on last-but-one
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003465 * word). Also when "2daw" deletes "word." at the end of the line
3466 * (cursor is at start of next line).
3467 * But don't delete white space at start of line (indent).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 */
3469 pos = curwin->w_cursor; /* save cursor position */
3470 curwin->w_cursor = start_pos;
3471 if (oneleft() == OK)
3472 {
3473 back_in_line();
3474 if (cls() == 0 && curwin->w_cursor.col > 0)
3475 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476 if (VIsual_active)
3477 VIsual = curwin->w_cursor;
3478 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479 oap->start = curwin->w_cursor;
3480 }
3481 }
3482 curwin->w_cursor = pos; /* put cursor back at end */
3483 }
3484
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 if (VIsual_active)
3486 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003487 if (*p_sel == 'e' && inclusive && LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 inc_cursor();
3489 if (VIsual_mode == 'V')
3490 {
3491 VIsual_mode = 'v';
3492 redraw_cmdline = TRUE; /* show mode later */
3493 }
3494 }
3495 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496 oap->inclusive = inclusive;
3497
3498 return OK;
3499}
3500
3501/*
3502 * Find sentence(s) under the cursor, cursor at end.
3503 * When Visual active, extend it by one or more sentences.
3504 */
3505 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003506current_sent(oparg_T *oap, long count, int include)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507{
3508 pos_T start_pos;
3509 pos_T pos;
3510 int start_blank;
3511 int c;
3512 int at_start_sent;
3513 long ncount;
3514
3515 start_pos = curwin->w_cursor;
3516 pos = start_pos;
3517 findsent(FORWARD, 1L); /* Find start of next sentence. */
3518
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003520 * When the Visual area is bigger than one character: Extend it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003521 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003522 if (VIsual_active && !EQUAL_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 {
3524extend:
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003525 if (LT_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526 {
3527 /*
3528 * Cursor at start of Visual area.
3529 * Find out where we are:
3530 * - in the white space before a sentence
3531 * - in a sentence or just after it
3532 * - at the start of a sentence
3533 */
3534 at_start_sent = TRUE;
3535 decl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003536 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 {
3538 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003539 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 {
3541 at_start_sent = FALSE;
3542 break;
3543 }
3544 incl(&pos);
3545 }
3546 if (!at_start_sent)
3547 {
3548 findsent(BACKWARD, 1L);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003549 if (EQUAL_POS(curwin->w_cursor, start_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 at_start_sent = TRUE; /* exactly at start of sentence */
3551 else
3552 /* inside a sentence, go to its end (start of next) */
3553 findsent(FORWARD, 1L);
3554 }
3555 if (include) /* "as" gets twice as much as "is" */
3556 count *= 2;
3557 while (count--)
3558 {
3559 if (at_start_sent)
3560 find_first_blank(&curwin->w_cursor);
3561 c = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01003562 if (!at_start_sent || (!include && !VIM_ISWHITE(c)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 findsent(BACKWARD, 1L);
3564 at_start_sent = !at_start_sent;
3565 }
3566 }
3567 else
3568 {
3569 /*
3570 * Cursor at end of Visual area.
3571 * Find out where we are:
3572 * - just before a sentence
3573 * - just before or in the white space before a sentence
3574 * - in a sentence
3575 */
3576 incl(&pos);
3577 at_start_sent = TRUE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003578 /* not just before a sentence */
3579 if (!EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 {
3581 at_start_sent = FALSE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003582 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 {
3584 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003585 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 {
3587 at_start_sent = TRUE;
3588 break;
3589 }
3590 incl(&pos);
3591 }
3592 if (at_start_sent) /* in the sentence */
3593 findsent(BACKWARD, 1L);
3594 else /* in/before white before a sentence */
3595 curwin->w_cursor = start_pos;
3596 }
3597
3598 if (include) /* "as" gets twice as much as "is" */
3599 count *= 2;
3600 findsent_forward(count, at_start_sent);
3601 if (*p_sel == 'e')
3602 ++curwin->w_cursor.col;
3603 }
3604 return OK;
3605 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003606
3607 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003608 * If the cursor started on a blank, check if it is just before the start
3609 * of the next sentence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610 */
Bram Moolenaar1c465442017-03-12 20:10:05 +01003611 while (c = gchar_pos(&pos), VIM_ISWHITE(c)) /* VIM_ISWHITE() is a macro */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 incl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003613 if (EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 {
3615 start_blank = TRUE;
3616 find_first_blank(&start_pos); /* go back to first blank */
3617 }
3618 else
3619 {
3620 start_blank = FALSE;
3621 findsent(BACKWARD, 1L);
3622 start_pos = curwin->w_cursor;
3623 }
3624 if (include)
3625 ncount = count * 2;
3626 else
3627 {
3628 ncount = count;
3629 if (start_blank)
3630 --ncount;
3631 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00003632 if (ncount > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 findsent_forward(ncount, TRUE);
3634 else
3635 decl(&curwin->w_cursor);
3636
3637 if (include)
3638 {
3639 /*
3640 * If the blank in front of the sentence is included, exclude the
3641 * blanks at the end of the sentence, go back to the first blank.
3642 * If there are no trailing blanks, try to include leading blanks.
3643 */
3644 if (start_blank)
3645 {
3646 find_first_blank(&curwin->w_cursor);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003647 c = gchar_pos(&curwin->w_cursor); /* VIM_ISWHITE() is a macro */
3648 if (VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 decl(&curwin->w_cursor);
3650 }
Bram Moolenaar1c465442017-03-12 20:10:05 +01003651 else if (c = gchar_cursor(), !VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 find_first_blank(&start_pos);
3653 }
3654
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 if (VIsual_active)
3656 {
Bram Moolenaar641e2862012-07-25 15:06:34 +02003657 /* Avoid getting stuck with "is" on a single space before a sentence. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003658 if (EQUAL_POS(start_pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 goto extend;
3660 if (*p_sel == 'e')
3661 ++curwin->w_cursor.col;
3662 VIsual = start_pos;
3663 VIsual_mode = 'v';
Bram Moolenaar779f2fc2016-09-01 20:58:24 +02003664 redraw_cmdline = TRUE; /* show mode later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 redraw_curbuf_later(INVERTED); /* update the inversion */
3666 }
3667 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 {
3669 /* include a newline after the sentence, if there is one */
3670 if (incl(&curwin->w_cursor) == -1)
3671 oap->inclusive = TRUE;
3672 else
3673 oap->inclusive = FALSE;
3674 oap->start = start_pos;
3675 oap->motion_type = MCHAR;
3676 }
3677 return OK;
3678}
3679
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003680/*
3681 * Find block under the cursor, cursor at end.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003682 * "what" and "other" are two matching parenthesis/brace/etc.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003683 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003685current_block(
3686 oparg_T *oap,
3687 long count,
3688 int include, /* TRUE == include white space */
3689 int what, /* '(', '{', etc. */
3690 int other) /* ')', '}', etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691{
3692 pos_T old_pos;
3693 pos_T *pos = NULL;
3694 pos_T start_pos;
3695 pos_T *end_pos;
3696 pos_T old_start, old_end;
3697 char_u *save_cpo;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003698 int sol = FALSE; /* '{' at start of line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699
3700 old_pos = curwin->w_cursor;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003701 old_end = curwin->w_cursor; /* remember where we started */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 old_start = old_end;
3703
3704 /*
3705 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive.
3706 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003707 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 {
3709 setpcmark();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003710 if (what == '{') /* ignore indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 while (inindent(1))
3712 if (inc_cursor() != 0)
3713 break;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003714 if (gchar_cursor() == what)
3715 /* cursor on '(' or '{', move cursor just after it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 ++curwin->w_cursor.col;
3717 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003718 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 {
3720 old_start = VIsual;
3721 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3722 }
3723 else
3724 old_end = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725
3726 /*
3727 * Search backwards for unclosed '(', '{', etc..
3728 * Put this position in start_pos.
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003729 * Ignore quotes here. Keep the "M" flag in 'cpo', as that is what the
3730 * user wants.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 */
3732 save_cpo = p_cpo;
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003733 p_cpo = (char_u *)(vim_strchr(p_cpo, CPO_MATCHBSL) != NULL ? "%M" : "%");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 while (count-- > 0)
3735 {
3736 if ((pos = findmatch(NULL, what)) == NULL)
3737 break;
3738 curwin->w_cursor = *pos;
3739 start_pos = *pos; /* the findmatch for end_pos will overwrite *pos */
3740 }
3741 p_cpo = save_cpo;
3742
3743 /*
3744 * Search for matching ')', '}', etc.
3745 * Put this position in curwin->w_cursor.
3746 */
3747 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL)
3748 {
3749 curwin->w_cursor = old_pos;
3750 return FAIL;
3751 }
3752 curwin->w_cursor = *end_pos;
3753
3754 /*
3755 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE.
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003756 * If the ending '}', ')' or ']' is only preceded by indent, skip that
3757 * indent. But only if the resulting area is not smaller than what we
3758 * started with.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 */
3760 while (!include)
3761 {
3762 incl(&start_pos);
3763 sol = (curwin->w_cursor.col == 0);
3764 decl(&curwin->w_cursor);
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003765 while (inindent(1))
3766 {
3767 sol = TRUE;
3768 if (decl(&curwin->w_cursor) != 0)
3769 break;
3770 }
3771
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 /*
3773 * In Visual mode, when the resulting area is not bigger than what we
3774 * started with, extend it to the next block, and then exclude again.
3775 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003776 if (!LT_POS(start_pos, old_start) && !LT_POS(old_end, curwin->w_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 && VIsual_active)
3778 {
3779 curwin->w_cursor = old_start;
3780 decl(&curwin->w_cursor);
3781 if ((pos = findmatch(NULL, what)) == NULL)
3782 {
3783 curwin->w_cursor = old_pos;
3784 return FAIL;
3785 }
3786 start_pos = *pos;
3787 curwin->w_cursor = *pos;
3788 if ((end_pos = findmatch(NULL, other)) == NULL)
3789 {
3790 curwin->w_cursor = old_pos;
3791 return FAIL;
3792 }
3793 curwin->w_cursor = *end_pos;
3794 }
3795 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796 break;
3797 }
3798
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799 if (VIsual_active)
3800 {
3801 if (*p_sel == 'e')
Bram Moolenaar8667d662015-09-01 18:27:49 +02003802 inc(&curwin->w_cursor);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003803 if (sol && gchar_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 inc(&curwin->w_cursor); /* include the line break */
3805 VIsual = start_pos;
3806 VIsual_mode = 'v';
3807 redraw_curbuf_later(INVERTED); /* update the inversion */
3808 showmode();
3809 }
3810 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 {
3812 oap->start = start_pos;
3813 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003814 oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 if (sol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816 incl(&curwin->w_cursor);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003817 else if (LTOREQ_POS(start_pos, curwin->w_cursor))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003818 /* Include the character under the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 oap->inclusive = TRUE;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003820 else
3821 /* End is before the start (no text in between <>, [], etc.): don't
3822 * operate on any text. */
3823 curwin->w_cursor = start_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 }
3825
3826 return OK;
3827}
3828
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003829/*
3830 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>".
3831 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>".
3832 */
3833 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003834in_html_tag(
3835 int end_tag)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003836{
3837 char_u *line = ml_get_curline();
3838 char_u *p;
3839 int c;
3840 int lc = NUL;
3841 pos_T pos;
3842
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003843 if (enc_dbcs)
3844 {
3845 char_u *lp = NULL;
3846
3847 /* We search forward until the cursor, because searching backwards is
3848 * very slow for DBCS encodings. */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003849 for (p = line; p < line + curwin->w_cursor.col; MB_PTR_ADV(p))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003850 if (*p == '>' || *p == '<')
3851 {
3852 lc = *p;
3853 lp = p;
3854 }
3855 if (*p != '<') /* check for '<' under cursor */
3856 {
3857 if (lc != '<')
3858 return FALSE;
3859 p = lp;
3860 }
3861 }
3862 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003863 {
3864 for (p = line + curwin->w_cursor.col; p > line; )
3865 {
3866 if (*p == '<') /* find '<' under/before cursor */
3867 break;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003868 MB_PTR_BACK(line, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003869 if (*p == '>') /* find '>' before cursor */
3870 break;
3871 }
3872 if (*p != '<')
3873 return FALSE;
3874 }
3875
3876 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003877 pos.col = (colnr_T)(p - line);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003878
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003879 MB_PTR_ADV(p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003880 if (end_tag)
3881 /* check that there is a '/' after the '<' */
3882 return *p == '/';
3883
3884 /* check that there is no '/' after the '<' */
3885 if (*p == '/')
3886 return FALSE;
3887
3888 /* check that the matching '>' is not preceded by '/' */
3889 for (;;)
3890 {
3891 if (inc(&pos) < 0)
3892 return FALSE;
3893 c = *ml_get_pos(&pos);
3894 if (c == '>')
3895 break;
3896 lc = c;
3897 }
3898 return lc != '/';
3899}
3900
3901/*
3902 * Find tag block under the cursor, cursor at end.
3903 */
3904 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003905current_tagblock(
3906 oparg_T *oap,
3907 long count_arg,
3908 int include) /* TRUE == include white space */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003909{
3910 long count = count_arg;
3911 long n;
3912 pos_T old_pos;
3913 pos_T start_pos;
3914 pos_T end_pos;
3915 pos_T old_start, old_end;
3916 char_u *spat, *epat;
3917 char_u *p;
3918 char_u *cp;
3919 int len;
3920 int r;
3921 int do_include = include;
3922 int save_p_ws = p_ws;
3923 int retval = FAIL;
Bram Moolenaarb6c27352015-03-05 19:57:49 +01003924 int is_inclusive = TRUE;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003925
3926 p_ws = FALSE;
3927
3928 old_pos = curwin->w_cursor;
3929 old_end = curwin->w_cursor; /* remember where we started */
3930 old_start = old_end;
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003931 if (!VIsual_active || *p_sel == 'e')
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003932 decl(&old_end); /* old_end is inclusive */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003933
3934 /*
Bram Moolenaar45360022005-07-21 21:08:21 +00003935 * If we start on "<aaa>" select that block.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003936 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003937 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003938 {
3939 setpcmark();
3940
3941 /* ignore indent */
3942 while (inindent(1))
3943 if (inc_cursor() != 0)
3944 break;
3945
3946 if (in_html_tag(FALSE))
3947 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003948 /* cursor on start tag, move to its '>' */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003949 while (*ml_get_cursor() != '>')
3950 if (inc_cursor() < 0)
3951 break;
3952 }
3953 else if (in_html_tag(TRUE))
3954 {
3955 /* cursor on end tag, move to just before it */
3956 while (*ml_get_cursor() != '<')
3957 if (dec_cursor() < 0)
3958 break;
3959 dec_cursor();
3960 old_end = curwin->w_cursor;
3961 }
3962 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003963 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003964 {
3965 old_start = VIsual;
3966 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3967 }
3968 else
3969 old_end = VIsual;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003970
3971again:
3972 /*
3973 * Search backwards for unclosed "<aaa>".
3974 * Put this position in start_pos.
3975 */
3976 for (n = 0; n < count; ++n)
3977 {
Bram Moolenaar45360022005-07-21 21:08:21 +00003978 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)",
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003979 (char_u *)"",
Bram Moolenaar48570482017-10-30 21:48:41 +01003980 (char_u *)"</[^>]*>", BACKWARD, NULL, 0,
Bram Moolenaar76929292008-01-06 19:07:36 +00003981 NULL, (linenr_T)0, 0L) <= 0)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003982 {
3983 curwin->w_cursor = old_pos;
3984 goto theend;
3985 }
3986 }
3987 start_pos = curwin->w_cursor;
3988
3989 /*
3990 * Search for matching "</aaa>". First isolate the "aaa".
3991 */
3992 inc_cursor();
3993 p = ml_get_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01003994 for (cp = p; *cp != NUL && *cp != '>' && !VIM_ISWHITE(*cp); MB_PTR_ADV(cp))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003995 ;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003996 len = (int)(cp - p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003997 if (len == 0)
3998 {
3999 curwin->w_cursor = old_pos;
4000 goto theend;
4001 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004002 spat = alloc(len + 31);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004003 epat = alloc(len + 9);
4004 if (spat == NULL || epat == NULL)
4005 {
4006 vim_free(spat);
4007 vim_free(epat);
4008 curwin->w_cursor = old_pos;
4009 goto theend;
4010 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004011 sprintf((char *)spat, "<%.*s\\>\\%%(\\s\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004012 sprintf((char *)epat, "</%.*s>\\c", len, p);
4013
Bram Moolenaar48570482017-10-30 21:48:41 +01004014 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, NULL,
Bram Moolenaar76929292008-01-06 19:07:36 +00004015 0, NULL, (linenr_T)0, 0L);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004016
4017 vim_free(spat);
4018 vim_free(epat);
4019
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004020 if (r < 1 || LT_POS(curwin->w_cursor, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004021 {
4022 /* Can't find other end or it's before the previous end. Could be a
4023 * HTML tag that doesn't have a matching end. Search backwards for
4024 * another starting tag. */
4025 count = 1;
4026 curwin->w_cursor = start_pos;
4027 goto again;
4028 }
4029
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02004030 if (do_include)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004031 {
4032 /* Include up to the '>'. */
4033 while (*ml_get_cursor() != '>')
4034 if (inc_cursor() < 0)
4035 break;
4036 }
4037 else
4038 {
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004039 char_u *c = ml_get_cursor();
4040
4041 /* Exclude the '<' of the end tag.
4042 * If the closing tag is on new line, do not decrement cursor, but
4043 * make operation exclusive, so that the linefeed will be selected */
4044 if (*c == '<' && !VIsual_active && curwin->w_cursor.col == 0)
4045 /* do not decrement cursor */
4046 is_inclusive = FALSE;
4047 else if (*c == '<')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004048 dec_cursor();
4049 }
4050 end_pos = curwin->w_cursor;
4051
4052 if (!do_include)
4053 {
4054 /* Exclude the start tag. */
4055 curwin->w_cursor = start_pos;
4056 while (inc_cursor() >= 0)
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004057 if (*ml_get_cursor() == '>')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004058 {
4059 inc_cursor();
4060 start_pos = curwin->w_cursor;
4061 break;
4062 }
4063 curwin->w_cursor = end_pos;
4064
Bram Moolenaarb476cb72018-08-16 21:37:50 +02004065 // If we are in Visual mode and now have the same text as before set
4066 // "do_include" and try again.
4067 if (VIsual_active && EQUAL_POS(start_pos, old_start)
4068 && EQUAL_POS(end_pos, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004069 {
4070 do_include = TRUE;
4071 curwin->w_cursor = old_start;
4072 count = count_arg;
4073 goto again;
4074 }
4075 }
4076
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004077 if (VIsual_active)
4078 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004079 /* If the end is before the start there is no text between tags, select
4080 * the char under the cursor. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004081 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004082 curwin->w_cursor = start_pos;
4083 else if (*p_sel == 'e')
Bram Moolenaar8340dd92014-12-13 20:11:33 +01004084 inc_cursor();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004085 VIsual = start_pos;
4086 VIsual_mode = 'v';
4087 redraw_curbuf_later(INVERTED); /* update the inversion */
4088 showmode();
4089 }
4090 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004091 {
4092 oap->start = start_pos;
4093 oap->motion_type = MCHAR;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004094 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004095 {
4096 /* End is before the start: there is no text between tags; operate
4097 * on an empty area. */
4098 curwin->w_cursor = start_pos;
4099 oap->inclusive = FALSE;
4100 }
4101 else
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004102 oap->inclusive = is_inclusive;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004103 }
4104 retval = OK;
4105
4106theend:
4107 p_ws = save_p_ws;
4108 return retval;
4109}
4110
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004112current_par(
4113 oparg_T *oap,
4114 long count,
4115 int include, /* TRUE == include white space */
4116 int type) /* 'p' for paragraph, 'S' for section */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117{
4118 linenr_T start_lnum;
4119 linenr_T end_lnum;
4120 int white_in_front;
4121 int dir;
4122 int start_is_white;
4123 int prev_start_is_white;
4124 int retval = OK;
4125 int do_white = FALSE;
4126 int t;
4127 int i;
4128
4129 if (type == 'S') /* not implemented yet */
4130 return FAIL;
4131
4132 start_lnum = curwin->w_cursor.lnum;
4133
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134 /*
4135 * When visual area is more than one line: extend it.
4136 */
4137 if (VIsual_active && start_lnum != VIsual.lnum)
4138 {
4139extend:
4140 if (start_lnum < VIsual.lnum)
4141 dir = BACKWARD;
4142 else
4143 dir = FORWARD;
4144 for (i = count; --i >= 0; )
4145 {
4146 if (start_lnum ==
4147 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
4148 {
4149 retval = FAIL;
4150 break;
4151 }
4152
4153 prev_start_is_white = -1;
4154 for (t = 0; t < 2; ++t)
4155 {
4156 start_lnum += dir;
4157 start_is_white = linewhite(start_lnum);
4158 if (prev_start_is_white == start_is_white)
4159 {
4160 start_lnum -= dir;
4161 break;
4162 }
4163 for (;;)
4164 {
4165 if (start_lnum == (dir == BACKWARD
4166 ? 1 : curbuf->b_ml.ml_line_count))
4167 break;
4168 if (start_is_white != linewhite(start_lnum + dir)
4169 || (!start_is_white
4170 && startPS(start_lnum + (dir > 0
4171 ? 1 : 0), 0, 0)))
4172 break;
4173 start_lnum += dir;
4174 }
4175 if (!include)
4176 break;
4177 if (start_lnum == (dir == BACKWARD
4178 ? 1 : curbuf->b_ml.ml_line_count))
4179 break;
4180 prev_start_is_white = start_is_white;
4181 }
4182 }
4183 curwin->w_cursor.lnum = start_lnum;
4184 curwin->w_cursor.col = 0;
4185 return retval;
4186 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187
4188 /*
4189 * First move back to the start_lnum of the paragraph or white lines
4190 */
4191 white_in_front = linewhite(start_lnum);
4192 while (start_lnum > 1)
4193 {
4194 if (white_in_front) /* stop at first white line */
4195 {
4196 if (!linewhite(start_lnum - 1))
4197 break;
4198 }
4199 else /* stop at first non-white line of start of paragraph */
4200 {
4201 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
4202 break;
4203 }
4204 --start_lnum;
4205 }
4206
4207 /*
4208 * Move past the end of any white lines.
4209 */
4210 end_lnum = start_lnum;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004211 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
4212 ++end_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004213
4214 --end_lnum;
4215 i = count;
4216 if (!include && white_in_front)
4217 --i;
4218 while (i--)
4219 {
4220 if (end_lnum == curbuf->b_ml.ml_line_count)
4221 return FAIL;
4222
4223 if (!include)
4224 do_white = linewhite(end_lnum + 1);
4225
4226 if (include || !do_white)
4227 {
4228 ++end_lnum;
4229 /*
4230 * skip to end of paragraph
4231 */
4232 while (end_lnum < curbuf->b_ml.ml_line_count
4233 && !linewhite(end_lnum + 1)
4234 && !startPS(end_lnum + 1, 0, 0))
4235 ++end_lnum;
4236 }
4237
4238 if (i == 0 && white_in_front && include)
4239 break;
4240
4241 /*
4242 * skip to end of white lines after paragraph
4243 */
4244 if (include || do_white)
4245 while (end_lnum < curbuf->b_ml.ml_line_count
4246 && linewhite(end_lnum + 1))
4247 ++end_lnum;
4248 }
4249
4250 /*
4251 * If there are no empty lines at the end, try to find some empty lines at
4252 * the start (unless that has been done already).
4253 */
4254 if (!white_in_front && !linewhite(end_lnum) && include)
4255 while (start_lnum > 1 && linewhite(start_lnum - 1))
4256 --start_lnum;
4257
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258 if (VIsual_active)
4259 {
4260 /* Problem: when doing "Vipipip" nothing happens in a single white
4261 * line, we get stuck there. Trap this here. */
4262 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4263 goto extend;
Bram Moolenaar84b2a382017-02-17 11:40:00 +01004264 if (VIsual.lnum != start_lnum)
4265 {
4266 VIsual.lnum = start_lnum;
4267 VIsual.col = 0;
4268 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 VIsual_mode = 'V';
4270 redraw_curbuf_later(INVERTED); /* update the inversion */
4271 showmode();
4272 }
4273 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 {
4275 oap->start.lnum = start_lnum;
4276 oap->start.col = 0;
4277 oap->motion_type = MLINE;
4278 }
4279 curwin->w_cursor.lnum = end_lnum;
4280 curwin->w_cursor.col = 0;
4281
4282 return OK;
4283}
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004284
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004285/*
4286 * Search quote char from string line[col].
4287 * Quote character escaped by one of the characters in "escape" is not counted
4288 * as a quote.
4289 * Returns column number of "quotechar" or -1 when not found.
4290 */
4291 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004292find_next_quote(
4293 char_u *line,
4294 int col,
4295 int quotechar,
4296 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004297{
4298 int c;
4299
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004300 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004301 {
4302 c = line[col];
4303 if (c == NUL)
4304 return -1;
4305 else if (escape != NULL && vim_strchr(escape, c))
4306 ++col;
4307 else if (c == quotechar)
4308 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004309 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004310 col += (*mb_ptr2len)(line + col);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004311 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004312 ++col;
4313 }
4314 return col;
4315}
4316
4317/*
4318 * Search backwards in "line" from column "col_start" to find "quotechar".
4319 * Quote character escaped by one of the characters in "escape" is not counted
4320 * as a quote.
4321 * Return the found column or zero.
4322 */
4323 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004324find_prev_quote(
4325 char_u *line,
4326 int col_start,
4327 int quotechar,
4328 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004329{
4330 int n;
4331
4332 while (col_start > 0)
4333 {
4334 --col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004335 col_start -= (*mb_head_off)(line, line + col_start);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004336 n = 0;
4337 if (escape != NULL)
4338 while (col_start - n > 0 && vim_strchr(escape,
4339 line[col_start - n - 1]) != NULL)
4340 ++n;
4341 if (n & 1)
4342 col_start -= n; /* uneven number of escape chars, skip it */
4343 else if (line[col_start] == quotechar)
4344 break;
4345 }
4346 return col_start;
4347}
4348
4349/*
4350 * Find quote under the cursor, cursor at end.
4351 * Returns TRUE if found, else FALSE.
4352 */
4353 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004354current_quote(
4355 oparg_T *oap,
4356 long count,
4357 int include, /* TRUE == include quote char */
4358 int quotechar) /* Quote character */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004359{
4360 char_u *line = ml_get_curline();
4361 int col_end;
4362 int col_start = curwin->w_cursor.col;
4363 int inclusive = FALSE;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004364 int vis_empty = TRUE; // Visual selection <= 1 char
4365 int vis_bef_curs = FALSE; // Visual starts before cursor
4366 int inside_quotes = FALSE; // Looks like "i'" done before
4367 int selected_quote = FALSE; // Has quote inside selection
Bram Moolenaarab194812005-09-14 21:40:12 +00004368 int i;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004369 int restore_vis_bef = FALSE; // restore VIsual on abort
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004370
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004371 /* Correct cursor when 'selection' is "exclusive". */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004372 if (VIsual_active)
4373 {
Bram Moolenaar46522af2017-02-18 23:12:01 +01004374 /* this only works within one line */
4375 if (VIsual.lnum != curwin->w_cursor.lnum)
4376 return FALSE;
4377
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004378 vis_bef_curs = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004379 if (*p_sel == 'e')
4380 {
4381 if (!vis_bef_curs)
4382 {
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004383 // VIsual needs to be the start of Visual selection.
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004384 pos_T t = curwin->w_cursor;
4385
4386 curwin->w_cursor = VIsual;
4387 VIsual = t;
4388 vis_bef_curs = TRUE;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004389 restore_vis_bef = TRUE;
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004390 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004391 dec_cursor();
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004392 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004393 vis_empty = EQUAL_POS(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004394 }
Bram Moolenaarab194812005-09-14 21:40:12 +00004395
4396 if (!vis_empty)
4397 {
4398 /* Check if the existing selection exactly spans the text inside
4399 * quotes. */
4400 if (vis_bef_curs)
4401 {
4402 inside_quotes = VIsual.col > 0
4403 && line[VIsual.col - 1] == quotechar
4404 && line[curwin->w_cursor.col] != NUL
4405 && line[curwin->w_cursor.col + 1] == quotechar;
4406 i = VIsual.col;
4407 col_end = curwin->w_cursor.col;
4408 }
4409 else
4410 {
4411 inside_quotes = curwin->w_cursor.col > 0
4412 && line[curwin->w_cursor.col - 1] == quotechar
4413 && line[VIsual.col] != NUL
4414 && line[VIsual.col + 1] == quotechar;
4415 i = curwin->w_cursor.col;
4416 col_end = VIsual.col;
4417 }
4418
4419 /* Find out if we have a quote in the selection. */
4420 while (i <= col_end)
4421 if (line[i++] == quotechar)
4422 {
4423 selected_quote = TRUE;
4424 break;
4425 }
4426 }
4427
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004428 if (!vis_empty && line[col_start] == quotechar)
4429 {
4430 /* Already selecting something and on a quote character. Find the
4431 * next quoted string. */
4432 if (vis_bef_curs)
4433 {
4434 /* Assume we are on a closing quote: move to after the next
4435 * opening quote. */
4436 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4437 if (col_start < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004438 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004439 col_end = find_next_quote(line, col_start + 1, quotechar,
4440 curbuf->b_p_qe);
4441 if (col_end < 0)
4442 {
4443 /* We were on a starting quote perhaps? */
4444 col_end = col_start;
4445 col_start = curwin->w_cursor.col;
4446 }
4447 }
4448 else
4449 {
4450 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4451 if (line[col_end] != quotechar)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004452 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004453 col_start = find_prev_quote(line, col_end, quotechar,
4454 curbuf->b_p_qe);
4455 if (line[col_start] != quotechar)
4456 {
4457 /* We were on an ending quote perhaps? */
4458 col_start = col_end;
4459 col_end = curwin->w_cursor.col;
4460 }
4461 }
4462 }
4463 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004464
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004465 if (line[col_start] == quotechar || !vis_empty)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004466 {
4467 int first_col = col_start;
4468
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004469 if (!vis_empty)
4470 {
4471 if (vis_bef_curs)
4472 first_col = find_next_quote(line, col_start, quotechar, NULL);
4473 else
4474 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4475 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004476
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004477 /* The cursor is on a quote, we don't know if it's the opening or
4478 * closing quote. Search from the start of the line to find out.
4479 * Also do this when there is a Visual area, a' may leave the cursor
4480 * in between two strings. */
4481 col_start = 0;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004482 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004483 {
4484 /* Find open quote character. */
4485 col_start = find_next_quote(line, col_start, quotechar, NULL);
4486 if (col_start < 0 || col_start > first_col)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004487 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004488 /* Find close quote character. */
4489 col_end = find_next_quote(line, col_start + 1, quotechar,
4490 curbuf->b_p_qe);
4491 if (col_end < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004492 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004493 /* If is cursor between start and end quote character, it is
4494 * target text object. */
4495 if (col_start <= first_col && first_col <= col_end)
4496 break;
4497 col_start = col_end + 1;
4498 }
4499 }
4500 else
4501 {
4502 /* Search backward for a starting quote. */
4503 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4504 if (line[col_start] != quotechar)
4505 {
4506 /* No quote before the cursor, look after the cursor. */
4507 col_start = find_next_quote(line, col_start, quotechar, NULL);
4508 if (col_start < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004509 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004510 }
4511
4512 /* Find close quote character. */
4513 col_end = find_next_quote(line, col_start + 1, quotechar,
4514 curbuf->b_p_qe);
4515 if (col_end < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004516 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004517 }
4518
4519 /* When "include" is TRUE, include spaces after closing quote or before
4520 * the starting quote. */
4521 if (include)
4522 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004523 if (VIM_ISWHITE(line[col_end + 1]))
4524 while (VIM_ISWHITE(line[col_end + 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004525 ++col_end;
4526 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004527 while (col_start > 0 && VIM_ISWHITE(line[col_start - 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004528 --col_start;
4529 }
4530
Bram Moolenaarab194812005-09-14 21:40:12 +00004531 /* Set start position. After vi" another i" must include the ".
4532 * For v2i" include the quotes. */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004533 if (!include && count < 2 && (vis_empty || !inside_quotes))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004534 ++col_start;
4535 curwin->w_cursor.col = col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004536 if (VIsual_active)
4537 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004538 /* Set the start of the Visual area when the Visual area was empty, we
4539 * were just inside quotes or the Visual area didn't start at a quote
4540 * and didn't include a quote.
4541 */
4542 if (vis_empty
4543 || (vis_bef_curs
4544 && !selected_quote
4545 && (inside_quotes
4546 || (line[VIsual.col] != quotechar
4547 && (VIsual.col == 0
4548 || line[VIsual.col - 1] != quotechar)))))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004549 {
4550 VIsual = curwin->w_cursor;
4551 redraw_curbuf_later(INVERTED);
4552 }
4553 }
4554 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004555 {
4556 oap->start = curwin->w_cursor;
4557 oap->motion_type = MCHAR;
4558 }
4559
4560 /* Set end position. */
4561 curwin->w_cursor.col = col_end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004562 if ((include || count > 1 /* After vi" another i" must include the ". */
Bram Moolenaarab194812005-09-14 21:40:12 +00004563 || (!vis_empty && inside_quotes)
Bram Moolenaarab194812005-09-14 21:40:12 +00004564 ) && inc_cursor() == 2)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004565 inclusive = TRUE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004566 if (VIsual_active)
4567 {
4568 if (vis_empty || vis_bef_curs)
4569 {
4570 /* decrement cursor when 'selection' is not exclusive */
4571 if (*p_sel != 'e')
4572 dec_cursor();
4573 }
4574 else
4575 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004576 /* Cursor is at start of Visual area. Set the end of the Visual
4577 * area when it was just inside quotes or it didn't end at a
4578 * quote. */
4579 if (inside_quotes
4580 || (!selected_quote
4581 && line[VIsual.col] != quotechar
4582 && (line[VIsual.col] == NUL
4583 || line[VIsual.col + 1] != quotechar)))
4584 {
4585 dec_cursor();
4586 VIsual = curwin->w_cursor;
4587 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004588 curwin->w_cursor.col = col_start;
4589 }
4590 if (VIsual_mode == 'V')
4591 {
4592 VIsual_mode = 'v';
4593 redraw_cmdline = TRUE; /* show mode later */
4594 }
4595 }
4596 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004597 {
4598 /* Set inclusive and other oap's flags. */
4599 oap->inclusive = inclusive;
4600 }
4601
4602 return OK;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004603
4604abort_search:
4605 if (VIsual_active && *p_sel == 'e')
4606 {
4607 inc_cursor();
4608 if (restore_vis_bef)
4609 {
4610 pos_T t = curwin->w_cursor;
4611
4612 curwin->w_cursor = VIsual;
4613 VIsual = t;
4614 }
4615 }
4616 return FALSE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004617}
4618
4619#endif /* FEAT_TEXTOBJ */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004621static int is_one_char(char_u *pattern, int move, pos_T *cur, int direction);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004622
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004623/*
4624 * Find next search match under cursor, cursor at end.
4625 * Used while an operator is pending, and in Visual mode.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004626 */
4627 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004628current_search(
4629 long count,
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004630 int forward) // TRUE for forward, FALSE for backward
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004631{
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004632 pos_T start_pos; // start position of the pattern match
4633 pos_T end_pos; // end position of the pattern match
4634 pos_T orig_pos; // position of the cursor at beginning
4635 pos_T pos; // position after the pattern
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004636 int i;
4637 int dir;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004638 int result; // result of various function calls
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004639 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004640 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02004641 pos_T save_VIsual = VIsual;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004642 int one_char;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004643
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004644 /* wrapping should not occur */
4645 p_ws = FALSE;
4646
4647 /* Correct cursor when 'selection' is exclusive */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004648 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004649 dec_cursor();
4650
4651 if (VIsual_active)
4652 {
4653 orig_pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004654
4655 pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004656
4657 /* make sure, searching further will extend the match */
4658 if (VIsual_active)
4659 {
4660 if (forward)
4661 incl(&pos);
4662 else
4663 decl(&pos);
4664 }
4665 }
4666 else
Bram Moolenaar268a06c2016-04-21 09:07:01 +02004667 orig_pos = pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004668
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004669 /* Is the pattern is zero-width?, this time, don't care about the direction
4670 */
4671 one_char = is_one_char(spats[last_idx].pat, TRUE, &curwin->w_cursor,
4672 FORWARD);
Bram Moolenaare78495d2013-06-30 14:46:53 +02004673 if (one_char == -1)
Bram Moolenaarba2d44f2013-11-28 19:27:30 +01004674 {
4675 p_ws = old_p_ws;
4676 return FAIL; /* pattern not found */
4677 }
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004678
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004679 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004680 * The trick is to first search backwards and then search forward again,
4681 * so that a match at the current cursor position will be correctly
4682 * captured.
4683 */
4684 for (i = 0; i < 2; i++)
4685 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004686 if (forward)
4687 dir = i;
4688 else
4689 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004690
4691 flags = 0;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004692 if (!dir && !one_char)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004693 flags = SEARCH_END;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004694 end_pos = pos;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004695
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004696 result = searchit(curwin, curbuf, &pos, &end_pos,
4697 (dir ? FORWARD : BACKWARD),
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004698 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004699 SEARCH_KEEP | flags, RE_SEARCH, 0, NULL, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004700
4701 /* First search may fail, but then start searching from the
4702 * beginning of the file (cursor might be on the search match)
4703 * except when Visual mode is active, so that extending the visual
4704 * selection works. */
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004705 if (i == 1 && !result) /* not found, abort */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004706 {
4707 curwin->w_cursor = orig_pos;
4708 if (VIsual_active)
4709 VIsual = save_VIsual;
4710 p_ws = old_p_ws;
4711 return FAIL;
4712 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004713 else if (i == 0 && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004714 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004715 if (forward)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004716 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004717 /* try again from start of buffer */
4718 CLEAR_POS(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004719 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004720 else
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004721 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004722 /* try again from end of buffer */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004723 /* searching backwards, so set pos to last line and col */
4724 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02004725 pos.col = (colnr_T)STRLEN(
4726 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004727 }
4728 }
Bram Moolenaarfcea03d2013-11-07 04:46:48 +01004729 p_ws = old_p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004730 }
4731
4732 start_pos = pos;
Bram Moolenaarbdb65792018-05-22 17:50:42 +02004733 p_ws = old_p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004734
4735 if (!VIsual_active)
4736 VIsual = start_pos;
4737
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004738 // put cursor on last character of match
4739 curwin->w_cursor = end_pos;
4740 if (LT_POS(VIsual, end_pos))
4741 dec_cursor();
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004742 VIsual_active = TRUE;
4743 VIsual_mode = 'v';
4744
Bram Moolenaarb7633612019-02-10 21:48:25 +01004745 redraw_curbuf_later(INVERTED); /* update the inversion */
4746 if (*p_sel == 'e')
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004747 {
Bram Moolenaarb7633612019-02-10 21:48:25 +01004748 /* Correction for exclusive selection depends on the direction. */
4749 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor))
4750 inc_cursor();
4751 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual))
4752 inc(&VIsual);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004753 }
4754
4755#ifdef FEAT_FOLDING
4756 if (fdo_flags & FDO_SEARCH && KeyTyped)
4757 foldOpenCursor();
4758#endif
4759
4760 may_start_select('c');
4761#ifdef FEAT_MOUSE
4762 setmouse();
4763#endif
4764#ifdef FEAT_CLIPBOARD
4765 /* Make sure the clipboard gets updated. Needed because start and
4766 * end are still the same, and the selection needs to be owned */
4767 clip_star.vmode = NUL;
4768#endif
4769 redraw_curbuf_later(INVERTED);
4770 showmode();
4771
4772 return OK;
4773}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004774
4775/*
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004776 * Check if the pattern is one character long or zero-width.
Bram Moolenaaradd8dce2017-06-05 19:56:04 +02004777 * If move is TRUE, check from the beginning of the buffer, else from position
4778 * "cur".
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004779 * "direction" is FORWARD or BACKWARD.
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004780 * Returns TRUE, FALSE or -1 for failure.
4781 */
4782 static int
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004783is_one_char(char_u *pattern, int move, pos_T *cur, int direction)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004784{
4785 regmmatch_T regmatch;
4786 int nmatched = 0;
4787 int result = -1;
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004788 pos_T pos;
4789 int save_called_emsg = called_emsg;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004790 int flag = 0;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004791
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004792 if (pattern == NULL)
4793 pattern = spats[last_idx].pat;
4794
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004795 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
4796 SEARCH_KEEP, &regmatch) == FAIL)
4797 return -1;
4798
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004799 /* init startcol correctly */
4800 regmatch.startpos[0].col = -1;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004801 /* move to match */
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004802 if (move)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004803 {
4804 CLEAR_POS(&pos);
4805 }
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004806 else
4807 {
Bram Moolenaaradd8dce2017-06-05 19:56:04 +02004808 pos = *cur;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004809 /* accept a match at the cursor position */
4810 flag = SEARCH_START;
4811 }
4812
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004813 if (searchit(curwin, curbuf, &pos, NULL, direction, pattern, 1,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004814 SEARCH_KEEP + flag, RE_SEARCH, 0, NULL, NULL) != FAIL)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004815 {
4816 /* Zero-width pattern should match somewhere, then we can check if
4817 * start and end are in the same position. */
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004818 called_emsg = FALSE;
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004819 do
4820 {
4821 regmatch.startpos[0].col++;
4822 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004823 pos.lnum, regmatch.startpos[0].col, NULL, NULL);
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004824 if (!nmatched)
4825 break;
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004826 } while (direction == FORWARD ? regmatch.startpos[0].col < pos.col
4827 : regmatch.startpos[0].col > pos.col);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004828
4829 if (!called_emsg)
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004830 {
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004831 result = (nmatched != 0
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004832 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
4833 && regmatch.startpos[0].col == regmatch.endpos[0].col);
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004834 /* one char width */
4835 if (!result && inc(&pos) >= 0 && pos.col == regmatch.endpos[0].col)
4836 result = TRUE;
4837 }
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004838 }
4839
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004840 called_emsg |= save_called_emsg;
Bram Moolenaar473de612013-06-08 18:19:48 +02004841 vim_regfree(regmatch.regprog);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004842 return result;
4843}
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004844
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4846 || defined(PROTO)
4847/*
4848 * return TRUE if line 'lnum' is empty or has white chars only.
4849 */
4850 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004851linewhite(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852{
4853 char_u *p;
4854
4855 p = skipwhite(ml_get(lnum));
4856 return (*p == NUL);
4857}
4858#endif
4859
4860#if defined(FEAT_FIND_ID) || defined(PROTO)
4861/*
4862 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01004863 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004866find_pattern_in_path(
4867 char_u *ptr, /* pointer to search pattern */
4868 int dir UNUSED, /* direction of expansion */
4869 int len, /* length of search pattern */
4870 int whole, /* match whole words only */
4871 int skip_comments, /* don't match inside comments */
4872 int type, /* Type of search; are we looking for a type?
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873 a macro? */
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004874 long count,
4875 int action, /* What to do when we find it */
4876 linenr_T start_lnum, /* first line to start searching */
4877 linenr_T end_lnum) /* last line for searching */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878{
4879 SearchedFile *files; /* Stack of included files */
4880 SearchedFile *bigger; /* When we need more space */
4881 int max_path_depth = 50;
4882 long match_count = 1;
4883
4884 char_u *pat;
4885 char_u *new_fname;
4886 char_u *curr_fname = curbuf->b_fname;
4887 char_u *prev_fname = NULL;
4888 linenr_T lnum;
4889 int depth;
4890 int depth_displayed; /* For type==CHECK_PATH */
4891 int old_files;
4892 int already_searched;
4893 char_u *file_line;
4894 char_u *line;
4895 char_u *p;
4896 char_u save_char;
4897 int define_matched;
4898 regmatch_T regmatch;
4899 regmatch_T incl_regmatch;
4900 regmatch_T def_regmatch;
4901 int matched = FALSE;
4902 int did_show = FALSE;
4903 int found = FALSE;
4904 int i;
4905 char_u *already = NULL;
4906 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004907 char_u *inc_opt = NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02004908#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 win_T *curwin_save = NULL;
4910#endif
4911
4912 regmatch.regprog = NULL;
4913 incl_regmatch.regprog = NULL;
4914 def_regmatch.regprog = NULL;
4915
4916 file_line = alloc(LSIZE);
4917 if (file_line == NULL)
4918 return;
4919
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 if (type != CHECK_PATH && type != FIND_DEFINE
4921#ifdef FEAT_INS_EXPAND
4922 /* when CONT_SOL is set compare "ptr" with the beginning of the line
4923 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004924 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925#endif
4926 )
4927 {
4928 pat = alloc(len + 5);
4929 if (pat == NULL)
4930 goto fpip_end;
4931 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
4932 /* ignore case according to p_ic, p_scs and pat */
4933 regmatch.rm_ic = ignorecase(pat);
4934 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4935 vim_free(pat);
4936 if (regmatch.regprog == NULL)
4937 goto fpip_end;
4938 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004939 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
4940 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004942 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 if (incl_regmatch.regprog == NULL)
4944 goto fpip_end;
4945 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */
4946 }
4947 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
4948 {
4949 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
4950 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
4951 if (def_regmatch.regprog == NULL)
4952 goto fpip_end;
4953 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */
4954 }
4955 files = (SearchedFile *)lalloc_clear((long_u)
4956 (max_path_depth * sizeof(SearchedFile)), TRUE);
4957 if (files == NULL)
4958 goto fpip_end;
4959 old_files = max_path_depth;
4960 depth = depth_displayed = -1;
4961
4962 lnum = start_lnum;
4963 if (end_lnum > curbuf->b_ml.ml_line_count)
4964 end_lnum = curbuf->b_ml.ml_line_count;
4965 if (lnum > end_lnum) /* do at least one line */
4966 lnum = end_lnum;
4967 line = ml_get(lnum);
4968
4969 for (;;)
4970 {
4971 if (incl_regmatch.regprog != NULL
4972 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
4973 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004974 char_u *p_fname = (curr_fname == curbuf->b_fname)
4975 ? curbuf->b_ffname : curr_fname;
4976
4977 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
4978 /* Use text from '\zs' to '\ze' (or end) of 'include'. */
4979 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02004980 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004981 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
4982 else
4983 /* Use text after match with 'include'. */
4984 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004985 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 already_searched = FALSE;
4987 if (new_fname != NULL)
4988 {
4989 /* Check whether we have already searched in this file */
4990 for (i = 0;; i++)
4991 {
4992 if (i == depth + 1)
4993 i = old_files;
4994 if (i == max_path_depth)
4995 break;
4996 if (fullpathcmp(new_fname, files[i].name, TRUE) & FPC_SAME)
4997 {
4998 if (type != CHECK_PATH &&
4999 action == ACTION_SHOW_ALL && files[i].matched)
5000 {
5001 msg_putchar('\n'); /* cursor below last one */
5002 if (!got_int) /* don't display if 'q'
5003 typed at "--more--"
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005004 message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 {
5006 msg_home_replace_hl(new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01005007 msg_puts(_(" (includes previously listed match)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 prev_fname = NULL;
5009 }
5010 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01005011 VIM_CLEAR(new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 already_searched = TRUE;
5013 break;
5014 }
5015 }
5016 }
5017
5018 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
5019 || (new_fname == NULL && !already_searched)))
5020 {
5021 if (did_show)
5022 msg_putchar('\n'); /* cursor below last one */
5023 else
5024 {
5025 gotocmdline(TRUE); /* cursor at status line */
Bram Moolenaar32526b32019-01-19 17:43:09 +01005026 msg_puts_title(_("--- Included files "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005028 msg_puts_title(_("not found "));
5029 msg_puts_title(_("in path ---\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 }
5031 did_show = TRUE;
5032 while (depth_displayed < depth && !got_int)
5033 {
5034 ++depth_displayed;
5035 for (i = 0; i < depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005036 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 msg_home_replace(files[depth_displayed].name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01005038 msg_puts(" -->\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 }
5040 if (!got_int) /* don't display if 'q' typed
5041 for "--more--" message */
5042 {
5043 for (i = 0; i <= depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005044 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 if (new_fname != NULL)
5046 {
5047 /* using "new_fname" is more reliable, e.g., when
5048 * 'includeexpr' is set. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005049 msg_outtrans_attr(new_fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 }
5051 else
5052 {
5053 /*
5054 * Isolate the file name.
5055 * Include the surrounding "" or <> if present.
5056 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005057 if (inc_opt != NULL
5058 && strstr((char *)inc_opt, "\\zs") != NULL)
5059 {
5060 /* pattern contains \zs, use the match */
5061 p = incl_regmatch.startp[0];
5062 i = (int)(incl_regmatch.endp[0]
5063 - incl_regmatch.startp[0]);
5064 }
5065 else
5066 {
5067 /* find the file name after the end of the match */
5068 for (p = incl_regmatch.endp[0];
5069 *p && !vim_isfilec(*p); p++)
5070 ;
5071 for (i = 0; vim_isfilec(p[i]); i++)
5072 ;
5073 }
5074
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075 if (i == 0)
5076 {
5077 /* Nothing found, use the rest of the line. */
5078 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005079 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 }
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005081 /* Avoid checking before the start of the line, can
5082 * happen if \zs appears in the regexp. */
5083 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 {
5085 if (p[-1] == '"' || p[-1] == '<')
5086 {
5087 --p;
5088 ++i;
5089 }
5090 if (p[i] == '"' || p[i] == '>')
5091 ++i;
5092 }
5093 save_char = p[i];
5094 p[i] = NUL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01005095 msg_outtrans_attr(p, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 p[i] = save_char;
5097 }
5098
5099 if (new_fname == NULL && action == ACTION_SHOW_ALL)
5100 {
5101 if (already_searched)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005102 msg_puts(_(" (Already listed)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005104 msg_puts(_(" NOT FOUND"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 }
5106 }
5107 out_flush(); /* output each line directly */
5108 }
5109
5110 if (new_fname != NULL)
5111 {
5112 /* Push the new file onto the file stack */
5113 if (depth + 1 == old_files)
5114 {
5115 bigger = (SearchedFile *)lalloc((long_u)(
5116 max_path_depth * 2 * sizeof(SearchedFile)), TRUE);
5117 if (bigger != NULL)
5118 {
5119 for (i = 0; i <= depth; i++)
5120 bigger[i] = files[i];
5121 for (i = depth + 1; i < old_files + max_path_depth; i++)
5122 {
5123 bigger[i].fp = NULL;
5124 bigger[i].name = NULL;
5125 bigger[i].lnum = 0;
5126 bigger[i].matched = FALSE;
5127 }
5128 for (i = old_files; i < max_path_depth; i++)
5129 bigger[i + max_path_depth] = files[i];
5130 old_files += max_path_depth;
5131 max_path_depth *= 2;
5132 vim_free(files);
5133 files = bigger;
5134 }
5135 }
5136 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
5137 == NULL)
5138 vim_free(new_fname);
5139 else
5140 {
5141 if (++depth == old_files)
5142 {
5143 /*
5144 * lalloc() for 'bigger' must have failed above. We
5145 * will forget one of our already visited files now.
5146 */
5147 vim_free(files[old_files].name);
5148 ++old_files;
5149 }
5150 files[depth].name = curr_fname = new_fname;
5151 files[depth].lnum = 0;
5152 files[depth].matched = FALSE;
5153#ifdef FEAT_INS_EXPAND
5154 if (action == ACTION_EXPAND)
5155 {
Bram Moolenaardf40adf2006-10-14 12:32:39 +00005156 msg_hist_off = TRUE; /* reset in msg_trunc_attr() */
Bram Moolenaar555b2802005-05-19 21:08:39 +00005157 vim_snprintf((char*)IObuff, IOSIZE,
5158 _("Scanning included file: %s"),
5159 (char *)new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01005160 msg_trunc_attr((char *)IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 }
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005162 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163#endif
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005164 if (p_verbose >= 5)
5165 {
5166 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005167 smsg(_("Searching included file %s"),
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005168 (char *)new_fname);
5169 verbose_leave();
5170 }
5171
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 }
5173 }
5174 }
5175 else
5176 {
5177 /*
5178 * Check if the line is a define (type == FIND_DEFINE)
5179 */
5180 p = line;
5181search_line:
5182 define_matched = FALSE;
5183 if (def_regmatch.regprog != NULL
5184 && vim_regexec(&def_regmatch, line, (colnr_T)0))
5185 {
5186 /*
5187 * Pattern must be first identifier after 'define', so skip
5188 * to that position before checking for match of pattern. Also
5189 * don't let it match beyond the end of this identifier.
5190 */
5191 p = def_regmatch.endp[0];
5192 while (*p && !vim_iswordc(*p))
5193 p++;
5194 define_matched = TRUE;
5195 }
5196
5197 /*
5198 * Look for a match. Don't do this if we are looking for a
5199 * define and this line didn't match define_prog above.
5200 */
5201 if (def_regmatch.regprog == NULL || define_matched)
5202 {
5203 if (define_matched
5204#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005205 || (compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206#endif
5207 )
5208 {
5209 /* compare the first "len" chars from "ptr" */
5210 startp = skipwhite(p);
5211 if (p_ic)
5212 matched = !MB_STRNICMP(startp, ptr, len);
5213 else
5214 matched = !STRNCMP(startp, ptr, len);
5215 if (matched && define_matched && whole
5216 && vim_iswordc(startp[len]))
5217 matched = FALSE;
5218 }
5219 else if (regmatch.regprog != NULL
5220 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
5221 {
5222 matched = TRUE;
5223 startp = regmatch.startp[0];
5224 /*
5225 * Check if the line is not a comment line (unless we are
5226 * looking for a define). A line starting with "# define"
5227 * is not considered to be a comment line.
5228 */
5229 if (!define_matched && skip_comments)
5230 {
5231#ifdef FEAT_COMMENTS
5232 if ((*line != '#' ||
5233 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02005234 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 matched = FALSE;
5236
5237 /*
5238 * Also check for a "/ *" or "/ /" before the match.
5239 * Skips lines like "int backwards; / * normal index
5240 * * /" when looking for "normal".
5241 * Note: Doesn't skip "/ *" in comments.
5242 */
5243 p = skipwhite(line);
5244 if (matched
5245 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
5246#endif
5247 for (p = line; *p && p < startp; ++p)
5248 {
5249 if (matched
5250 && p[0] == '/'
5251 && (p[1] == '*' || p[1] == '/'))
5252 {
5253 matched = FALSE;
5254 /* After "//" all text is comment */
5255 if (p[1] == '/')
5256 break;
5257 ++p;
5258 }
5259 else if (!matched && p[0] == '*' && p[1] == '/')
5260 {
5261 /* Can find match after "* /". */
5262 matched = TRUE;
5263 ++p;
5264 }
5265 }
5266 }
5267 }
5268 }
5269 }
5270 if (matched)
5271 {
5272#ifdef FEAT_INS_EXPAND
5273 if (action == ACTION_EXPAND)
5274 {
5275 int reuse = 0;
5276 int add_r;
5277 char_u *aux;
5278
5279 if (depth == -1 && lnum == curwin->w_cursor.lnum)
5280 break;
5281 found = TRUE;
5282 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005283 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005285 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 if (vim_iswordp(p))
5287 goto exit_matched;
5288 p = find_word_start(p);
5289 }
5290 p = find_word_end(p);
5291 i = (int)(p - aux);
5292
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005293 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005295 /* IOSIZE > compl_length, so the STRNCPY works */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00005297
5298 /* Get the next line: when "depth" < 0 from the current
5299 * buffer, otherwise from the included file. Jump to
5300 * exit_matched when past the last line. */
5301 if (depth < 0)
5302 {
5303 if (lnum >= end_lnum)
5304 goto exit_matched;
5305 line = ml_get(++lnum);
5306 }
5307 else if (vim_fgets(line = file_line,
5308 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 goto exit_matched;
5310
5311 /* we read a line, set "already" to check this "line" later
5312 * if depth >= 0 we'll increase files[depth].lnum far
5313 * bellow -- Acevedo */
5314 already = aux = p = skipwhite(line);
5315 p = find_word_start(p);
5316 p = find_word_end(p);
5317 if (p > aux)
5318 {
5319 if (*aux != ')' && IObuff[i-1] != TAB)
5320 {
5321 if (IObuff[i-1] != ' ')
5322 IObuff[i++] = ' ';
5323 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/
5324 if (p_js
5325 && (IObuff[i-2] == '.'
5326 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
5327 && (IObuff[i-2] == '?'
5328 || IObuff[i-2] == '!'))))
5329 IObuff[i++] = ' ';
5330 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005331 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332 if (p - aux >= IOSIZE - i)
5333 p = aux + IOSIZE - i - 1;
5334 STRNCPY(IObuff + i, aux, p - aux);
5335 i += (int)(p - aux);
5336 reuse |= CONT_S_IPOS;
5337 }
5338 IObuff[i] = NUL;
5339 aux = IObuff;
5340
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005341 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 goto exit_matched;
5343 }
5344
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005345 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346 curr_fname == curbuf->b_fname ? NULL : curr_fname,
5347 dir, reuse);
5348 if (add_r == OK)
5349 /* if dir was BACKWARD then honor it just once */
5350 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005351 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352 break;
5353 }
5354 else
5355#endif
5356 if (action == ACTION_SHOW_ALL)
5357 {
5358 found = TRUE;
5359 if (!did_show)
5360 gotocmdline(TRUE); /* cursor at status line */
5361 if (curr_fname != prev_fname)
5362 {
5363 if (did_show)
5364 msg_putchar('\n'); /* cursor below last one */
5365 if (!got_int) /* don't display if 'q' typed
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005366 at "--more--" message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367 msg_home_replace_hl(curr_fname);
5368 prev_fname = curr_fname;
5369 }
5370 did_show = TRUE;
5371 if (!got_int)
5372 show_pat_in_path(line, type, TRUE, action,
5373 (depth == -1) ? NULL : files[depth].fp,
5374 (depth == -1) ? &lnum : &files[depth].lnum,
5375 match_count++);
5376
5377 /* Set matched flag for this file and all the ones that
5378 * include it */
5379 for (i = 0; i <= depth; ++i)
5380 files[i].matched = TRUE;
5381 }
5382 else if (--count <= 0)
5383 {
5384 found = TRUE;
5385 if (depth == -1 && lnum == curwin->w_cursor.lnum
Bram Moolenaar4033c552017-09-16 20:54:51 +02005386#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387 && g_do_tagpreview == 0
5388#endif
5389 )
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005390 emsg(_("E387: Match is on current line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 else if (action == ACTION_SHOW)
5392 {
5393 show_pat_in_path(line, type, did_show, action,
5394 (depth == -1) ? NULL : files[depth].fp,
5395 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
5396 did_show = TRUE;
5397 }
5398 else
5399 {
5400#ifdef FEAT_GUI
5401 need_mouse_correct = TRUE;
5402#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005403#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404 /* ":psearch" uses the preview window */
5405 if (g_do_tagpreview != 0)
5406 {
5407 curwin_save = curwin;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005408 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 }
5410#endif
5411 if (action == ACTION_SPLIT)
5412 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005415 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416 }
5417 if (depth == -1)
5418 {
5419 /* match in current file */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005420#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421 if (g_do_tagpreview != 0)
5422 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005423 if (!GETFILE_SUCCESS(getfile(
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005424 curwin_save->w_buffer->b_fnum, NULL,
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005425 NULL, TRUE, lnum, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426 break; /* failed to jump to file */
5427 }
5428 else
5429#endif
5430 setpcmark();
5431 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005432 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433 }
5434 else
5435 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005436 if (!GETFILE_SUCCESS(getfile(
5437 0, files[depth].name, NULL, TRUE,
5438 files[depth].lnum, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439 break; /* failed to jump to file */
5440 /* autocommands may have changed the lnum, we don't
5441 * want that here */
5442 curwin->w_cursor.lnum = files[depth].lnum;
5443 }
5444 }
5445 if (action != ACTION_SHOW)
5446 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005447 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 curwin->w_set_curswant = TRUE;
5449 }
5450
Bram Moolenaar4033c552017-09-16 20:54:51 +02005451#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005453 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 {
5455 /* Return cursor to where we were */
5456 validate_cursor();
5457 redraw_later(VALID);
5458 win_enter(curwin_save, TRUE);
5459 }
5460#endif
5461 break;
5462 }
5463#ifdef FEAT_INS_EXPAND
5464exit_matched:
5465#endif
5466 matched = FALSE;
5467 /* look for other matches in the rest of the line if we
5468 * are not at the end of it already */
5469 if (def_regmatch.regprog == NULL
5470#ifdef FEAT_INS_EXPAND
5471 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005472 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473#endif
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005474 && *startp != NUL
Bram Moolenaar94c465c2012-07-19 17:18:26 +02005475 && *(p = startp + MB_PTR2LEN(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 goto search_line;
5477 }
5478 line_breakcheck();
5479#ifdef FEAT_INS_EXPAND
5480 if (action == ACTION_EXPAND)
Bram Moolenaar472e8592016-10-15 17:06:47 +02005481 ins_compl_check_keys(30, FALSE);
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005482 if (got_int || ins_compl_interrupted())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483#else
5484 if (got_int)
5485#endif
5486 break;
5487
5488 /*
5489 * Read the next line. When reading an included file and encountering
5490 * end-of-file, close the file and continue in the file that included
5491 * it.
5492 */
5493 while (depth >= 0 && !already
5494 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5495 {
5496 fclose(files[depth].fp);
5497 --old_files;
5498 files[old_files].name = files[depth].name;
5499 files[old_files].matched = files[depth].matched;
5500 --depth;
5501 curr_fname = (depth == -1) ? curbuf->b_fname
5502 : files[depth].name;
5503 if (depth < depth_displayed)
5504 depth_displayed = depth;
5505 }
5506 if (depth >= 0) /* we could read the line */
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005507 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 files[depth].lnum++;
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005509 /* Remove any CR and LF from the line. */
5510 i = (int)STRLEN(line);
5511 if (i > 0 && line[i - 1] == '\n')
5512 line[--i] = NUL;
5513 if (i > 0 && line[i - 1] == '\r')
5514 line[--i] = NUL;
5515 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 else if (!already)
5517 {
5518 if (++lnum > end_lnum)
5519 break;
5520 line = ml_get(lnum);
5521 }
5522 already = NULL;
5523 }
5524 /* End of big for (;;) loop. */
5525
5526 /* Close any files that are still open. */
5527 for (i = 0; i <= depth; i++)
5528 {
5529 fclose(files[i].fp);
5530 vim_free(files[i].name);
5531 }
5532 for (i = old_files; i < max_path_depth; i++)
5533 vim_free(files[i].name);
5534 vim_free(files);
5535
5536 if (type == CHECK_PATH)
5537 {
5538 if (!did_show)
5539 {
5540 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005541 msg(_("All included files were found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005543 msg(_("No included files"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544 }
5545 }
5546 else if (!found
5547#ifdef FEAT_INS_EXPAND
5548 && action != ACTION_EXPAND
5549#endif
5550 )
5551 {
5552#ifdef FEAT_INS_EXPAND
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005553 if (got_int || ins_compl_interrupted())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554#else
5555 if (got_int)
5556#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005557 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 else if (type == FIND_DEFINE)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005559 emsg(_("E388: Couldn't find definition"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005561 emsg(_("E389: Couldn't find pattern"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562 }
5563 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5564 msg_end();
5565
5566fpip_end:
5567 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02005568 vim_regfree(regmatch.regprog);
5569 vim_regfree(incl_regmatch.regprog);
5570 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571}
5572
5573 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005574show_pat_in_path(
5575 char_u *line,
5576 int type,
5577 int did_show,
5578 int action,
5579 FILE *fp,
5580 linenr_T *lnum,
5581 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582{
5583 char_u *p;
5584
5585 if (did_show)
5586 msg_putchar('\n'); /* cursor below last one */
Bram Moolenaar91170f82006-05-05 21:15:17 +00005587 else if (!msg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588 gotocmdline(TRUE); /* cursor at status line */
5589 if (got_int) /* 'q' typed at "--more--" message */
5590 return;
5591 for (;;)
5592 {
5593 p = line + STRLEN(line) - 1;
5594 if (fp != NULL)
5595 {
5596 /* We used fgets(), so get rid of newline at end */
5597 if (p >= line && *p == '\n')
5598 --p;
5599 if (p >= line && *p == '\r')
5600 --p;
5601 *(p + 1) = NUL;
5602 }
5603 if (action == ACTION_SHOW_ALL)
5604 {
5605 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */
Bram Moolenaar32526b32019-01-19 17:43:09 +01005606 msg_puts((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */
5608 /* Highlight line numbers */
Bram Moolenaar32526b32019-01-19 17:43:09 +01005609 msg_puts_attr((char *)IObuff, HL_ATTR(HLF_N));
5610 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005612 msg_prt_line(line, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613 out_flush(); /* show one line at a time */
5614
5615 /* Definition continues until line that doesn't end with '\' */
5616 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5617 break;
5618
5619 if (fp != NULL)
5620 {
5621 if (vim_fgets(line, LSIZE, fp)) /* end of file */
5622 break;
5623 ++*lnum;
5624 }
5625 else
5626 {
5627 if (++*lnum > curbuf->b_ml.ml_line_count)
5628 break;
5629 line = ml_get(*lnum);
5630 }
5631 msg_putchar('\n');
5632 }
5633}
5634#endif
5635
5636#ifdef FEAT_VIMINFO
5637 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005638read_viminfo_search_pattern(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005639{
5640 char_u *lp;
5641 int idx = -1;
5642 int magic = FALSE;
5643 int no_scs = FALSE;
5644 int off_line = FALSE;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005645 int off_end = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646 long off = 0;
5647 int setlast = FALSE;
5648#ifdef FEAT_SEARCH_EXTRA
5649 static int hlsearch_on = FALSE;
5650#endif
5651 char_u *val;
5652
5653 /*
5654 * Old line types:
5655 * "/pat", "&pat": search/subst. pat
5656 * "~/pat", "~&pat": last used search/subst. pat
5657 * New line types:
5658 * "~h", "~H": hlsearch highlighting off/on
5659 * "~<magic><smartcase><line><end><off><last><which>pat"
5660 * <magic>: 'm' off, 'M' on
5661 * <smartcase>: 's' off, 'S' on
5662 * <line>: 'L' line offset, 'l' char offset
5663 * <end>: 'E' from end, 'e' from start
5664 * <off>: decimal, offset
5665 * <last>: '~' last used pattern
5666 * <which>: '/' search pat, '&' subst. pat
5667 */
5668 lp = virp->vir_line;
5669 if (lp[0] == '~' && (lp[1] == 'm' || lp[1] == 'M')) /* new line type */
5670 {
5671 if (lp[1] == 'M') /* magic on */
5672 magic = TRUE;
5673 if (lp[2] == 's')
5674 no_scs = TRUE;
5675 if (lp[3] == 'L')
5676 off_line = TRUE;
5677 if (lp[4] == 'E')
Bram Moolenaared203462004-06-16 11:19:22 +00005678 off_end = SEARCH_END;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005679 lp += 5;
5680 off = getdigits(&lp);
5681 }
5682 if (lp[0] == '~') /* use this pattern for last-used pattern */
5683 {
5684 setlast = TRUE;
5685 lp++;
5686 }
5687 if (lp[0] == '/')
5688 idx = RE_SEARCH;
5689 else if (lp[0] == '&')
5690 idx = RE_SUBST;
5691#ifdef FEAT_SEARCH_EXTRA
5692 else if (lp[0] == 'h') /* ~h: 'hlsearch' highlighting off */
5693 hlsearch_on = FALSE;
5694 else if (lp[0] == 'H') /* ~H: 'hlsearch' highlighting on */
5695 hlsearch_on = TRUE;
5696#endif
5697 if (idx >= 0)
5698 {
5699 if (force || spats[idx].pat == NULL)
5700 {
5701 val = viminfo_readstring(virp, (int)(lp - virp->vir_line + 1),
5702 TRUE);
5703 if (val != NULL)
5704 {
5705 set_last_search_pat(val, idx, magic, setlast);
5706 vim_free(val);
5707 spats[idx].no_scs = no_scs;
5708 spats[idx].off.line = off_line;
5709 spats[idx].off.end = off_end;
5710 spats[idx].off.off = off;
5711#ifdef FEAT_SEARCH_EXTRA
5712 if (setlast)
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02005713 set_no_hlsearch(!hlsearch_on);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005714#endif
5715 }
5716 }
5717 }
5718 return viminfo_readline(virp);
5719}
5720
5721 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005722write_viminfo_search_pattern(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723{
5724 if (get_viminfo_parameter('/') != 0)
5725 {
5726#ifdef FEAT_SEARCH_EXTRA
5727 fprintf(fp, "\n# hlsearch on (H) or off (h):\n~%c",
5728 (no_hlsearch || find_viminfo_parameter('h') != NULL) ? 'h' : 'H');
5729#endif
5730 wvsp_one(fp, RE_SEARCH, "", '/');
Bram Moolenaar9b228712008-07-18 10:05:58 +00005731 wvsp_one(fp, RE_SUBST, _("Substitute "), '&');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005732 }
5733}
5734
5735 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005736wvsp_one(
5737 FILE *fp, /* file to write to */
5738 int idx, /* spats[] index */
5739 char *s, /* search pat */
5740 int sc) /* dir char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741{
5742 if (spats[idx].pat != NULL)
5743 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005744 fprintf(fp, _("\n# Last %sSearch Pattern:\n~"), s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745 /* off.dir is not stored, it's reset to forward */
5746 fprintf(fp, "%c%c%c%c%ld%s%c",
5747 spats[idx].magic ? 'M' : 'm', /* magic */
5748 spats[idx].no_scs ? 's' : 'S', /* smartcase */
5749 spats[idx].off.line ? 'L' : 'l', /* line offset */
5750 spats[idx].off.end ? 'E' : 'e', /* offset from end */
5751 spats[idx].off.off, /* offset */
5752 last_idx == idx ? "~" : "", /* last used pat */
5753 sc);
5754 viminfo_writestring(fp, spats[idx].pat);
5755 }
5756}
5757#endif /* FEAT_VIMINFO */