blob: 18f7905e585abe1dd2f830af41e1485c0df14f48 [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
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +020026static void search_stat(int dirc, pos_T *pos, int show_top_bot_msg, char_u *msgbuf, int recompute);
Bram Moolenaar071d4272004-06-13 20:20:40 +000027
Bram Moolenaar071d4272004-06-13 20:20:40 +000028/*
29 * This file contains various searching-related routines. These fall into
30 * three groups:
31 * 1. string searches (for /, ?, n, and N)
32 * 2. character searches within a single line (for f, F, t, T, etc)
33 * 3. "other" kinds of searches like the '%' command, and 'word' searches.
34 */
35
36/*
37 * String searches
38 *
39 * The string search functions are divided into two levels:
40 * lowest: searchit(); uses an pos_T for starting position and found match.
41 * Highest: do_search(); uses curwin->w_cursor; calls searchit().
42 *
43 * The last search pattern is remembered for repeating the same search.
44 * This pattern is shared between the :g, :s, ? and / commands.
45 * This is in search_regcomp().
46 *
47 * The actual string matching is done using a heavily modified version of
48 * Henry Spencer's regular expression library. See regexp.c.
49 */
50
Bram Moolenaar071d4272004-06-13 20:20:40 +000051/*
52 * Two search patterns are remembered: One for the :substitute command and
53 * one for other searches. last_idx points to the one that was used the last
54 * time.
55 */
Bram Moolenaarc3328162019-07-23 22:15:25 +020056static spat_T spats[2] =
Bram Moolenaar071d4272004-06-13 20:20:40 +000057{
58 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}}, /* last used search pat */
59 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}} /* last used substitute pat */
60};
61
62static int last_idx = 0; /* index in spats[] for RE_LAST */
63
Bram Moolenaardbd24b52015-08-11 14:26:19 +020064static char_u lastc[2] = {NUL, NUL}; /* last character searched for */
65static int lastcdir = FORWARD; /* last direction of character search */
66static int last_t_cmd = TRUE; /* last search t_cmd */
Bram Moolenaardbd24b52015-08-11 14:26:19 +020067static char_u lastc_bytes[MB_MAXBYTES + 1];
68static int lastc_bytelen = 1; /* >1 for multi-byte char */
Bram Moolenaardbd24b52015-08-11 14:26:19 +020069
Bram Moolenaar071d4272004-06-13 20:20:40 +000070/* copy of spats[], for keeping the search patterns while executing autocmds */
Bram Moolenaarc3328162019-07-23 22:15:25 +020071static spat_T saved_spats[2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000072# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +010073static int saved_spats_last_idx = 0;
74static int saved_spats_no_hlsearch = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000075# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000076
77static char_u *mr_pattern = NULL; /* pattern used by search_regcomp() */
78#ifdef FEAT_RIGHTLEFT
79static int mr_pattern_alloced = FALSE; /* mr_pattern was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +000080#endif
81
82#ifdef FEAT_FIND_ID
83/*
84 * Type used by find_pattern_in_path() to remember which included files have
85 * been searched already.
86 */
87typedef struct SearchedFile
88{
89 FILE *fp; /* File pointer */
90 char_u *name; /* Full name of file */
91 linenr_T lnum; /* Line we were up to in file */
92 int matched; /* Found a match in this file */
93} SearchedFile;
94#endif
95
96/*
97 * translate search pattern for vim_regcomp()
98 *
99 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd)
100 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command)
101 * pat_save == RE_BOTH: save pat in both patterns (:global command)
102 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL
Bram Moolenaarb8017e72007-05-10 18:59:07 +0000103 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104 * pat_use == RE_LAST: use last used pattern if "pat" is NULL
105 * options & SEARCH_HIS: put search string in history
106 * options & SEARCH_KEEP: keep previous search pattern
107 *
108 * returns FAIL if failed, OK otherwise.
109 */
110 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100111search_regcomp(
112 char_u *pat,
113 int pat_save,
114 int pat_use,
115 int options,
116 regmmatch_T *regmatch) /* return: pattern and ignore-case flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117{
118 int magic;
119 int i;
120
121 rc_did_emsg = FALSE;
122 magic = p_magic;
123
124 /*
125 * If no pattern given, use a previously defined pattern.
126 */
127 if (pat == NULL || *pat == NUL)
128 {
129 if (pat_use == RE_LAST)
130 i = last_idx;
131 else
132 i = pat_use;
133 if (spats[i].pat == NULL) /* pattern was never defined */
134 {
135 if (pat_use == RE_SUBST)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100136 emsg(_(e_nopresub));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100138 emsg(_(e_noprevre));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139 rc_did_emsg = TRUE;
140 return FAIL;
141 }
142 pat = spats[i].pat;
143 magic = spats[i].magic;
144 no_smartcase = spats[i].no_scs;
145 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146 else if (options & SEARCH_HIS) /* put new pattern in history */
147 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148
149#ifdef FEAT_RIGHTLEFT
150 if (mr_pattern_alloced)
151 {
152 vim_free(mr_pattern);
153 mr_pattern_alloced = FALSE;
154 }
155
156 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
157 {
158 char_u *rev_pattern;
159
160 rev_pattern = reverse_text(pat);
161 if (rev_pattern == NULL)
162 mr_pattern = pat; /* out of memory, keep normal pattern. */
163 else
164 {
165 mr_pattern = rev_pattern;
166 mr_pattern_alloced = TRUE;
167 }
168 }
169 else
170#endif
171 mr_pattern = pat;
172
173 /*
174 * Save the currently used pattern in the appropriate place,
175 * unless the pattern should not be remembered.
176 */
Bram Moolenaar14177b72014-01-14 15:53:51 +0100177 if (!(options & SEARCH_KEEP) && !cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178 {
179 /* search or global command */
180 if (pat_save == RE_SEARCH || pat_save == RE_BOTH)
181 save_re_pat(RE_SEARCH, pat, magic);
182 /* substitute or global command */
183 if (pat_save == RE_SUBST || pat_save == RE_BOTH)
184 save_re_pat(RE_SUBST, pat, magic);
185 }
186
187 regmatch->rmm_ic = ignorecase(pat);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +0000188 regmatch->rmm_maxcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
190 if (regmatch->regprog == NULL)
191 return FAIL;
192 return OK;
193}
194
195/*
196 * Get search pattern used by search_regcomp().
197 */
198 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100199get_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200{
201 return mr_pattern;
202}
203
Bram Moolenaarabc97732007-08-08 20:49:37 +0000204#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205/*
206 * Reverse text into allocated memory.
207 * Returns the allocated string, NULL when out of memory.
208 */
Bram Moolenaarabc97732007-08-08 20:49:37 +0000209 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100210reverse_text(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211{
212 unsigned len;
213 unsigned s_i, rev_i;
214 char_u *rev;
215
216 /*
217 * Reverse the pattern.
218 */
219 len = (unsigned)STRLEN(s);
220 rev = alloc(len + 1);
221 if (rev != NULL)
222 {
223 rev_i = len;
224 for (s_i = 0; s_i < len; ++s_i)
225 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 if (has_mbyte)
227 {
228 int mb_len;
229
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000230 mb_len = (*mb_ptr2len)(s + s_i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 rev_i -= mb_len;
232 mch_memmove(rev + rev_i, s + s_i, mb_len);
233 s_i += mb_len - 1;
234 }
235 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236 rev[--rev_i] = s[s_i];
237
238 }
239 rev[len] = NUL;
240 }
241 return rev;
242}
243#endif
244
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +0100245 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100246save_re_pat(int idx, char_u *pat, int magic)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247{
248 if (spats[idx].pat != pat)
249 {
250 vim_free(spats[idx].pat);
251 spats[idx].pat = vim_strsave(pat);
252 spats[idx].magic = magic;
253 spats[idx].no_scs = no_smartcase;
254 last_idx = idx;
255#ifdef FEAT_SEARCH_EXTRA
256 /* If 'hlsearch' set and search pat changed: need redraw. */
257 if (p_hls)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000258 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200259 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260#endif
261 }
262}
263
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264/*
265 * Save the search patterns, so they can be restored later.
266 * Used before/after executing autocommands and user functions.
267 */
268static int save_level = 0;
269
270 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100271save_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272{
273 if (save_level++ == 0)
274 {
275 saved_spats[0] = spats[0];
276 if (spats[0].pat != NULL)
277 saved_spats[0].pat = vim_strsave(spats[0].pat);
278 saved_spats[1] = spats[1];
279 if (spats[1].pat != NULL)
280 saved_spats[1].pat = vim_strsave(spats[1].pat);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100281#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100282 saved_spats_last_idx = last_idx;
283 saved_spats_no_hlsearch = no_hlsearch;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100284#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285 }
286}
287
288 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100289restore_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290{
291 if (--save_level == 0)
292 {
293 vim_free(spats[0].pat);
294 spats[0] = saved_spats[0];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100295#if defined(FEAT_EVAL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000296 set_vv_searchforward();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100297#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 vim_free(spats[1].pat);
299 spats[1] = saved_spats[1];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100300#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100301 last_idx = saved_spats_last_idx;
302 set_no_hlsearch(saved_spats_no_hlsearch);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100303#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304 }
305}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000307#if defined(EXITFREE) || defined(PROTO)
308 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100309free_search_patterns(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000310{
311 vim_free(spats[0].pat);
312 vim_free(spats[1].pat);
Bram Moolenaarf2427622009-04-22 16:45:21 +0000313
314# ifdef FEAT_RIGHTLEFT
315 if (mr_pattern_alloced)
316 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200317 vim_free(mr_pattern);
318 mr_pattern_alloced = FALSE;
319 mr_pattern = NULL;
Bram Moolenaarf2427622009-04-22 16:45:21 +0000320 }
321# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000322}
323#endif
324
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100325#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100326// copy of spats[RE_SEARCH], for keeping the search patterns while incremental
327// searching
Bram Moolenaarc3328162019-07-23 22:15:25 +0200328static spat_T saved_last_search_spat;
Bram Moolenaared8bc782018-12-01 21:08:21 +0100329static int did_save_last_search_spat = 0;
330static int saved_last_idx = 0;
331static int saved_no_hlsearch = 0;
332
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100333/*
334 * Save and restore the search pattern for incremental highlight search
335 * feature.
336 *
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100337 * It's similar to but different from save_search_patterns() and
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100338 * restore_search_patterns(), because the search pattern must be restored when
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100339 * canceling incremental searching even if it's called inside user functions.
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100340 */
341 void
342save_last_search_pattern(void)
343{
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100344 if (did_save_last_search_spat != 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100345 iemsg("did_save_last_search_spat is not zero");
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100346 else
347 ++did_save_last_search_spat;
348
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100349 saved_last_search_spat = spats[RE_SEARCH];
350 if (spats[RE_SEARCH].pat != NULL)
351 saved_last_search_spat.pat = vim_strsave(spats[RE_SEARCH].pat);
352 saved_last_idx = last_idx;
353 saved_no_hlsearch = no_hlsearch;
354}
355
356 void
357restore_last_search_pattern(void)
358{
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100359 if (did_save_last_search_spat != 1)
360 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100361 iemsg("did_save_last_search_spat is not one");
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100362 return;
363 }
364 --did_save_last_search_spat;
365
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100366 vim_free(spats[RE_SEARCH].pat);
367 spats[RE_SEARCH] = saved_last_search_spat;
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100368 saved_last_search_spat.pat = NULL;
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100369# if defined(FEAT_EVAL)
370 set_vv_searchforward();
371# endif
372 last_idx = saved_last_idx;
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200373 set_no_hlsearch(saved_no_hlsearch);
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100374}
Bram Moolenaard0480092017-11-16 22:20:39 +0100375
376 char_u *
377last_search_pattern(void)
378{
379 return spats[RE_SEARCH].pat;
380}
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100381#endif
382
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383/*
384 * Return TRUE when case should be ignored for search pattern "pat".
385 * Uses the 'ignorecase' and 'smartcase' options.
386 */
387 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100388ignorecase(char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389{
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200390 return ignorecase_opt(pat, p_ic, p_scs);
391}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200393/*
394 * As ignorecase() put pass the "ic" and "scs" flags.
395 */
396 int
397ignorecase_opt(char_u *pat, int ic_in, int scs)
398{
399 int ic = ic_in;
400
401 if (ic && !no_smartcase && scs
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200402 && !(ctrl_x_mode_not_default() && curbuf->b_p_inf))
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200403 ic = !pat_has_uppercase(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404 no_smartcase = FALSE;
405
406 return ic;
407}
408
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200409/*
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200410 * Return TRUE if pattern "pat" has an uppercase character.
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200411 */
412 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100413pat_has_uppercase(char_u *pat)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200414{
415 char_u *p = pat;
416
417 while (*p != NUL)
418 {
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200419 int l;
420
421 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
422 {
423 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
424 return TRUE;
425 p += l;
426 }
Bram Moolenaar264b74f2019-01-24 17:18:42 +0100427 else if (*p == '\\')
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200428 {
429 if (p[1] == '_' && p[2] != NUL) /* skip "\_X" */
430 p += 3;
431 else if (p[1] == '%' && p[2] != NUL) /* skip "\%X" */
432 p += 3;
433 else if (p[1] != NUL) /* skip "\X" */
434 p += 2;
435 else
436 p += 1;
437 }
438 else if (MB_ISUPPER(*p))
439 return TRUE;
440 else
441 ++p;
442 }
443 return FALSE;
444}
445
Bram Moolenaar113e1072019-01-20 15:30:40 +0100446#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100448last_csearch(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200449{
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200450 return lastc_bytes;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200451}
452
453 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100454last_csearch_forward(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200455{
456 return lastcdir == FORWARD;
457}
458
459 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100460last_csearch_until(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200461{
462 return last_t_cmd == TRUE;
463}
464
465 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100466set_last_csearch(int c, char_u *s UNUSED, int len UNUSED)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200467{
468 *lastc = c;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200469 lastc_bytelen = len;
470 if (len)
471 memcpy(lastc_bytes, s, len);
472 else
473 vim_memset(lastc_bytes, 0, sizeof(lastc_bytes));
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200474}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100475#endif
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200476
477 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100478set_csearch_direction(int cdir)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200479{
480 lastcdir = cdir;
481}
482
483 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100484set_csearch_until(int t_cmd)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200485{
486 last_t_cmd = t_cmd;
487}
488
489 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100490last_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491{
492 return spats[last_idx].pat;
493}
494
495/*
496 * Reset search direction to forward. For "gd" and "gD" commands.
497 */
498 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100499reset_search_dir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500{
501 spats[0].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000502#if defined(FEAT_EVAL)
503 set_vv_searchforward();
504#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505}
506
507#if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
508/*
509 * Set the last search pattern. For ":let @/ =" and viminfo.
510 * Also set the saved search pattern, so that this works in an autocommand.
511 */
512 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100513set_last_search_pat(
514 char_u *s,
515 int idx,
516 int magic,
517 int setlast)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518{
519 vim_free(spats[idx].pat);
520 /* An empty string means that nothing should be matched. */
521 if (*s == NUL)
522 spats[idx].pat = NULL;
523 else
524 spats[idx].pat = vim_strsave(s);
525 spats[idx].magic = magic;
526 spats[idx].no_scs = FALSE;
527 spats[idx].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 spats[idx].off.line = FALSE;
532 spats[idx].off.end = FALSE;
533 spats[idx].off.off = 0;
534 if (setlast)
535 last_idx = idx;
536 if (save_level)
537 {
538 vim_free(saved_spats[idx].pat);
539 saved_spats[idx] = spats[0];
540 if (spats[idx].pat == NULL)
541 saved_spats[idx].pat = NULL;
542 else
543 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
Bram Moolenaar975880b2019-03-03 14:42:11 +0100544# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100545 saved_spats_last_idx = last_idx;
Bram Moolenaar975880b2019-03-03 14:42:11 +0100546# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547 }
548# ifdef FEAT_SEARCH_EXTRA
549 /* If 'hlsearch' set and search pat changed: need redraw. */
550 if (p_hls && idx == last_idx && !no_hlsearch)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000551 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552# endif
553}
554#endif
555
556#ifdef FEAT_SEARCH_EXTRA
557/*
558 * Get a regexp program for the last used search pattern.
559 * This is used for highlighting all matches in a window.
560 * Values returned in regmatch->regprog and regmatch->rmm_ic.
561 */
562 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100563last_pat_prog(regmmatch_T *regmatch)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564{
565 if (spats[last_idx].pat == NULL)
566 {
567 regmatch->regprog = NULL;
568 return;
569 }
570 ++emsg_off; /* So it doesn't beep if bad expr */
571 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
572 --emsg_off;
573}
574#endif
575
576/*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100577 * Lowest level search function.
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100578 * Search for 'count'th occurrence of pattern "pat" in direction "dir".
579 * Start at position "pos" and return the found position in "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 *
581 * if (options & SEARCH_MSG) == 0 don't give any messages
582 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
583 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
584 * if (options & SEARCH_HIS) put search pattern in history
585 * if (options & SEARCH_END) return position at end of match
586 * if (options & SEARCH_START) accept match at pos itself
587 * if (options & SEARCH_KEEP) keep previous search pattern
588 * if (options & SEARCH_FOLD) match only once in a closed fold
589 * if (options & SEARCH_PEEK) check for typed char, cancel search
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100590 * if (options & SEARCH_COL) start at pos->col instead of zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 *
592 * Return FAIL (zero) for failure, non-zero for success.
593 * When FEAT_EVAL is defined, returns the index of the first matching
594 * subpattern plus one; one if there was none.
595 */
596 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100597searchit(
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200598 win_T *win, // window to search in; can be NULL for a
599 // buffer without a window!
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100600 buf_T *buf,
601 pos_T *pos,
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100602 pos_T *end_pos, // set to end of the match, unless NULL
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100603 int dir,
604 char_u *pat,
605 long count,
606 int options,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200607 int pat_use, // which pattern to use when "pat" is empty
608 searchit_arg_T *extra_arg) // optional extra arguments, can be NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609{
610 int found;
611 linenr_T lnum; /* no init to shut up Apollo cc */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100612 colnr_T col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613 regmmatch_T regmatch;
614 char_u *ptr;
615 colnr_T matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 lpos_T endpos;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000617 lpos_T matchpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618 int loop;
619 pos_T start_pos;
620 int at_first_line;
621 int extra_col;
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200622 int start_char_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623 int match_ok;
624 long nmatched;
625 int submatch = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100626 int first_match = TRUE;
Bram Moolenaar280f1262006-01-30 00:14:18 +0000627 int save_called_emsg = called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628#ifdef FEAT_SEARCH_EXTRA
629 int break_loop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630#endif
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200631 linenr_T stop_lnum = 0; // stop after this line number when != 0
632#ifdef FEAT_RELTIME
633 proftime_T *tm = NULL; // timeout limit or NULL
634 int *timed_out = NULL; // set when timed out or NULL
635#endif
636
637 if (extra_arg != NULL)
638 {
639 stop_lnum = extra_arg->sa_stop_lnum;
640#ifdef FEAT_RELTIME
641 tm = extra_arg->sa_tm;
642 timed_out = &extra_arg->sa_timed_out;
643#endif
644 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645
646 if (search_regcomp(pat, RE_SEARCH, pat_use,
647 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
648 {
649 if ((options & SEARCH_MSG) && !rc_did_emsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100650 semsg(_("E383: Invalid search string: %s"), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651 return FAIL;
652 }
653
Bram Moolenaar280f1262006-01-30 00:14:18 +0000654 /*
655 * find the string
656 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 called_emsg = FALSE;
658 do /* loop for count */
659 {
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100660 /* When not accepting a match at the start position set "extra_col" to
661 * a non-zero value. Don't do that when starting at MAXCOL, since
662 * MAXCOL + 1 is zero. */
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200663 if (pos->col == MAXCOL)
664 start_char_len = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100665 /* Watch out for the "col" being MAXCOL - 2, used in a closed fold. */
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200666 else if (has_mbyte
667 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
668 && pos->col < MAXCOL - 2)
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100669 {
Bram Moolenaar82846a02018-02-09 18:09:54 +0100670 ptr = ml_get_buf(buf, pos->lnum, FALSE);
Bram Moolenaar8846ac52018-02-09 19:24:01 +0100671 if ((int)STRLEN(ptr) <= pos->col)
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200672 start_char_len = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100673 else
Bram Moolenaar82846a02018-02-09 18:09:54 +0100674 start_char_len = (*mb_ptr2len)(ptr + pos->col);
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100675 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100676 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200677 start_char_len = 1;
678 if (dir == FORWARD)
679 {
680 if (options & SEARCH_START)
681 extra_col = 0;
682 else
683 extra_col = start_char_len;
684 }
685 else
686 {
687 if (options & SEARCH_START)
688 extra_col = start_char_len;
689 else
690 extra_col = 0;
691 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100692
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 start_pos = *pos; /* remember start pos for detecting no match */
694 found = 0; /* default: not found */
695 at_first_line = TRUE; /* default: start in first line */
696 if (pos->lnum == 0) /* correct lnum for when starting in line 0 */
697 {
698 pos->lnum = 1;
699 pos->col = 0;
700 at_first_line = FALSE; /* not in first line now */
701 }
702
703 /*
704 * Start searching in current line, unless searching backwards and
705 * we're in column 0.
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000706 * If we are searching backwards, in column 0, and not including the
707 * current position, gain some efficiency by skipping back a line.
708 * Otherwise begin the search in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 */
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000710 if (dir == BACKWARD && start_pos.col == 0
711 && (options & SEARCH_START) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 {
713 lnum = pos->lnum - 1;
714 at_first_line = FALSE;
715 }
716 else
717 lnum = pos->lnum;
718
719 for (loop = 0; loop <= 1; ++loop) /* loop twice if 'wrapscan' set */
720 {
721 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
722 lnum += dir, at_first_line = FALSE)
723 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000724 /* Stop after checking "stop_lnum", if it's set. */
725 if (stop_lnum != 0 && (dir == FORWARD
726 ? lnum > stop_lnum : lnum < stop_lnum))
727 break;
Bram Moolenaar76929292008-01-06 19:07:36 +0000728#ifdef FEAT_RELTIME
729 /* Stop after passing the "tm" time limit. */
730 if (tm != NULL && profile_passed_limit(tm))
731 break;
732#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000733
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000735 * Look for a match somewhere in line "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100737 col = at_first_line && (options & SEARCH_COL) ? pos->col
738 : (colnr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 nmatched = vim_regexec_multi(&regmatch, win, buf,
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100740 lnum, col,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000741#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200742 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000743#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200744 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000745#endif
746 );
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 /* Abort searching on an error (e.g., out of stack). */
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200748 if (called_emsg
749#ifdef FEAT_RELTIME
750 || (timed_out != NULL && *timed_out)
751#endif
752 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 break;
754 if (nmatched > 0)
755 {
756 /* match may actually be in another line when using \zs */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000757 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 endpos = regmatch.endpos[0];
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000759#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 submatch = first_submatch(&regmatch);
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000761#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000762 /* "lnum" may be past end of buffer for "\n\zs". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000763 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
764 ptr = (char_u *)"";
765 else
766 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767
768 /*
769 * Forward search in the first line: match should be after
770 * the start position. If not, continue at the end of the
771 * match (this is vi compatible) or on the next char.
772 */
773 if (dir == FORWARD && at_first_line)
774 {
775 match_ok = TRUE;
776 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000777 * When the match starts in a next line it's certainly
778 * past the start position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 * When match lands on a NUL the cursor will be put
780 * one back afterwards, compare with that position,
781 * otherwise "/$" will get stuck on end of line.
782 */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000783 while (matchpos.lnum == 0
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100784 && ((options & SEARCH_END) && first_match
Bram Moolenaar677ee682005-01-27 14:41:15 +0000785 ? (nmatched == 1
786 && (int)endpos.col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 < (int)start_pos.col + extra_col)
Bram Moolenaar677ee682005-01-27 14:41:15 +0000788 : ((int)matchpos.col
789 - (ptr[matchpos.col] == NUL)
790 < (int)start_pos.col + extra_col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 {
792 /*
793 * If vi-compatible searching, continue at the end
794 * of the match, otherwise continue one position
795 * forward.
796 */
797 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
798 {
799 if (nmatched > 1)
800 {
801 /* end is in next line, thus no match in
802 * this line */
803 match_ok = FALSE;
804 break;
805 }
806 matchcol = endpos.col;
807 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000808 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809 && ptr[matchcol] != NUL)
810 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 if (has_mbyte)
812 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000813 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 ++matchcol;
816 }
817 }
818 else
819 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000820 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 if (ptr[matchcol] != NUL)
822 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000824 matchcol += (*mb_ptr2len)(ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 + matchcol);
826 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 ++matchcol;
828 }
829 }
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200830 if (matchcol == 0 && (options & SEARCH_START))
Bram Moolenaardb333a52013-03-19 15:27:48 +0100831 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 if (ptr[matchcol] == NUL
833 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000834 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000835 matchcol,
836#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200837 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000838#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200839 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000840#endif
841 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 {
843 match_ok = FALSE;
844 break;
845 }
Bram Moolenaar677ee682005-01-27 14:41:15 +0000846 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 endpos = regmatch.endpos[0];
848# ifdef FEAT_EVAL
849 submatch = first_submatch(&regmatch);
850# endif
851
852 /* Need to get the line pointer again, a
853 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000854 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 }
856 if (!match_ok)
857 continue;
858 }
859 if (dir == BACKWARD)
860 {
861 /*
862 * Now, if there are multiple matches on this line,
863 * we have to get the last one. Or the last one before
864 * the cursor, if we're on that line.
865 * When putting the new cursor at the end, compare
866 * relative to the end of the match.
867 */
868 match_ok = FALSE;
869 for (;;)
870 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000871 /* Remember a position that is before the start
872 * position, we use it if it's the last match in
873 * the line. Always accept a position after
874 * wrapping around. */
875 if (loop
876 || ((options & SEARCH_END)
877 ? (lnum + regmatch.endpos[0].lnum
878 < start_pos.lnum
879 || (lnum + regmatch.endpos[0].lnum
880 == start_pos.lnum
881 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200882 < (int)start_pos.col
883 + extra_col))
Bram Moolenaar677ee682005-01-27 14:41:15 +0000884 : (lnum + regmatch.startpos[0].lnum
885 < start_pos.lnum
886 || (lnum + regmatch.startpos[0].lnum
887 == start_pos.lnum
888 && (int)regmatch.startpos[0].col
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200889 < (int)start_pos.col
890 + extra_col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000893 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 endpos = regmatch.endpos[0];
895# ifdef FEAT_EVAL
896 submatch = first_submatch(&regmatch);
897# endif
898 }
899 else
900 break;
901
902 /*
903 * We found a valid match, now check if there is
904 * another one after it.
905 * If vi-compatible searching, continue at the end
906 * of the match, otherwise continue one position
907 * forward.
908 */
909 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
910 {
911 if (nmatched > 1)
912 break;
913 matchcol = endpos.col;
914 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000915 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 && ptr[matchcol] != NUL)
917 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918 if (has_mbyte)
919 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000920 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 ++matchcol;
923 }
924 }
925 else
926 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000927 /* Stop when the match is in a next line. */
928 if (matchpos.lnum > 0)
929 break;
930 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 if (ptr[matchcol] != NUL)
932 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 if (has_mbyte)
934 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000935 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 ++matchcol;
938 }
939 }
940 if (ptr[matchcol] == NUL
941 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000942 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000943 matchcol,
944#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200945 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000946#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200947 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000948#endif
949 )) == 0)
Bram Moolenaar9d322762018-02-09 16:04:25 +0100950 {
951#ifdef FEAT_RELTIME
952 /* If the search timed out, we did find a match
953 * but it might be the wrong one, so that's not
954 * OK. */
955 if (timed_out != NULL && *timed_out)
956 match_ok = FALSE;
957#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 break;
Bram Moolenaar9d322762018-02-09 16:04:25 +0100959 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960
961 /* Need to get the line pointer again, a
962 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000963 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 }
965
966 /*
967 * If there is only a match after the cursor, skip
968 * this match.
969 */
970 if (!match_ok)
971 continue;
972 }
973
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000974 /* With the SEARCH_END option move to the last character
975 * of the match. Don't do it for an empty match, end
976 * should be same as start then. */
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200977 if ((options & SEARCH_END) && !(options & SEARCH_NOOF)
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000978 && !(matchpos.lnum == endpos.lnum
979 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000981 /* For a match in the first column, set the position
982 * on the NUL in the previous line. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000983 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000984 pos->col = endpos.col;
985 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000986 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000987 if (pos->lnum > 1) /* just in case */
988 {
989 --pos->lnum;
990 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
991 pos->lnum, FALSE));
992 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000993 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000994 else
995 {
996 --pos->col;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000997 if (has_mbyte
998 && pos->lnum <= buf->b_ml.ml_line_count)
999 {
1000 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1001 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
1002 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001003 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001004 if (end_pos != NULL)
1005 {
1006 end_pos->lnum = lnum + matchpos.lnum;
1007 end_pos->col = matchpos.col;
1008 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 }
1010 else
1011 {
Bram Moolenaar677ee682005-01-27 14:41:15 +00001012 pos->lnum = lnum + matchpos.lnum;
1013 pos->col = matchpos.col;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001014 if (end_pos != NULL)
1015 {
1016 end_pos->lnum = lnum + endpos.lnum;
1017 end_pos->col = endpos.col;
1018 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 pos->coladd = 0;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001021 if (end_pos != NULL)
1022 end_pos->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 found = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +01001024 first_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025
1026 /* Set variables used for 'incsearch' highlighting. */
Bram Moolenaar677ee682005-01-27 14:41:15 +00001027 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 search_match_endcol = endpos.col;
1029 break;
1030 }
1031 line_breakcheck(); /* stop if ctrl-C typed */
1032 if (got_int)
1033 break;
1034
1035#ifdef FEAT_SEARCH_EXTRA
1036 /* Cancel searching if a character was typed. Used for
1037 * 'incsearch'. Don't check too often, that would slowdown
1038 * searching too much. */
1039 if ((options & SEARCH_PEEK)
1040 && ((lnum - pos->lnum) & 0x3f) == 0
1041 && char_avail())
1042 {
1043 break_loop = TRUE;
1044 break;
1045 }
1046#endif
1047
1048 if (loop && lnum == start_pos.lnum)
1049 break; /* if second loop, stop where started */
1050 }
1051 at_first_line = FALSE;
1052
1053 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001054 * Stop the search if wrapscan isn't set, "stop_lnum" is
1055 * specified, after an interrupt, after a match and after looping
1056 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001058 if (!p_ws || stop_lnum != 0 || got_int || called_emsg
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001059#ifdef FEAT_RELTIME
1060 || (timed_out != NULL && *timed_out)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001061#endif
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001062#ifdef FEAT_SEARCH_EXTRA
1063 || break_loop
1064#endif
1065 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 break;
1067
1068 /*
1069 * If 'wrapscan' is set we continue at the other end of the file.
1070 * If 'shortmess' does not contain 's', we give a message.
1071 * This message is also remembered in keep_msg for when the screen
1072 * is redrawn. The keep_msg is cleared whenever another message is
1073 * written.
1074 */
1075 if (dir == BACKWARD) /* start second loop at the other end */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00001079 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
1080 give_warning((char_u *)_(dir == BACKWARD
1081 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001082 if (extra_arg != NULL)
1083 extra_arg->sa_wrapped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00001085 if (got_int || called_emsg
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001086#ifdef FEAT_RELTIME
1087 || (timed_out != NULL && *timed_out)
1088#endif
Bram Moolenaar78a15312009-05-15 19:33:18 +00001089#ifdef FEAT_SEARCH_EXTRA
1090 || break_loop
1091#endif
1092 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 break;
1094 }
1095 while (--count > 0 && found); /* stop after count matches or no match */
1096
Bram Moolenaar473de612013-06-08 18:19:48 +02001097 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098
Bram Moolenaar280f1262006-01-30 00:14:18 +00001099 called_emsg |= save_called_emsg;
1100
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 if (!found) /* did not find it */
1102 {
1103 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001104 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 else if ((options & SEARCH_MSG) == SEARCH_MSG)
1106 {
1107 if (p_ws)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001108 semsg(_(e_patnotf2), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 else if (lnum == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001110 semsg(_("E384: search hit TOP without match for: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111 mr_pattern);
1112 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001113 semsg(_("E385: search hit BOTTOM without match for: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 mr_pattern);
1115 }
1116 return FAIL;
1117 }
1118
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001119 /* A pattern like "\n\zs" may go past the last line. */
1120 if (pos->lnum > buf->b_ml.ml_line_count)
1121 {
1122 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001123 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001124 if (pos->col > 0)
1125 --pos->col;
1126 }
1127
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 return submatch + 1;
1129}
1130
1131#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001132 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001133set_search_direction(int cdir)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001134{
1135 spats[0].off.dir = cdir;
1136}
1137
1138 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001139set_vv_searchforward(void)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001140{
1141 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1142}
1143
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144/*
1145 * Return the number of the first subpat that matched.
Bram Moolenaarad4d8a12015-12-28 19:20:36 +01001146 * Return zero if none of them matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 */
1148 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001149first_submatch(regmmatch_T *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150{
1151 int submatch;
1152
1153 for (submatch = 1; ; ++submatch)
1154 {
1155 if (rp->startpos[submatch].lnum >= 0)
1156 break;
1157 if (submatch == 9)
1158 {
1159 submatch = 0;
1160 break;
1161 }
1162 }
1163 return submatch;
1164}
1165#endif
1166
1167/*
1168 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001169 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 * If 'dirc' is 0: use previous dir.
1171 * If 'pat' is NULL or empty : use previous string.
1172 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1173 * If 'options & SEARCH_ECHO': echo the search command and handle options
1174 * If 'options & SEARCH_MSG' : may give error message
1175 * If 'options & SEARCH_OPT' : interpret optional flags
1176 * If 'options & SEARCH_HIS' : put search pattern in history
1177 * If 'options & SEARCH_NOOF': don't add offset to position
1178 * If 'options & SEARCH_MARK': set previous context mark
1179 * If 'options & SEARCH_KEEP': keep previous search pattern
1180 * If 'options & SEARCH_START': accept match at curpos itself
1181 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1182 *
1183 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1184 * makes the movement linewise without moving the match position.
1185 *
Bram Moolenaarb6c27352015-03-05 19:57:49 +01001186 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 */
1188 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001189do_search(
1190 oparg_T *oap, /* can be NULL */
1191 int dirc, /* '/' or '?' */
1192 char_u *pat,
1193 long count,
1194 int options,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001195 searchit_arg_T *sia) // optional arguments or NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196{
1197 pos_T pos; /* position of the last match */
1198 char_u *searchstr;
Bram Moolenaarc3328162019-07-23 22:15:25 +02001199 soffset_T old_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 int retval; /* Return value */
1201 char_u *p;
1202 long c;
1203 char_u *dircp;
1204 char_u *strcopy = NULL;
1205 char_u *ps;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001206 char_u *msgbuf = NULL;
1207 size_t len;
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001208 int has_offset = FALSE;
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02001209#define SEARCH_STAT_BUF_LEN 12
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210
1211 /*
1212 * A line offset is not remembered, this is vi compatible.
1213 */
1214 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1215 {
1216 spats[0].off.line = FALSE;
1217 spats[0].off.off = 0;
1218 }
1219
1220 /*
1221 * Save the values for when (options & SEARCH_KEEP) is used.
1222 * (there is no "if ()" around this because gcc wants them initialized)
1223 */
1224 old_off = spats[0].off;
1225
1226 pos = curwin->w_cursor; /* start searching at the cursor position */
1227
1228 /*
1229 * Find out the direction of the search.
1230 */
1231 if (dirc == 0)
1232 dirc = spats[0].off.dir;
1233 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001234 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001236#if defined(FEAT_EVAL)
1237 set_vv_searchforward();
1238#endif
1239 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 if (options & SEARCH_REV)
1241 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001242#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 /* There is a bug in the Visual C++ 2.2 compiler which means that
1244 * dirc always ends up being '/' */
1245 dirc = (dirc == '/') ? '?' : '/';
1246#else
1247 if (dirc == '/')
1248 dirc = '?';
1249 else
1250 dirc = '/';
1251#endif
1252 }
1253
1254#ifdef FEAT_FOLDING
1255 /* If the cursor is in a closed fold, don't find another match in the same
1256 * fold. */
1257 if (dirc == '/')
1258 {
1259 if (hasFolding(pos.lnum, NULL, &pos.lnum))
1260 pos.col = MAXCOL - 2; /* avoid overflow when adding 1 */
1261 }
1262 else
1263 {
1264 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1265 pos.col = 0;
1266 }
1267#endif
1268
1269#ifdef FEAT_SEARCH_EXTRA
1270 /*
1271 * Turn 'hlsearch' highlighting back on.
1272 */
1273 if (no_hlsearch && !(options & SEARCH_KEEP))
1274 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001275 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02001276 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 }
1278#endif
1279
1280 /*
1281 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1282 */
1283 for (;;)
1284 {
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001285 int show_top_bot_msg = FALSE;
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02001286
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 searchstr = pat;
1288 dircp = NULL;
1289 /* use previous pattern */
1290 if (pat == NULL || *pat == NUL || *pat == dirc)
1291 {
1292 if (spats[RE_SEARCH].pat == NULL) /* no previous pattern */
1293 {
Bram Moolenaarea683da2016-09-09 21:41:34 +02001294 searchstr = spats[RE_SUBST].pat;
1295 if (searchstr == NULL)
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001296 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001297 emsg(_(e_noprevre));
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001298 retval = 0;
1299 goto end_do_search;
1300 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001302 else
1303 {
1304 /* make search_regcomp() use spats[RE_SEARCH].pat */
1305 searchstr = (char_u *)"";
1306 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 }
1308
1309 if (pat != NULL && *pat != NUL) /* look for (new) offset */
1310 {
1311 /*
1312 * Find end of regular expression.
1313 * If there is a matching '/' or '?', toss it.
1314 */
1315 ps = strcopy;
1316 p = skip_regexp(pat, dirc, (int)p_magic, &strcopy);
1317 if (strcopy != ps)
1318 {
1319 /* made a copy of "pat" to change "\?" to "?" */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001320 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 pat = strcopy;
1322 searchstr = strcopy;
1323 }
1324 if (*p == dirc)
1325 {
1326 dircp = p; /* remember where we put the NUL */
1327 *p++ = NUL;
1328 }
1329 spats[0].off.line = FALSE;
1330 spats[0].off.end = FALSE;
1331 spats[0].off.off = 0;
1332 /*
1333 * Check for a line offset or a character offset.
1334 * For get_address (echo off) we don't check for a character
1335 * offset, because it is meaningless and the 's' could be a
1336 * substitute command.
1337 */
1338 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1339 spats[0].off.line = TRUE;
1340 else if ((options & SEARCH_OPT) &&
1341 (*p == 'e' || *p == 's' || *p == 'b'))
1342 {
1343 if (*p == 'e') /* end */
1344 spats[0].off.end = SEARCH_END;
1345 ++p;
1346 }
1347 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') /* got an offset */
1348 {
1349 /* 'nr' or '+nr' or '-nr' */
1350 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1351 spats[0].off.off = atol((char *)p);
1352 else if (*p == '-') /* single '-' */
1353 spats[0].off.off = -1;
1354 else /* single '+' */
1355 spats[0].off.off = 1;
1356 ++p;
1357 while (VIM_ISDIGIT(*p)) /* skip number */
1358 ++p;
1359 }
1360
1361 /* compute length of search command for get_address() */
1362 searchcmdlen += (int)(p - pat);
1363
1364 pat = p; /* put pat after search command */
1365 }
1366
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001367 if ((options & SEARCH_ECHO) && messaging() &&
1368 !msg_silent &&
1369 (!cmd_silent || !shortmess(SHM_SEARCHCOUNT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 char_u *trunc;
Bram Moolenaar984f0312019-05-24 13:11:47 +02001372 char_u off_buf[40];
Bram Moolenaard33a7642019-05-24 17:56:14 +02001373 size_t off_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001375 // Compute msg_row early.
1376 msg_start();
1377
Bram Moolenaar984f0312019-05-24 13:11:47 +02001378 // Get the offset, so we know how long it is.
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001379 if (!cmd_silent &&
1380 (spats[0].off.line || spats[0].off.end || spats[0].off.off))
Bram Moolenaar984f0312019-05-24 13:11:47 +02001381 {
1382 p = off_buf;
1383 *p++ = dirc;
1384 if (spats[0].off.end)
1385 *p++ = 'e';
1386 else if (!spats[0].off.line)
1387 *p++ = 's';
1388 if (spats[0].off.off > 0 || spats[0].off.line)
1389 *p++ = '+';
1390 *p = NUL;
1391 if (spats[0].off.off != 0 || spats[0].off.line)
1392 sprintf((char *)p, "%ld", spats[0].off.off);
1393 off_len = STRLEN(off_buf);
1394 }
1395
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 if (*searchstr == NUL)
Bram Moolenaar2fb8f682018-12-01 13:14:45 +01001397 p = spats[0].pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 else
1399 p = searchstr;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001400
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001401 if (!shortmess(SHM_SEARCHCOUNT) || cmd_silent)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001402 {
1403 // Reserve enough space for the search pattern + offset +
Bram Moolenaar984f0312019-05-24 13:11:47 +02001404 // search stat. Use all the space available, so that the
1405 // search state is right aligned. If there is not enough space
1406 // msg_strtrunc() will shorten in the middle.
Bram Moolenaar19e8ac72019-09-03 22:23:38 +02001407 if (msg_scrolled != 0 && !cmd_silent)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001408 // Use all the columns.
1409 len = (int)(Rows - msg_row) * Columns - 1;
1410 else
1411 // Use up to 'showcmd' column.
1412 len = (int)(Rows - msg_row - 1) * Columns + sc_col - 1;
Bram Moolenaar984f0312019-05-24 13:11:47 +02001413 if (len < STRLEN(p) + off_len + SEARCH_STAT_BUF_LEN + 3)
1414 len = STRLEN(p) + off_len + SEARCH_STAT_BUF_LEN + 3;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001415 }
1416 else
1417 // Reserve enough space for the search pattern + offset.
Bram Moolenaar984f0312019-05-24 13:11:47 +02001418 len = STRLEN(p) + off_len + 3;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001419
Bram Moolenaar51e14382019-05-25 20:21:28 +02001420 msgbuf = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 if (msgbuf != NULL)
1422 {
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001423 vim_memset(msgbuf, ' ', len);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001424 msgbuf[len - 1] = NUL;
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001425 // do not fill the msgbuf buffer, if cmd_silent is set, leave it
1426 // empty for the search_stat feature.
1427 if (!cmd_silent)
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001428 {
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001429 msgbuf[0] = dirc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001431 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1432 {
1433 // Use a space to draw the composing char on.
1434 msgbuf[1] = ' ';
1435 mch_memmove(msgbuf + 2, p, STRLEN(p));
1436 }
1437 else
1438 mch_memmove(msgbuf + 1, p, STRLEN(p));
1439 if (off_len > 0)
1440 mch_memmove(msgbuf + STRLEN(p) + 1, off_buf, off_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001442 trunc = msg_strtrunc(msgbuf, TRUE);
1443 if (trunc != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 {
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001445 vim_free(msgbuf);
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001446 msgbuf = trunc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001449 #ifdef FEAT_RIGHTLEFT
1450 // The search pattern could be shown on the right in rightleft
1451 // mode, but the 'ruler' and 'showcmd' area use it too, thus
1452 // it would be blanked out again very soon. Show it on the
1453 // left, but do reverse the text.
1454 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1455 {
1456 char_u *r;
1457 size_t pat_len;
1458
1459 r = reverse_text(msgbuf);
1460 if (r != NULL)
1461 {
1462 vim_free(msgbuf);
1463 msgbuf = r;
1464 // move reversed text to beginning of buffer
1465 while (*r != NUL && *r == ' ')
1466 r++;
1467 pat_len = msgbuf + STRLEN(msgbuf) - r;
1468 mch_memmove(msgbuf, r, pat_len);
1469 // overwrite old text
1470 if ((size_t)(r - msgbuf) >= pat_len)
1471 vim_memset(r, ' ', pat_len);
1472 else
1473 vim_memset(msgbuf + pat_len, ' ', r - msgbuf);
1474 }
1475 }
1476 #endif
1477 msg_outtrans(msgbuf);
1478 msg_clr_eos();
1479 msg_check();
1480
1481 gotocmdline(FALSE);
1482 out_flush();
1483 msg_nowait = TRUE; // don't wait for this message
1484 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 }
1486 }
1487
1488 /*
1489 * If there is a character offset, subtract it from the current
1490 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001491 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 * This is not done for a line offset, because then we would not be vi
1493 * compatible.
1494 */
Bram Moolenaared203462004-06-16 11:19:22 +00001495 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 {
1497 if (spats[0].off.off > 0)
1498 {
1499 for (c = spats[0].off.off; c; --c)
1500 if (decl(&pos) == -1)
1501 break;
1502 if (c) /* at start of buffer */
1503 {
1504 pos.lnum = 0; /* allow lnum == 0 here */
1505 pos.col = MAXCOL;
1506 }
1507 }
1508 else
1509 {
1510 for (c = spats[0].off.off; c; ++c)
1511 if (incl(&pos) == -1)
1512 break;
1513 if (c) /* at end of buffer */
1514 {
1515 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1516 pos.col = 0;
1517 }
1518 }
1519 }
1520
Bram Moolenaar14184a32019-02-16 15:10:30 +01001521 c = searchit(curwin, curbuf, &pos, NULL,
1522 dirc == '/' ? FORWARD : BACKWARD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 searchstr, count, spats[0].off.end + (options &
1524 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1525 + SEARCH_MSG + SEARCH_START
1526 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001527 RE_LAST, sia);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528
1529 if (dircp != NULL)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001530 *dircp = dirc; // restore second '/' or '?' for normal_cmd()
1531
1532 if (!shortmess(SHM_SEARCH)
1533 && ((dirc == '/' && LT_POS(pos, curwin->w_cursor))
1534 || (dirc == '?' && LT_POS(curwin->w_cursor, pos))))
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02001535 show_top_bot_msg = TRUE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001536
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 if (c == FAIL)
1538 {
1539 retval = 0;
1540 goto end_do_search;
1541 }
1542 if (spats[0].off.end && oap != NULL)
1543 oap->inclusive = TRUE; /* 'e' includes last character */
1544
1545 retval = 1; /* pattern found */
1546
1547 /*
1548 * Add character and/or line offset
1549 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001550 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 {
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001552 pos_T org_pos = pos;
1553
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 if (spats[0].off.line) /* Add the offset to the line number. */
1555 {
1556 c = pos.lnum + spats[0].off.off;
1557 if (c < 1)
1558 pos.lnum = 1;
1559 else if (c > curbuf->b_ml.ml_line_count)
1560 pos.lnum = curbuf->b_ml.ml_line_count;
1561 else
1562 pos.lnum = c;
1563 pos.col = 0;
1564
1565 retval = 2; /* pattern found, line offset added */
1566 }
Bram Moolenaared203462004-06-16 11:19:22 +00001567 else if (pos.col < MAXCOL - 2) /* just in case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 {
1569 /* to the right, check for end of file */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001570 c = spats[0].off.off;
1571 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001573 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 if (incl(&pos) == -1)
1575 break;
1576 }
1577 /* to the left, check for start of file */
1578 else
1579 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001580 while (c++ < 0)
1581 if (decl(&pos) == -1)
1582 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 }
1584 }
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001585 if (!EQUAL_POS(pos, org_pos))
1586 has_offset = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 }
1588
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001589 // Show [1/15] if 'S' is not in 'shortmess'.
1590 if ((options & SEARCH_ECHO)
1591 && messaging()
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001592 && !msg_silent
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001593 && c != FAIL
1594 && !shortmess(SHM_SEARCHCOUNT)
1595 && msgbuf != NULL)
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001596 search_stat(dirc, &pos, show_top_bot_msg, msgbuf,
1597 (count != 1 || has_offset));
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001598
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 /*
1600 * The search command can be followed by a ';' to do another search.
1601 * For example: "/pat/;/foo/+3;?bar"
1602 * This is like doing another search command, except:
1603 * - The remembered direction '/' or '?' is from the first search.
1604 * - When an error happens the cursor isn't moved at all.
1605 * Don't do this when called by get_address() (it handles ';' itself).
1606 */
1607 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1608 break;
1609
1610 dirc = *++pat;
1611 if (dirc != '?' && dirc != '/')
1612 {
1613 retval = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001614 emsg(_("E386: Expected '?' or '/' after ';'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 goto end_do_search;
1616 }
1617 ++pat;
1618 }
1619
1620 if (options & SEARCH_MARK)
1621 setpcmark();
1622 curwin->w_cursor = pos;
1623 curwin->w_set_curswant = TRUE;
1624
1625end_do_search:
Bram Moolenaarac8400d2014-01-14 21:31:34 +01001626 if ((options & SEARCH_KEEP) || cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 spats[0].off = old_off;
1628 vim_free(strcopy);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001629 vim_free(msgbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630
1631 return retval;
1632}
1633
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634/*
1635 * search_for_exact_line(buf, pos, dir, pat)
1636 *
1637 * Search for a line starting with the given pattern (ignoring leading
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001638 * white-space), starting from pos and going in direction "dir". "pos" will
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 * contain the position of the match found. Blank lines match only if
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001640 * ADDING is set. If p_ic is set then the pattern must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 * Return OK for success, or FAIL if no line found.
1642 */
1643 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001644search_for_exact_line(
1645 buf_T *buf,
1646 pos_T *pos,
1647 int dir,
1648 char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649{
1650 linenr_T start = 0;
1651 char_u *ptr;
1652 char_u *p;
1653
1654 if (buf->b_ml.ml_line_count == 0)
1655 return FAIL;
1656 for (;;)
1657 {
1658 pos->lnum += dir;
1659 if (pos->lnum < 1)
1660 {
1661 if (p_ws)
1662 {
1663 pos->lnum = buf->b_ml.ml_line_count;
1664 if (!shortmess(SHM_SEARCH))
1665 give_warning((char_u *)_(top_bot_msg), TRUE);
1666 }
1667 else
1668 {
1669 pos->lnum = 1;
1670 break;
1671 }
1672 }
1673 else if (pos->lnum > buf->b_ml.ml_line_count)
1674 {
1675 if (p_ws)
1676 {
1677 pos->lnum = 1;
1678 if (!shortmess(SHM_SEARCH))
1679 give_warning((char_u *)_(bot_top_msg), TRUE);
1680 }
1681 else
1682 {
1683 pos->lnum = 1;
1684 break;
1685 }
1686 }
1687 if (pos->lnum == start)
1688 break;
1689 if (start == 0)
1690 start = pos->lnum;
1691 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1692 p = skipwhite(ptr);
1693 pos->col = (colnr_T) (p - ptr);
1694
1695 /* when adding lines the matching line may be empty but it is not
1696 * ignored because we are interested in the next line -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001697 if ((compl_cont_status & CONT_ADDING)
1698 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 {
1700 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1701 return OK;
1702 }
1703 else if (*p != NUL) /* ignore empty lines */
1704 { /* expanding lines or words */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001705 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1706 : STRNCMP(p, pat, compl_length)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 return OK;
1708 }
1709 }
1710 return FAIL;
1711}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712
1713/*
1714 * Character Searches
1715 */
1716
1717/*
1718 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1719 * position of the character, otherwise move to just before the char.
1720 * Do this "cap->count1" times.
1721 * Return FAIL or OK.
1722 */
1723 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001724searchc(cmdarg_T *cap, int t_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725{
1726 int c = cap->nchar; /* char to search for */
1727 int dir = cap->arg; /* TRUE for searching forward */
1728 long count = cap->count1; /* repeat count */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 int col;
1730 char_u *p;
1731 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001732 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733
1734 if (c != NUL) /* normal search: remember args for repeat */
1735 {
1736 if (!KeyStuffed) /* don't remember when redoing */
1737 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001738 *lastc = c;
1739 set_csearch_direction(dir);
1740 set_csearch_until(t_cmd);
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001741 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 if (cap->ncharC1 != 0)
1743 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001744 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1,
1745 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 if (cap->ncharC2 != 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001747 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2,
1748 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 }
1751 }
1752 else /* repeat previous search */
1753 {
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001754 if (*lastc == NUL && lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 return FAIL;
1756 if (dir) /* repeat in opposite direction */
1757 dir = -lastcdir;
1758 else
1759 dir = lastcdir;
1760 t_cmd = last_t_cmd;
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001761 c = *lastc;
1762 /* For multi-byte re-use last lastc_bytes[] and lastc_bytelen. */
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001763
1764 /* Force a move of at least one char, so ";" and "," will move the
1765 * cursor, even if the cursor is right in front of char we are looking
1766 * at. */
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001767 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001768 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 }
1770
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001771 if (dir == BACKWARD)
1772 cap->oap->inclusive = FALSE;
1773 else
1774 cap->oap->inclusive = TRUE;
1775
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 p = ml_get_curline();
1777 col = curwin->w_cursor.col;
1778 len = (int)STRLEN(p);
1779
1780 while (count--)
1781 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 if (has_mbyte)
1783 {
1784 for (;;)
1785 {
1786 if (dir > 0)
1787 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001788 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 if (col >= len)
1790 return FAIL;
1791 }
1792 else
1793 {
1794 if (col == 0)
1795 return FAIL;
1796 col -= (*mb_head_off)(p, p + col - 1) + 1;
1797 }
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001798 if (lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001800 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 break;
1802 }
Bram Moolenaar66727e12017-03-01 22:17:05 +01001803 else if (STRNCMP(p + col, lastc_bytes, lastc_bytelen) == 0
Bram Moolenaarb129a442016-12-01 17:25:20 +01001804 && stop)
Bram Moolenaar66727e12017-03-01 22:17:05 +01001805 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001806 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 }
1808 }
1809 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 {
1811 for (;;)
1812 {
1813 if ((col += dir) < 0 || col >= len)
1814 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001815 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001817 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 }
1819 }
1820 }
1821
1822 if (t_cmd)
1823 {
1824 /* backup to before the character (possibly double-byte) */
1825 col -= dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 if (has_mbyte)
1827 {
1828 if (dir < 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001829 /* Landed on the search char which is lastc_bytelen long */
1830 col += lastc_bytelen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 else
1832 /* To previous char, which may be multi-byte. */
1833 col -= (*mb_head_off)(p, p + col);
1834 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 }
1836 curwin->w_cursor.col = col;
1837
1838 return OK;
1839}
1840
1841/*
1842 * "Other" Searches
1843 */
1844
1845/*
1846 * findmatch - find the matching paren or brace
1847 *
1848 * Improvement over vi: Braces inside quotes are ignored.
1849 */
1850 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001851findmatch(oparg_T *oap, int initc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852{
1853 return findmatchlimit(oap, initc, 0, 0);
1854}
1855
1856/*
1857 * Return TRUE if the character before "linep[col]" equals "ch".
1858 * Return FALSE if "col" is zero.
1859 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1860 * is NULL.
1861 * Handles multibyte string correctly.
1862 */
1863 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001864check_prevcol(
1865 char_u *linep,
1866 int col,
1867 int ch,
1868 int *prevcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869{
1870 --col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 if (col > 0 && has_mbyte)
1872 col -= (*mb_head_off)(linep, linep + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 if (prevcol)
1874 *prevcol = col;
1875 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1876}
1877
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001878/*
1879 * Raw string start is found at linep[startpos.col - 1].
1880 * Return TRUE if the matching end can be found between startpos and endpos.
1881 */
1882 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001883find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos)
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001884{
1885 char_u *p;
1886 char_u *delim_copy;
1887 size_t delim_len;
1888 linenr_T lnum;
1889 int found = FALSE;
1890
1891 for (p = linep + startpos->col + 1; *p && *p != '('; ++p)
1892 ;
1893 delim_len = (p - linep) - startpos->col - 1;
Bram Moolenaar6ed535d2015-08-26 23:01:21 +02001894 delim_copy = vim_strnsave(linep + startpos->col + 1, (int)delim_len);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001895 if (delim_copy == NULL)
1896 return FALSE;
1897 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum)
1898 {
1899 char_u *line = ml_get(lnum);
1900
1901 for (p = line + (lnum == startpos->lnum
1902 ? startpos->col + 1 : 0); *p; ++p)
1903 {
1904 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col)
1905 break;
1906 if (*p == ')' && p[delim_len + 1] == '"'
1907 && STRNCMP(delim_copy, p + 1, delim_len) == 0)
1908 {
1909 found = TRUE;
1910 break;
1911 }
1912 }
1913 if (found)
1914 break;
1915 }
1916 vim_free(delim_copy);
1917 return found;
1918}
1919
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920/*
1921 * findmatchlimit -- find the matching paren or brace, if it exists within
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001922 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling
1923 * off the edge of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 *
1925 * "initc" is the character to find a match for. NUL means to find the
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001926 * character at or after the cursor. Special values:
1927 * '*' look for C-style comment / *
1928 * '/' look for C-style comment / *, ignoring comment-end
1929 * '#' look for preprocessor directives
1930 * 'R' look for raw string start: R"delim(text)delim" (only backwards)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 *
1932 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
1933 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
1934 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
1935 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001936 *
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001937 * "oap" is only used to set oap->motion_type for a linewise motion, it can be
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001938 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 */
1940
1941 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001942findmatchlimit(
1943 oparg_T *oap,
1944 int initc,
1945 int flags,
1946 int maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947{
1948 static pos_T pos; /* current search position */
1949 int findc = 0; /* matching brace */
1950 int c;
1951 int count = 0; /* cumulative number of braces */
1952 int backwards = FALSE; /* init for gcc */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001953 int raw_string = FALSE; /* search for raw string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 int inquote = FALSE; /* TRUE when inside quotes */
1955 char_u *linep; /* pointer to current line */
1956 char_u *ptr;
1957 int do_quotes; /* check for quotes in current line */
1958 int at_start; /* do_quotes value at start position */
1959 int hash_dir = 0; /* Direction searched for # things */
1960 int comment_dir = 0; /* Direction searched for comments */
1961 pos_T match_pos; /* Where last slash-star was found */
1962 int start_in_quotes; /* start position is in quotes */
1963 int traveled = 0; /* how far we've searched so far */
1964 int ignore_cend = FALSE; /* ignore comment end */
1965 int cpo_match; /* vi compatible matching */
1966 int cpo_bsl; /* don't recognize backslashes */
1967 int match_escaped = 0; /* search for escaped match */
1968 int dir; /* Direction to search */
1969 int comment_col = MAXCOL; /* start of / / comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001970#ifdef FEAT_LISP
1971 int lispcomm = FALSE; /* inside of Lisp-style comment */
1972 int lisp = curbuf->b_p_lisp; /* engage Lisp-specific hacks ;) */
1973#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974
1975 pos = curwin->w_cursor;
Bram Moolenaarc56c4592013-08-14 17:45:29 +02001976 pos.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977 linep = ml_get(pos.lnum);
1978
1979 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
1980 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
1981
1982 /* Direction to search when initc is '/', '*' or '#' */
1983 if (flags & FM_BACKWARD)
1984 dir = BACKWARD;
1985 else if (flags & FM_FORWARD)
1986 dir = FORWARD;
1987 else
1988 dir = 0;
1989
1990 /*
1991 * if initc given, look in the table for the matching character
1992 * '/' and '*' are special cases: look for start or end of comment.
1993 * When '/' is used, we ignore running backwards into an star-slash, for
1994 * "[*" command, we just want to find any comment.
1995 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001996 if (initc == '/' || initc == '*' || initc == 'R')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 {
1998 comment_dir = dir;
1999 if (initc == '/')
2000 ignore_cend = TRUE;
2001 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002002 raw_string = (initc == 'R');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 initc = NUL;
2004 }
2005 else if (initc != '#' && initc != NUL)
2006 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002007 find_mps_values(&initc, &findc, &backwards, TRUE);
2008 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 return NULL;
2010 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 else
2012 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002013 /*
2014 * Either initc is '#', or no initc was given and we need to look
2015 * under the cursor.
2016 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 if (initc == '#')
2018 {
2019 hash_dir = dir;
2020 }
2021 else
2022 {
2023 /*
2024 * initc was not given, must look for something to match under
2025 * or near the cursor.
2026 * Only check for special things when 'cpo' doesn't have '%'.
2027 */
2028 if (!cpo_match)
2029 {
2030 /* Are we before or at #if, #else etc.? */
2031 ptr = skipwhite(linep);
2032 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
2033 {
2034 ptr = skipwhite(ptr + 1);
2035 if ( STRNCMP(ptr, "if", 2) == 0
2036 || STRNCMP(ptr, "endif", 5) == 0
2037 || STRNCMP(ptr, "el", 2) == 0)
2038 hash_dir = 1;
2039 }
2040
2041 /* Are we on a comment? */
2042 else if (linep[pos.col] == '/')
2043 {
2044 if (linep[pos.col + 1] == '*')
2045 {
2046 comment_dir = FORWARD;
2047 backwards = FALSE;
2048 pos.col++;
2049 }
2050 else if (pos.col > 0 && linep[pos.col - 1] == '*')
2051 {
2052 comment_dir = BACKWARD;
2053 backwards = TRUE;
2054 pos.col--;
2055 }
2056 }
2057 else if (linep[pos.col] == '*')
2058 {
2059 if (linep[pos.col + 1] == '/')
2060 {
2061 comment_dir = BACKWARD;
2062 backwards = TRUE;
2063 }
2064 else if (pos.col > 0 && linep[pos.col - 1] == '/')
2065 {
2066 comment_dir = FORWARD;
2067 backwards = FALSE;
2068 }
2069 }
2070 }
2071
2072 /*
2073 * If we are not on a comment or the # at the start of a line, then
2074 * look for brace anywhere on this line after the cursor.
2075 */
2076 if (!hash_dir && !comment_dir)
2077 {
2078 /*
2079 * Find the brace under or after the cursor.
2080 * If beyond the end of the line, use the last character in
2081 * the line.
2082 */
2083 if (linep[pos.col] == NUL && pos.col)
2084 --pos.col;
2085 for (;;)
2086 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002087 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 if (initc == NUL)
2089 break;
2090
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002091 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 if (findc)
2093 break;
Bram Moolenaar1614a142019-10-06 22:00:13 +02002094 pos.col += mb_ptr2len(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 }
2096 if (!findc)
2097 {
2098 /* no brace in the line, maybe use " #if" then */
2099 if (!cpo_match && *skipwhite(linep) == '#')
2100 hash_dir = 1;
2101 else
2102 return NULL;
2103 }
2104 else if (!cpo_bsl)
2105 {
2106 int col, bslcnt = 0;
2107
2108 /* Set "match_escaped" if there are an odd number of
2109 * backslashes. */
2110 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2111 bslcnt++;
2112 match_escaped = (bslcnt & 1);
2113 }
2114 }
2115 }
2116 if (hash_dir)
2117 {
2118 /*
2119 * Look for matching #if, #else, #elif, or #endif
2120 */
2121 if (oap != NULL)
2122 oap->motion_type = MLINE; /* Linewise for this case only */
2123 if (initc != '#')
2124 {
2125 ptr = skipwhite(skipwhite(linep) + 1);
2126 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
2127 hash_dir = 1;
2128 else if (STRNCMP(ptr, "endif", 5) == 0)
2129 hash_dir = -1;
2130 else
2131 return NULL;
2132 }
2133 pos.col = 0;
2134 while (!got_int)
2135 {
2136 if (hash_dir > 0)
2137 {
2138 if (pos.lnum == curbuf->b_ml.ml_line_count)
2139 break;
2140 }
2141 else if (pos.lnum == 1)
2142 break;
2143 pos.lnum += hash_dir;
2144 linep = ml_get(pos.lnum);
2145 line_breakcheck(); /* check for CTRL-C typed */
2146 ptr = skipwhite(linep);
2147 if (*ptr != '#')
2148 continue;
2149 pos.col = (colnr_T) (ptr - linep);
2150 ptr = skipwhite(ptr + 1);
2151 if (hash_dir > 0)
2152 {
2153 if (STRNCMP(ptr, "if", 2) == 0)
2154 count++;
2155 else if (STRNCMP(ptr, "el", 2) == 0)
2156 {
2157 if (count == 0)
2158 return &pos;
2159 }
2160 else if (STRNCMP(ptr, "endif", 5) == 0)
2161 {
2162 if (count == 0)
2163 return &pos;
2164 count--;
2165 }
2166 }
2167 else
2168 {
2169 if (STRNCMP(ptr, "if", 2) == 0)
2170 {
2171 if (count == 0)
2172 return &pos;
2173 count--;
2174 }
2175 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
2176 {
2177 if (count == 0)
2178 return &pos;
2179 }
2180 else if (STRNCMP(ptr, "endif", 5) == 0)
2181 count++;
2182 }
2183 }
2184 return NULL;
2185 }
2186 }
2187
2188#ifdef FEAT_RIGHTLEFT
Bram Moolenaarabc97732007-08-08 20:49:37 +00002189 /* This is just guessing: when 'rightleft' is set, search for a matching
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 * paren/brace in the other direction. */
2191 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
2192 backwards = !backwards;
2193#endif
2194
2195 do_quotes = -1;
2196 start_in_quotes = MAYBE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002197 CLEAR_POS(&match_pos);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002198
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 /* backward search: Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002200 if ((backwards && comment_dir)
2201#ifdef FEAT_LISP
2202 || lisp
2203#endif
2204 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002206#ifdef FEAT_LISP
2207 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
2208 lispcomm = TRUE; /* find match inside this comment */
2209#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 while (!got_int)
2211 {
2212 /*
2213 * Go to the next position, forward or backward. We could use
2214 * inc() and dec() here, but that is much slower
2215 */
2216 if (backwards)
2217 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002218#ifdef FEAT_LISP
2219 /* char to match is inside of comment, don't search outside */
2220 if (lispcomm && pos.col < (colnr_T)comment_col)
2221 break;
2222#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 if (pos.col == 0) /* at start of line, go to prev. one */
2224 {
2225 if (pos.lnum == 1) /* start of file */
2226 break;
2227 --pos.lnum;
2228
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002229 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 break;
2231
2232 linep = ml_get(pos.lnum);
2233 pos.col = (colnr_T)STRLEN(linep); /* pos.col on trailing NUL */
2234 do_quotes = -1;
2235 line_breakcheck();
2236
2237 /* Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002238 if (comment_dir
2239#ifdef FEAT_LISP
2240 || lisp
2241#endif
2242 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002244#ifdef FEAT_LISP
2245 /* skip comment */
2246 if (lisp && comment_col != MAXCOL)
2247 pos.col = comment_col;
2248#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249 }
2250 else
2251 {
2252 --pos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 if (has_mbyte)
2254 pos.col -= (*mb_head_off)(linep, linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 }
2256 }
2257 else /* forward search */
2258 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002259 if (linep[pos.col] == NUL
2260 /* at end of line, go to next one */
2261#ifdef FEAT_LISP
2262 /* don't search for match in comment */
2263 || (lisp && comment_col != MAXCOL
2264 && pos.col == (colnr_T)comment_col)
2265#endif
2266 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002268 if (pos.lnum == curbuf->b_ml.ml_line_count /* end of file */
2269#ifdef FEAT_LISP
2270 /* line is exhausted and comment with it,
2271 * don't search for match in code */
2272 || lispcomm
2273#endif
2274 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 break;
2276 ++pos.lnum;
2277
2278 if (maxtravel && traveled++ > maxtravel)
2279 break;
2280
2281 linep = ml_get(pos.lnum);
2282 pos.col = 0;
2283 do_quotes = -1;
2284 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002285#ifdef FEAT_LISP
2286 if (lisp) /* find comment pos in new line */
2287 comment_col = check_linecomment(linep);
2288#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289 }
2290 else
2291 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002293 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 ++pos.col;
2296 }
2297 }
2298
2299 /*
2300 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2301 */
2302 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2303 (linep[0] == '{' || linep[0] == '}'))
2304 {
2305 if (linep[0] == findc && count == 0) /* match! */
2306 return &pos;
2307 break; /* out of scope */
2308 }
2309
2310 if (comment_dir)
2311 {
2312 /* Note: comments do not nest, and we ignore quotes in them */
2313 /* TODO: ignore comment brackets inside strings */
2314 if (comment_dir == FORWARD)
2315 {
2316 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2317 {
2318 pos.col++;
2319 return &pos;
2320 }
2321 }
2322 else /* Searching backwards */
2323 {
2324 /*
2325 * A comment may contain / * or / /, it may also start or end
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002326 * with / * /. Ignore a / * after / / and after *.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 */
2328 if (pos.col == 0)
2329 continue;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002330 else if (raw_string)
2331 {
2332 if (linep[pos.col - 1] == 'R'
2333 && linep[pos.col] == '"'
2334 && vim_strchr(linep + pos.col + 1, '(') != NULL)
2335 {
2336 /* Possible start of raw string. Now that we have the
2337 * delimiter we can check if it ends before where we
2338 * started searching, or before the previously found
2339 * raw string start. */
2340 if (!find_rawstring_end(linep, &pos,
2341 count > 0 ? &match_pos : &curwin->w_cursor))
2342 {
2343 count++;
2344 match_pos = pos;
2345 match_pos.col--;
2346 }
2347 linep = ml_get(pos.lnum); /* may have been released */
2348 }
2349 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 else if ( linep[pos.col - 1] == '/'
2351 && linep[pos.col] == '*'
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002352 && (pos.col == 1 || linep[pos.col - 2] != '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 && (int)pos.col < comment_col)
2354 {
2355 count++;
2356 match_pos = pos;
2357 match_pos.col--;
2358 }
2359 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2360 {
2361 if (count > 0)
2362 pos = match_pos;
2363 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2364 && (int)pos.col <= comment_col)
2365 pos.col -= 2;
2366 else if (ignore_cend)
2367 continue;
2368 else
2369 return NULL;
2370 return &pos;
2371 }
2372 }
2373 continue;
2374 }
2375
2376 /*
2377 * If smart matching ('cpoptions' does not contain '%'), braces inside
2378 * of quotes are ignored, but only if there is an even number of
2379 * quotes in the line.
2380 */
2381 if (cpo_match)
2382 do_quotes = 0;
2383 else if (do_quotes == -1)
2384 {
2385 /*
2386 * Count the number of quotes in the line, skipping \" and '"'.
2387 * Watch out for "\\".
2388 */
2389 at_start = do_quotes;
2390 for (ptr = linep; *ptr; ++ptr)
2391 {
2392 if (ptr == linep + pos.col + backwards)
2393 at_start = (do_quotes & 1);
2394 if (*ptr == '"'
2395 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2396 ++do_quotes;
2397 if (*ptr == '\\' && ptr[1] != NUL)
2398 ++ptr;
2399 }
2400 do_quotes &= 1; /* result is 1 with even number of quotes */
2401
2402 /*
2403 * If we find an uneven count, check current line and previous
2404 * one for a '\' at the end.
2405 */
2406 if (!do_quotes)
2407 {
2408 inquote = FALSE;
2409 if (ptr[-1] == '\\')
2410 {
2411 do_quotes = 1;
2412 if (start_in_quotes == MAYBE)
2413 {
2414 /* Do we need to use at_start here? */
2415 inquote = TRUE;
2416 start_in_quotes = TRUE;
2417 }
2418 else if (backwards)
2419 inquote = TRUE;
2420 }
2421 if (pos.lnum > 1)
2422 {
2423 ptr = ml_get(pos.lnum - 1);
2424 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2425 {
2426 do_quotes = 1;
2427 if (start_in_quotes == MAYBE)
2428 {
2429 inquote = at_start;
2430 if (inquote)
2431 start_in_quotes = TRUE;
2432 }
2433 else if (!backwards)
2434 inquote = TRUE;
2435 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002436
2437 /* ml_get() only keeps one line, need to get linep again */
2438 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 }
2440 }
2441 }
2442 if (start_in_quotes == MAYBE)
2443 start_in_quotes = FALSE;
2444
2445 /*
2446 * If 'smartmatch' is set:
2447 * Things inside quotes are ignored by setting 'inquote'. If we
2448 * find a quote without a preceding '\' invert 'inquote'. At the
2449 * end of a line not ending in '\' we reset 'inquote'.
2450 *
2451 * In lines with an uneven number of quotes (without preceding '\')
2452 * we do not know which part to ignore. Therefore we only set
2453 * inquote if the number of quotes in a line is even, unless this
2454 * line or the previous one ends in a '\'. Complicated, isn't it?
2455 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002456 c = PTR2CHAR(linep + pos.col);
2457 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 {
2459 case NUL:
2460 /* at end of line without trailing backslash, reset inquote */
2461 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2462 {
2463 inquote = FALSE;
2464 start_in_quotes = FALSE;
2465 }
2466 break;
2467
2468 case '"':
2469 /* a quote that is preceded with an odd number of backslashes is
2470 * ignored */
2471 if (do_quotes)
2472 {
2473 int col;
2474
2475 for (col = pos.col - 1; col >= 0; --col)
2476 if (linep[col] != '\\')
2477 break;
2478 if ((((int)pos.col - 1 - col) & 1) == 0)
2479 {
2480 inquote = !inquote;
2481 start_in_quotes = FALSE;
2482 }
2483 }
2484 break;
2485
2486 /*
2487 * If smart matching ('cpoptions' does not contain '%'):
2488 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2489 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2490 * skipped, there is never a brace in them.
2491 * Ignore this when finding matches for `'.
2492 */
2493 case '\'':
2494 if (!cpo_match && initc != '\'' && findc != '\'')
2495 {
2496 if (backwards)
2497 {
2498 if (pos.col > 1)
2499 {
2500 if (linep[pos.col - 2] == '\'')
2501 {
2502 pos.col -= 2;
2503 break;
2504 }
2505 else if (linep[pos.col - 2] == '\\' &&
2506 pos.col > 2 && linep[pos.col - 3] == '\'')
2507 {
2508 pos.col -= 3;
2509 break;
2510 }
2511 }
2512 }
2513 else if (linep[pos.col + 1]) /* forward search */
2514 {
2515 if (linep[pos.col + 1] == '\\' &&
2516 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2517 {
2518 pos.col += 3;
2519 break;
2520 }
2521 else if (linep[pos.col + 2] == '\'')
2522 {
2523 pos.col += 2;
2524 break;
2525 }
2526 }
2527 }
2528 /* FALLTHROUGH */
2529
2530 default:
2531#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002532 /*
2533 * For Lisp skip over backslashed (), {} and [].
2534 * (actually, we skip #\( et al)
2535 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 if (curbuf->b_p_lisp
2537 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002538 && pos.col > 1
2539 && check_prevcol(linep, pos.col, '\\', NULL)
2540 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 break;
2542#endif
2543
2544 /* Check for match outside of quotes, and inside of
2545 * quotes when the start is also inside of quotes. */
2546 if ((!inquote || start_in_quotes == TRUE)
2547 && (c == initc || c == findc))
2548 {
2549 int col, bslcnt = 0;
2550
2551 if (!cpo_bsl)
2552 {
2553 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2554 bslcnt++;
2555 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00002556 /* Only accept a match when 'M' is in 'cpo' or when escaping
2557 * is what we expect. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2559 {
2560 if (c == initc)
2561 count++;
2562 else
2563 {
2564 if (count == 0)
2565 return &pos;
2566 count--;
2567 }
2568 }
2569 }
2570 }
2571 }
2572
2573 if (comment_dir == BACKWARD && count > 0)
2574 {
2575 pos = match_pos;
2576 return &pos;
2577 }
2578 return (pos_T *)NULL; /* never found it */
2579}
2580
2581/*
2582 * Check if line[] contains a / / comment.
2583 * Return MAXCOL if not, otherwise return the column.
2584 * TODO: skip strings.
2585 */
2586 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002587check_linecomment(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588{
2589 char_u *p;
2590
2591 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002592#ifdef FEAT_LISP
2593 /* skip Lispish one-line comments */
2594 if (curbuf->b_p_lisp)
2595 {
2596 if (vim_strchr(p, ';') != NULL) /* there may be comments */
2597 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002598 int in_str = FALSE; /* inside of string */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002599
2600 p = line; /* scan from start */
Bram Moolenaar520470a2005-06-16 21:59:56 +00002601 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002602 {
2603 if (*p == '"')
2604 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002605 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002606 {
2607 if (*(p - 1) != '\\') /* skip escaped quote */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002608 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002609 }
2610 else if (p == line || ((p - line) >= 2
2611 /* skip #\" form */
2612 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002613 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002614 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002615 else if (!in_str && ((p - line) < 2
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002616 || (*(p - 1) != '\\' && *(p - 2) != '#')))
2617 break; /* found! */
2618 ++p;
2619 }
2620 }
2621 else
2622 p = NULL;
2623 }
2624 else
2625#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 while ((p = vim_strchr(p, '/')) != NULL)
2627 {
Bram Moolenaar78d4aba2008-01-01 14:43:35 +00002628 /* accept a double /, unless it's preceded with * and followed by *,
2629 * because * / / * is an end and start of a C comment */
2630 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 break;
2632 ++p;
2633 }
2634
2635 if (p == NULL)
2636 return MAXCOL;
2637 return (int)(p - line);
2638}
2639
2640/*
2641 * Move cursor briefly to character matching the one under the cursor.
2642 * Used for Insert mode and "r" command.
2643 * Show the match only if it is visible on the screen.
2644 * If there isn't a match, then beep.
2645 */
2646 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002647showmatch(
2648 int c) /* char to show match for */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649{
2650 pos_T *lpos, save_cursor;
2651 pos_T mpos;
2652 colnr_T vcol;
2653 long save_so;
2654 long save_siso;
2655#ifdef CURSOR_SHAPE
2656 int save_state;
2657#endif
2658 colnr_T save_dollar_vcol;
2659 char_u *p;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002660 long *so = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so;
2661 long *siso = curwin->w_p_siso >= 0 ? &curwin->w_p_siso : &p_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662
2663 /*
2664 * Only show match for chars in the 'matchpairs' option.
2665 */
2666 /* 'matchpairs' is "x:y,x:y" */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002667 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 {
2669#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002670 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002671 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002672#endif
Bram Moolenaar1614a142019-10-06 22:00:13 +02002673 p += mb_ptr2len(p) + 1;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002674 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675#ifdef FEAT_RIGHTLEFT
2676 && !(curwin->w_p_rl ^ p_ri)
2677#endif
2678 )
2679 break;
Bram Moolenaar1614a142019-10-06 22:00:13 +02002680 p += mb_ptr2len(p);
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002681 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 return;
2683 }
2684
2685 if ((lpos = findmatch(NULL, NUL)) == NULL) /* no match, so beep */
Bram Moolenaar165bc692015-07-21 17:53:25 +02002686 vim_beep(BO_MATCH);
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002687 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 {
2689 if (!curwin->w_p_wrap)
2690 getvcol(curwin, lpos, NULL, &vcol, NULL);
2691 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
Bram Moolenaar02631462017-09-22 15:20:32 +02002692 && vcol < curwin->w_leftcol + curwin->w_width))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 {
2694 mpos = *lpos; /* save the pos, update_screen() may change it */
2695 save_cursor = curwin->w_cursor;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002696 save_so = *so;
2697 save_siso = *siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 /* Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2699 * stop displaying the "$". */
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002700 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2701 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702 ++curwin->w_virtcol; /* do display ')' just before "$" */
2703 update_screen(VALID); /* show the new char first */
2704
2705 save_dollar_vcol = dollar_vcol;
2706#ifdef CURSOR_SHAPE
2707 save_state = State;
2708 State = SHOWMATCH;
2709 ui_cursor_shape(); /* may show different cursor shape */
2710#endif
2711 curwin->w_cursor = mpos; /* move to matching char */
Bram Moolenaar375e3392019-01-31 18:26:10 +01002712 *so = 0; /* don't use 'scrolloff' here */
2713 *siso = 0; /* don't use 'sidescrolloff' here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714 showruler(FALSE);
2715 setcursor();
2716 cursor_on(); /* make sure that the cursor is shown */
Bram Moolenaara338adc2018-01-31 20:51:47 +01002717 out_flush_cursor(TRUE, FALSE);
2718
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 /* Restore dollar_vcol(), because setcursor() may call curs_rows()
2720 * which resets it if the matching position is in a previous line
2721 * and has a higher column number. */
2722 dollar_vcol = save_dollar_vcol;
2723
2724 /*
2725 * brief pause, unless 'm' is present in 'cpo' and a character is
2726 * available.
2727 */
2728 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
2729 ui_delay(p_mat * 100L, TRUE);
2730 else if (!char_avail())
2731 ui_delay(p_mat * 100L, FALSE);
2732 curwin->w_cursor = save_cursor; /* restore cursor position */
Bram Moolenaar375e3392019-01-31 18:26:10 +01002733 *so = save_so;
2734 *siso = save_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735#ifdef CURSOR_SHAPE
2736 State = save_state;
2737 ui_cursor_shape(); /* may show different cursor shape */
2738#endif
2739 }
2740 }
2741}
2742
2743/*
Bram Moolenaar85160712018-06-19 18:27:41 +02002744 * Find the start of the next sentence, searching in the direction specified
2745 * by the "dir" argument. The cursor is positioned on the start of the next
2746 * sentence when found. If the next sentence is found, return OK. Return FAIL
2747 * otherwise. See ":h sentence" for the precise definition of a "sentence"
2748 * text object.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 */
2750 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002751findsent(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752{
2753 pos_T pos, tpos;
2754 int c;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002755 int (*func)(pos_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 int startlnum;
2757 int noskip = FALSE; /* do not skip blanks */
2758 int cpo_J;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002759 int found_dot;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760
2761 pos = curwin->w_cursor;
2762 if (dir == FORWARD)
2763 func = incl;
2764 else
2765 func = decl;
2766
2767 while (count--)
2768 {
2769 /*
2770 * if on an empty line, skip upto a non-empty line
2771 */
2772 if (gchar_pos(&pos) == NUL)
2773 {
2774 do
2775 if ((*func)(&pos) == -1)
2776 break;
2777 while (gchar_pos(&pos) == NUL);
2778 if (dir == FORWARD)
2779 goto found;
2780 }
2781 /*
2782 * if on the start of a paragraph or a section and searching forward,
2783 * go to the next line
2784 */
2785 else if (dir == FORWARD && pos.col == 0 &&
2786 startPS(pos.lnum, NUL, FALSE))
2787 {
2788 if (pos.lnum == curbuf->b_ml.ml_line_count)
2789 return FAIL;
2790 ++pos.lnum;
2791 goto found;
2792 }
2793 else if (dir == BACKWARD)
2794 decl(&pos);
2795
Bram Moolenaar85160712018-06-19 18:27:41 +02002796 // go back to the previous non-white non-punctuation character
Bram Moolenaardef9e822004-12-31 20:58:58 +00002797 found_dot = FALSE;
Bram Moolenaar85160712018-06-19 18:27:41 +02002798 while (c = gchar_pos(&pos), VIM_ISWHITE(c)
2799 || vim_strchr((char_u *)".!?)]\"'", c) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 {
Bram Moolenaar85160712018-06-19 18:27:41 +02002801 tpos = pos;
2802 if (decl(&tpos) == -1 || (LINEEMPTY(tpos.lnum) && dir == FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 break;
Bram Moolenaar85160712018-06-19 18:27:41 +02002804
2805 if (found_dot)
2806 break;
2807 if (vim_strchr((char_u *) ".!?", c) != NULL)
2808 found_dot = TRUE;
2809
2810 if (vim_strchr((char_u *) ")]\"'", c) != NULL
2811 && vim_strchr((char_u *) ".!?)]\"'", gchar_pos(&tpos)) == NULL)
2812 break;
2813
2814 decl(&pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 }
2816
2817 /* remember the line where the search started */
2818 startlnum = pos.lnum;
2819 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL;
2820
2821 for (;;) /* find end of sentence */
2822 {
2823 c = gchar_pos(&pos);
2824 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE)))
2825 {
2826 if (dir == BACKWARD && pos.lnum != startlnum)
2827 ++pos.lnum;
2828 break;
2829 }
2830 if (c == '.' || c == '!' || c == '?')
2831 {
2832 tpos = pos;
2833 do
2834 if ((c = inc(&tpos)) == -1)
2835 break;
2836 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos))
2837 != NULL);
2838 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL
2839 || (cpo_J && (c == ' ' && inc(&tpos) >= 0
2840 && gchar_pos(&tpos) == ' ')))
2841 {
2842 pos = tpos;
2843 if (gchar_pos(&pos) == NUL) /* skip NUL at EOL */
2844 inc(&pos);
2845 break;
2846 }
2847 }
2848 if ((*func)(&pos) == -1)
2849 {
2850 if (count)
2851 return FAIL;
2852 noskip = TRUE;
2853 break;
2854 }
2855 }
2856found:
2857 /* skip white space */
2858 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t'))
2859 if (incl(&pos) == -1)
2860 break;
2861 }
2862
2863 setpcmark();
2864 curwin->w_cursor = pos;
2865 return OK;
2866}
2867
2868/*
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002869 * Find the next paragraph or section in direction 'dir'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 * Paragraphs are currently supposed to be separated by empty lines.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002871 * If 'what' is NUL we go to the next paragraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 * If 'what' is '{' or '}' we go to the next section.
2873 * If 'both' is TRUE also stop at '}'.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002874 * Return TRUE if the next paragraph or section was found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 */
2876 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002877findpar(
2878 int *pincl, /* Return: TRUE if last char is to be included */
2879 int dir,
2880 long count,
2881 int what,
2882 int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883{
2884 linenr_T curr;
2885 int did_skip; /* TRUE after separating lines have been skipped */
2886 int first; /* TRUE on first line */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002887 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888#ifdef FEAT_FOLDING
2889 linenr_T fold_first; /* first line of a closed fold */
2890 linenr_T fold_last; /* last line of a closed fold */
2891 int fold_skipped; /* TRUE if a closed fold was skipped this
2892 iteration */
2893#endif
2894
2895 curr = curwin->w_cursor.lnum;
2896
2897 while (count--)
2898 {
2899 did_skip = FALSE;
2900 for (first = TRUE; ; first = FALSE)
2901 {
2902 if (*ml_get(curr) != NUL)
2903 did_skip = TRUE;
2904
2905#ifdef FEAT_FOLDING
2906 /* skip folded lines */
2907 fold_skipped = FALSE;
2908 if (first && hasFolding(curr, &fold_first, &fold_last))
2909 {
2910 curr = ((dir > 0) ? fold_last : fold_first) + dir;
2911 fold_skipped = TRUE;
2912 }
2913#endif
2914
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01002915 /* POSIX has its own ideas of what a paragraph boundary is and it
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002916 * doesn't match historical Vi: It also stops at a "{" in the
2917 * first column and at an empty line. */
2918 if (!first && did_skip && (startPS(curr, what, both)
2919 || (posix && what == NUL && *ml_get(curr) == '{')))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 break;
2921
2922#ifdef FEAT_FOLDING
2923 if (fold_skipped)
2924 curr -= dir;
2925#endif
2926 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count)
2927 {
2928 if (count)
2929 return FALSE;
2930 curr -= dir;
2931 break;
2932 }
2933 }
2934 }
2935 setpcmark();
2936 if (both && *ml_get(curr) == '}') /* include line with '}' */
2937 ++curr;
2938 curwin->w_cursor.lnum = curr;
2939 if (curr == curbuf->b_ml.ml_line_count && what != '}')
2940 {
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02002941 char_u *line = ml_get(curr);
2942
2943 /* Put the cursor on the last character in the last line and make the
2944 * motion inclusive. */
2945 if ((curwin->w_cursor.col = (colnr_T)STRLEN(line)) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 {
2947 --curwin->w_cursor.col;
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02002948 curwin->w_cursor.col -=
2949 (*mb_head_off)(line, line + curwin->w_cursor.col);
Bram Moolenaar92d640f2005-09-05 22:11:52 +00002950 *pincl = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 }
2952 }
2953 else
2954 curwin->w_cursor.col = 0;
2955 return TRUE;
2956}
2957
2958/*
2959 * check if the string 's' is a nroff macro that is in option 'opt'
2960 */
2961 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002962inmacro(char_u *opt, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963{
2964 char_u *macro;
2965
2966 for (macro = opt; macro[0]; ++macro)
2967 {
2968 /* Accept two characters in the option being equal to two characters
2969 * in the line. A space in the option matches with a space in the
2970 * line or the line having ended. */
2971 if ( (macro[0] == s[0]
2972 || (macro[0] == ' '
2973 && (s[0] == NUL || s[0] == ' ')))
2974 && (macro[1] == s[1]
2975 || ((macro[1] == NUL || macro[1] == ' ')
2976 && (s[0] == NUL || s[1] == NUL || s[1] == ' '))))
2977 break;
2978 ++macro;
2979 if (macro[0] == NUL)
2980 break;
2981 }
2982 return (macro[0] != NUL);
2983}
2984
2985/*
2986 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph.
2987 * If 'para' is '{' or '}' only check for sections.
2988 * If 'both' is TRUE also stop at '}'
2989 */
2990 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002991startPS(linenr_T lnum, int para, int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992{
2993 char_u *s;
2994
2995 s = ml_get(lnum);
2996 if (*s == para || *s == '\f' || (both && *s == '}'))
2997 return TRUE;
2998 if (*s == '.' && (inmacro(p_sections, s + 1) ||
2999 (!para && inmacro(p_para, s + 1))))
3000 return TRUE;
3001 return FALSE;
3002}
3003
3004/*
3005 * The following routines do the word searches performed by the 'w', 'W',
3006 * 'b', 'B', 'e', and 'E' commands.
3007 */
3008
3009/*
3010 * To perform these searches, characters are placed into one of three
3011 * classes, and transitions between classes determine word boundaries.
3012 *
3013 * The classes are:
3014 *
3015 * 0 - white space
3016 * 1 - punctuation
3017 * 2 or higher - keyword characters (letters, digits and underscore)
3018 */
3019
3020static int cls_bigword; /* TRUE for "W", "B" or "E" */
3021
3022/*
3023 * cls() - returns the class of character at curwin->w_cursor
3024 *
3025 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars
3026 * from class 2 and higher are reported as class 1 since only white space
3027 * boundaries are of interest.
3028 */
3029 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003030cls(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031{
3032 int c;
3033
3034 c = gchar_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 if (c == ' ' || c == '\t' || c == NUL)
3036 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 if (enc_dbcs != 0 && c > 0xFF)
3038 {
3039 /* If cls_bigword, report multi-byte chars as class 1. */
3040 if (enc_dbcs == DBCS_KOR && cls_bigword)
3041 return 1;
3042
3043 /* process code leading/trailing bytes */
3044 return dbcs_class(((unsigned)c >> 8), (c & 0xFF));
3045 }
3046 if (enc_utf8)
3047 {
3048 c = utf_class(c);
3049 if (c != 0 && cls_bigword)
3050 return 1;
3051 return c;
3052 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053
3054 /* If cls_bigword is TRUE, report all non-blanks as class 1. */
3055 if (cls_bigword)
3056 return 1;
3057
3058 if (vim_iswordc(c))
3059 return 2;
3060 return 1;
3061}
3062
3063
3064/*
3065 * fwd_word(count, type, eol) - move forward one word
3066 *
3067 * Returns FAIL if the cursor was already at the end of the file.
3068 * If eol is TRUE, last word stops at end of line (for operators).
3069 */
3070 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003071fwd_word(
3072 long count,
3073 int bigword, /* "W", "E" or "B" */
3074 int eol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075{
3076 int sclass; /* starting class */
3077 int i;
3078 int last_line;
3079
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 cls_bigword = bigword;
3082 while (--count >= 0)
3083 {
3084#ifdef FEAT_FOLDING
3085 /* When inside a range of folded lines, move to the last char of the
3086 * last line. */
3087 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3088 coladvance((colnr_T)MAXCOL);
3089#endif
3090 sclass = cls();
3091
3092 /*
3093 * We always move at least one character, unless on the last
3094 * character in the buffer.
3095 */
3096 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count);
3097 i = inc_cursor();
3098 if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */
3099 return FAIL;
Bram Moolenaar9a149792007-07-10 10:38:02 +00003100 if (i >= 1 && eol && count == 0) /* started at last char in line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 return OK;
3102
3103 /*
3104 * Go one char past end of current word (if any)
3105 */
3106 if (sclass != 0)
3107 while (cls() == sclass)
3108 {
3109 i = inc_cursor();
3110 if (i == -1 || (i >= 1 && eol && count == 0))
3111 return OK;
3112 }
3113
3114 /*
3115 * go to next non-white
3116 */
3117 while (cls() == 0)
3118 {
3119 /*
3120 * We'll stop if we land on a blank line
3121 */
3122 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL)
3123 break;
3124
3125 i = inc_cursor();
3126 if (i == -1 || (i >= 1 && eol && count == 0))
3127 return OK;
3128 }
3129 }
3130 return OK;
3131}
3132
3133/*
3134 * bck_word() - move backward 'count' words
3135 *
3136 * If stop is TRUE and we are already on the start of a word, move one less.
3137 *
3138 * Returns FAIL if top of the file was reached.
3139 */
3140 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003141bck_word(long count, int bigword, int stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142{
3143 int sclass; /* starting class */
3144
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146 cls_bigword = bigword;
3147 while (--count >= 0)
3148 {
3149#ifdef FEAT_FOLDING
3150 /* When inside a range of folded lines, move to the first char of the
3151 * first line. */
3152 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL))
3153 curwin->w_cursor.col = 0;
3154#endif
3155 sclass = cls();
3156 if (dec_cursor() == -1) /* started at start of file */
3157 return FAIL;
3158
3159 if (!stop || sclass == cls() || sclass == 0)
3160 {
3161 /*
3162 * Skip white space before the word.
3163 * Stop on an empty line.
3164 */
3165 while (cls() == 0)
3166 {
3167 if (curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003168 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 goto finished;
3170 if (dec_cursor() == -1) /* hit start of file, stop here */
3171 return OK;
3172 }
3173
3174 /*
3175 * Move backward to start of this word.
3176 */
3177 if (skip_chars(cls(), BACKWARD))
3178 return OK;
3179 }
3180
3181 inc_cursor(); /* overshot - forward one */
3182finished:
3183 stop = FALSE;
3184 }
3185 return OK;
3186}
3187
3188/*
3189 * end_word() - move to the end of the word
3190 *
3191 * There is an apparent bug in the 'e' motion of the real vi. At least on the
3192 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e'
3193 * motion crosses blank lines. When the real vi crosses a blank line in an
3194 * 'e' motion, the cursor is placed on the FIRST character of the next
3195 * non-blank line. The 'E' command, however, works correctly. Since this
3196 * appears to be a bug, I have not duplicated it here.
3197 *
3198 * Returns FAIL if end of the file was reached.
3199 *
3200 * If stop is TRUE and we are already on the end of a word, move one less.
3201 * If empty is TRUE stop on an empty line.
3202 */
3203 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003204end_word(
3205 long count,
3206 int bigword,
3207 int stop,
3208 int empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209{
3210 int sclass; /* starting class */
3211
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 cls_bigword = bigword;
3214 while (--count >= 0)
3215 {
3216#ifdef FEAT_FOLDING
3217 /* When inside a range of folded lines, move to the last char of the
3218 * last line. */
3219 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3220 coladvance((colnr_T)MAXCOL);
3221#endif
3222 sclass = cls();
3223 if (inc_cursor() == -1)
3224 return FAIL;
3225
3226 /*
3227 * If we're in the middle of a word, we just have to move to the end
3228 * of it.
3229 */
3230 if (cls() == sclass && sclass != 0)
3231 {
3232 /*
3233 * Move forward to end of the current word
3234 */
3235 if (skip_chars(sclass, FORWARD))
3236 return FAIL;
3237 }
3238 else if (!stop || sclass == 0)
3239 {
3240 /*
3241 * We were at the end of a word. Go to the end of the next word.
3242 * First skip white space, if 'empty' is TRUE, stop at empty line.
3243 */
3244 while (cls() == 0)
3245 {
3246 if (empty && curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003247 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 goto finished;
3249 if (inc_cursor() == -1) /* hit end of file, stop here */
3250 return FAIL;
3251 }
3252
3253 /*
3254 * Move forward to the end of this word.
3255 */
3256 if (skip_chars(cls(), FORWARD))
3257 return FAIL;
3258 }
3259 dec_cursor(); /* overshot - one char backward */
3260finished:
3261 stop = FALSE; /* we move only one word less */
3262 }
3263 return OK;
3264}
3265
3266/*
3267 * Move back to the end of the word.
3268 *
3269 * Returns FAIL if start of the file was reached.
3270 */
3271 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003272bckend_word(
3273 long count,
3274 int bigword, /* TRUE for "B" */
3275 int eol) /* TRUE: stop at end of line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276{
3277 int sclass; /* starting class */
3278 int i;
3279
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281 cls_bigword = bigword;
3282 while (--count >= 0)
3283 {
3284 sclass = cls();
3285 if ((i = dec_cursor()) == -1)
3286 return FAIL;
3287 if (eol && i == 1)
3288 return OK;
3289
3290 /*
3291 * Move backward to before the start of this word.
3292 */
3293 if (sclass != 0)
3294 {
3295 while (cls() == sclass)
3296 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3297 return OK;
3298 }
3299
3300 /*
3301 * Move backward to end of the previous word
3302 */
3303 while (cls() == 0)
3304 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003305 if (curwin->w_cursor.col == 0 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306 break;
3307 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3308 return OK;
3309 }
3310 }
3311 return OK;
3312}
3313
3314/*
3315 * Skip a row of characters of the same class.
3316 * Return TRUE when end-of-file reached, FALSE otherwise.
3317 */
3318 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003319skip_chars(int cclass, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320{
3321 while (cls() == cclass)
3322 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1)
3323 return TRUE;
3324 return FALSE;
3325}
3326
3327#ifdef FEAT_TEXTOBJ
3328/*
3329 * Go back to the start of the word or the start of white space
3330 */
3331 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003332back_in_line(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333{
3334 int sclass; /* starting class */
3335
3336 sclass = cls();
3337 for (;;)
3338 {
3339 if (curwin->w_cursor.col == 0) /* stop at start of line */
3340 break;
3341 dec_cursor();
3342 if (cls() != sclass) /* stop at start of word */
3343 {
3344 inc_cursor();
3345 break;
3346 }
3347 }
3348}
3349
3350 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003351find_first_blank(pos_T *posp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352{
3353 int c;
3354
3355 while (decl(posp) != -1)
3356 {
3357 c = gchar_pos(posp);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003358 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 {
3360 incl(posp);
3361 break;
3362 }
3363 }
3364}
3365
3366/*
3367 * Skip count/2 sentences and count/2 separating white spaces.
3368 */
3369 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003370findsent_forward(
3371 long count,
3372 int at_start_sent) /* cursor is at start of sentence */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373{
3374 while (count--)
3375 {
3376 findsent(FORWARD, 1L);
3377 if (at_start_sent)
3378 find_first_blank(&curwin->w_cursor);
3379 if (count == 0 || at_start_sent)
3380 decl(&curwin->w_cursor);
3381 at_start_sent = !at_start_sent;
3382 }
3383}
3384
3385/*
3386 * Find word under cursor, cursor at end.
3387 * Used while an operator is pending, and in Visual mode.
3388 */
3389 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003390current_word(
3391 oparg_T *oap,
3392 long count,
3393 int include, /* TRUE: include word and white space */
3394 int bigword) /* FALSE == word, TRUE == WORD */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395{
3396 pos_T start_pos;
3397 pos_T pos;
3398 int inclusive = TRUE;
3399 int include_white = FALSE;
3400
3401 cls_bigword = bigword;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003402 CLEAR_POS(&start_pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404 /* Correct cursor when 'selection' is exclusive */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003405 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 dec_cursor();
3407
3408 /*
3409 * When Visual mode is not active, or when the VIsual area is only one
3410 * character, select the word and/or white space under the cursor.
3411 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003412 if (!VIsual_active || EQUAL_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413 {
3414 /*
3415 * Go to start of current word or white space.
3416 */
3417 back_in_line();
3418 start_pos = curwin->w_cursor;
3419
3420 /*
3421 * If the start is on white space, and white space should be included
3422 * (" word"), or start is not on white space, and white space should
3423 * not be included ("word"), find end of word.
3424 */
3425 if ((cls() == 0) == include)
3426 {
3427 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3428 return FAIL;
3429 }
3430 else
3431 {
3432 /*
3433 * If the start is not on white space, and white space should be
3434 * included ("word "), or start is on white space and white
3435 * space should not be included (" "), find start of word.
3436 * If we end up in the first column of the next line (single char
3437 * word) back up to end of the line.
3438 */
3439 fwd_word(1L, bigword, TRUE);
3440 if (curwin->w_cursor.col == 0)
3441 decl(&curwin->w_cursor);
3442 else
3443 oneleft();
3444
3445 if (include)
3446 include_white = TRUE;
3447 }
3448
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 if (VIsual_active)
3450 {
3451 /* should do something when inclusive == FALSE ! */
3452 VIsual = start_pos;
3453 redraw_curbuf_later(INVERTED); /* update the inversion */
3454 }
3455 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 {
3457 oap->start = start_pos;
3458 oap->motion_type = MCHAR;
3459 }
3460 --count;
3461 }
3462
3463 /*
3464 * When count is still > 0, extend with more objects.
3465 */
3466 while (count > 0)
3467 {
3468 inclusive = TRUE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003469 if (VIsual_active && LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470 {
3471 /*
3472 * In Visual mode, with cursor at start: move cursor back.
3473 */
3474 if (decl(&curwin->w_cursor) == -1)
3475 return FAIL;
3476 if (include != (cls() != 0))
3477 {
3478 if (bck_word(1L, bigword, TRUE) == FAIL)
3479 return FAIL;
3480 }
3481 else
3482 {
3483 if (bckend_word(1L, bigword, TRUE) == FAIL)
3484 return FAIL;
3485 (void)incl(&curwin->w_cursor);
3486 }
3487 }
3488 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 {
3490 /*
3491 * Move cursor forward one word and/or white area.
3492 */
3493 if (incl(&curwin->w_cursor) == -1)
3494 return FAIL;
3495 if (include != (cls() == 0))
3496 {
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003497 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 return FAIL;
3499 /*
3500 * If end is just past a new-line, we don't want to include
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003501 * the first character on the line.
3502 * Put cursor on last char of white.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503 */
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003504 if (oneleft() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 inclusive = FALSE;
3506 }
3507 else
3508 {
3509 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3510 return FAIL;
3511 }
3512 }
3513 --count;
3514 }
3515
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003516 if (include_white && (cls() != 0
3517 || (curwin->w_cursor.col == 0 && !inclusive)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518 {
3519 /*
3520 * If we don't include white space at the end, move the start
3521 * to include some white space there. This makes "daw" work
3522 * better on the last word in a sentence (and "2daw" on last-but-one
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003523 * word). Also when "2daw" deletes "word." at the end of the line
3524 * (cursor is at start of next line).
3525 * But don't delete white space at start of line (indent).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526 */
3527 pos = curwin->w_cursor; /* save cursor position */
3528 curwin->w_cursor = start_pos;
3529 if (oneleft() == OK)
3530 {
3531 back_in_line();
3532 if (cls() == 0 && curwin->w_cursor.col > 0)
3533 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 if (VIsual_active)
3535 VIsual = curwin->w_cursor;
3536 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 oap->start = curwin->w_cursor;
3538 }
3539 }
3540 curwin->w_cursor = pos; /* put cursor back at end */
3541 }
3542
Bram Moolenaar071d4272004-06-13 20:20:40 +00003543 if (VIsual_active)
3544 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003545 if (*p_sel == 'e' && inclusive && LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546 inc_cursor();
3547 if (VIsual_mode == 'V')
3548 {
3549 VIsual_mode = 'v';
3550 redraw_cmdline = TRUE; /* show mode later */
3551 }
3552 }
3553 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 oap->inclusive = inclusive;
3555
3556 return OK;
3557}
3558
3559/*
3560 * Find sentence(s) under the cursor, cursor at end.
3561 * When Visual active, extend it by one or more sentences.
3562 */
3563 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003564current_sent(oparg_T *oap, long count, int include)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565{
3566 pos_T start_pos;
3567 pos_T pos;
3568 int start_blank;
3569 int c;
3570 int at_start_sent;
3571 long ncount;
3572
3573 start_pos = curwin->w_cursor;
3574 pos = start_pos;
3575 findsent(FORWARD, 1L); /* Find start of next sentence. */
3576
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003578 * When the Visual area is bigger than one character: Extend it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003580 if (VIsual_active && !EQUAL_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581 {
3582extend:
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003583 if (LT_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 {
3585 /*
3586 * Cursor at start of Visual area.
3587 * Find out where we are:
3588 * - in the white space before a sentence
3589 * - in a sentence or just after it
3590 * - at the start of a sentence
3591 */
3592 at_start_sent = TRUE;
3593 decl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003594 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595 {
3596 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003597 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 {
3599 at_start_sent = FALSE;
3600 break;
3601 }
3602 incl(&pos);
3603 }
3604 if (!at_start_sent)
3605 {
3606 findsent(BACKWARD, 1L);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003607 if (EQUAL_POS(curwin->w_cursor, start_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 at_start_sent = TRUE; /* exactly at start of sentence */
3609 else
3610 /* inside a sentence, go to its end (start of next) */
3611 findsent(FORWARD, 1L);
3612 }
3613 if (include) /* "as" gets twice as much as "is" */
3614 count *= 2;
3615 while (count--)
3616 {
3617 if (at_start_sent)
3618 find_first_blank(&curwin->w_cursor);
3619 c = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01003620 if (!at_start_sent || (!include && !VIM_ISWHITE(c)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621 findsent(BACKWARD, 1L);
3622 at_start_sent = !at_start_sent;
3623 }
3624 }
3625 else
3626 {
3627 /*
3628 * Cursor at end of Visual area.
3629 * Find out where we are:
3630 * - just before a sentence
3631 * - just before or in the white space before a sentence
3632 * - in a sentence
3633 */
3634 incl(&pos);
3635 at_start_sent = TRUE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003636 /* not just before a sentence */
3637 if (!EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 {
3639 at_start_sent = FALSE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003640 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 {
3642 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003643 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 {
3645 at_start_sent = TRUE;
3646 break;
3647 }
3648 incl(&pos);
3649 }
3650 if (at_start_sent) /* in the sentence */
3651 findsent(BACKWARD, 1L);
3652 else /* in/before white before a sentence */
3653 curwin->w_cursor = start_pos;
3654 }
3655
3656 if (include) /* "as" gets twice as much as "is" */
3657 count *= 2;
3658 findsent_forward(count, at_start_sent);
3659 if (*p_sel == 'e')
3660 ++curwin->w_cursor.col;
3661 }
3662 return OK;
3663 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664
3665 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003666 * If the cursor started on a blank, check if it is just before the start
3667 * of the next sentence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 */
Bram Moolenaar1c465442017-03-12 20:10:05 +01003669 while (c = gchar_pos(&pos), VIM_ISWHITE(c)) /* VIM_ISWHITE() is a macro */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 incl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003671 if (EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 {
3673 start_blank = TRUE;
3674 find_first_blank(&start_pos); /* go back to first blank */
3675 }
3676 else
3677 {
3678 start_blank = FALSE;
3679 findsent(BACKWARD, 1L);
3680 start_pos = curwin->w_cursor;
3681 }
3682 if (include)
3683 ncount = count * 2;
3684 else
3685 {
3686 ncount = count;
3687 if (start_blank)
3688 --ncount;
3689 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00003690 if (ncount > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691 findsent_forward(ncount, TRUE);
3692 else
3693 decl(&curwin->w_cursor);
3694
3695 if (include)
3696 {
3697 /*
3698 * If the blank in front of the sentence is included, exclude the
3699 * blanks at the end of the sentence, go back to the first blank.
3700 * If there are no trailing blanks, try to include leading blanks.
3701 */
3702 if (start_blank)
3703 {
3704 find_first_blank(&curwin->w_cursor);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003705 c = gchar_pos(&curwin->w_cursor); /* VIM_ISWHITE() is a macro */
3706 if (VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 decl(&curwin->w_cursor);
3708 }
Bram Moolenaar1c465442017-03-12 20:10:05 +01003709 else if (c = gchar_cursor(), !VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 find_first_blank(&start_pos);
3711 }
3712
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 if (VIsual_active)
3714 {
Bram Moolenaar641e2862012-07-25 15:06:34 +02003715 /* Avoid getting stuck with "is" on a single space before a sentence. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003716 if (EQUAL_POS(start_pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 goto extend;
3718 if (*p_sel == 'e')
3719 ++curwin->w_cursor.col;
3720 VIsual = start_pos;
3721 VIsual_mode = 'v';
Bram Moolenaar779f2fc2016-09-01 20:58:24 +02003722 redraw_cmdline = TRUE; /* show mode later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 redraw_curbuf_later(INVERTED); /* update the inversion */
3724 }
3725 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 {
3727 /* include a newline after the sentence, if there is one */
3728 if (incl(&curwin->w_cursor) == -1)
3729 oap->inclusive = TRUE;
3730 else
3731 oap->inclusive = FALSE;
3732 oap->start = start_pos;
3733 oap->motion_type = MCHAR;
3734 }
3735 return OK;
3736}
3737
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003738/*
3739 * Find block under the cursor, cursor at end.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003740 * "what" and "other" are two matching parenthesis/brace/etc.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003741 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003743current_block(
3744 oparg_T *oap,
3745 long count,
3746 int include, /* TRUE == include white space */
3747 int what, /* '(', '{', etc. */
3748 int other) /* ')', '}', etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749{
3750 pos_T old_pos;
3751 pos_T *pos = NULL;
3752 pos_T start_pos;
3753 pos_T *end_pos;
3754 pos_T old_start, old_end;
3755 char_u *save_cpo;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003756 int sol = FALSE; /* '{' at start of line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757
3758 old_pos = curwin->w_cursor;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003759 old_end = curwin->w_cursor; /* remember where we started */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 old_start = old_end;
3761
3762 /*
3763 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive.
3764 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003765 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 {
3767 setpcmark();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003768 if (what == '{') /* ignore indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 while (inindent(1))
3770 if (inc_cursor() != 0)
3771 break;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003772 if (gchar_cursor() == what)
3773 /* cursor on '(' or '{', move cursor just after it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 ++curwin->w_cursor.col;
3775 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003776 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 {
3778 old_start = VIsual;
3779 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3780 }
3781 else
3782 old_end = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783
3784 /*
3785 * Search backwards for unclosed '(', '{', etc..
3786 * Put this position in start_pos.
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003787 * Ignore quotes here. Keep the "M" flag in 'cpo', as that is what the
3788 * user wants.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789 */
3790 save_cpo = p_cpo;
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003791 p_cpo = (char_u *)(vim_strchr(p_cpo, CPO_MATCHBSL) != NULL ? "%M" : "%");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792 while (count-- > 0)
3793 {
3794 if ((pos = findmatch(NULL, what)) == NULL)
3795 break;
3796 curwin->w_cursor = *pos;
3797 start_pos = *pos; /* the findmatch for end_pos will overwrite *pos */
3798 }
3799 p_cpo = save_cpo;
3800
3801 /*
3802 * Search for matching ')', '}', etc.
3803 * Put this position in curwin->w_cursor.
3804 */
3805 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL)
3806 {
3807 curwin->w_cursor = old_pos;
3808 return FAIL;
3809 }
3810 curwin->w_cursor = *end_pos;
3811
3812 /*
3813 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE.
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003814 * If the ending '}', ')' or ']' is only preceded by indent, skip that
3815 * indent. But only if the resulting area is not smaller than what we
3816 * started with.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 */
3818 while (!include)
3819 {
3820 incl(&start_pos);
3821 sol = (curwin->w_cursor.col == 0);
3822 decl(&curwin->w_cursor);
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003823 while (inindent(1))
3824 {
3825 sol = TRUE;
3826 if (decl(&curwin->w_cursor) != 0)
3827 break;
3828 }
3829
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 /*
3831 * In Visual mode, when the resulting area is not bigger than what we
3832 * started with, extend it to the next block, and then exclude again.
3833 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003834 if (!LT_POS(start_pos, old_start) && !LT_POS(old_end, curwin->w_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 && VIsual_active)
3836 {
3837 curwin->w_cursor = old_start;
3838 decl(&curwin->w_cursor);
3839 if ((pos = findmatch(NULL, what)) == NULL)
3840 {
3841 curwin->w_cursor = old_pos;
3842 return FAIL;
3843 }
3844 start_pos = *pos;
3845 curwin->w_cursor = *pos;
3846 if ((end_pos = findmatch(NULL, other)) == NULL)
3847 {
3848 curwin->w_cursor = old_pos;
3849 return FAIL;
3850 }
3851 curwin->w_cursor = *end_pos;
3852 }
3853 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854 break;
3855 }
3856
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 if (VIsual_active)
3858 {
3859 if (*p_sel == 'e')
Bram Moolenaar8667d662015-09-01 18:27:49 +02003860 inc(&curwin->w_cursor);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003861 if (sol && gchar_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862 inc(&curwin->w_cursor); /* include the line break */
3863 VIsual = start_pos;
3864 VIsual_mode = 'v';
3865 redraw_curbuf_later(INVERTED); /* update the inversion */
3866 showmode();
3867 }
3868 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 {
3870 oap->start = start_pos;
3871 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003872 oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 if (sol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 incl(&curwin->w_cursor);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003875 else if (LTOREQ_POS(start_pos, curwin->w_cursor))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003876 /* Include the character under the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877 oap->inclusive = TRUE;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003878 else
3879 /* End is before the start (no text in between <>, [], etc.): don't
3880 * operate on any text. */
3881 curwin->w_cursor = start_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882 }
3883
3884 return OK;
3885}
3886
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003887/*
3888 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>".
3889 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>".
3890 */
3891 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003892in_html_tag(
3893 int end_tag)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003894{
3895 char_u *line = ml_get_curline();
3896 char_u *p;
3897 int c;
3898 int lc = NUL;
3899 pos_T pos;
3900
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003901 if (enc_dbcs)
3902 {
3903 char_u *lp = NULL;
3904
3905 /* We search forward until the cursor, because searching backwards is
3906 * very slow for DBCS encodings. */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003907 for (p = line; p < line + curwin->w_cursor.col; MB_PTR_ADV(p))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003908 if (*p == '>' || *p == '<')
3909 {
3910 lc = *p;
3911 lp = p;
3912 }
3913 if (*p != '<') /* check for '<' under cursor */
3914 {
3915 if (lc != '<')
3916 return FALSE;
3917 p = lp;
3918 }
3919 }
3920 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003921 {
3922 for (p = line + curwin->w_cursor.col; p > line; )
3923 {
3924 if (*p == '<') /* find '<' under/before cursor */
3925 break;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003926 MB_PTR_BACK(line, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003927 if (*p == '>') /* find '>' before cursor */
3928 break;
3929 }
3930 if (*p != '<')
3931 return FALSE;
3932 }
3933
3934 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003935 pos.col = (colnr_T)(p - line);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003936
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003937 MB_PTR_ADV(p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003938 if (end_tag)
3939 /* check that there is a '/' after the '<' */
3940 return *p == '/';
3941
3942 /* check that there is no '/' after the '<' */
3943 if (*p == '/')
3944 return FALSE;
3945
3946 /* check that the matching '>' is not preceded by '/' */
3947 for (;;)
3948 {
3949 if (inc(&pos) < 0)
3950 return FALSE;
3951 c = *ml_get_pos(&pos);
3952 if (c == '>')
3953 break;
3954 lc = c;
3955 }
3956 return lc != '/';
3957}
3958
3959/*
3960 * Find tag block under the cursor, cursor at end.
3961 */
3962 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003963current_tagblock(
3964 oparg_T *oap,
3965 long count_arg,
3966 int include) /* TRUE == include white space */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003967{
3968 long count = count_arg;
3969 long n;
3970 pos_T old_pos;
3971 pos_T start_pos;
3972 pos_T end_pos;
3973 pos_T old_start, old_end;
3974 char_u *spat, *epat;
3975 char_u *p;
3976 char_u *cp;
3977 int len;
3978 int r;
3979 int do_include = include;
3980 int save_p_ws = p_ws;
3981 int retval = FAIL;
Bram Moolenaarb6c27352015-03-05 19:57:49 +01003982 int is_inclusive = TRUE;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003983
3984 p_ws = FALSE;
3985
3986 old_pos = curwin->w_cursor;
3987 old_end = curwin->w_cursor; /* remember where we started */
3988 old_start = old_end;
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003989 if (!VIsual_active || *p_sel == 'e')
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003990 decl(&old_end); /* old_end is inclusive */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003991
3992 /*
Bram Moolenaar45360022005-07-21 21:08:21 +00003993 * If we start on "<aaa>" select that block.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003994 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003995 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003996 {
3997 setpcmark();
3998
3999 /* ignore indent */
4000 while (inindent(1))
4001 if (inc_cursor() != 0)
4002 break;
4003
4004 if (in_html_tag(FALSE))
4005 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004006 /* cursor on start tag, move to its '>' */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004007 while (*ml_get_cursor() != '>')
4008 if (inc_cursor() < 0)
4009 break;
4010 }
4011 else if (in_html_tag(TRUE))
4012 {
4013 /* cursor on end tag, move to just before it */
4014 while (*ml_get_cursor() != '<')
4015 if (dec_cursor() < 0)
4016 break;
4017 dec_cursor();
4018 old_end = curwin->w_cursor;
4019 }
4020 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004021 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004022 {
4023 old_start = VIsual;
4024 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
4025 }
4026 else
4027 old_end = VIsual;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004028
4029again:
4030 /*
4031 * Search backwards for unclosed "<aaa>".
4032 * Put this position in start_pos.
4033 */
4034 for (n = 0; n < count; ++n)
4035 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004036 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)",
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004037 (char_u *)"",
Bram Moolenaar48570482017-10-30 21:48:41 +01004038 (char_u *)"</[^>]*>", BACKWARD, NULL, 0,
Bram Moolenaar76929292008-01-06 19:07:36 +00004039 NULL, (linenr_T)0, 0L) <= 0)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004040 {
4041 curwin->w_cursor = old_pos;
4042 goto theend;
4043 }
4044 }
4045 start_pos = curwin->w_cursor;
4046
4047 /*
4048 * Search for matching "</aaa>". First isolate the "aaa".
4049 */
4050 inc_cursor();
4051 p = ml_get_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01004052 for (cp = p; *cp != NUL && *cp != '>' && !VIM_ISWHITE(*cp); MB_PTR_ADV(cp))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004053 ;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004054 len = (int)(cp - p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004055 if (len == 0)
4056 {
4057 curwin->w_cursor = old_pos;
4058 goto theend;
4059 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004060 spat = alloc(len + 31);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004061 epat = alloc(len + 9);
4062 if (spat == NULL || epat == NULL)
4063 {
4064 vim_free(spat);
4065 vim_free(epat);
4066 curwin->w_cursor = old_pos;
4067 goto theend;
4068 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004069 sprintf((char *)spat, "<%.*s\\>\\%%(\\s\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004070 sprintf((char *)epat, "</%.*s>\\c", len, p);
4071
Bram Moolenaar48570482017-10-30 21:48:41 +01004072 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, NULL,
Bram Moolenaar76929292008-01-06 19:07:36 +00004073 0, NULL, (linenr_T)0, 0L);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004074
4075 vim_free(spat);
4076 vim_free(epat);
4077
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004078 if (r < 1 || LT_POS(curwin->w_cursor, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004079 {
4080 /* Can't find other end or it's before the previous end. Could be a
4081 * HTML tag that doesn't have a matching end. Search backwards for
4082 * another starting tag. */
4083 count = 1;
4084 curwin->w_cursor = start_pos;
4085 goto again;
4086 }
4087
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02004088 if (do_include)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004089 {
4090 /* Include up to the '>'. */
4091 while (*ml_get_cursor() != '>')
4092 if (inc_cursor() < 0)
4093 break;
4094 }
4095 else
4096 {
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004097 char_u *c = ml_get_cursor();
4098
4099 /* Exclude the '<' of the end tag.
4100 * If the closing tag is on new line, do not decrement cursor, but
4101 * make operation exclusive, so that the linefeed will be selected */
4102 if (*c == '<' && !VIsual_active && curwin->w_cursor.col == 0)
4103 /* do not decrement cursor */
4104 is_inclusive = FALSE;
4105 else if (*c == '<')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004106 dec_cursor();
4107 }
4108 end_pos = curwin->w_cursor;
4109
4110 if (!do_include)
4111 {
4112 /* Exclude the start tag. */
4113 curwin->w_cursor = start_pos;
4114 while (inc_cursor() >= 0)
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004115 if (*ml_get_cursor() == '>')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004116 {
4117 inc_cursor();
4118 start_pos = curwin->w_cursor;
4119 break;
4120 }
4121 curwin->w_cursor = end_pos;
4122
Bram Moolenaarb476cb72018-08-16 21:37:50 +02004123 // If we are in Visual mode and now have the same text as before set
4124 // "do_include" and try again.
4125 if (VIsual_active && EQUAL_POS(start_pos, old_start)
4126 && EQUAL_POS(end_pos, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004127 {
4128 do_include = TRUE;
4129 curwin->w_cursor = old_start;
4130 count = count_arg;
4131 goto again;
4132 }
4133 }
4134
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004135 if (VIsual_active)
4136 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004137 /* If the end is before the start there is no text between tags, select
4138 * the char under the cursor. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004139 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004140 curwin->w_cursor = start_pos;
4141 else if (*p_sel == 'e')
Bram Moolenaar8340dd92014-12-13 20:11:33 +01004142 inc_cursor();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004143 VIsual = start_pos;
4144 VIsual_mode = 'v';
4145 redraw_curbuf_later(INVERTED); /* update the inversion */
4146 showmode();
4147 }
4148 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004149 {
4150 oap->start = start_pos;
4151 oap->motion_type = MCHAR;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004152 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004153 {
4154 /* End is before the start: there is no text between tags; operate
4155 * on an empty area. */
4156 curwin->w_cursor = start_pos;
4157 oap->inclusive = FALSE;
4158 }
4159 else
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004160 oap->inclusive = is_inclusive;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004161 }
4162 retval = OK;
4163
4164theend:
4165 p_ws = save_p_ws;
4166 return retval;
4167}
4168
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004170current_par(
4171 oparg_T *oap,
4172 long count,
4173 int include, /* TRUE == include white space */
4174 int type) /* 'p' for paragraph, 'S' for section */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175{
4176 linenr_T start_lnum;
4177 linenr_T end_lnum;
4178 int white_in_front;
4179 int dir;
4180 int start_is_white;
4181 int prev_start_is_white;
4182 int retval = OK;
4183 int do_white = FALSE;
4184 int t;
4185 int i;
4186
4187 if (type == 'S') /* not implemented yet */
4188 return FAIL;
4189
4190 start_lnum = curwin->w_cursor.lnum;
4191
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192 /*
4193 * When visual area is more than one line: extend it.
4194 */
4195 if (VIsual_active && start_lnum != VIsual.lnum)
4196 {
4197extend:
4198 if (start_lnum < VIsual.lnum)
4199 dir = BACKWARD;
4200 else
4201 dir = FORWARD;
4202 for (i = count; --i >= 0; )
4203 {
4204 if (start_lnum ==
4205 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
4206 {
4207 retval = FAIL;
4208 break;
4209 }
4210
4211 prev_start_is_white = -1;
4212 for (t = 0; t < 2; ++t)
4213 {
4214 start_lnum += dir;
4215 start_is_white = linewhite(start_lnum);
4216 if (prev_start_is_white == start_is_white)
4217 {
4218 start_lnum -= dir;
4219 break;
4220 }
4221 for (;;)
4222 {
4223 if (start_lnum == (dir == BACKWARD
4224 ? 1 : curbuf->b_ml.ml_line_count))
4225 break;
4226 if (start_is_white != linewhite(start_lnum + dir)
4227 || (!start_is_white
4228 && startPS(start_lnum + (dir > 0
4229 ? 1 : 0), 0, 0)))
4230 break;
4231 start_lnum += dir;
4232 }
4233 if (!include)
4234 break;
4235 if (start_lnum == (dir == BACKWARD
4236 ? 1 : curbuf->b_ml.ml_line_count))
4237 break;
4238 prev_start_is_white = start_is_white;
4239 }
4240 }
4241 curwin->w_cursor.lnum = start_lnum;
4242 curwin->w_cursor.col = 0;
4243 return retval;
4244 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245
4246 /*
4247 * First move back to the start_lnum of the paragraph or white lines
4248 */
4249 white_in_front = linewhite(start_lnum);
4250 while (start_lnum > 1)
4251 {
4252 if (white_in_front) /* stop at first white line */
4253 {
4254 if (!linewhite(start_lnum - 1))
4255 break;
4256 }
4257 else /* stop at first non-white line of start of paragraph */
4258 {
4259 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
4260 break;
4261 }
4262 --start_lnum;
4263 }
4264
4265 /*
4266 * Move past the end of any white lines.
4267 */
4268 end_lnum = start_lnum;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004269 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
4270 ++end_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004271
4272 --end_lnum;
4273 i = count;
4274 if (!include && white_in_front)
4275 --i;
4276 while (i--)
4277 {
4278 if (end_lnum == curbuf->b_ml.ml_line_count)
4279 return FAIL;
4280
4281 if (!include)
4282 do_white = linewhite(end_lnum + 1);
4283
4284 if (include || !do_white)
4285 {
4286 ++end_lnum;
4287 /*
4288 * skip to end of paragraph
4289 */
4290 while (end_lnum < curbuf->b_ml.ml_line_count
4291 && !linewhite(end_lnum + 1)
4292 && !startPS(end_lnum + 1, 0, 0))
4293 ++end_lnum;
4294 }
4295
4296 if (i == 0 && white_in_front && include)
4297 break;
4298
4299 /*
4300 * skip to end of white lines after paragraph
4301 */
4302 if (include || do_white)
4303 while (end_lnum < curbuf->b_ml.ml_line_count
4304 && linewhite(end_lnum + 1))
4305 ++end_lnum;
4306 }
4307
4308 /*
4309 * If there are no empty lines at the end, try to find some empty lines at
4310 * the start (unless that has been done already).
4311 */
4312 if (!white_in_front && !linewhite(end_lnum) && include)
4313 while (start_lnum > 1 && linewhite(start_lnum - 1))
4314 --start_lnum;
4315
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 if (VIsual_active)
4317 {
4318 /* Problem: when doing "Vipipip" nothing happens in a single white
4319 * line, we get stuck there. Trap this here. */
4320 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4321 goto extend;
Bram Moolenaar84b2a382017-02-17 11:40:00 +01004322 if (VIsual.lnum != start_lnum)
4323 {
4324 VIsual.lnum = start_lnum;
4325 VIsual.col = 0;
4326 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327 VIsual_mode = 'V';
4328 redraw_curbuf_later(INVERTED); /* update the inversion */
4329 showmode();
4330 }
4331 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332 {
4333 oap->start.lnum = start_lnum;
4334 oap->start.col = 0;
4335 oap->motion_type = MLINE;
4336 }
4337 curwin->w_cursor.lnum = end_lnum;
4338 curwin->w_cursor.col = 0;
4339
4340 return OK;
4341}
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004342
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004343/*
4344 * Search quote char from string line[col].
4345 * Quote character escaped by one of the characters in "escape" is not counted
4346 * as a quote.
4347 * Returns column number of "quotechar" or -1 when not found.
4348 */
4349 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004350find_next_quote(
4351 char_u *line,
4352 int col,
4353 int quotechar,
4354 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004355{
4356 int c;
4357
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004358 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004359 {
4360 c = line[col];
4361 if (c == NUL)
4362 return -1;
4363 else if (escape != NULL && vim_strchr(escape, c))
4364 ++col;
4365 else if (c == quotechar)
4366 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004367 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004368 col += (*mb_ptr2len)(line + col);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004369 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004370 ++col;
4371 }
4372 return col;
4373}
4374
4375/*
4376 * Search backwards in "line" from column "col_start" to find "quotechar".
4377 * Quote character escaped by one of the characters in "escape" is not counted
4378 * as a quote.
4379 * Return the found column or zero.
4380 */
4381 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004382find_prev_quote(
4383 char_u *line,
4384 int col_start,
4385 int quotechar,
4386 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004387{
4388 int n;
4389
4390 while (col_start > 0)
4391 {
4392 --col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004393 col_start -= (*mb_head_off)(line, line + col_start);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004394 n = 0;
4395 if (escape != NULL)
4396 while (col_start - n > 0 && vim_strchr(escape,
4397 line[col_start - n - 1]) != NULL)
4398 ++n;
4399 if (n & 1)
4400 col_start -= n; /* uneven number of escape chars, skip it */
4401 else if (line[col_start] == quotechar)
4402 break;
4403 }
4404 return col_start;
4405}
4406
4407/*
4408 * Find quote under the cursor, cursor at end.
4409 * Returns TRUE if found, else FALSE.
4410 */
4411 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004412current_quote(
4413 oparg_T *oap,
4414 long count,
4415 int include, /* TRUE == include quote char */
4416 int quotechar) /* Quote character */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004417{
4418 char_u *line = ml_get_curline();
4419 int col_end;
4420 int col_start = curwin->w_cursor.col;
4421 int inclusive = FALSE;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004422 int vis_empty = TRUE; // Visual selection <= 1 char
4423 int vis_bef_curs = FALSE; // Visual starts before cursor
4424 int inside_quotes = FALSE; // Looks like "i'" done before
4425 int selected_quote = FALSE; // Has quote inside selection
Bram Moolenaarab194812005-09-14 21:40:12 +00004426 int i;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004427 int restore_vis_bef = FALSE; // restore VIsual on abort
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004428
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004429 /* Correct cursor when 'selection' is "exclusive". */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004430 if (VIsual_active)
4431 {
Bram Moolenaar46522af2017-02-18 23:12:01 +01004432 /* this only works within one line */
4433 if (VIsual.lnum != curwin->w_cursor.lnum)
4434 return FALSE;
4435
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004436 vis_bef_curs = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004437 if (*p_sel == 'e')
4438 {
4439 if (!vis_bef_curs)
4440 {
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004441 // VIsual needs to be the start of Visual selection.
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004442 pos_T t = curwin->w_cursor;
4443
4444 curwin->w_cursor = VIsual;
4445 VIsual = t;
4446 vis_bef_curs = TRUE;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004447 restore_vis_bef = TRUE;
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004448 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004449 dec_cursor();
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004450 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004451 vis_empty = EQUAL_POS(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004452 }
Bram Moolenaarab194812005-09-14 21:40:12 +00004453
4454 if (!vis_empty)
4455 {
4456 /* Check if the existing selection exactly spans the text inside
4457 * quotes. */
4458 if (vis_bef_curs)
4459 {
4460 inside_quotes = VIsual.col > 0
4461 && line[VIsual.col - 1] == quotechar
4462 && line[curwin->w_cursor.col] != NUL
4463 && line[curwin->w_cursor.col + 1] == quotechar;
4464 i = VIsual.col;
4465 col_end = curwin->w_cursor.col;
4466 }
4467 else
4468 {
4469 inside_quotes = curwin->w_cursor.col > 0
4470 && line[curwin->w_cursor.col - 1] == quotechar
4471 && line[VIsual.col] != NUL
4472 && line[VIsual.col + 1] == quotechar;
4473 i = curwin->w_cursor.col;
4474 col_end = VIsual.col;
4475 }
4476
4477 /* Find out if we have a quote in the selection. */
4478 while (i <= col_end)
4479 if (line[i++] == quotechar)
4480 {
4481 selected_quote = TRUE;
4482 break;
4483 }
4484 }
4485
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004486 if (!vis_empty && line[col_start] == quotechar)
4487 {
4488 /* Already selecting something and on a quote character. Find the
4489 * next quoted string. */
4490 if (vis_bef_curs)
4491 {
4492 /* Assume we are on a closing quote: move to after the next
4493 * opening quote. */
4494 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4495 if (col_start < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004496 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004497 col_end = find_next_quote(line, col_start + 1, quotechar,
4498 curbuf->b_p_qe);
4499 if (col_end < 0)
4500 {
4501 /* We were on a starting quote perhaps? */
4502 col_end = col_start;
4503 col_start = curwin->w_cursor.col;
4504 }
4505 }
4506 else
4507 {
4508 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4509 if (line[col_end] != quotechar)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004510 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004511 col_start = find_prev_quote(line, col_end, quotechar,
4512 curbuf->b_p_qe);
4513 if (line[col_start] != quotechar)
4514 {
4515 /* We were on an ending quote perhaps? */
4516 col_start = col_end;
4517 col_end = curwin->w_cursor.col;
4518 }
4519 }
4520 }
4521 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004522
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004523 if (line[col_start] == quotechar || !vis_empty)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004524 {
4525 int first_col = col_start;
4526
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004527 if (!vis_empty)
4528 {
4529 if (vis_bef_curs)
4530 first_col = find_next_quote(line, col_start, quotechar, NULL);
4531 else
4532 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4533 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004534
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004535 /* The cursor is on a quote, we don't know if it's the opening or
4536 * closing quote. Search from the start of the line to find out.
4537 * Also do this when there is a Visual area, a' may leave the cursor
4538 * in between two strings. */
4539 col_start = 0;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004540 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004541 {
4542 /* Find open quote character. */
4543 col_start = find_next_quote(line, col_start, quotechar, NULL);
4544 if (col_start < 0 || col_start > first_col)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004545 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004546 /* Find close quote character. */
4547 col_end = find_next_quote(line, col_start + 1, quotechar,
4548 curbuf->b_p_qe);
4549 if (col_end < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004550 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004551 /* If is cursor between start and end quote character, it is
4552 * target text object. */
4553 if (col_start <= first_col && first_col <= col_end)
4554 break;
4555 col_start = col_end + 1;
4556 }
4557 }
4558 else
4559 {
4560 /* Search backward for a starting quote. */
4561 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4562 if (line[col_start] != quotechar)
4563 {
4564 /* No quote before the cursor, look after the cursor. */
4565 col_start = find_next_quote(line, col_start, quotechar, NULL);
4566 if (col_start < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004567 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004568 }
4569
4570 /* Find close quote character. */
4571 col_end = find_next_quote(line, col_start + 1, quotechar,
4572 curbuf->b_p_qe);
4573 if (col_end < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004574 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004575 }
4576
4577 /* When "include" is TRUE, include spaces after closing quote or before
4578 * the starting quote. */
4579 if (include)
4580 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004581 if (VIM_ISWHITE(line[col_end + 1]))
4582 while (VIM_ISWHITE(line[col_end + 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004583 ++col_end;
4584 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004585 while (col_start > 0 && VIM_ISWHITE(line[col_start - 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004586 --col_start;
4587 }
4588
Bram Moolenaarab194812005-09-14 21:40:12 +00004589 /* Set start position. After vi" another i" must include the ".
4590 * For v2i" include the quotes. */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004591 if (!include && count < 2 && (vis_empty || !inside_quotes))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004592 ++col_start;
4593 curwin->w_cursor.col = col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004594 if (VIsual_active)
4595 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004596 /* Set the start of the Visual area when the Visual area was empty, we
4597 * were just inside quotes or the Visual area didn't start at a quote
4598 * and didn't include a quote.
4599 */
4600 if (vis_empty
4601 || (vis_bef_curs
4602 && !selected_quote
4603 && (inside_quotes
4604 || (line[VIsual.col] != quotechar
4605 && (VIsual.col == 0
4606 || line[VIsual.col - 1] != quotechar)))))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004607 {
4608 VIsual = curwin->w_cursor;
4609 redraw_curbuf_later(INVERTED);
4610 }
4611 }
4612 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004613 {
4614 oap->start = curwin->w_cursor;
4615 oap->motion_type = MCHAR;
4616 }
4617
4618 /* Set end position. */
4619 curwin->w_cursor.col = col_end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004620 if ((include || count > 1 /* After vi" another i" must include the ". */
Bram Moolenaarab194812005-09-14 21:40:12 +00004621 || (!vis_empty && inside_quotes)
Bram Moolenaarab194812005-09-14 21:40:12 +00004622 ) && inc_cursor() == 2)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004623 inclusive = TRUE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004624 if (VIsual_active)
4625 {
4626 if (vis_empty || vis_bef_curs)
4627 {
4628 /* decrement cursor when 'selection' is not exclusive */
4629 if (*p_sel != 'e')
4630 dec_cursor();
4631 }
4632 else
4633 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004634 /* Cursor is at start of Visual area. Set the end of the Visual
4635 * area when it was just inside quotes or it didn't end at a
4636 * quote. */
4637 if (inside_quotes
4638 || (!selected_quote
4639 && line[VIsual.col] != quotechar
4640 && (line[VIsual.col] == NUL
4641 || line[VIsual.col + 1] != quotechar)))
4642 {
4643 dec_cursor();
4644 VIsual = curwin->w_cursor;
4645 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004646 curwin->w_cursor.col = col_start;
4647 }
4648 if (VIsual_mode == 'V')
4649 {
4650 VIsual_mode = 'v';
4651 redraw_cmdline = TRUE; /* show mode later */
4652 }
4653 }
4654 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004655 {
4656 /* Set inclusive and other oap's flags. */
4657 oap->inclusive = inclusive;
4658 }
4659
4660 return OK;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004661
4662abort_search:
4663 if (VIsual_active && *p_sel == 'e')
4664 {
4665 inc_cursor();
4666 if (restore_vis_bef)
4667 {
4668 pos_T t = curwin->w_cursor;
4669
4670 curwin->w_cursor = VIsual;
4671 VIsual = t;
4672 }
4673 }
4674 return FALSE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004675}
4676
4677#endif /* FEAT_TEXTOBJ */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004679/*
Bram Moolenaar453c1922019-10-26 14:42:09 +02004680 * Check if the pattern is zero-width.
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004681 * If move is TRUE, check from the beginning of the buffer, else from position
4682 * "cur".
4683 * "direction" is FORWARD or BACKWARD.
4684 * Returns TRUE, FALSE or -1 for failure.
4685 */
4686 static int
4687is_zero_width(char_u *pattern, int move, pos_T *cur, int direction)
4688{
4689 regmmatch_T regmatch;
4690 int nmatched = 0;
4691 int result = -1;
4692 pos_T pos;
4693 int save_called_emsg = called_emsg;
4694 int flag = 0;
4695
4696 if (pattern == NULL)
4697 pattern = spats[last_idx].pat;
4698
4699 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
4700 SEARCH_KEEP, &regmatch) == FAIL)
4701 return -1;
4702
4703 // init startcol correctly
4704 regmatch.startpos[0].col = -1;
4705 // move to match
4706 if (move)
4707 {
4708 CLEAR_POS(&pos);
4709 }
4710 else
4711 {
4712 pos = *cur;
4713 // accept a match at the cursor position
4714 flag = SEARCH_START;
4715 }
4716
4717 if (searchit(curwin, curbuf, &pos, NULL, direction, pattern, 1,
4718 SEARCH_KEEP + flag, RE_SEARCH, NULL) != FAIL)
4719 {
4720 // Zero-width pattern should match somewhere, then we can check if
4721 // start and end are in the same position.
4722 called_emsg = FALSE;
4723 do
4724 {
4725 regmatch.startpos[0].col++;
4726 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
4727 pos.lnum, regmatch.startpos[0].col, NULL, NULL);
4728 if (nmatched != 0)
4729 break;
4730 } while (direction == FORWARD ? regmatch.startpos[0].col < pos.col
4731 : regmatch.startpos[0].col > pos.col);
4732
4733 if (!called_emsg)
4734 {
4735 result = (nmatched != 0
4736 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
4737 && regmatch.startpos[0].col == regmatch.endpos[0].col);
4738 }
4739 }
4740
4741 called_emsg |= save_called_emsg;
4742 vim_regfree(regmatch.regprog);
4743 return result;
4744}
4745
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004746
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004747/*
4748 * Find next search match under cursor, cursor at end.
4749 * Used while an operator is pending, and in Visual mode.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004750 */
4751 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004752current_search(
4753 long count,
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004754 int forward) // TRUE for forward, FALSE for backward
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004755{
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004756 pos_T start_pos; // start position of the pattern match
4757 pos_T end_pos; // end position of the pattern match
4758 pos_T orig_pos; // position of the cursor at beginning
4759 pos_T pos; // position after the pattern
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004760 int i;
4761 int dir;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004762 int result; // result of various function calls
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004763 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004764 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02004765 pos_T save_VIsual = VIsual;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004766 int zero_width;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004767
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004768 /* wrapping should not occur */
4769 p_ws = FALSE;
4770
4771 /* Correct cursor when 'selection' is exclusive */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004772 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004773 dec_cursor();
4774
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004775 orig_pos = pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004776 if (VIsual_active)
4777 {
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004778 if (forward)
4779 incl(&pos);
4780 else
4781 decl(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004782 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004783
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004784 /* Is the pattern is zero-width?, this time, don't care about the direction
4785 */
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004786 zero_width = is_zero_width(spats[last_idx].pat, TRUE, &curwin->w_cursor,
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004787 FORWARD);
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004788 if (zero_width == -1)
Bram Moolenaarba2d44f2013-11-28 19:27:30 +01004789 {
4790 p_ws = old_p_ws;
4791 return FAIL; /* pattern not found */
4792 }
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004793
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004794 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004795 * The trick is to first search backwards and then search forward again,
4796 * so that a match at the current cursor position will be correctly
4797 * captured.
4798 */
4799 for (i = 0; i < 2; i++)
4800 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004801 if (forward)
4802 dir = i;
4803 else
4804 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004805
4806 flags = 0;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004807 if (!dir && !zero_width)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004808 flags = SEARCH_END;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004809 end_pos = pos;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004810
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004811 result = searchit(curwin, curbuf, &pos, &end_pos,
4812 (dir ? FORWARD : BACKWARD),
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004813 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004814 SEARCH_KEEP | flags, RE_SEARCH, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004815
4816 /* First search may fail, but then start searching from the
4817 * beginning of the file (cursor might be on the search match)
4818 * except when Visual mode is active, so that extending the visual
4819 * selection works. */
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004820 if (i == 1 && !result) /* not found, abort */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004821 {
4822 curwin->w_cursor = orig_pos;
4823 if (VIsual_active)
4824 VIsual = save_VIsual;
4825 p_ws = old_p_ws;
4826 return FAIL;
4827 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004828 else if (i == 0 && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004829 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004830 if (forward)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004831 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004832 /* try again from start of buffer */
4833 CLEAR_POS(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004834 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004835 else
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004836 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004837 /* try again from end of buffer */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004838 /* searching backwards, so set pos to last line and col */
4839 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02004840 pos.col = (colnr_T)STRLEN(
4841 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004842 }
4843 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004844 }
4845
4846 start_pos = pos;
Bram Moolenaarbdb65792018-05-22 17:50:42 +02004847 p_ws = old_p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004848
4849 if (!VIsual_active)
4850 VIsual = start_pos;
4851
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004852 // put cursor on last character of match
4853 curwin->w_cursor = end_pos;
Bram Moolenaar453c1922019-10-26 14:42:09 +02004854 if (LT_POS(VIsual, end_pos) && forward)
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004855 dec_cursor();
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004856 else if (VIsual_active && LT_POS(curwin->w_cursor, VIsual))
4857 curwin->w_cursor = pos; // put the cursor on the start of the match
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004858 VIsual_active = TRUE;
4859 VIsual_mode = 'v';
4860
Bram Moolenaarb7633612019-02-10 21:48:25 +01004861 if (*p_sel == 'e')
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004862 {
Bram Moolenaarb7633612019-02-10 21:48:25 +01004863 /* Correction for exclusive selection depends on the direction. */
4864 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor))
4865 inc_cursor();
4866 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual))
4867 inc(&VIsual);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004868 }
4869
4870#ifdef FEAT_FOLDING
4871 if (fdo_flags & FDO_SEARCH && KeyTyped)
4872 foldOpenCursor();
4873#endif
4874
4875 may_start_select('c');
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004876 setmouse();
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004877#ifdef FEAT_CLIPBOARD
4878 /* Make sure the clipboard gets updated. Needed because start and
4879 * end are still the same, and the selection needs to be owned */
4880 clip_star.vmode = NUL;
4881#endif
4882 redraw_curbuf_later(INVERTED);
4883 showmode();
4884
4885 return OK;
4886}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004887
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4889 || defined(PROTO)
4890/*
4891 * return TRUE if line 'lnum' is empty or has white chars only.
4892 */
4893 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004894linewhite(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895{
4896 char_u *p;
4897
4898 p = skipwhite(ml_get(lnum));
4899 return (*p == NUL);
4900}
4901#endif
4902
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02004903/*
4904 * Add the search count "[3/19]" to "msgbuf".
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02004905 * When "recompute" is TRUE always recompute the numbers.
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02004906 */
4907 static void
4908search_stat(
4909 int dirc,
4910 pos_T *pos,
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02004911 int show_top_bot_msg,
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02004912 char_u *msgbuf,
4913 int recompute)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02004914{
4915 int save_ws = p_ws;
4916 int wraparound = FALSE;
4917 pos_T p = (*pos);
4918 static pos_T lastpos = {0, 0, 0};
4919 static int cur = 0;
4920 static int cnt = 0;
4921 static int chgtick = 0;
4922 static char_u *lastpat = NULL;
4923 static buf_T *lbuf = NULL;
4924#ifdef FEAT_RELTIME
4925 proftime_T start;
4926#endif
4927#define OUT_OF_TIME 999
4928
4929 wraparound = ((dirc == '?' && LT_POS(lastpos, p))
4930 || (dirc == '/' && LT_POS(p, lastpos)));
4931
4932 // If anything relevant changed the count has to be recomputed.
4933 // MB_STRNICMP ignores case, but we should not ignore case.
4934 // Unfortunately, there is no MB_STRNICMP function.
4935 if (!(chgtick == CHANGEDTICK(curbuf)
4936 && MB_STRNICMP(lastpat, spats[last_idx].pat, STRLEN(lastpat)) == 0
4937 && STRLEN(lastpat) == STRLEN(spats[last_idx].pat)
4938 && EQUAL_POS(lastpos, curwin->w_cursor)
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02004939 && lbuf == curbuf) || wraparound || cur < 0 || cur > 99 || recompute)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02004940 {
4941 cur = 0;
4942 cnt = 0;
4943 CLEAR_POS(&lastpos);
4944 lbuf = curbuf;
4945 }
4946
4947 if (EQUAL_POS(lastpos, curwin->w_cursor) && !wraparound
4948 && (dirc == '/' ? cur < cnt : cur > 0))
4949 cur += dirc == '/' ? 1 : -1;
4950 else
4951 {
4952 p_ws = FALSE;
4953#ifdef FEAT_RELTIME
4954 profile_setlimit(20L, &start);
4955#endif
4956 while (!got_int && searchit(curwin, curbuf, &lastpos, NULL,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004957 FORWARD, NULL, 1, SEARCH_KEEP, RE_LAST, NULL) != FAIL)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02004958 {
4959#ifdef FEAT_RELTIME
4960 // Stop after passing the time limit.
4961 if (profile_passed_limit(&start))
4962 {
4963 cnt = OUT_OF_TIME;
4964 cur = OUT_OF_TIME;
4965 break;
4966 }
4967#endif
4968 cnt++;
4969 if (LTOREQ_POS(lastpos, p))
4970 cur++;
4971 fast_breakcheck();
4972 if (cnt > 99)
4973 break;
4974 }
4975 if (got_int)
4976 cur = -1; // abort
4977 }
4978 if (cur > 0)
4979 {
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02004980 char t[SEARCH_STAT_BUF_LEN] = "";
Bram Moolenaare2ad8262019-05-24 13:22:22 +02004981 size_t len;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02004982
4983#ifdef FEAT_RIGHTLEFT
4984 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
4985 {
4986 if (cur == OUT_OF_TIME)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02004987 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[?/??]");
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02004988 else if (cnt > 99 && cur > 99)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02004989 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>99/>99]");
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02004990 else if (cnt > 99)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02004991 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>99/%d]", cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02004992 else
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02004993 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/%d]", cnt, cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02004994 }
4995 else
4996#endif
4997 {
4998 if (cur == OUT_OF_TIME)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02004999 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[?/??]");
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005000 else if (cnt > 99 && cur > 99)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005001 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>99/>99]");
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005002 else if (cnt > 99)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005003 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/>99]", cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005004 else
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005005 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/%d]", cur, cnt);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005006 }
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02005007
5008 len = STRLEN(t);
Bram Moolenaardc6855a2019-05-18 19:26:29 +02005009 if (show_top_bot_msg && len + 2 < SEARCH_STAT_BUF_LEN)
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02005010 {
Bram Moolenaar16b58ae2019-09-06 20:40:21 +02005011 mch_memmove(t + 2, t, len);
5012 t[0] = 'W';
5013 t[1] = ' ';
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02005014 len += 2;
5015 }
5016
5017 mch_memmove(msgbuf + STRLEN(msgbuf) - len, t, len);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005018 if (dirc == '?' && cur == 100)
5019 cur = -1;
5020
5021 vim_free(lastpat);
5022 lastpat = vim_strsave(spats[last_idx].pat);
5023 chgtick = CHANGEDTICK(curbuf);
5024 lbuf = curbuf;
5025 lastpos = p;
5026
Bram Moolenaar984f0312019-05-24 13:11:47 +02005027 // keep the message even after redraw, but don't put in history
5028 msg_hist_off = TRUE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005029 give_warning(msgbuf, FALSE);
Bram Moolenaar984f0312019-05-24 13:11:47 +02005030 msg_hist_off = FALSE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005031 }
5032 p_ws = save_ws;
5033}
5034
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035#if defined(FEAT_FIND_ID) || defined(PROTO)
5036/*
5037 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01005038 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005041find_pattern_in_path(
5042 char_u *ptr, /* pointer to search pattern */
5043 int dir UNUSED, /* direction of expansion */
5044 int len, /* length of search pattern */
5045 int whole, /* match whole words only */
5046 int skip_comments, /* don't match inside comments */
5047 int type, /* Type of search; are we looking for a type?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 a macro? */
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005049 long count,
5050 int action, /* What to do when we find it */
5051 linenr_T start_lnum, /* first line to start searching */
5052 linenr_T end_lnum) /* last line for searching */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053{
5054 SearchedFile *files; /* Stack of included files */
5055 SearchedFile *bigger; /* When we need more space */
5056 int max_path_depth = 50;
5057 long match_count = 1;
5058
5059 char_u *pat;
5060 char_u *new_fname;
5061 char_u *curr_fname = curbuf->b_fname;
5062 char_u *prev_fname = NULL;
5063 linenr_T lnum;
5064 int depth;
5065 int depth_displayed; /* For type==CHECK_PATH */
5066 int old_files;
5067 int already_searched;
5068 char_u *file_line;
5069 char_u *line;
5070 char_u *p;
5071 char_u save_char;
5072 int define_matched;
5073 regmatch_T regmatch;
5074 regmatch_T incl_regmatch;
5075 regmatch_T def_regmatch;
5076 int matched = FALSE;
5077 int did_show = FALSE;
5078 int found = FALSE;
5079 int i;
5080 char_u *already = NULL;
5081 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005082 char_u *inc_opt = NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005083#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 win_T *curwin_save = NULL;
5085#endif
5086
5087 regmatch.regprog = NULL;
5088 incl_regmatch.regprog = NULL;
5089 def_regmatch.regprog = NULL;
5090
5091 file_line = alloc(LSIZE);
5092 if (file_line == NULL)
5093 return;
5094
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 if (type != CHECK_PATH && type != FIND_DEFINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 /* when CONT_SOL is set compare "ptr" with the beginning of the line
5097 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005098 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 {
5100 pat = alloc(len + 5);
5101 if (pat == NULL)
5102 goto fpip_end;
5103 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
5104 /* ignore case according to p_ic, p_scs and pat */
5105 regmatch.rm_ic = ignorecase(pat);
5106 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
5107 vim_free(pat);
5108 if (regmatch.regprog == NULL)
5109 goto fpip_end;
5110 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005111 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
5112 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005114 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 if (incl_regmatch.regprog == NULL)
5116 goto fpip_end;
5117 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */
5118 }
5119 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
5120 {
5121 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
5122 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
5123 if (def_regmatch.regprog == NULL)
5124 goto fpip_end;
5125 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */
5126 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005127 files = lalloc_clear(max_path_depth * sizeof(SearchedFile), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128 if (files == NULL)
5129 goto fpip_end;
5130 old_files = max_path_depth;
5131 depth = depth_displayed = -1;
5132
5133 lnum = start_lnum;
5134 if (end_lnum > curbuf->b_ml.ml_line_count)
5135 end_lnum = curbuf->b_ml.ml_line_count;
5136 if (lnum > end_lnum) /* do at least one line */
5137 lnum = end_lnum;
5138 line = ml_get(lnum);
5139
5140 for (;;)
5141 {
5142 if (incl_regmatch.regprog != NULL
5143 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
5144 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005145 char_u *p_fname = (curr_fname == curbuf->b_fname)
5146 ? curbuf->b_ffname : curr_fname;
5147
5148 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
5149 /* Use text from '\zs' to '\ze' (or end) of 'include'. */
5150 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005151 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005152 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
5153 else
5154 /* Use text after match with 'include'. */
5155 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005156 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 already_searched = FALSE;
5158 if (new_fname != NULL)
5159 {
5160 /* Check whether we have already searched in this file */
5161 for (i = 0;; i++)
5162 {
5163 if (i == depth + 1)
5164 i = old_files;
5165 if (i == max_path_depth)
5166 break;
Bram Moolenaar99499b12019-05-23 21:35:48 +02005167 if (fullpathcmp(new_fname, files[i].name, TRUE, TRUE)
5168 & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 {
5170 if (type != CHECK_PATH &&
5171 action == ACTION_SHOW_ALL && files[i].matched)
5172 {
5173 msg_putchar('\n'); /* cursor below last one */
5174 if (!got_int) /* don't display if 'q'
5175 typed at "--more--"
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005176 message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177 {
5178 msg_home_replace_hl(new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01005179 msg_puts(_(" (includes previously listed match)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 prev_fname = NULL;
5181 }
5182 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01005183 VIM_CLEAR(new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184 already_searched = TRUE;
5185 break;
5186 }
5187 }
5188 }
5189
5190 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
5191 || (new_fname == NULL && !already_searched)))
5192 {
5193 if (did_show)
5194 msg_putchar('\n'); /* cursor below last one */
5195 else
5196 {
5197 gotocmdline(TRUE); /* cursor at status line */
Bram Moolenaar32526b32019-01-19 17:43:09 +01005198 msg_puts_title(_("--- Included files "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005200 msg_puts_title(_("not found "));
5201 msg_puts_title(_("in path ---\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202 }
5203 did_show = TRUE;
5204 while (depth_displayed < depth && !got_int)
5205 {
5206 ++depth_displayed;
5207 for (i = 0; i < depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005208 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209 msg_home_replace(files[depth_displayed].name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01005210 msg_puts(" -->\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211 }
5212 if (!got_int) /* don't display if 'q' typed
5213 for "--more--" message */
5214 {
5215 for (i = 0; i <= depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005216 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217 if (new_fname != NULL)
5218 {
5219 /* using "new_fname" is more reliable, e.g., when
5220 * 'includeexpr' is set. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005221 msg_outtrans_attr(new_fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 }
5223 else
5224 {
5225 /*
5226 * Isolate the file name.
5227 * Include the surrounding "" or <> if present.
5228 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005229 if (inc_opt != NULL
5230 && strstr((char *)inc_opt, "\\zs") != NULL)
5231 {
5232 /* pattern contains \zs, use the match */
5233 p = incl_regmatch.startp[0];
5234 i = (int)(incl_regmatch.endp[0]
5235 - incl_regmatch.startp[0]);
5236 }
5237 else
5238 {
5239 /* find the file name after the end of the match */
5240 for (p = incl_regmatch.endp[0];
5241 *p && !vim_isfilec(*p); p++)
5242 ;
5243 for (i = 0; vim_isfilec(p[i]); i++)
5244 ;
5245 }
5246
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247 if (i == 0)
5248 {
5249 /* Nothing found, use the rest of the line. */
5250 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005251 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252 }
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005253 /* Avoid checking before the start of the line, can
5254 * happen if \zs appears in the regexp. */
5255 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256 {
5257 if (p[-1] == '"' || p[-1] == '<')
5258 {
5259 --p;
5260 ++i;
5261 }
5262 if (p[i] == '"' || p[i] == '>')
5263 ++i;
5264 }
5265 save_char = p[i];
5266 p[i] = NUL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01005267 msg_outtrans_attr(p, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 p[i] = save_char;
5269 }
5270
5271 if (new_fname == NULL && action == ACTION_SHOW_ALL)
5272 {
5273 if (already_searched)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005274 msg_puts(_(" (Already listed)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005276 msg_puts(_(" NOT FOUND"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 }
5278 }
5279 out_flush(); /* output each line directly */
5280 }
5281
5282 if (new_fname != NULL)
5283 {
5284 /* Push the new file onto the file stack */
5285 if (depth + 1 == old_files)
5286 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005287 bigger = ALLOC_MULT(SearchedFile, max_path_depth * 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005288 if (bigger != NULL)
5289 {
5290 for (i = 0; i <= depth; i++)
5291 bigger[i] = files[i];
5292 for (i = depth + 1; i < old_files + max_path_depth; i++)
5293 {
5294 bigger[i].fp = NULL;
5295 bigger[i].name = NULL;
5296 bigger[i].lnum = 0;
5297 bigger[i].matched = FALSE;
5298 }
5299 for (i = old_files; i < max_path_depth; i++)
5300 bigger[i + max_path_depth] = files[i];
5301 old_files += max_path_depth;
5302 max_path_depth *= 2;
5303 vim_free(files);
5304 files = bigger;
5305 }
5306 }
5307 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
5308 == NULL)
5309 vim_free(new_fname);
5310 else
5311 {
5312 if (++depth == old_files)
5313 {
5314 /*
5315 * lalloc() for 'bigger' must have failed above. We
5316 * will forget one of our already visited files now.
5317 */
5318 vim_free(files[old_files].name);
5319 ++old_files;
5320 }
5321 files[depth].name = curr_fname = new_fname;
5322 files[depth].lnum = 0;
5323 files[depth].matched = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 if (action == ACTION_EXPAND)
5325 {
Bram Moolenaardf40adf2006-10-14 12:32:39 +00005326 msg_hist_off = TRUE; /* reset in msg_trunc_attr() */
Bram Moolenaar555b2802005-05-19 21:08:39 +00005327 vim_snprintf((char*)IObuff, IOSIZE,
5328 _("Scanning included file: %s"),
5329 (char *)new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01005330 msg_trunc_attr((char *)IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005332 else if (p_verbose >= 5)
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005333 {
5334 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005335 smsg(_("Searching included file %s"),
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005336 (char *)new_fname);
5337 verbose_leave();
5338 }
5339
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 }
5341 }
5342 }
5343 else
5344 {
5345 /*
5346 * Check if the line is a define (type == FIND_DEFINE)
5347 */
5348 p = line;
5349search_line:
5350 define_matched = FALSE;
5351 if (def_regmatch.regprog != NULL
5352 && vim_regexec(&def_regmatch, line, (colnr_T)0))
5353 {
5354 /*
5355 * Pattern must be first identifier after 'define', so skip
5356 * to that position before checking for match of pattern. Also
5357 * don't let it match beyond the end of this identifier.
5358 */
5359 p = def_regmatch.endp[0];
5360 while (*p && !vim_iswordc(*p))
5361 p++;
5362 define_matched = TRUE;
5363 }
5364
5365 /*
5366 * Look for a match. Don't do this if we are looking for a
5367 * define and this line didn't match define_prog above.
5368 */
5369 if (def_regmatch.regprog == NULL || define_matched)
5370 {
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005371 if (define_matched || (compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372 {
5373 /* compare the first "len" chars from "ptr" */
5374 startp = skipwhite(p);
5375 if (p_ic)
5376 matched = !MB_STRNICMP(startp, ptr, len);
5377 else
5378 matched = !STRNCMP(startp, ptr, len);
5379 if (matched && define_matched && whole
5380 && vim_iswordc(startp[len]))
5381 matched = FALSE;
5382 }
5383 else if (regmatch.regprog != NULL
5384 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
5385 {
5386 matched = TRUE;
5387 startp = regmatch.startp[0];
5388 /*
5389 * Check if the line is not a comment line (unless we are
5390 * looking for a define). A line starting with "# define"
5391 * is not considered to be a comment line.
5392 */
5393 if (!define_matched && skip_comments)
5394 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005395 if ((*line != '#' ||
5396 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02005397 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 matched = FALSE;
5399
5400 /*
5401 * Also check for a "/ *" or "/ /" before the match.
5402 * Skips lines like "int backwards; / * normal index
5403 * * /" when looking for "normal".
5404 * Note: Doesn't skip "/ *" in comments.
5405 */
5406 p = skipwhite(line);
5407 if (matched
5408 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 for (p = line; *p && p < startp; ++p)
5410 {
5411 if (matched
5412 && p[0] == '/'
5413 && (p[1] == '*' || p[1] == '/'))
5414 {
5415 matched = FALSE;
5416 /* After "//" all text is comment */
5417 if (p[1] == '/')
5418 break;
5419 ++p;
5420 }
5421 else if (!matched && p[0] == '*' && p[1] == '/')
5422 {
5423 /* Can find match after "* /". */
5424 matched = TRUE;
5425 ++p;
5426 }
5427 }
5428 }
5429 }
5430 }
5431 }
5432 if (matched)
5433 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434 if (action == ACTION_EXPAND)
5435 {
Bram Moolenaard9eefe32019-04-06 14:22:21 +02005436 int cont_s_ipos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 int add_r;
5438 char_u *aux;
5439
5440 if (depth == -1 && lnum == curwin->w_cursor.lnum)
5441 break;
5442 found = TRUE;
5443 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005444 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005446 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447 if (vim_iswordp(p))
5448 goto exit_matched;
5449 p = find_word_start(p);
5450 }
5451 p = find_word_end(p);
5452 i = (int)(p - aux);
5453
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005454 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005456 /* IOSIZE > compl_length, so the STRNCPY works */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00005458
5459 /* Get the next line: when "depth" < 0 from the current
5460 * buffer, otherwise from the included file. Jump to
5461 * exit_matched when past the last line. */
5462 if (depth < 0)
5463 {
5464 if (lnum >= end_lnum)
5465 goto exit_matched;
5466 line = ml_get(++lnum);
5467 }
5468 else if (vim_fgets(line = file_line,
5469 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470 goto exit_matched;
5471
5472 /* we read a line, set "already" to check this "line" later
5473 * if depth >= 0 we'll increase files[depth].lnum far
5474 * bellow -- Acevedo */
5475 already = aux = p = skipwhite(line);
5476 p = find_word_start(p);
5477 p = find_word_end(p);
5478 if (p > aux)
5479 {
5480 if (*aux != ')' && IObuff[i-1] != TAB)
5481 {
5482 if (IObuff[i-1] != ' ')
5483 IObuff[i++] = ' ';
5484 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/
5485 if (p_js
5486 && (IObuff[i-2] == '.'
5487 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
5488 && (IObuff[i-2] == '?'
5489 || IObuff[i-2] == '!'))))
5490 IObuff[i++] = ' ';
5491 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005492 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 if (p - aux >= IOSIZE - i)
5494 p = aux + IOSIZE - i - 1;
5495 STRNCPY(IObuff + i, aux, p - aux);
5496 i += (int)(p - aux);
Bram Moolenaard9eefe32019-04-06 14:22:21 +02005497 cont_s_ipos = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498 }
5499 IObuff[i] = NUL;
5500 aux = IObuff;
5501
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005502 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 goto exit_matched;
5504 }
5505
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005506 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507 curr_fname == curbuf->b_fname ? NULL : curr_fname,
Bram Moolenaard9eefe32019-04-06 14:22:21 +02005508 dir, cont_s_ipos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509 if (add_r == OK)
5510 /* if dir was BACKWARD then honor it just once */
5511 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005512 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513 break;
5514 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005515 else if (action == ACTION_SHOW_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 {
5517 found = TRUE;
5518 if (!did_show)
5519 gotocmdline(TRUE); /* cursor at status line */
5520 if (curr_fname != prev_fname)
5521 {
5522 if (did_show)
5523 msg_putchar('\n'); /* cursor below last one */
5524 if (!got_int) /* don't display if 'q' typed
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005525 at "--more--" message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526 msg_home_replace_hl(curr_fname);
5527 prev_fname = curr_fname;
5528 }
5529 did_show = TRUE;
5530 if (!got_int)
5531 show_pat_in_path(line, type, TRUE, action,
5532 (depth == -1) ? NULL : files[depth].fp,
5533 (depth == -1) ? &lnum : &files[depth].lnum,
5534 match_count++);
5535
5536 /* Set matched flag for this file and all the ones that
5537 * include it */
5538 for (i = 0; i <= depth; ++i)
5539 files[i].matched = TRUE;
5540 }
5541 else if (--count <= 0)
5542 {
5543 found = TRUE;
5544 if (depth == -1 && lnum == curwin->w_cursor.lnum
Bram Moolenaar4033c552017-09-16 20:54:51 +02005545#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 && g_do_tagpreview == 0
5547#endif
5548 )
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005549 emsg(_("E387: Match is on current line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 else if (action == ACTION_SHOW)
5551 {
5552 show_pat_in_path(line, type, did_show, action,
5553 (depth == -1) ? NULL : files[depth].fp,
5554 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
5555 did_show = TRUE;
5556 }
5557 else
5558 {
5559#ifdef FEAT_GUI
5560 need_mouse_correct = TRUE;
5561#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005562#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 /* ":psearch" uses the preview window */
5564 if (g_do_tagpreview != 0)
5565 {
5566 curwin_save = curwin;
Bram Moolenaar576a4a62019-08-18 15:25:17 +02005567 prepare_tagpreview(TRUE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 }
5569#endif
5570 if (action == ACTION_SPLIT)
5571 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005573 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005574 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 }
5576 if (depth == -1)
5577 {
5578 /* match in current file */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005579#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580 if (g_do_tagpreview != 0)
5581 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005582 if (!GETFILE_SUCCESS(getfile(
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005583 curwin_save->w_buffer->b_fnum, NULL,
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005584 NULL, TRUE, lnum, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585 break; /* failed to jump to file */
5586 }
5587 else
5588#endif
5589 setpcmark();
5590 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005591 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 }
5593 else
5594 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005595 if (!GETFILE_SUCCESS(getfile(
5596 0, files[depth].name, NULL, TRUE,
5597 files[depth].lnum, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 break; /* failed to jump to file */
5599 /* autocommands may have changed the lnum, we don't
5600 * want that here */
5601 curwin->w_cursor.lnum = files[depth].lnum;
5602 }
5603 }
5604 if (action != ACTION_SHOW)
5605 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005606 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607 curwin->w_set_curswant = TRUE;
5608 }
5609
Bram Moolenaar4033c552017-09-16 20:54:51 +02005610#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005612 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613 {
5614 /* Return cursor to where we were */
5615 validate_cursor();
5616 redraw_later(VALID);
5617 win_enter(curwin_save, TRUE);
5618 }
Bram Moolenaar1b6d9c42019-08-05 21:52:04 +02005619# ifdef FEAT_TEXT_PROP
5620 else if (WIN_IS_POPUP(curwin))
5621 // can't keep focus in popup window
5622 win_enter(firstwin, TRUE);
5623# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624#endif
5625 break;
5626 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627exit_matched:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628 matched = FALSE;
5629 /* look for other matches in the rest of the line if we
5630 * are not at the end of it already */
5631 if (def_regmatch.regprog == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005633 && !(compl_cont_status & CONT_SOL)
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005634 && *startp != NUL
Bram Moolenaar1614a142019-10-06 22:00:13 +02005635 && *(p = startp + mb_ptr2len(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636 goto search_line;
5637 }
5638 line_breakcheck();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005639 if (action == ACTION_EXPAND)
Bram Moolenaar472e8592016-10-15 17:06:47 +02005640 ins_compl_check_keys(30, FALSE);
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005641 if (got_int || ins_compl_interrupted())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642 break;
5643
5644 /*
5645 * Read the next line. When reading an included file and encountering
5646 * end-of-file, close the file and continue in the file that included
5647 * it.
5648 */
5649 while (depth >= 0 && !already
5650 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5651 {
5652 fclose(files[depth].fp);
5653 --old_files;
5654 files[old_files].name = files[depth].name;
5655 files[old_files].matched = files[depth].matched;
5656 --depth;
5657 curr_fname = (depth == -1) ? curbuf->b_fname
5658 : files[depth].name;
5659 if (depth < depth_displayed)
5660 depth_displayed = depth;
5661 }
5662 if (depth >= 0) /* we could read the line */
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005663 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005664 files[depth].lnum++;
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005665 /* Remove any CR and LF from the line. */
5666 i = (int)STRLEN(line);
5667 if (i > 0 && line[i - 1] == '\n')
5668 line[--i] = NUL;
5669 if (i > 0 && line[i - 1] == '\r')
5670 line[--i] = NUL;
5671 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672 else if (!already)
5673 {
5674 if (++lnum > end_lnum)
5675 break;
5676 line = ml_get(lnum);
5677 }
5678 already = NULL;
5679 }
5680 /* End of big for (;;) loop. */
5681
5682 /* Close any files that are still open. */
5683 for (i = 0; i <= depth; i++)
5684 {
5685 fclose(files[i].fp);
5686 vim_free(files[i].name);
5687 }
5688 for (i = old_files; i < max_path_depth; i++)
5689 vim_free(files[i].name);
5690 vim_free(files);
5691
5692 if (type == CHECK_PATH)
5693 {
5694 if (!did_show)
5695 {
5696 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005697 msg(_("All included files were found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005699 msg(_("No included files"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005700 }
5701 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005702 else if (!found && action != ACTION_EXPAND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 {
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005704 if (got_int || ins_compl_interrupted())
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005705 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706 else if (type == FIND_DEFINE)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005707 emsg(_("E388: Couldn't find definition"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005709 emsg(_("E389: Couldn't find pattern"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005710 }
5711 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5712 msg_end();
5713
5714fpip_end:
5715 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02005716 vim_regfree(regmatch.regprog);
5717 vim_regfree(incl_regmatch.regprog);
5718 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719}
5720
5721 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005722show_pat_in_path(
5723 char_u *line,
5724 int type,
5725 int did_show,
5726 int action,
5727 FILE *fp,
5728 linenr_T *lnum,
5729 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005730{
5731 char_u *p;
5732
5733 if (did_show)
5734 msg_putchar('\n'); /* cursor below last one */
Bram Moolenaar91170f82006-05-05 21:15:17 +00005735 else if (!msg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 gotocmdline(TRUE); /* cursor at status line */
5737 if (got_int) /* 'q' typed at "--more--" message */
5738 return;
5739 for (;;)
5740 {
5741 p = line + STRLEN(line) - 1;
5742 if (fp != NULL)
5743 {
5744 /* We used fgets(), so get rid of newline at end */
5745 if (p >= line && *p == '\n')
5746 --p;
5747 if (p >= line && *p == '\r')
5748 --p;
5749 *(p + 1) = NUL;
5750 }
5751 if (action == ACTION_SHOW_ALL)
5752 {
5753 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */
Bram Moolenaar32526b32019-01-19 17:43:09 +01005754 msg_puts((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */
5756 /* Highlight line numbers */
Bram Moolenaar32526b32019-01-19 17:43:09 +01005757 msg_puts_attr((char *)IObuff, HL_ATTR(HLF_N));
5758 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005760 msg_prt_line(line, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005761 out_flush(); /* show one line at a time */
5762
5763 /* Definition continues until line that doesn't end with '\' */
5764 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5765 break;
5766
5767 if (fp != NULL)
5768 {
5769 if (vim_fgets(line, LSIZE, fp)) /* end of file */
5770 break;
5771 ++*lnum;
5772 }
5773 else
5774 {
5775 if (++*lnum > curbuf->b_ml.ml_line_count)
5776 break;
5777 line = ml_get(*lnum);
5778 }
5779 msg_putchar('\n');
5780 }
5781}
5782#endif
5783
5784#ifdef FEAT_VIMINFO
Bram Moolenaar6bd1d772019-10-09 22:01:25 +02005785/*
5786 * Return the last used search pattern at "idx".
5787 */
Bram Moolenaarc3328162019-07-23 22:15:25 +02005788 spat_T *
5789get_spat(int idx)
5790{
5791 return &spats[idx];
5792}
5793
Bram Moolenaar6bd1d772019-10-09 22:01:25 +02005794/*
5795 * Return the last used search pattern index.
5796 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005797 int
Bram Moolenaarc3328162019-07-23 22:15:25 +02005798get_spat_last_idx(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799{
Bram Moolenaarc3328162019-07-23 22:15:25 +02005800 return last_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005802#endif