blob: 5851d52362f5c0349cfd06a9a1613d14c2735ae1 [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 Moolenaar071d4272004-06-13 20:20:40 +000019#ifdef FEAT_FIND_ID
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010020static void show_pat_in_path(char_u *, int,
21 int, int, FILE *, linenr_T *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022#endif
Bram Moolenaare8f5ec02020-06-01 17:28:35 +020023
24typedef struct searchstat
25{
26 int cur; // current position of found words
27 int cnt; // total count of found words
28 int exact_match; // TRUE if matched exactly on specified position
29 int incomplete; // 0: search was fully completed
30 // 1: recomputing was timed out
31 // 2: max count exceeded
32 int last_maxcount; // the max count of the last search
33} searchstat_T;
34
35static void cmdline_search_stat(int dirc, pos_T *pos, pos_T *cursor_pos, int show_top_bot_msg, char_u *msgbuf, int recompute, int maxcount, long timeout);
36static void update_search_stat(int dirc, pos_T *pos, pos_T *cursor_pos, searchstat_T *stat, int recompute, int maxcount, long timeout);
37
Bram Moolenaarea6561a2020-06-01 21:32:45 +020038#define SEARCH_STAT_DEF_TIMEOUT 40L
Bram Moolenaare8f5ec02020-06-01 17:28:35 +020039#define SEARCH_STAT_DEF_MAX_COUNT 99
40#define SEARCH_STAT_BUF_LEN 12
Bram Moolenaar071d4272004-06-13 20:20:40 +000041
Bram Moolenaar071d4272004-06-13 20:20:40 +000042/*
43 * This file contains various searching-related routines. These fall into
44 * three groups:
45 * 1. string searches (for /, ?, n, and N)
46 * 2. character searches within a single line (for f, F, t, T, etc)
47 * 3. "other" kinds of searches like the '%' command, and 'word' searches.
48 */
49
50/*
51 * String searches
52 *
53 * The string search functions are divided into two levels:
54 * lowest: searchit(); uses an pos_T for starting position and found match.
55 * Highest: do_search(); uses curwin->w_cursor; calls searchit().
56 *
57 * The last search pattern is remembered for repeating the same search.
58 * This pattern is shared between the :g, :s, ? and / commands.
59 * This is in search_regcomp().
60 *
61 * The actual string matching is done using a heavily modified version of
62 * Henry Spencer's regular expression library. See regexp.c.
63 */
64
Bram Moolenaar071d4272004-06-13 20:20:40 +000065/*
66 * Two search patterns are remembered: One for the :substitute command and
67 * one for other searches. last_idx points to the one that was used the last
68 * time.
69 */
Bram Moolenaarc3328162019-07-23 22:15:25 +020070static spat_T spats[2] =
Bram Moolenaar071d4272004-06-13 20:20:40 +000071{
Bram Moolenaar63d9e732019-12-05 21:10:38 +010072 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}}, // last used search pat
73 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}} // last used substitute pat
Bram Moolenaar071d4272004-06-13 20:20:40 +000074};
75
Bram Moolenaar63d9e732019-12-05 21:10:38 +010076static int last_idx = 0; // index in spats[] for RE_LAST
Bram Moolenaar071d4272004-06-13 20:20:40 +000077
Bram Moolenaar63d9e732019-12-05 21:10:38 +010078static char_u lastc[2] = {NUL, NUL}; // last character searched for
79static int lastcdir = FORWARD; // last direction of character search
80static int last_t_cmd = TRUE; // last search t_cmd
Bram Moolenaardbd24b52015-08-11 14:26:19 +020081static char_u lastc_bytes[MB_MAXBYTES + 1];
Bram Moolenaar63d9e732019-12-05 21:10:38 +010082static int lastc_bytelen = 1; // >1 for multi-byte char
Bram Moolenaardbd24b52015-08-11 14:26:19 +020083
Bram Moolenaar63d9e732019-12-05 21:10:38 +010084// copy of spats[], for keeping the search patterns while executing autocmds
Bram Moolenaarc3328162019-07-23 22:15:25 +020085static spat_T saved_spats[2];
Bram Moolenaara2cff1d2021-10-15 12:51:29 +010086static char_u *saved_mr_pattern = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000087# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +010088static int saved_spats_last_idx = 0;
89static int saved_spats_no_hlsearch = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000090# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000091
Bram Moolenaara2cff1d2021-10-15 12:51:29 +010092// allocated copy of pattern used by search_regcomp()
93static char_u *mr_pattern = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000094
95#ifdef FEAT_FIND_ID
96/*
97 * Type used by find_pattern_in_path() to remember which included files have
98 * been searched already.
99 */
100typedef struct SearchedFile
101{
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100102 FILE *fp; // File pointer
103 char_u *name; // Full name of file
104 linenr_T lnum; // Line we were up to in file
105 int matched; // Found a match in this file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106} SearchedFile;
107#endif
108
109/*
110 * translate search pattern for vim_regcomp()
111 *
112 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd)
113 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command)
114 * pat_save == RE_BOTH: save pat in both patterns (:global command)
115 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL
Bram Moolenaarb8017e72007-05-10 18:59:07 +0000116 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117 * pat_use == RE_LAST: use last used pattern if "pat" is NULL
118 * options & SEARCH_HIS: put search string in history
119 * options & SEARCH_KEEP: keep previous search pattern
120 *
121 * returns FAIL if failed, OK otherwise.
122 */
123 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100124search_regcomp(
125 char_u *pat,
126 int pat_save,
127 int pat_use,
128 int options,
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100129 regmmatch_T *regmatch) // return: pattern and ignore-case flag
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130{
131 int magic;
132 int i;
133
134 rc_did_emsg = FALSE;
Bram Moolenaarf4e20992020-12-21 19:59:08 +0100135 magic = magic_isset();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136
137 /*
138 * If no pattern given, use a previously defined pattern.
139 */
140 if (pat == NULL || *pat == NUL)
141 {
142 if (pat_use == RE_LAST)
143 i = last_idx;
144 else
145 i = pat_use;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100146 if (spats[i].pat == NULL) // pattern was never defined
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147 {
148 if (pat_use == RE_SUBST)
Bram Moolenaare29a27f2021-07-20 21:07:36 +0200149 emsg(_(e_no_previous_substitute_regular_expression));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150 else
Bram Moolenaare29a27f2021-07-20 21:07:36 +0200151 emsg(_(e_no_previous_regular_expression));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152 rc_did_emsg = TRUE;
153 return FAIL;
154 }
155 pat = spats[i].pat;
156 magic = spats[i].magic;
157 no_smartcase = spats[i].no_scs;
158 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100159 else if (options & SEARCH_HIS) // put new pattern in history
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161
Bram Moolenaara2cff1d2021-10-15 12:51:29 +0100162 vim_free(mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163#ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
Bram Moolenaara2cff1d2021-10-15 12:51:29 +0100165 mr_pattern = reverse_text(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166 else
167#endif
Bram Moolenaara2cff1d2021-10-15 12:51:29 +0100168 mr_pattern = vim_strsave(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169
170 /*
171 * Save the currently used pattern in the appropriate place,
172 * unless the pattern should not be remembered.
173 */
Bram Moolenaare1004402020-10-24 20:49:43 +0200174 if (!(options & SEARCH_KEEP)
175 && (cmdmod.cmod_flags & CMOD_KEEPPATTERNS) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100177 // search or global command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178 if (pat_save == RE_SEARCH || pat_save == RE_BOTH)
179 save_re_pat(RE_SEARCH, pat, magic);
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100180 // substitute or global command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 if (pat_save == RE_SUBST || pat_save == RE_BOTH)
182 save_re_pat(RE_SUBST, pat, magic);
183 }
184
185 regmatch->rmm_ic = ignorecase(pat);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +0000186 regmatch->rmm_maxcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
188 if (regmatch->regprog == NULL)
189 return FAIL;
190 return OK;
191}
192
193/*
194 * Get search pattern used by search_regcomp().
195 */
196 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100197get_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198{
199 return mr_pattern;
200}
201
Bram Moolenaarabc97732007-08-08 20:49:37 +0000202#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203/*
204 * Reverse text into allocated memory.
205 * Returns the allocated string, NULL when out of memory.
206 */
Bram Moolenaarabc97732007-08-08 20:49:37 +0000207 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100208reverse_text(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209{
210 unsigned len;
211 unsigned s_i, rev_i;
212 char_u *rev;
213
214 /*
215 * Reverse the pattern.
216 */
217 len = (unsigned)STRLEN(s);
218 rev = alloc(len + 1);
219 if (rev != NULL)
220 {
221 rev_i = len;
222 for (s_i = 0; s_i < len; ++s_i)
223 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 if (has_mbyte)
225 {
226 int mb_len;
227
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000228 mb_len = (*mb_ptr2len)(s + s_i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 rev_i -= mb_len;
230 mch_memmove(rev + rev_i, s + s_i, mb_len);
231 s_i += mb_len - 1;
232 }
233 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234 rev[--rev_i] = s[s_i];
235
236 }
237 rev[len] = NUL;
238 }
239 return rev;
240}
241#endif
242
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +0100243 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100244save_re_pat(int idx, char_u *pat, int magic)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245{
246 if (spats[idx].pat != pat)
247 {
248 vim_free(spats[idx].pat);
249 spats[idx].pat = vim_strsave(pat);
250 spats[idx].magic = magic;
251 spats[idx].no_scs = no_smartcase;
252 last_idx = idx;
253#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100254 // If 'hlsearch' set and search pat changed: need redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255 if (p_hls)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000256 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200257 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258#endif
259 }
260}
261
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262/*
263 * Save the search patterns, so they can be restored later.
264 * Used before/after executing autocommands and user functions.
265 */
266static int save_level = 0;
267
268 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100269save_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270{
271 if (save_level++ == 0)
272 {
273 saved_spats[0] = spats[0];
274 if (spats[0].pat != NULL)
275 saved_spats[0].pat = vim_strsave(spats[0].pat);
276 saved_spats[1] = spats[1];
277 if (spats[1].pat != NULL)
278 saved_spats[1].pat = vim_strsave(spats[1].pat);
Bram Moolenaara2cff1d2021-10-15 12:51:29 +0100279 if (mr_pattern == NULL)
280 saved_mr_pattern = NULL;
281 else
282 saved_mr_pattern = vim_strsave(mr_pattern);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100283#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100284 saved_spats_last_idx = last_idx;
285 saved_spats_no_hlsearch = no_hlsearch;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100286#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287 }
288}
289
290 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100291restore_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292{
293 if (--save_level == 0)
294 {
295 vim_free(spats[0].pat);
296 spats[0] = saved_spats[0];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100297#if defined(FEAT_EVAL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000298 set_vv_searchforward();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100299#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 vim_free(spats[1].pat);
301 spats[1] = saved_spats[1];
Bram Moolenaara2cff1d2021-10-15 12:51:29 +0100302 vim_free(mr_pattern);
303 mr_pattern = saved_mr_pattern;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100304#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100305 last_idx = saved_spats_last_idx;
306 set_no_hlsearch(saved_spats_no_hlsearch);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100307#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308 }
309}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000311#if defined(EXITFREE) || defined(PROTO)
312 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100313free_search_patterns(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000314{
315 vim_free(spats[0].pat);
316 vim_free(spats[1].pat);
Bram Moolenaara2cff1d2021-10-15 12:51:29 +0100317 VIM_CLEAR(mr_pattern);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000318}
319#endif
320
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100321#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100322// copy of spats[RE_SEARCH], for keeping the search patterns while incremental
323// searching
Bram Moolenaarc3328162019-07-23 22:15:25 +0200324static spat_T saved_last_search_spat;
Bram Moolenaared8bc782018-12-01 21:08:21 +0100325static int did_save_last_search_spat = 0;
326static int saved_last_idx = 0;
327static int saved_no_hlsearch = 0;
328
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100329/*
330 * Save and restore the search pattern for incremental highlight search
331 * feature.
332 *
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100333 * It's similar to but different from save_search_patterns() and
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100334 * restore_search_patterns(), because the search pattern must be restored when
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100335 * canceling incremental searching even if it's called inside user functions.
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100336 */
337 void
338save_last_search_pattern(void)
339{
Bram Moolenaar442a8532020-06-04 20:56:09 +0200340 if (++did_save_last_search_spat != 1)
341 // nested call, nothing to do
342 return;
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100343
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100344 saved_last_search_spat = spats[RE_SEARCH];
345 if (spats[RE_SEARCH].pat != NULL)
346 saved_last_search_spat.pat = vim_strsave(spats[RE_SEARCH].pat);
347 saved_last_idx = last_idx;
348 saved_no_hlsearch = no_hlsearch;
349}
350
351 void
352restore_last_search_pattern(void)
353{
Bram Moolenaar442a8532020-06-04 20:56:09 +0200354 if (--did_save_last_search_spat > 0)
355 // nested call, nothing to do
356 return;
357 if (did_save_last_search_spat != 0)
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100358 {
Bram Moolenaar442a8532020-06-04 20:56:09 +0200359 iemsg("restore_last_search_pattern() called more often than save_last_search_pattern()");
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100360 return;
361 }
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100362
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100363 vim_free(spats[RE_SEARCH].pat);
364 spats[RE_SEARCH] = saved_last_search_spat;
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100365 saved_last_search_spat.pat = NULL;
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100366# if defined(FEAT_EVAL)
367 set_vv_searchforward();
368# endif
369 last_idx = saved_last_idx;
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200370 set_no_hlsearch(saved_no_hlsearch);
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100371}
Bram Moolenaard0480092017-11-16 22:20:39 +0100372
373 char_u *
374last_search_pattern(void)
375{
376 return spats[RE_SEARCH].pat;
377}
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100378#endif
379
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380/*
381 * Return TRUE when case should be ignored for search pattern "pat".
382 * Uses the 'ignorecase' and 'smartcase' options.
383 */
384 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100385ignorecase(char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386{
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200387 return ignorecase_opt(pat, p_ic, p_scs);
388}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200390/*
391 * As ignorecase() put pass the "ic" and "scs" flags.
392 */
393 int
394ignorecase_opt(char_u *pat, int ic_in, int scs)
395{
396 int ic = ic_in;
397
398 if (ic && !no_smartcase && scs
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200399 && !(ctrl_x_mode_not_default() && curbuf->b_p_inf))
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200400 ic = !pat_has_uppercase(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 no_smartcase = FALSE;
402
403 return ic;
404}
405
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200406/*
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200407 * Return TRUE if pattern "pat" has an uppercase character.
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200408 */
409 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100410pat_has_uppercase(char_u *pat)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200411{
412 char_u *p = pat;
Christian Brabandt78ba9332021-08-01 12:44:37 +0200413 magic_T magic_val = MAGIC_ON;
414
415 // get the magicness of the pattern
416 (void)skip_regexp_ex(pat, NUL, magic_isset(), NULL, NULL, &magic_val);
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200417
418 while (*p != NUL)
419 {
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200420 int l;
421
422 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
423 {
424 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
425 return TRUE;
426 p += l;
427 }
Christian Brabandtbc67e5a2021-08-05 15:24:59 +0200428 else if (*p == '\\' && magic_val <= MAGIC_ON)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200429 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100430 if (p[1] == '_' && p[2] != NUL) // skip "\_X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200431 p += 3;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100432 else if (p[1] == '%' && p[2] != NUL) // skip "\%X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200433 p += 3;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100434 else if (p[1] != NUL) // skip "\X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200435 p += 2;
436 else
437 p += 1;
438 }
Christian Brabandt78ba9332021-08-01 12:44:37 +0200439 else if ((*p == '%' || *p == '_') && magic_val == MAGIC_ALL)
440 {
441 if (p[1] != NUL) // skip "_X" and %X
442 p += 2;
Christian Brabandtbc67e5a2021-08-05 15:24:59 +0200443 else
444 p++;
Christian Brabandt78ba9332021-08-01 12:44:37 +0200445 }
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200446 else if (MB_ISUPPER(*p))
447 return TRUE;
448 else
449 ++p;
450 }
451 return FALSE;
452}
453
Bram Moolenaar113e1072019-01-20 15:30:40 +0100454#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100456last_csearch(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200457{
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200458 return lastc_bytes;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200459}
460
461 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100462last_csearch_forward(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200463{
464 return lastcdir == FORWARD;
465}
466
467 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100468last_csearch_until(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200469{
470 return last_t_cmd == TRUE;
471}
472
473 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100474set_last_csearch(int c, char_u *s UNUSED, int len UNUSED)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200475{
476 *lastc = c;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200477 lastc_bytelen = len;
478 if (len)
479 memcpy(lastc_bytes, s, len);
480 else
Bram Moolenaara80faa82020-04-12 19:37:17 +0200481 CLEAR_FIELD(lastc_bytes);
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200482}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100483#endif
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200484
485 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100486set_csearch_direction(int cdir)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200487{
488 lastcdir = cdir;
489}
490
491 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100492set_csearch_until(int t_cmd)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200493{
494 last_t_cmd = t_cmd;
495}
496
497 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100498last_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499{
500 return spats[last_idx].pat;
501}
502
503/*
504 * Reset search direction to forward. For "gd" and "gD" commands.
505 */
506 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100507reset_search_dir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508{
509 spats[0].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000510#if defined(FEAT_EVAL)
511 set_vv_searchforward();
512#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513}
514
515#if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
516/*
517 * Set the last search pattern. For ":let @/ =" and viminfo.
518 * Also set the saved search pattern, so that this works in an autocommand.
519 */
520 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100521set_last_search_pat(
522 char_u *s,
523 int idx,
524 int magic,
525 int setlast)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526{
527 vim_free(spats[idx].pat);
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100528 // An empty string means that nothing should be matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 if (*s == NUL)
530 spats[idx].pat = NULL;
531 else
532 spats[idx].pat = vim_strsave(s);
533 spats[idx].magic = magic;
534 spats[idx].no_scs = FALSE;
535 spats[idx].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000536#if defined(FEAT_EVAL)
537 set_vv_searchforward();
538#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539 spats[idx].off.line = FALSE;
540 spats[idx].off.end = FALSE;
541 spats[idx].off.off = 0;
542 if (setlast)
543 last_idx = idx;
544 if (save_level)
545 {
546 vim_free(saved_spats[idx].pat);
547 saved_spats[idx] = spats[0];
548 if (spats[idx].pat == NULL)
549 saved_spats[idx].pat = NULL;
550 else
551 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
Bram Moolenaar975880b2019-03-03 14:42:11 +0100552# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100553 saved_spats_last_idx = last_idx;
Bram Moolenaar975880b2019-03-03 14:42:11 +0100554# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 }
556# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100557 // If 'hlsearch' set and search pat changed: need redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558 if (p_hls && idx == last_idx && !no_hlsearch)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000559 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560# endif
561}
562#endif
563
564#ifdef FEAT_SEARCH_EXTRA
565/*
566 * Get a regexp program for the last used search pattern.
567 * This is used for highlighting all matches in a window.
568 * Values returned in regmatch->regprog and regmatch->rmm_ic.
569 */
570 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100571last_pat_prog(regmmatch_T *regmatch)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572{
573 if (spats[last_idx].pat == NULL)
574 {
575 regmatch->regprog = NULL;
576 return;
577 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100578 ++emsg_off; // So it doesn't beep if bad expr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
580 --emsg_off;
581}
582#endif
583
584/*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100585 * Lowest level search function.
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100586 * Search for 'count'th occurrence of pattern "pat" in direction "dir".
587 * Start at position "pos" and return the found position in "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 *
589 * if (options & SEARCH_MSG) == 0 don't give any messages
590 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
591 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
592 * if (options & SEARCH_HIS) put search pattern in history
593 * if (options & SEARCH_END) return position at end of match
594 * if (options & SEARCH_START) accept match at pos itself
595 * if (options & SEARCH_KEEP) keep previous search pattern
596 * if (options & SEARCH_FOLD) match only once in a closed fold
597 * if (options & SEARCH_PEEK) check for typed char, cancel search
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100598 * if (options & SEARCH_COL) start at pos->col instead of zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 *
600 * Return FAIL (zero) for failure, non-zero for success.
601 * When FEAT_EVAL is defined, returns the index of the first matching
602 * subpattern plus one; one if there was none.
603 */
604 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100605searchit(
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200606 win_T *win, // window to search in; can be NULL for a
607 // buffer without a window!
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100608 buf_T *buf,
609 pos_T *pos,
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100610 pos_T *end_pos, // set to end of the match, unless NULL
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100611 int dir,
612 char_u *pat,
613 long count,
614 int options,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200615 int pat_use, // which pattern to use when "pat" is empty
616 searchit_arg_T *extra_arg) // optional extra arguments, can be NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617{
618 int found;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100619 linenr_T lnum; // no init to shut up Apollo cc
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100620 colnr_T col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621 regmmatch_T regmatch;
622 char_u *ptr;
623 colnr_T matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 lpos_T endpos;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000625 lpos_T matchpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626 int loop;
627 pos_T start_pos;
628 int at_first_line;
629 int extra_col;
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200630 int start_char_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631 int match_ok;
632 long nmatched;
633 int submatch = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100634 int first_match = TRUE;
Bram Moolenaar53989552019-12-23 22:59:18 +0100635 int called_emsg_before = called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636#ifdef FEAT_SEARCH_EXTRA
637 int break_loop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638#endif
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200639 linenr_T stop_lnum = 0; // stop after this line number when != 0
640#ifdef FEAT_RELTIME
641 proftime_T *tm = NULL; // timeout limit or NULL
642 int *timed_out = NULL; // set when timed out or NULL
643#endif
644
645 if (extra_arg != NULL)
646 {
647 stop_lnum = extra_arg->sa_stop_lnum;
648#ifdef FEAT_RELTIME
649 tm = extra_arg->sa_tm;
650 timed_out = &extra_arg->sa_timed_out;
651#endif
652 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653
654 if (search_regcomp(pat, RE_SEARCH, pat_use,
655 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
656 {
657 if ((options & SEARCH_MSG) && !rc_did_emsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100658 semsg(_("E383: Invalid search string: %s"), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 return FAIL;
660 }
661
Bram Moolenaar280f1262006-01-30 00:14:18 +0000662 /*
663 * find the string
664 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100665 do // loop for count
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100667 // When not accepting a match at the start position set "extra_col" to
668 // a non-zero value. Don't do that when starting at MAXCOL, since
669 // MAXCOL + 1 is zero.
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200670 if (pos->col == MAXCOL)
671 start_char_len = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100672 // Watch out for the "col" being MAXCOL - 2, used in a closed fold.
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200673 else if (has_mbyte
674 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
675 && pos->col < MAXCOL - 2)
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100676 {
Bram Moolenaar82846a02018-02-09 18:09:54 +0100677 ptr = ml_get_buf(buf, pos->lnum, FALSE);
Bram Moolenaar8846ac52018-02-09 19:24:01 +0100678 if ((int)STRLEN(ptr) <= pos->col)
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200679 start_char_len = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100680 else
Bram Moolenaar82846a02018-02-09 18:09:54 +0100681 start_char_len = (*mb_ptr2len)(ptr + pos->col);
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100682 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100683 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200684 start_char_len = 1;
685 if (dir == FORWARD)
686 {
687 if (options & SEARCH_START)
688 extra_col = 0;
689 else
690 extra_col = start_char_len;
691 }
692 else
693 {
694 if (options & SEARCH_START)
695 extra_col = start_char_len;
696 else
697 extra_col = 0;
698 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100699
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100700 start_pos = *pos; // remember start pos for detecting no match
701 found = 0; // default: not found
702 at_first_line = TRUE; // default: start in first line
703 if (pos->lnum == 0) // correct lnum for when starting in line 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 {
705 pos->lnum = 1;
706 pos->col = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100707 at_first_line = FALSE; // not in first line now
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 }
709
710 /*
711 * Start searching in current line, unless searching backwards and
712 * we're in column 0.
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000713 * If we are searching backwards, in column 0, and not including the
714 * current position, gain some efficiency by skipping back a line.
715 * Otherwise begin the search in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 */
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000717 if (dir == BACKWARD && start_pos.col == 0
718 && (options & SEARCH_START) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 {
720 lnum = pos->lnum - 1;
721 at_first_line = FALSE;
722 }
723 else
724 lnum = pos->lnum;
725
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100726 for (loop = 0; loop <= 1; ++loop) // loop twice if 'wrapscan' set
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 {
728 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
729 lnum += dir, at_first_line = FALSE)
730 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100731 // Stop after checking "stop_lnum", if it's set.
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000732 if (stop_lnum != 0 && (dir == FORWARD
733 ? lnum > stop_lnum : lnum < stop_lnum))
734 break;
Bram Moolenaar76929292008-01-06 19:07:36 +0000735#ifdef FEAT_RELTIME
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100736 // Stop after passing the "tm" time limit.
Bram Moolenaar76929292008-01-06 19:07:36 +0000737 if (tm != NULL && profile_passed_limit(tm))
738 break;
739#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000740
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000742 * Look for a match somewhere in line "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100744 col = at_first_line && (options & SEARCH_COL) ? pos->col
745 : (colnr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 nmatched = vim_regexec_multi(&regmatch, win, buf,
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100747 lnum, col,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000748#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200749 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000750#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200751 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000752#endif
753 );
Bram Moolenaar795aaa12020-10-02 20:36:01 +0200754 // vim_regexec_multi() may clear "regprog"
755 if (regmatch.regprog == NULL)
756 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100757 // Abort searching on an error (e.g., out of stack).
Bram Moolenaar53989552019-12-23 22:59:18 +0100758 if (called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200759#ifdef FEAT_RELTIME
760 || (timed_out != NULL && *timed_out)
761#endif
762 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 break;
764 if (nmatched > 0)
765 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100766 // match may actually be in another line when using \zs
Bram Moolenaar677ee682005-01-27 14:41:15 +0000767 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768 endpos = regmatch.endpos[0];
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000769#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 submatch = first_submatch(&regmatch);
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000771#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100772 // "lnum" may be past end of buffer for "\n\zs".
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000773 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
774 ptr = (char_u *)"";
775 else
776 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777
778 /*
779 * Forward search in the first line: match should be after
780 * the start position. If not, continue at the end of the
781 * match (this is vi compatible) or on the next char.
782 */
783 if (dir == FORWARD && at_first_line)
784 {
785 match_ok = TRUE;
786 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000787 * When the match starts in a next line it's certainly
788 * past the start position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 * When match lands on a NUL the cursor will be put
790 * one back afterwards, compare with that position,
791 * otherwise "/$" will get stuck on end of line.
792 */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000793 while (matchpos.lnum == 0
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100794 && ((options & SEARCH_END) && first_match
Bram Moolenaar677ee682005-01-27 14:41:15 +0000795 ? (nmatched == 1
796 && (int)endpos.col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 < (int)start_pos.col + extra_col)
Bram Moolenaar677ee682005-01-27 14:41:15 +0000798 : ((int)matchpos.col
799 - (ptr[matchpos.col] == NUL)
800 < (int)start_pos.col + extra_col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801 {
802 /*
803 * If vi-compatible searching, continue at the end
804 * of the match, otherwise continue one position
805 * forward.
806 */
807 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
808 {
809 if (nmatched > 1)
810 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100811 // end is in next line, thus no match in
812 // this line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 match_ok = FALSE;
814 break;
815 }
816 matchcol = endpos.col;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100817 // for empty match: advance one char
Bram Moolenaar677ee682005-01-27 14:41:15 +0000818 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 && ptr[matchcol] != NUL)
820 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 if (has_mbyte)
822 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000823 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 ++matchcol;
826 }
827 }
828 else
829 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000830 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 if (ptr[matchcol] != NUL)
832 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000834 matchcol += (*mb_ptr2len)(ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 + matchcol);
836 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 ++matchcol;
838 }
839 }
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200840 if (matchcol == 0 && (options & SEARCH_START))
Bram Moolenaardb333a52013-03-19 15:27:48 +0100841 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 if (ptr[matchcol] == NUL
843 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000844 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000845 matchcol,
846#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200847 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000848#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200849 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000850#endif
851 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 {
853 match_ok = FALSE;
854 break;
855 }
Bram Moolenaar795aaa12020-10-02 20:36:01 +0200856 // vim_regexec_multi() may clear "regprog"
857 if (regmatch.regprog == NULL)
858 break;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000859 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 endpos = regmatch.endpos[0];
861# ifdef FEAT_EVAL
862 submatch = first_submatch(&regmatch);
863# endif
864
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100865 // Need to get the line pointer again, a
866 // multi-line search may have made it invalid.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000867 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868 }
869 if (!match_ok)
870 continue;
871 }
872 if (dir == BACKWARD)
873 {
874 /*
875 * Now, if there are multiple matches on this line,
876 * we have to get the last one. Or the last one before
877 * the cursor, if we're on that line.
878 * When putting the new cursor at the end, compare
879 * relative to the end of the match.
880 */
881 match_ok = FALSE;
882 for (;;)
883 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100884 // Remember a position that is before the start
885 // position, we use it if it's the last match in
886 // the line. Always accept a position after
887 // wrapping around.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000888 if (loop
889 || ((options & SEARCH_END)
890 ? (lnum + regmatch.endpos[0].lnum
891 < start_pos.lnum
892 || (lnum + regmatch.endpos[0].lnum
893 == start_pos.lnum
894 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200895 < (int)start_pos.col
896 + extra_col))
Bram Moolenaar677ee682005-01-27 14:41:15 +0000897 : (lnum + regmatch.startpos[0].lnum
898 < start_pos.lnum
899 || (lnum + regmatch.startpos[0].lnum
900 == start_pos.lnum
901 && (int)regmatch.startpos[0].col
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200902 < (int)start_pos.col
903 + extra_col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000906 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 endpos = regmatch.endpos[0];
908# ifdef FEAT_EVAL
909 submatch = first_submatch(&regmatch);
910# endif
911 }
912 else
913 break;
914
915 /*
916 * We found a valid match, now check if there is
917 * another one after it.
918 * If vi-compatible searching, continue at the end
919 * of the match, otherwise continue one position
920 * forward.
921 */
922 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
923 {
924 if (nmatched > 1)
925 break;
926 matchcol = endpos.col;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100927 // for empty match: advance one char
Bram Moolenaar677ee682005-01-27 14:41:15 +0000928 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 && ptr[matchcol] != NUL)
930 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 if (has_mbyte)
932 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000933 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 ++matchcol;
936 }
937 }
938 else
939 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100940 // Stop when the match is in a next line.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000941 if (matchpos.lnum > 0)
942 break;
943 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 if (ptr[matchcol] != NUL)
945 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 if (has_mbyte)
947 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000948 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 ++matchcol;
951 }
952 }
953 if (ptr[matchcol] == NUL
954 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000955 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000956 matchcol,
957#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200958 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000959#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200960 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000961#endif
962 )) == 0)
Bram Moolenaar9d322762018-02-09 16:04:25 +0100963 {
964#ifdef FEAT_RELTIME
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100965 // If the search timed out, we did find a match
966 // but it might be the wrong one, so that's not
967 // OK.
Bram Moolenaar9d322762018-02-09 16:04:25 +0100968 if (timed_out != NULL && *timed_out)
969 match_ok = FALSE;
970#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 break;
Bram Moolenaar9d322762018-02-09 16:04:25 +0100972 }
Bram Moolenaar795aaa12020-10-02 20:36:01 +0200973 // vim_regexec_multi() may clear "regprog"
974 if (regmatch.regprog == NULL)
975 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100977 // Need to get the line pointer again, a
978 // multi-line search may have made it invalid.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000979 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 }
981
982 /*
983 * If there is only a match after the cursor, skip
984 * this match.
985 */
986 if (!match_ok)
987 continue;
988 }
989
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100990 // With the SEARCH_END option move to the last character
991 // of the match. Don't do it for an empty match, end
992 // should be same as start then.
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200993 if ((options & SEARCH_END) && !(options & SEARCH_NOOF)
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000994 && !(matchpos.lnum == endpos.lnum
995 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100997 // For a match in the first column, set the position
998 // on the NUL in the previous line.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000999 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001000 pos->col = endpos.col;
1001 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001002 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001003 if (pos->lnum > 1) // just in case
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001004 {
1005 --pos->lnum;
1006 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
1007 pos->lnum, FALSE));
1008 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001009 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001010 else
1011 {
1012 --pos->col;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001013 if (has_mbyte
1014 && pos->lnum <= buf->b_ml.ml_line_count)
1015 {
1016 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1017 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
1018 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001019 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001020 if (end_pos != NULL)
1021 {
1022 end_pos->lnum = lnum + matchpos.lnum;
1023 end_pos->col = matchpos.col;
1024 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 }
1026 else
1027 {
Bram Moolenaar677ee682005-01-27 14:41:15 +00001028 pos->lnum = lnum + matchpos.lnum;
1029 pos->col = matchpos.col;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001030 if (end_pos != NULL)
1031 {
1032 end_pos->lnum = lnum + endpos.lnum;
1033 end_pos->col = endpos.col;
1034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 pos->coladd = 0;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001037 if (end_pos != NULL)
1038 end_pos->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039 found = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +01001040 first_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001042 // Set variables used for 'incsearch' highlighting.
Bram Moolenaar677ee682005-01-27 14:41:15 +00001043 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 search_match_endcol = endpos.col;
1045 break;
1046 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001047 line_breakcheck(); // stop if ctrl-C typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 if (got_int)
1049 break;
1050
1051#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001052 // Cancel searching if a character was typed. Used for
1053 // 'incsearch'. Don't check too often, that would slowdown
1054 // searching too much.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 if ((options & SEARCH_PEEK)
1056 && ((lnum - pos->lnum) & 0x3f) == 0
1057 && char_avail())
1058 {
1059 break_loop = TRUE;
1060 break;
1061 }
1062#endif
1063
1064 if (loop && lnum == start_pos.lnum)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001065 break; // if second loop, stop where started
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 }
1067 at_first_line = FALSE;
1068
Bram Moolenaar795aaa12020-10-02 20:36:01 +02001069 // vim_regexec_multi() may clear "regprog"
1070 if (regmatch.regprog == NULL)
1071 break;
1072
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001074 * Stop the search if wrapscan isn't set, "stop_lnum" is
1075 * specified, after an interrupt, after a match and after looping
1076 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 */
Bram Moolenaar53989552019-12-23 22:59:18 +01001078 if (!p_ws || stop_lnum != 0 || got_int
1079 || called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001080#ifdef FEAT_RELTIME
1081 || (timed_out != NULL && *timed_out)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001082#endif
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001083#ifdef FEAT_SEARCH_EXTRA
1084 || break_loop
1085#endif
1086 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 break;
1088
1089 /*
1090 * If 'wrapscan' is set we continue at the other end of the file.
1091 * If 'shortmess' does not contain 's', we give a message.
1092 * This message is also remembered in keep_msg for when the screen
1093 * is redrawn. The keep_msg is cleared whenever another message is
1094 * written.
1095 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001096 if (dir == BACKWARD) // start second loop at the other end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00001100 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
1101 give_warning((char_u *)_(dir == BACKWARD
1102 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001103 if (extra_arg != NULL)
1104 extra_arg->sa_wrapped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 }
Bram Moolenaar53989552019-12-23 22:59:18 +01001106 if (got_int || called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001107#ifdef FEAT_RELTIME
1108 || (timed_out != NULL && *timed_out)
1109#endif
Bram Moolenaar78a15312009-05-15 19:33:18 +00001110#ifdef FEAT_SEARCH_EXTRA
1111 || break_loop
1112#endif
1113 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 break;
1115 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001116 while (--count > 0 && found); // stop after count matches or no match
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117
Bram Moolenaar473de612013-06-08 18:19:48 +02001118 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001120 if (!found) // did not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 {
1122 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001123 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 else if ((options & SEARCH_MSG) == SEARCH_MSG)
1125 {
1126 if (p_ws)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001127 semsg(_(e_patnotf2), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 else if (lnum == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001129 semsg(_("E384: search hit TOP without match for: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 mr_pattern);
1131 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001132 semsg(_("E385: search hit BOTTOM without match for: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 mr_pattern);
1134 }
1135 return FAIL;
1136 }
1137
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001138 // A pattern like "\n\zs" may go past the last line.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001139 if (pos->lnum > buf->b_ml.ml_line_count)
1140 {
1141 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001142 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001143 if (pos->col > 0)
1144 --pos->col;
1145 }
1146
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 return submatch + 1;
1148}
1149
1150#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001151 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001152set_search_direction(int cdir)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001153{
1154 spats[0].off.dir = cdir;
1155}
1156
1157 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001158set_vv_searchforward(void)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001159{
1160 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1161}
1162
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163/*
1164 * Return the number of the first subpat that matched.
Bram Moolenaarad4d8a12015-12-28 19:20:36 +01001165 * Return zero if none of them matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 */
1167 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001168first_submatch(regmmatch_T *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169{
1170 int submatch;
1171
1172 for (submatch = 1; ; ++submatch)
1173 {
1174 if (rp->startpos[submatch].lnum >= 0)
1175 break;
1176 if (submatch == 9)
1177 {
1178 submatch = 0;
1179 break;
1180 }
1181 }
1182 return submatch;
1183}
1184#endif
1185
1186/*
1187 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001188 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 * If 'dirc' is 0: use previous dir.
1190 * If 'pat' is NULL or empty : use previous string.
1191 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1192 * If 'options & SEARCH_ECHO': echo the search command and handle options
1193 * If 'options & SEARCH_MSG' : may give error message
1194 * If 'options & SEARCH_OPT' : interpret optional flags
1195 * If 'options & SEARCH_HIS' : put search pattern in history
1196 * If 'options & SEARCH_NOOF': don't add offset to position
1197 * If 'options & SEARCH_MARK': set previous context mark
1198 * If 'options & SEARCH_KEEP': keep previous search pattern
1199 * If 'options & SEARCH_START': accept match at curpos itself
1200 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1201 *
1202 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1203 * makes the movement linewise without moving the match position.
1204 *
Bram Moolenaarb6c27352015-03-05 19:57:49 +01001205 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 */
1207 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001208do_search(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001209 oparg_T *oap, // can be NULL
1210 int dirc, // '/' or '?'
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001211 int search_delim, // the delimiter for the search, e.g. '%' in
1212 // s%regex%replacement%
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001213 char_u *pat,
1214 long count,
1215 int options,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001216 searchit_arg_T *sia) // optional arguments or NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001218 pos_T pos; // position of the last match
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 char_u *searchstr;
Bram Moolenaarc3328162019-07-23 22:15:25 +02001220 soffset_T old_off;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001221 int retval; // Return value
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 char_u *p;
1223 long c;
1224 char_u *dircp;
1225 char_u *strcopy = NULL;
1226 char_u *ps;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001227 char_u *msgbuf = NULL;
1228 size_t len;
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001229 int has_offset = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230
1231 /*
1232 * A line offset is not remembered, this is vi compatible.
1233 */
1234 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1235 {
1236 spats[0].off.line = FALSE;
1237 spats[0].off.off = 0;
1238 }
1239
1240 /*
1241 * Save the values for when (options & SEARCH_KEEP) is used.
1242 * (there is no "if ()" around this because gcc wants them initialized)
1243 */
1244 old_off = spats[0].off;
1245
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001246 pos = curwin->w_cursor; // start searching at the cursor position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247
1248 /*
1249 * Find out the direction of the search.
1250 */
1251 if (dirc == 0)
1252 dirc = spats[0].off.dir;
1253 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001254 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001256#if defined(FEAT_EVAL)
1257 set_vv_searchforward();
1258#endif
1259 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 if (options & SEARCH_REV)
1261 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001262#ifdef MSWIN
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001263 // There is a bug in the Visual C++ 2.2 compiler which means that
1264 // dirc always ends up being '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 dirc = (dirc == '/') ? '?' : '/';
1266#else
1267 if (dirc == '/')
1268 dirc = '?';
1269 else
1270 dirc = '/';
1271#endif
1272 }
1273
1274#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001275 // If the cursor is in a closed fold, don't find another match in the same
1276 // fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 if (dirc == '/')
1278 {
1279 if (hasFolding(pos.lnum, NULL, &pos.lnum))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001280 pos.col = MAXCOL - 2; // avoid overflow when adding 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 }
1282 else
1283 {
1284 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1285 pos.col = 0;
1286 }
1287#endif
1288
1289#ifdef FEAT_SEARCH_EXTRA
1290 /*
1291 * Turn 'hlsearch' highlighting back on.
1292 */
1293 if (no_hlsearch && !(options & SEARCH_KEEP))
1294 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001295 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02001296 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 }
1298#endif
1299
1300 /*
1301 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1302 */
1303 for (;;)
1304 {
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001305 int show_top_bot_msg = FALSE;
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02001306
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 searchstr = pat;
1308 dircp = NULL;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001309 // use previous pattern
Bram Moolenaarc036e872020-02-21 21:30:52 +01001310 if (pat == NULL || *pat == NUL || *pat == search_delim)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001312 if (spats[RE_SEARCH].pat == NULL) // no previous pattern
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 {
Bram Moolenaarea683da2016-09-09 21:41:34 +02001314 searchstr = spats[RE_SUBST].pat;
1315 if (searchstr == NULL)
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001316 {
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001317 emsg(_(e_no_previous_regular_expression));
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001318 retval = 0;
1319 goto end_do_search;
1320 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001322 else
1323 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001324 // make search_regcomp() use spats[RE_SEARCH].pat
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001325 searchstr = (char_u *)"";
1326 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 }
1328
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001329 if (pat != NULL && *pat != NUL) // look for (new) offset
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 {
1331 /*
1332 * Find end of regular expression.
1333 * If there is a matching '/' or '?', toss it.
1334 */
1335 ps = strcopy;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01001336 p = skip_regexp_ex(pat, search_delim, magic_isset(),
Bram Moolenaard93a7fc2021-01-04 12:42:13 +01001337 &strcopy, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 if (strcopy != ps)
1339 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001340 // made a copy of "pat" to change "\?" to "?"
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001341 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 pat = strcopy;
1343 searchstr = strcopy;
1344 }
Bram Moolenaarc036e872020-02-21 21:30:52 +01001345 if (*p == search_delim)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001347 dircp = p; // remember where we put the NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 *p++ = NUL;
1349 }
1350 spats[0].off.line = FALSE;
1351 spats[0].off.end = FALSE;
1352 spats[0].off.off = 0;
1353 /*
1354 * Check for a line offset or a character offset.
1355 * For get_address (echo off) we don't check for a character
1356 * offset, because it is meaningless and the 's' could be a
1357 * substitute command.
1358 */
1359 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1360 spats[0].off.line = TRUE;
1361 else if ((options & SEARCH_OPT) &&
1362 (*p == 'e' || *p == 's' || *p == 'b'))
1363 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001364 if (*p == 'e') // end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 spats[0].off.end = SEARCH_END;
1366 ++p;
1367 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001368 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') // got an offset
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001370 // 'nr' or '+nr' or '-nr'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1372 spats[0].off.off = atol((char *)p);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001373 else if (*p == '-') // single '-'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 spats[0].off.off = -1;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001375 else // single '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 spats[0].off.off = 1;
1377 ++p;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001378 while (VIM_ISDIGIT(*p)) // skip number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 ++p;
1380 }
1381
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001382 // compute length of search command for get_address()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 searchcmdlen += (int)(p - pat);
1384
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001385 pat = p; // put pat after search command
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 }
1387
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001388 if ((options & SEARCH_ECHO) && messaging() &&
1389 !msg_silent &&
1390 (!cmd_silent || !shortmess(SHM_SEARCHCOUNT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 char_u *trunc;
Bram Moolenaar984f0312019-05-24 13:11:47 +02001393 char_u off_buf[40];
Bram Moolenaard33a7642019-05-24 17:56:14 +02001394 size_t off_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001396 // Compute msg_row early.
1397 msg_start();
1398
Bram Moolenaar984f0312019-05-24 13:11:47 +02001399 // Get the offset, so we know how long it is.
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001400 if (!cmd_silent &&
1401 (spats[0].off.line || spats[0].off.end || spats[0].off.off))
Bram Moolenaar984f0312019-05-24 13:11:47 +02001402 {
1403 p = off_buf;
1404 *p++ = dirc;
1405 if (spats[0].off.end)
1406 *p++ = 'e';
1407 else if (!spats[0].off.line)
1408 *p++ = 's';
1409 if (spats[0].off.off > 0 || spats[0].off.line)
1410 *p++ = '+';
1411 *p = NUL;
1412 if (spats[0].off.off != 0 || spats[0].off.line)
1413 sprintf((char *)p, "%ld", spats[0].off.off);
1414 off_len = STRLEN(off_buf);
1415 }
1416
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 if (*searchstr == NUL)
Bram Moolenaar2fb8f682018-12-01 13:14:45 +01001418 p = spats[0].pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419 else
1420 p = searchstr;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001421
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001422 if (!shortmess(SHM_SEARCHCOUNT) || cmd_silent)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001423 {
1424 // Reserve enough space for the search pattern + offset +
Bram Moolenaar984f0312019-05-24 13:11:47 +02001425 // search stat. Use all the space available, so that the
1426 // search state is right aligned. If there is not enough space
1427 // msg_strtrunc() will shorten in the middle.
Bram Moolenaar19e8ac72019-09-03 22:23:38 +02001428 if (msg_scrolled != 0 && !cmd_silent)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001429 // Use all the columns.
1430 len = (int)(Rows - msg_row) * Columns - 1;
1431 else
1432 // Use up to 'showcmd' column.
1433 len = (int)(Rows - msg_row - 1) * Columns + sc_col - 1;
Bram Moolenaar984f0312019-05-24 13:11:47 +02001434 if (len < STRLEN(p) + off_len + SEARCH_STAT_BUF_LEN + 3)
1435 len = STRLEN(p) + off_len + SEARCH_STAT_BUF_LEN + 3;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001436 }
1437 else
1438 // Reserve enough space for the search pattern + offset.
Bram Moolenaar984f0312019-05-24 13:11:47 +02001439 len = STRLEN(p) + off_len + 3;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001440
Bram Moolenaar880e4d92020-04-11 21:31:28 +02001441 vim_free(msgbuf);
Bram Moolenaar51e14382019-05-25 20:21:28 +02001442 msgbuf = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443 if (msgbuf != NULL)
1444 {
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001445 vim_memset(msgbuf, ' ', len);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001446 msgbuf[len - 1] = NUL;
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001447 // do not fill the msgbuf buffer, if cmd_silent is set, leave it
1448 // empty for the search_stat feature.
1449 if (!cmd_silent)
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001450 {
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001451 msgbuf[0] = dirc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001453 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1454 {
1455 // Use a space to draw the composing char on.
1456 msgbuf[1] = ' ';
1457 mch_memmove(msgbuf + 2, p, STRLEN(p));
1458 }
1459 else
1460 mch_memmove(msgbuf + 1, p, STRLEN(p));
1461 if (off_len > 0)
1462 mch_memmove(msgbuf + STRLEN(p) + 1, off_buf, off_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001464 trunc = msg_strtrunc(msgbuf, TRUE);
1465 if (trunc != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 {
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001467 vim_free(msgbuf);
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001468 msgbuf = trunc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001471#ifdef FEAT_RIGHTLEFT
1472 // The search pattern could be shown on the right in
1473 // rightleft mode, but the 'ruler' and 'showcmd' area use
1474 // it too, thus it would be blanked out again very soon.
1475 // Show it on the left, but do reverse the text.
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001476 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1477 {
1478 char_u *r;
1479 size_t pat_len;
1480
1481 r = reverse_text(msgbuf);
1482 if (r != NULL)
1483 {
1484 vim_free(msgbuf);
1485 msgbuf = r;
1486 // move reversed text to beginning of buffer
1487 while (*r != NUL && *r == ' ')
1488 r++;
1489 pat_len = msgbuf + STRLEN(msgbuf) - r;
1490 mch_memmove(msgbuf, r, pat_len);
1491 // overwrite old text
1492 if ((size_t)(r - msgbuf) >= pat_len)
1493 vim_memset(r, ' ', pat_len);
1494 else
1495 vim_memset(msgbuf + pat_len, ' ', r - msgbuf);
1496 }
1497 }
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001498#endif
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001499 msg_outtrans(msgbuf);
1500 msg_clr_eos();
1501 msg_check();
1502
1503 gotocmdline(FALSE);
1504 out_flush();
1505 msg_nowait = TRUE; // don't wait for this message
1506 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 }
1508 }
1509
1510 /*
1511 * If there is a character offset, subtract it from the current
1512 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001513 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 * This is not done for a line offset, because then we would not be vi
1515 * compatible.
1516 */
Bram Moolenaared203462004-06-16 11:19:22 +00001517 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 {
1519 if (spats[0].off.off > 0)
1520 {
1521 for (c = spats[0].off.off; c; --c)
1522 if (decl(&pos) == -1)
1523 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001524 if (c) // at start of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001526 pos.lnum = 0; // allow lnum == 0 here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 pos.col = MAXCOL;
1528 }
1529 }
1530 else
1531 {
1532 for (c = spats[0].off.off; c; ++c)
1533 if (incl(&pos) == -1)
1534 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001535 if (c) // at end of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 {
1537 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1538 pos.col = 0;
1539 }
1540 }
1541 }
1542
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001543 /*
1544 * The actual search.
1545 */
Bram Moolenaar14184a32019-02-16 15:10:30 +01001546 c = searchit(curwin, curbuf, &pos, NULL,
1547 dirc == '/' ? FORWARD : BACKWARD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 searchstr, count, spats[0].off.end + (options &
1549 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1550 + SEARCH_MSG + SEARCH_START
1551 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001552 RE_LAST, sia);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553
1554 if (dircp != NULL)
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001555 *dircp = search_delim; // restore second '/' or '?' for normal_cmd()
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001556
1557 if (!shortmess(SHM_SEARCH)
1558 && ((dirc == '/' && LT_POS(pos, curwin->w_cursor))
1559 || (dirc == '?' && LT_POS(curwin->w_cursor, pos))))
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02001560 show_top_bot_msg = TRUE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001561
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 if (c == FAIL)
1563 {
1564 retval = 0;
1565 goto end_do_search;
1566 }
1567 if (spats[0].off.end && oap != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001568 oap->inclusive = TRUE; // 'e' includes last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001570 retval = 1; // pattern found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571
1572 /*
1573 * Add character and/or line offset
1574 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001575 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 {
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001577 pos_T org_pos = pos;
1578
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001579 if (spats[0].off.line) // Add the offset to the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 {
1581 c = pos.lnum + spats[0].off.off;
1582 if (c < 1)
1583 pos.lnum = 1;
1584 else if (c > curbuf->b_ml.ml_line_count)
1585 pos.lnum = curbuf->b_ml.ml_line_count;
1586 else
1587 pos.lnum = c;
1588 pos.col = 0;
1589
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001590 retval = 2; // pattern found, line offset added
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001592 else if (pos.col < MAXCOL - 2) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001594 // to the right, check for end of file
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001595 c = spats[0].off.off;
1596 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001598 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 if (incl(&pos) == -1)
1600 break;
1601 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001602 // to the left, check for start of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 else
1604 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001605 while (c++ < 0)
1606 if (decl(&pos) == -1)
1607 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608 }
1609 }
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001610 if (!EQUAL_POS(pos, org_pos))
1611 has_offset = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 }
1613
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001614 // Show [1/15] if 'S' is not in 'shortmess'.
1615 if ((options & SEARCH_ECHO)
1616 && messaging()
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001617 && !msg_silent
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001618 && c != FAIL
1619 && !shortmess(SHM_SEARCHCOUNT)
1620 && msgbuf != NULL)
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02001621 cmdline_search_stat(dirc, &pos, &curwin->w_cursor,
1622 show_top_bot_msg, msgbuf,
1623 (count != 1 || has_offset
Bram Moolenaar6cb07262020-05-29 22:49:43 +02001624#ifdef FEAT_FOLDING
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02001625 || (!(fdo_flags & FDO_SEARCH)
1626 && hasFolding(curwin->w_cursor.lnum,
1627 NULL, NULL))
Bram Moolenaar6cb07262020-05-29 22:49:43 +02001628#endif
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02001629 ),
1630 SEARCH_STAT_DEF_MAX_COUNT,
1631 SEARCH_STAT_DEF_TIMEOUT);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001632
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 /*
1634 * The search command can be followed by a ';' to do another search.
1635 * For example: "/pat/;/foo/+3;?bar"
1636 * This is like doing another search command, except:
1637 * - The remembered direction '/' or '?' is from the first search.
1638 * - When an error happens the cursor isn't moved at all.
1639 * Don't do this when called by get_address() (it handles ';' itself).
1640 */
1641 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1642 break;
1643
1644 dirc = *++pat;
Bram Moolenaarc036e872020-02-21 21:30:52 +01001645 search_delim = dirc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 if (dirc != '?' && dirc != '/')
1647 {
1648 retval = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001649 emsg(_("E386: Expected '?' or '/' after ';'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 goto end_do_search;
1651 }
1652 ++pat;
1653 }
1654
1655 if (options & SEARCH_MARK)
1656 setpcmark();
1657 curwin->w_cursor = pos;
1658 curwin->w_set_curswant = TRUE;
1659
1660end_do_search:
Bram Moolenaare1004402020-10-24 20:49:43 +02001661 if ((options & SEARCH_KEEP) || (cmdmod.cmod_flags & CMOD_KEEPPATTERNS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 spats[0].off = old_off;
1663 vim_free(strcopy);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001664 vim_free(msgbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665
1666 return retval;
1667}
1668
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669/*
1670 * search_for_exact_line(buf, pos, dir, pat)
1671 *
1672 * Search for a line starting with the given pattern (ignoring leading
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001673 * white-space), starting from pos and going in direction "dir". "pos" will
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 * contain the position of the match found. Blank lines match only if
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001675 * ADDING is set. If p_ic is set then the pattern must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 * Return OK for success, or FAIL if no line found.
1677 */
1678 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001679search_for_exact_line(
1680 buf_T *buf,
1681 pos_T *pos,
1682 int dir,
1683 char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684{
1685 linenr_T start = 0;
1686 char_u *ptr;
1687 char_u *p;
1688
1689 if (buf->b_ml.ml_line_count == 0)
1690 return FAIL;
1691 for (;;)
1692 {
1693 pos->lnum += dir;
1694 if (pos->lnum < 1)
1695 {
1696 if (p_ws)
1697 {
1698 pos->lnum = buf->b_ml.ml_line_count;
1699 if (!shortmess(SHM_SEARCH))
1700 give_warning((char_u *)_(top_bot_msg), TRUE);
1701 }
1702 else
1703 {
1704 pos->lnum = 1;
1705 break;
1706 }
1707 }
1708 else if (pos->lnum > buf->b_ml.ml_line_count)
1709 {
1710 if (p_ws)
1711 {
1712 pos->lnum = 1;
1713 if (!shortmess(SHM_SEARCH))
1714 give_warning((char_u *)_(bot_top_msg), TRUE);
1715 }
1716 else
1717 {
1718 pos->lnum = 1;
1719 break;
1720 }
1721 }
1722 if (pos->lnum == start)
1723 break;
1724 if (start == 0)
1725 start = pos->lnum;
1726 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1727 p = skipwhite(ptr);
1728 pos->col = (colnr_T) (p - ptr);
1729
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001730 // when adding lines the matching line may be empty but it is not
1731 // ignored because we are interested in the next line -- Acevedo
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001732 if ((compl_cont_status & CONT_ADDING)
1733 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 {
1735 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1736 return OK;
1737 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001738 else if (*p != NUL) // ignore empty lines
1739 { // expanding lines or words
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001740 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1741 : STRNCMP(p, pat, compl_length)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 return OK;
1743 }
1744 }
1745 return FAIL;
1746}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747
1748/*
1749 * Character Searches
1750 */
1751
1752/*
1753 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1754 * position of the character, otherwise move to just before the char.
1755 * Do this "cap->count1" times.
1756 * Return FAIL or OK.
1757 */
1758 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001759searchc(cmdarg_T *cap, int t_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001761 int c = cap->nchar; // char to search for
1762 int dir = cap->arg; // TRUE for searching forward
1763 long count = cap->count1; // repeat count
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 int col;
1765 char_u *p;
1766 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001767 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001769 if (c != NUL) // normal search: remember args for repeat
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001771 if (!KeyStuffed) // don't remember when redoing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001773 *lastc = c;
1774 set_csearch_direction(dir);
1775 set_csearch_until(t_cmd);
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001776 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 if (cap->ncharC1 != 0)
1778 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001779 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1,
1780 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 if (cap->ncharC2 != 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001782 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2,
1783 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 }
1786 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001787 else // repeat previous search
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 {
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001789 if (*lastc == NUL && lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 return FAIL;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001791 if (dir) // repeat in opposite direction
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 dir = -lastcdir;
1793 else
1794 dir = lastcdir;
1795 t_cmd = last_t_cmd;
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001796 c = *lastc;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001797 // For multi-byte re-use last lastc_bytes[] and lastc_bytelen.
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001798
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001799 // Force a move of at least one char, so ";" and "," will move the
1800 // cursor, even if the cursor is right in front of char we are looking
1801 // at.
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001802 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001803 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 }
1805
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001806 if (dir == BACKWARD)
1807 cap->oap->inclusive = FALSE;
1808 else
1809 cap->oap->inclusive = TRUE;
1810
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 p = ml_get_curline();
1812 col = curwin->w_cursor.col;
1813 len = (int)STRLEN(p);
1814
1815 while (count--)
1816 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 if (has_mbyte)
1818 {
1819 for (;;)
1820 {
1821 if (dir > 0)
1822 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001823 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 if (col >= len)
1825 return FAIL;
1826 }
1827 else
1828 {
1829 if (col == 0)
1830 return FAIL;
1831 col -= (*mb_head_off)(p, p + col - 1) + 1;
1832 }
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001833 if (lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001835 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 break;
1837 }
Bram Moolenaar66727e12017-03-01 22:17:05 +01001838 else if (STRNCMP(p + col, lastc_bytes, lastc_bytelen) == 0
Bram Moolenaarb129a442016-12-01 17:25:20 +01001839 && stop)
Bram Moolenaar66727e12017-03-01 22:17:05 +01001840 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001841 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 }
1843 }
1844 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 {
1846 for (;;)
1847 {
1848 if ((col += dir) < 0 || col >= len)
1849 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001850 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001852 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 }
1854 }
1855 }
1856
1857 if (t_cmd)
1858 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001859 // backup to before the character (possibly double-byte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 col -= dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 if (has_mbyte)
1862 {
1863 if (dir < 0)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001864 // Landed on the search char which is lastc_bytelen long
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001865 col += lastc_bytelen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001867 // To previous char, which may be multi-byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 col -= (*mb_head_off)(p, p + col);
1869 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 }
1871 curwin->w_cursor.col = col;
1872
1873 return OK;
1874}
1875
1876/*
1877 * "Other" Searches
1878 */
1879
1880/*
1881 * findmatch - find the matching paren or brace
1882 *
1883 * Improvement over vi: Braces inside quotes are ignored.
1884 */
1885 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001886findmatch(oparg_T *oap, int initc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887{
1888 return findmatchlimit(oap, initc, 0, 0);
1889}
1890
1891/*
1892 * Return TRUE if the character before "linep[col]" equals "ch".
1893 * Return FALSE if "col" is zero.
1894 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1895 * is NULL.
1896 * Handles multibyte string correctly.
1897 */
1898 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001899check_prevcol(
1900 char_u *linep,
1901 int col,
1902 int ch,
1903 int *prevcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904{
1905 --col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 if (col > 0 && has_mbyte)
1907 col -= (*mb_head_off)(linep, linep + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 if (prevcol)
1909 *prevcol = col;
1910 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1911}
1912
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001913/*
1914 * Raw string start is found at linep[startpos.col - 1].
1915 * Return TRUE if the matching end can be found between startpos and endpos.
1916 */
1917 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001918find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos)
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001919{
1920 char_u *p;
1921 char_u *delim_copy;
1922 size_t delim_len;
1923 linenr_T lnum;
1924 int found = FALSE;
1925
1926 for (p = linep + startpos->col + 1; *p && *p != '('; ++p)
1927 ;
1928 delim_len = (p - linep) - startpos->col - 1;
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001929 delim_copy = vim_strnsave(linep + startpos->col + 1, delim_len);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001930 if (delim_copy == NULL)
1931 return FALSE;
1932 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum)
1933 {
1934 char_u *line = ml_get(lnum);
1935
1936 for (p = line + (lnum == startpos->lnum
1937 ? startpos->col + 1 : 0); *p; ++p)
1938 {
1939 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col)
1940 break;
Bram Moolenaar282f9c62020-08-04 21:46:18 +02001941 if (*p == ')' && STRNCMP(delim_copy, p + 1, delim_len) == 0
1942 && p[delim_len + 1] == '"')
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001943 {
1944 found = TRUE;
1945 break;
1946 }
1947 }
1948 if (found)
1949 break;
1950 }
1951 vim_free(delim_copy);
1952 return found;
1953}
1954
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955/*
Bram Moolenaar556ae8e2019-11-21 22:27:22 +01001956 * Check matchpairs option for "*initc".
1957 * If there is a match set "*initc" to the matching character and "*findc" to
1958 * the opposite character. Set "*backwards" to the direction.
1959 * When "switchit" is TRUE swap the direction.
1960 */
1961 static void
1962find_mps_values(
1963 int *initc,
1964 int *findc,
1965 int *backwards,
1966 int switchit)
1967{
1968 char_u *ptr;
1969
1970 ptr = curbuf->b_p_mps;
1971 while (*ptr != NUL)
1972 {
1973 if (has_mbyte)
1974 {
1975 char_u *prev;
1976
1977 if (mb_ptr2char(ptr) == *initc)
1978 {
1979 if (switchit)
1980 {
1981 *findc = *initc;
1982 *initc = mb_ptr2char(ptr + mb_ptr2len(ptr) + 1);
1983 *backwards = TRUE;
1984 }
1985 else
1986 {
1987 *findc = mb_ptr2char(ptr + mb_ptr2len(ptr) + 1);
1988 *backwards = FALSE;
1989 }
1990 return;
1991 }
1992 prev = ptr;
1993 ptr += mb_ptr2len(ptr) + 1;
1994 if (mb_ptr2char(ptr) == *initc)
1995 {
1996 if (switchit)
1997 {
1998 *findc = *initc;
1999 *initc = mb_ptr2char(prev);
2000 *backwards = FALSE;
2001 }
2002 else
2003 {
2004 *findc = mb_ptr2char(prev);
2005 *backwards = TRUE;
2006 }
2007 return;
2008 }
2009 ptr += mb_ptr2len(ptr);
2010 }
2011 else
2012 {
2013 if (*ptr == *initc)
2014 {
2015 if (switchit)
2016 {
2017 *backwards = TRUE;
2018 *findc = *initc;
2019 *initc = ptr[2];
2020 }
2021 else
2022 {
2023 *backwards = FALSE;
2024 *findc = ptr[2];
2025 }
2026 return;
2027 }
2028 ptr += 2;
2029 if (*ptr == *initc)
2030 {
2031 if (switchit)
2032 {
2033 *backwards = FALSE;
2034 *findc = *initc;
2035 *initc = ptr[-2];
2036 }
2037 else
2038 {
2039 *backwards = TRUE;
2040 *findc = ptr[-2];
2041 }
2042 return;
2043 }
2044 ++ptr;
2045 }
2046 if (*ptr == ',')
2047 ++ptr;
2048 }
2049}
2050
2051/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 * findmatchlimit -- find the matching paren or brace, if it exists within
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002053 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling
2054 * off the edge of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 *
2056 * "initc" is the character to find a match for. NUL means to find the
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002057 * character at or after the cursor. Special values:
2058 * '*' look for C-style comment / *
2059 * '/' look for C-style comment / *, ignoring comment-end
2060 * '#' look for preprocessor directives
2061 * 'R' look for raw string start: R"delim(text)delim" (only backwards)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 *
2063 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
2064 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
2065 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
2066 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002067 *
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002068 * "oap" is only used to set oap->motion_type for a linewise motion, it can be
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002069 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 */
2071
2072 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002073findmatchlimit(
2074 oparg_T *oap,
2075 int initc,
2076 int flags,
2077 int maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002079 static pos_T pos; // current search position
2080 int findc = 0; // matching brace
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 int c;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002082 int count = 0; // cumulative number of braces
2083 int backwards = FALSE; // init for gcc
2084 int raw_string = FALSE; // search for raw string
2085 int inquote = FALSE; // TRUE when inside quotes
2086 char_u *linep; // pointer to current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 char_u *ptr;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002088 int do_quotes; // check for quotes in current line
2089 int at_start; // do_quotes value at start position
2090 int hash_dir = 0; // Direction searched for # things
2091 int comment_dir = 0; // Direction searched for comments
2092 pos_T match_pos; // Where last slash-star was found
2093 int start_in_quotes; // start position is in quotes
2094 int traveled = 0; // how far we've searched so far
2095 int ignore_cend = FALSE; // ignore comment end
2096 int cpo_match; // vi compatible matching
2097 int cpo_bsl; // don't recognize backslashes
2098 int match_escaped = 0; // search for escaped match
2099 int dir; // Direction to search
2100 int comment_col = MAXCOL; // start of / / comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002101#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002102 int lispcomm = FALSE; // inside of Lisp-style comment
2103 int lisp = curbuf->b_p_lisp; // engage Lisp-specific hacks ;)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002104#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105
2106 pos = curwin->w_cursor;
Bram Moolenaarc56c4592013-08-14 17:45:29 +02002107 pos.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 linep = ml_get(pos.lnum);
2109
2110 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
2111 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
2112
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002113 // Direction to search when initc is '/', '*' or '#'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 if (flags & FM_BACKWARD)
2115 dir = BACKWARD;
2116 else if (flags & FM_FORWARD)
2117 dir = FORWARD;
2118 else
2119 dir = 0;
2120
2121 /*
2122 * if initc given, look in the table for the matching character
2123 * '/' and '*' are special cases: look for start or end of comment.
2124 * When '/' is used, we ignore running backwards into an star-slash, for
2125 * "[*" command, we just want to find any comment.
2126 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002127 if (initc == '/' || initc == '*' || initc == 'R')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 {
2129 comment_dir = dir;
2130 if (initc == '/')
2131 ignore_cend = TRUE;
2132 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002133 raw_string = (initc == 'R');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 initc = NUL;
2135 }
2136 else if (initc != '#' && initc != NUL)
2137 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002138 find_mps_values(&initc, &findc, &backwards, TRUE);
Connor Lane Smithb9115da2021-07-31 13:31:42 +02002139 if (dir)
2140 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002141 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 return NULL;
2143 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 else
2145 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002146 /*
2147 * Either initc is '#', or no initc was given and we need to look
2148 * under the cursor.
2149 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 if (initc == '#')
2151 {
2152 hash_dir = dir;
2153 }
2154 else
2155 {
2156 /*
2157 * initc was not given, must look for something to match under
2158 * or near the cursor.
2159 * Only check for special things when 'cpo' doesn't have '%'.
2160 */
2161 if (!cpo_match)
2162 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002163 // Are we before or at #if, #else etc.?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 ptr = skipwhite(linep);
2165 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
2166 {
2167 ptr = skipwhite(ptr + 1);
2168 if ( STRNCMP(ptr, "if", 2) == 0
2169 || STRNCMP(ptr, "endif", 5) == 0
2170 || STRNCMP(ptr, "el", 2) == 0)
2171 hash_dir = 1;
2172 }
2173
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002174 // Are we on a comment?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 else if (linep[pos.col] == '/')
2176 {
2177 if (linep[pos.col + 1] == '*')
2178 {
2179 comment_dir = FORWARD;
2180 backwards = FALSE;
2181 pos.col++;
2182 }
2183 else if (pos.col > 0 && linep[pos.col - 1] == '*')
2184 {
2185 comment_dir = BACKWARD;
2186 backwards = TRUE;
2187 pos.col--;
2188 }
2189 }
2190 else if (linep[pos.col] == '*')
2191 {
2192 if (linep[pos.col + 1] == '/')
2193 {
2194 comment_dir = BACKWARD;
2195 backwards = TRUE;
2196 }
2197 else if (pos.col > 0 && linep[pos.col - 1] == '/')
2198 {
2199 comment_dir = FORWARD;
2200 backwards = FALSE;
2201 }
2202 }
2203 }
2204
2205 /*
2206 * If we are not on a comment or the # at the start of a line, then
2207 * look for brace anywhere on this line after the cursor.
2208 */
2209 if (!hash_dir && !comment_dir)
2210 {
2211 /*
2212 * Find the brace under or after the cursor.
2213 * If beyond the end of the line, use the last character in
2214 * the line.
2215 */
2216 if (linep[pos.col] == NUL && pos.col)
2217 --pos.col;
2218 for (;;)
2219 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002220 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 if (initc == NUL)
2222 break;
2223
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002224 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 if (findc)
2226 break;
Bram Moolenaar1614a142019-10-06 22:00:13 +02002227 pos.col += mb_ptr2len(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 }
2229 if (!findc)
2230 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002231 // no brace in the line, maybe use " #if" then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 if (!cpo_match && *skipwhite(linep) == '#')
2233 hash_dir = 1;
2234 else
2235 return NULL;
2236 }
2237 else if (!cpo_bsl)
2238 {
2239 int col, bslcnt = 0;
2240
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002241 // Set "match_escaped" if there are an odd number of
2242 // backslashes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2244 bslcnt++;
2245 match_escaped = (bslcnt & 1);
2246 }
2247 }
2248 }
2249 if (hash_dir)
2250 {
2251 /*
2252 * Look for matching #if, #else, #elif, or #endif
2253 */
2254 if (oap != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002255 oap->motion_type = MLINE; // Linewise for this case only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 if (initc != '#')
2257 {
2258 ptr = skipwhite(skipwhite(linep) + 1);
2259 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
2260 hash_dir = 1;
2261 else if (STRNCMP(ptr, "endif", 5) == 0)
2262 hash_dir = -1;
2263 else
2264 return NULL;
2265 }
2266 pos.col = 0;
2267 while (!got_int)
2268 {
2269 if (hash_dir > 0)
2270 {
2271 if (pos.lnum == curbuf->b_ml.ml_line_count)
2272 break;
2273 }
2274 else if (pos.lnum == 1)
2275 break;
2276 pos.lnum += hash_dir;
2277 linep = ml_get(pos.lnum);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002278 line_breakcheck(); // check for CTRL-C typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 ptr = skipwhite(linep);
2280 if (*ptr != '#')
2281 continue;
2282 pos.col = (colnr_T) (ptr - linep);
2283 ptr = skipwhite(ptr + 1);
2284 if (hash_dir > 0)
2285 {
2286 if (STRNCMP(ptr, "if", 2) == 0)
2287 count++;
2288 else if (STRNCMP(ptr, "el", 2) == 0)
2289 {
2290 if (count == 0)
2291 return &pos;
2292 }
2293 else if (STRNCMP(ptr, "endif", 5) == 0)
2294 {
2295 if (count == 0)
2296 return &pos;
2297 count--;
2298 }
2299 }
2300 else
2301 {
2302 if (STRNCMP(ptr, "if", 2) == 0)
2303 {
2304 if (count == 0)
2305 return &pos;
2306 count--;
2307 }
2308 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
2309 {
2310 if (count == 0)
2311 return &pos;
2312 }
2313 else if (STRNCMP(ptr, "endif", 5) == 0)
2314 count++;
2315 }
2316 }
2317 return NULL;
2318 }
2319 }
2320
2321#ifdef FEAT_RIGHTLEFT
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002322 // This is just guessing: when 'rightleft' is set, search for a matching
2323 // paren/brace in the other direction.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
2325 backwards = !backwards;
2326#endif
2327
2328 do_quotes = -1;
2329 start_in_quotes = MAYBE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002330 CLEAR_POS(&match_pos);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002331
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002332 // backward search: Check if this line contains a single-line comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002333 if ((backwards && comment_dir)
2334#ifdef FEAT_LISP
2335 || lisp
2336#endif
2337 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002339#ifdef FEAT_LISP
2340 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002341 lispcomm = TRUE; // find match inside this comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002342#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343 while (!got_int)
2344 {
2345 /*
2346 * Go to the next position, forward or backward. We could use
2347 * inc() and dec() here, but that is much slower
2348 */
2349 if (backwards)
2350 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002351#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002352 // char to match is inside of comment, don't search outside
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002353 if (lispcomm && pos.col < (colnr_T)comment_col)
2354 break;
2355#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002356 if (pos.col == 0) // at start of line, go to prev. one
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002358 if (pos.lnum == 1) // start of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 break;
2360 --pos.lnum;
2361
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002362 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 break;
2364
2365 linep = ml_get(pos.lnum);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002366 pos.col = (colnr_T)STRLEN(linep); // pos.col on trailing NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 do_quotes = -1;
2368 line_breakcheck();
2369
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002370 // Check if this line contains a single-line comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002371 if (comment_dir
2372#ifdef FEAT_LISP
2373 || lisp
2374#endif
2375 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002377#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002378 // skip comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002379 if (lisp && comment_col != MAXCOL)
2380 pos.col = comment_col;
2381#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382 }
2383 else
2384 {
2385 --pos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 if (has_mbyte)
2387 pos.col -= (*mb_head_off)(linep, linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 }
2389 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002390 else // forward search
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002392 if (linep[pos.col] == NUL
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002393 // at end of line, go to next one
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002394#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002395 // don't search for match in comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002396 || (lisp && comment_col != MAXCOL
2397 && pos.col == (colnr_T)comment_col)
2398#endif
2399 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002401 if (pos.lnum == curbuf->b_ml.ml_line_count // end of file
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002402#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002403 // line is exhausted and comment with it,
2404 // don't search for match in code
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002405 || lispcomm
2406#endif
2407 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 break;
2409 ++pos.lnum;
2410
2411 if (maxtravel && traveled++ > maxtravel)
2412 break;
2413
2414 linep = ml_get(pos.lnum);
2415 pos.col = 0;
2416 do_quotes = -1;
2417 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002418#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002419 if (lisp) // find comment pos in new line
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002420 comment_col = check_linecomment(linep);
2421#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 }
2423 else
2424 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002426 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 ++pos.col;
2429 }
2430 }
2431
2432 /*
2433 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2434 */
2435 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2436 (linep[0] == '{' || linep[0] == '}'))
2437 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002438 if (linep[0] == findc && count == 0) // match!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 return &pos;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002440 break; // out of scope
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 }
2442
2443 if (comment_dir)
2444 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002445 // Note: comments do not nest, and we ignore quotes in them
2446 // TODO: ignore comment brackets inside strings
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 if (comment_dir == FORWARD)
2448 {
2449 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2450 {
2451 pos.col++;
2452 return &pos;
2453 }
2454 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002455 else // Searching backwards
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 {
2457 /*
2458 * A comment may contain / * or / /, it may also start or end
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002459 * with / * /. Ignore a / * after / / and after *.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 */
2461 if (pos.col == 0)
2462 continue;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002463 else if (raw_string)
2464 {
2465 if (linep[pos.col - 1] == 'R'
2466 && linep[pos.col] == '"'
2467 && vim_strchr(linep + pos.col + 1, '(') != NULL)
2468 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002469 // Possible start of raw string. Now that we have the
2470 // delimiter we can check if it ends before where we
2471 // started searching, or before the previously found
2472 // raw string start.
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002473 if (!find_rawstring_end(linep, &pos,
2474 count > 0 ? &match_pos : &curwin->w_cursor))
2475 {
2476 count++;
2477 match_pos = pos;
2478 match_pos.col--;
2479 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002480 linep = ml_get(pos.lnum); // may have been released
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002481 }
2482 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 else if ( linep[pos.col - 1] == '/'
2484 && linep[pos.col] == '*'
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002485 && (pos.col == 1 || linep[pos.col - 2] != '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 && (int)pos.col < comment_col)
2487 {
2488 count++;
2489 match_pos = pos;
2490 match_pos.col--;
2491 }
2492 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2493 {
2494 if (count > 0)
2495 pos = match_pos;
2496 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2497 && (int)pos.col <= comment_col)
2498 pos.col -= 2;
2499 else if (ignore_cend)
2500 continue;
2501 else
2502 return NULL;
2503 return &pos;
2504 }
2505 }
2506 continue;
2507 }
2508
2509 /*
2510 * If smart matching ('cpoptions' does not contain '%'), braces inside
2511 * of quotes are ignored, but only if there is an even number of
2512 * quotes in the line.
2513 */
2514 if (cpo_match)
2515 do_quotes = 0;
2516 else if (do_quotes == -1)
2517 {
2518 /*
2519 * Count the number of quotes in the line, skipping \" and '"'.
2520 * Watch out for "\\".
2521 */
2522 at_start = do_quotes;
2523 for (ptr = linep; *ptr; ++ptr)
2524 {
2525 if (ptr == linep + pos.col + backwards)
2526 at_start = (do_quotes & 1);
2527 if (*ptr == '"'
2528 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2529 ++do_quotes;
2530 if (*ptr == '\\' && ptr[1] != NUL)
2531 ++ptr;
2532 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002533 do_quotes &= 1; // result is 1 with even number of quotes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534
2535 /*
2536 * If we find an uneven count, check current line and previous
2537 * one for a '\' at the end.
2538 */
2539 if (!do_quotes)
2540 {
2541 inquote = FALSE;
2542 if (ptr[-1] == '\\')
2543 {
2544 do_quotes = 1;
2545 if (start_in_quotes == MAYBE)
2546 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002547 // Do we need to use at_start here?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 inquote = TRUE;
2549 start_in_quotes = TRUE;
2550 }
2551 else if (backwards)
2552 inquote = TRUE;
2553 }
2554 if (pos.lnum > 1)
2555 {
2556 ptr = ml_get(pos.lnum - 1);
2557 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2558 {
2559 do_quotes = 1;
2560 if (start_in_quotes == MAYBE)
2561 {
2562 inquote = at_start;
2563 if (inquote)
2564 start_in_quotes = TRUE;
2565 }
2566 else if (!backwards)
2567 inquote = TRUE;
2568 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002569
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002570 // ml_get() only keeps one line, need to get linep again
Bram Moolenaaraec11792007-07-10 11:09:36 +00002571 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 }
2573 }
2574 }
2575 if (start_in_quotes == MAYBE)
2576 start_in_quotes = FALSE;
2577
2578 /*
2579 * If 'smartmatch' is set:
2580 * Things inside quotes are ignored by setting 'inquote'. If we
2581 * find a quote without a preceding '\' invert 'inquote'. At the
2582 * end of a line not ending in '\' we reset 'inquote'.
2583 *
2584 * In lines with an uneven number of quotes (without preceding '\')
2585 * we do not know which part to ignore. Therefore we only set
2586 * inquote if the number of quotes in a line is even, unless this
2587 * line or the previous one ends in a '\'. Complicated, isn't it?
2588 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002589 c = PTR2CHAR(linep + pos.col);
2590 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 {
2592 case NUL:
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002593 // at end of line without trailing backslash, reset inquote
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2595 {
2596 inquote = FALSE;
2597 start_in_quotes = FALSE;
2598 }
2599 break;
2600
2601 case '"':
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002602 // a quote that is preceded with an odd number of backslashes is
2603 // ignored
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 if (do_quotes)
2605 {
2606 int col;
2607
2608 for (col = pos.col - 1; col >= 0; --col)
2609 if (linep[col] != '\\')
2610 break;
2611 if ((((int)pos.col - 1 - col) & 1) == 0)
2612 {
2613 inquote = !inquote;
2614 start_in_quotes = FALSE;
2615 }
2616 }
2617 break;
2618
2619 /*
2620 * If smart matching ('cpoptions' does not contain '%'):
2621 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2622 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2623 * skipped, there is never a brace in them.
2624 * Ignore this when finding matches for `'.
2625 */
2626 case '\'':
2627 if (!cpo_match && initc != '\'' && findc != '\'')
2628 {
2629 if (backwards)
2630 {
2631 if (pos.col > 1)
2632 {
2633 if (linep[pos.col - 2] == '\'')
2634 {
2635 pos.col -= 2;
2636 break;
2637 }
2638 else if (linep[pos.col - 2] == '\\' &&
2639 pos.col > 2 && linep[pos.col - 3] == '\'')
2640 {
2641 pos.col -= 3;
2642 break;
2643 }
2644 }
2645 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002646 else if (linep[pos.col + 1]) // forward search
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 {
2648 if (linep[pos.col + 1] == '\\' &&
2649 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2650 {
2651 pos.col += 3;
2652 break;
2653 }
2654 else if (linep[pos.col + 2] == '\'')
2655 {
2656 pos.col += 2;
2657 break;
2658 }
2659 }
2660 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002661 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662
2663 default:
2664#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002665 /*
2666 * For Lisp skip over backslashed (), {} and [].
2667 * (actually, we skip #\( et al)
2668 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669 if (curbuf->b_p_lisp
2670 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002671 && pos.col > 1
2672 && check_prevcol(linep, pos.col, '\\', NULL)
2673 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 break;
2675#endif
2676
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002677 // Check for match outside of quotes, and inside of
2678 // quotes when the start is also inside of quotes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 if ((!inquote || start_in_quotes == TRUE)
2680 && (c == initc || c == findc))
2681 {
2682 int col, bslcnt = 0;
2683
2684 if (!cpo_bsl)
2685 {
2686 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2687 bslcnt++;
2688 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002689 // Only accept a match when 'M' is in 'cpo' or when escaping
2690 // is what we expect.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2692 {
2693 if (c == initc)
2694 count++;
2695 else
2696 {
2697 if (count == 0)
2698 return &pos;
2699 count--;
2700 }
2701 }
2702 }
2703 }
2704 }
2705
2706 if (comment_dir == BACKWARD && count > 0)
2707 {
2708 pos = match_pos;
2709 return &pos;
2710 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002711 return (pos_T *)NULL; // never found it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712}
2713
2714/*
2715 * Check if line[] contains a / / comment.
2716 * Return MAXCOL if not, otherwise return the column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 */
Bram Moolenaar6e371ec2021-12-12 14:16:39 +00002718 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002719check_linecomment(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720{
2721 char_u *p;
2722
2723 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002724#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002725 // skip Lispish one-line comments
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002726 if (curbuf->b_p_lisp)
2727 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002728 if (vim_strchr(p, ';') != NULL) // there may be comments
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002729 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002730 int in_str = FALSE; // inside of string
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002731
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002732 p = line; // scan from start
Bram Moolenaar520470a2005-06-16 21:59:56 +00002733 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002734 {
2735 if (*p == '"')
2736 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002737 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002738 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002739 if (*(p - 1) != '\\') // skip escaped quote
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002740 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002741 }
2742 else if (p == line || ((p - line) >= 2
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002743 // skip #\" form
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002744 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002745 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002746 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002747 else if (!in_str && ((p - line) < 2
Bram Moolenaarba263672021-12-29 18:09:13 +00002748 || (*(p - 1) != '\\' && *(p - 2) != '#'))
2749 && !is_pos_in_string(line, (colnr_T)(p - line)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002750 break; // found!
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002751 ++p;
2752 }
2753 }
2754 else
2755 p = NULL;
2756 }
2757 else
2758#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 while ((p = vim_strchr(p, '/')) != NULL)
2760 {
Bram Moolenaarba263672021-12-29 18:09:13 +00002761 // Accept a double /, unless it's preceded with * and followed by *,
2762 // because * / / * is an end and start of a C comment.
2763 // Only accept the position if it is not inside a string.
2764 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*')
2765 && !is_pos_in_string(line, (colnr_T)(p - line)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 break;
2767 ++p;
2768 }
2769
2770 if (p == NULL)
2771 return MAXCOL;
2772 return (int)(p - line);
2773}
2774
2775/*
2776 * Move cursor briefly to character matching the one under the cursor.
2777 * Used for Insert mode and "r" command.
2778 * Show the match only if it is visible on the screen.
2779 * If there isn't a match, then beep.
2780 */
2781 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002782showmatch(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002783 int c) // char to show match for
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784{
2785 pos_T *lpos, save_cursor;
2786 pos_T mpos;
2787 colnr_T vcol;
2788 long save_so;
2789 long save_siso;
2790#ifdef CURSOR_SHAPE
2791 int save_state;
2792#endif
2793 colnr_T save_dollar_vcol;
2794 char_u *p;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002795 long *so = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so;
2796 long *siso = curwin->w_p_siso >= 0 ? &curwin->w_p_siso : &p_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797
2798 /*
2799 * Only show match for chars in the 'matchpairs' option.
2800 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002801 // 'matchpairs' is "x:y,x:y"
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002802 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 {
2804#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002805 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002806 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002807#endif
Bram Moolenaar1614a142019-10-06 22:00:13 +02002808 p += mb_ptr2len(p) + 1;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002809 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810#ifdef FEAT_RIGHTLEFT
2811 && !(curwin->w_p_rl ^ p_ri)
2812#endif
2813 )
2814 break;
Bram Moolenaar1614a142019-10-06 22:00:13 +02002815 p += mb_ptr2len(p);
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002816 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817 return;
2818 }
Bram Moolenaar5b8cabf2021-04-02 18:55:57 +02002819 if (*p == NUL)
2820 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002822 if ((lpos = findmatch(NULL, NUL)) == NULL) // no match, so beep
Bram Moolenaar165bc692015-07-21 17:53:25 +02002823 vim_beep(BO_MATCH);
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002824 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 {
2826 if (!curwin->w_p_wrap)
2827 getvcol(curwin, lpos, NULL, &vcol, NULL);
2828 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
Bram Moolenaar02631462017-09-22 15:20:32 +02002829 && vcol < curwin->w_leftcol + curwin->w_width))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002831 mpos = *lpos; // save the pos, update_screen() may change it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 save_cursor = curwin->w_cursor;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002833 save_so = *so;
2834 save_siso = *siso;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002835 // Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2836 // stop displaying the "$".
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002837 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2838 dollar_vcol = -1;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002839 ++curwin->w_virtcol; // do display ')' just before "$"
2840 update_screen(VALID); // show the new char first
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841
2842 save_dollar_vcol = dollar_vcol;
2843#ifdef CURSOR_SHAPE
2844 save_state = State;
2845 State = SHOWMATCH;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002846 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002848 curwin->w_cursor = mpos; // move to matching char
2849 *so = 0; // don't use 'scrolloff' here
2850 *siso = 0; // don't use 'sidescrolloff' here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 showruler(FALSE);
2852 setcursor();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002853 cursor_on(); // make sure that the cursor is shown
Bram Moolenaara338adc2018-01-31 20:51:47 +01002854 out_flush_cursor(TRUE, FALSE);
2855
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002856 // Restore dollar_vcol(), because setcursor() may call curs_rows()
2857 // which resets it if the matching position is in a previous line
2858 // and has a higher column number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859 dollar_vcol = save_dollar_vcol;
2860
2861 /*
2862 * brief pause, unless 'm' is present in 'cpo' and a character is
2863 * available.
2864 */
2865 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
Bram Moolenaareda1da02019-11-17 17:06:33 +01002866 ui_delay(p_mat * 100L + 8, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 else if (!char_avail())
Bram Moolenaareda1da02019-11-17 17:06:33 +01002868 ui_delay(p_mat * 100L + 9, FALSE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002869 curwin->w_cursor = save_cursor; // restore cursor position
Bram Moolenaar375e3392019-01-31 18:26:10 +01002870 *so = save_so;
2871 *siso = save_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872#ifdef CURSOR_SHAPE
2873 State = save_state;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002874 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875#endif
2876 }
2877 }
2878}
2879
2880/*
Bram Moolenaar453c1922019-10-26 14:42:09 +02002881 * Check if the pattern is zero-width.
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002882 * If move is TRUE, check from the beginning of the buffer, else from position
2883 * "cur".
2884 * "direction" is FORWARD or BACKWARD.
2885 * Returns TRUE, FALSE or -1 for failure.
2886 */
2887 static int
2888is_zero_width(char_u *pattern, int move, pos_T *cur, int direction)
2889{
2890 regmmatch_T regmatch;
2891 int nmatched = 0;
2892 int result = -1;
2893 pos_T pos;
Bram Moolenaar53989552019-12-23 22:59:18 +01002894 int called_emsg_before = called_emsg;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002895 int flag = 0;
2896
2897 if (pattern == NULL)
2898 pattern = spats[last_idx].pat;
2899
2900 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
2901 SEARCH_KEEP, &regmatch) == FAIL)
2902 return -1;
2903
2904 // init startcol correctly
2905 regmatch.startpos[0].col = -1;
2906 // move to match
2907 if (move)
2908 {
2909 CLEAR_POS(&pos);
2910 }
2911 else
2912 {
2913 pos = *cur;
2914 // accept a match at the cursor position
2915 flag = SEARCH_START;
2916 }
2917
2918 if (searchit(curwin, curbuf, &pos, NULL, direction, pattern, 1,
2919 SEARCH_KEEP + flag, RE_SEARCH, NULL) != FAIL)
2920 {
2921 // Zero-width pattern should match somewhere, then we can check if
2922 // start and end are in the same position.
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002923 do
2924 {
2925 regmatch.startpos[0].col++;
2926 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
2927 pos.lnum, regmatch.startpos[0].col, NULL, NULL);
2928 if (nmatched != 0)
2929 break;
Bram Moolenaar795aaa12020-10-02 20:36:01 +02002930 } while (regmatch.regprog != NULL
2931 && direction == FORWARD ? regmatch.startpos[0].col < pos.col
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002932 : regmatch.startpos[0].col > pos.col);
2933
Bram Moolenaar53989552019-12-23 22:59:18 +01002934 if (called_emsg == called_emsg_before)
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002935 {
2936 result = (nmatched != 0
2937 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
2938 && regmatch.startpos[0].col == regmatch.endpos[0].col);
2939 }
2940 }
2941
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002942 vim_regfree(regmatch.regprog);
2943 return result;
2944}
2945
Bram Moolenaardde0efe2012-08-23 15:53:05 +02002946
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002947/*
2948 * Find next search match under cursor, cursor at end.
2949 * Used while an operator is pending, and in Visual mode.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002950 */
2951 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002952current_search(
2953 long count,
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002954 int forward) // TRUE for forward, FALSE for backward
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002955{
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002956 pos_T start_pos; // start position of the pattern match
2957 pos_T end_pos; // end position of the pattern match
2958 pos_T orig_pos; // position of the cursor at beginning
2959 pos_T pos; // position after the pattern
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002960 int i;
2961 int dir;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002962 int result; // result of various function calls
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002963 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002964 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02002965 pos_T save_VIsual = VIsual;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002966 int zero_width;
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02002967 int skip_first_backward;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002968
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002969 // Correct cursor when 'selection' is exclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002970 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002971 dec_cursor();
2972
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02002973 // When searching forward and the cursor is at the start of the Visual
2974 // area, skip the first search backward, otherwise it doesn't move.
2975 skip_first_backward = forward && VIsual_active
2976 && LT_POS(curwin->w_cursor, VIsual);
2977
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002978 orig_pos = pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002979 if (VIsual_active)
2980 {
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002981 if (forward)
2982 incl(&pos);
2983 else
2984 decl(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002985 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002986
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002987 // Is the pattern is zero-width?, this time, don't care about the direction
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002988 zero_width = is_zero_width(spats[last_idx].pat, TRUE, &curwin->w_cursor,
Bram Moolenaar22ab5472017-09-26 12:28:45 +02002989 FORWARD);
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002990 if (zero_width == -1)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002991 return FAIL; // pattern not found
Bram Moolenaarba6ba362012-08-08 15:27:57 +02002992
Bram Moolenaarba6ba362012-08-08 15:27:57 +02002993 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002994 * The trick is to first search backwards and then search forward again,
2995 * so that a match at the current cursor position will be correctly
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02002996 * captured. When "forward" is false do it the other way around.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002997 */
2998 for (i = 0; i < 2; i++)
2999 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003000 if (forward)
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003001 {
3002 if (i == 0 && skip_first_backward)
3003 continue;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003004 dir = i;
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003005 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003006 else
3007 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02003008
3009 flags = 0;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02003010 if (!dir && !zero_width)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02003011 flags = SEARCH_END;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003012 end_pos = pos;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02003013
Bram Moolenaar82cf7f62019-11-02 23:22:47 +01003014 // wrapping should not occur in the first round
3015 if (i == 0)
3016 p_ws = FALSE;
3017
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003018 result = searchit(curwin, curbuf, &pos, &end_pos,
3019 (dir ? FORWARD : BACKWARD),
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003020 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02003021 SEARCH_KEEP | flags, RE_SEARCH, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003022
Bram Moolenaar82cf7f62019-11-02 23:22:47 +01003023 p_ws = old_p_ws;
3024
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003025 // First search may fail, but then start searching from the
3026 // beginning of the file (cursor might be on the search match)
3027 // except when Visual mode is active, so that extending the visual
3028 // selection works.
3029 if (i == 1 && !result) // not found, abort
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003030 {
3031 curwin->w_cursor = orig_pos;
3032 if (VIsual_active)
3033 VIsual = save_VIsual;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003034 return FAIL;
3035 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003036 else if (i == 0 && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003037 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003038 if (forward)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003039 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003040 // try again from start of buffer
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003041 CLEAR_POS(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003042 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003043 else
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003044 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003045 // try again from end of buffer
3046 // searching backwards, so set pos to last line and col
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003047 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02003048 pos.col = (colnr_T)STRLEN(
3049 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003050 }
3051 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003052 }
3053
3054 start_pos = pos;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003055
3056 if (!VIsual_active)
3057 VIsual = start_pos;
3058
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003059 // put the cursor after the match
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003060 curwin->w_cursor = end_pos;
Bram Moolenaar453c1922019-10-26 14:42:09 +02003061 if (LT_POS(VIsual, end_pos) && forward)
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003062 {
3063 if (skip_first_backward)
3064 // put the cursor on the start of the match
3065 curwin->w_cursor = pos;
3066 else
3067 // put the cursor on last character of match
3068 dec_cursor();
3069 }
Bram Moolenaar28f224b2020-10-10 16:45:25 +02003070 else if (VIsual_active && LT_POS(curwin->w_cursor, VIsual) && forward)
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02003071 curwin->w_cursor = pos; // put the cursor on the start of the match
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003072 VIsual_active = TRUE;
3073 VIsual_mode = 'v';
3074
Bram Moolenaarb7633612019-02-10 21:48:25 +01003075 if (*p_sel == 'e')
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003076 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003077 // Correction for exclusive selection depends on the direction.
Bram Moolenaarb7633612019-02-10 21:48:25 +01003078 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor))
3079 inc_cursor();
3080 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual))
3081 inc(&VIsual);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003082 }
3083
3084#ifdef FEAT_FOLDING
3085 if (fdo_flags & FDO_SEARCH && KeyTyped)
3086 foldOpenCursor();
3087#endif
3088
3089 may_start_select('c');
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003090 setmouse();
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003091#ifdef FEAT_CLIPBOARD
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003092 // Make sure the clipboard gets updated. Needed because start and
3093 // end are still the same, and the selection needs to be owned
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003094 clip_star.vmode = NUL;
3095#endif
3096 redraw_curbuf_later(INVERTED);
3097 showmode();
3098
3099 return OK;
3100}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02003101
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
3103 || defined(PROTO)
3104/*
3105 * return TRUE if line 'lnum' is empty or has white chars only.
3106 */
3107 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003108linewhite(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109{
3110 char_u *p;
3111
3112 p = skipwhite(ml_get(lnum));
3113 return (*p == NUL);
3114}
3115#endif
3116
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003117/*
3118 * Add the search count "[3/19]" to "msgbuf".
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003119 * See update_search_stat() for other arguments.
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003120 */
3121 static void
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003122cmdline_search_stat(
3123 int dirc,
3124 pos_T *pos,
3125 pos_T *cursor_pos,
3126 int show_top_bot_msg,
3127 char_u *msgbuf,
3128 int recompute,
3129 int maxcount,
3130 long timeout)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003131{
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003132 searchstat_T stat;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003133
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003134 update_search_stat(dirc, pos, cursor_pos, &stat, recompute, maxcount,
3135 timeout);
3136 if (stat.cur > 0)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003137 {
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003138 char t[SEARCH_STAT_BUF_LEN];
Bram Moolenaare2ad8262019-05-24 13:22:22 +02003139 size_t len;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003140
3141#ifdef FEAT_RIGHTLEFT
3142 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
3143 {
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003144 if (stat.incomplete == 1)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02003145 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[?/??]");
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003146 else if (stat.cnt > maxcount && stat.cur > maxcount)
3147 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>%d/>%d]",
3148 maxcount, maxcount);
3149 else if (stat.cnt > maxcount)
3150 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>%d/%d]",
3151 maxcount, stat.cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003152 else
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003153 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/%d]",
3154 stat.cnt, stat.cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003155 }
3156 else
3157#endif
3158 {
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003159 if (stat.incomplete == 1)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02003160 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[?/??]");
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003161 else if (stat.cnt > maxcount && stat.cur > maxcount)
3162 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>%d/>%d]",
3163 maxcount, maxcount);
3164 else if (stat.cnt > maxcount)
3165 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/>%d]",
3166 stat.cur, maxcount);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003167 else
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003168 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/%d]",
3169 stat.cur, stat.cnt);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003170 }
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02003171
3172 len = STRLEN(t);
Bram Moolenaardc6855a2019-05-18 19:26:29 +02003173 if (show_top_bot_msg && len + 2 < SEARCH_STAT_BUF_LEN)
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02003174 {
Bram Moolenaar16b58ae2019-09-06 20:40:21 +02003175 mch_memmove(t + 2, t, len);
3176 t[0] = 'W';
3177 t[1] = ' ';
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02003178 len += 2;
3179 }
3180
3181 mch_memmove(msgbuf + STRLEN(msgbuf) - len, t, len);
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003182 if (dirc == '?' && stat.cur == maxcount + 1)
3183 stat.cur = -1;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003184
Bram Moolenaar984f0312019-05-24 13:11:47 +02003185 // keep the message even after redraw, but don't put in history
3186 msg_hist_off = TRUE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003187 give_warning(msgbuf, FALSE);
Bram Moolenaar984f0312019-05-24 13:11:47 +02003188 msg_hist_off = FALSE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003189 }
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003190}
3191
3192/*
3193 * Add the search count information to "stat".
3194 * "stat" must not be NULL.
3195 * When "recompute" is TRUE always recompute the numbers.
3196 * dirc == 0: don't find the next/previous match (only set the result to "stat")
3197 * dirc == '/': find the next match
3198 * dirc == '?': find the previous match
3199 */
3200 static void
3201update_search_stat(
3202 int dirc,
3203 pos_T *pos,
3204 pos_T *cursor_pos,
3205 searchstat_T *stat,
3206 int recompute,
3207 int maxcount,
Bram Moolenaarf9ca08e2020-06-01 18:56:03 +02003208 long timeout UNUSED)
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003209{
3210 int save_ws = p_ws;
3211 int wraparound = FALSE;
3212 pos_T p = (*pos);
Bram Moolenaar14681622020-06-03 22:57:39 +02003213 static pos_T lastpos = {0, 0, 0};
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003214 static int cur = 0;
3215 static int cnt = 0;
3216 static int exact_match = FALSE;
3217 static int incomplete = 0;
3218 static int last_maxcount = SEARCH_STAT_DEF_MAX_COUNT;
3219 static int chgtick = 0;
3220 static char_u *lastpat = NULL;
3221 static buf_T *lbuf = NULL;
3222#ifdef FEAT_RELTIME
3223 proftime_T start;
3224#endif
3225
3226 vim_memset(stat, 0, sizeof(searchstat_T));
3227
3228 if (dirc == 0 && !recompute && !EMPTY_POS(lastpos))
3229 {
3230 stat->cur = cur;
3231 stat->cnt = cnt;
3232 stat->exact_match = exact_match;
3233 stat->incomplete = incomplete;
3234 stat->last_maxcount = last_maxcount;
3235 return;
3236 }
3237 last_maxcount = maxcount;
3238
3239 wraparound = ((dirc == '?' && LT_POS(lastpos, p))
3240 || (dirc == '/' && LT_POS(p, lastpos)));
3241
3242 // If anything relevant changed the count has to be recomputed.
3243 // MB_STRNICMP ignores case, but we should not ignore case.
3244 // Unfortunately, there is no MB_STRNICMP function.
3245 // XXX: above comment should be "no MB_STRCMP function" ?
3246 if (!(chgtick == CHANGEDTICK(curbuf)
3247 && MB_STRNICMP(lastpat, spats[last_idx].pat, STRLEN(lastpat)) == 0
3248 && STRLEN(lastpat) == STRLEN(spats[last_idx].pat)
3249 && EQUAL_POS(lastpos, *cursor_pos)
3250 && lbuf == curbuf) || wraparound || cur < 0
3251 || (maxcount > 0 && cur > maxcount) || recompute)
3252 {
3253 cur = 0;
3254 cnt = 0;
3255 exact_match = FALSE;
3256 incomplete = 0;
3257 CLEAR_POS(&lastpos);
3258 lbuf = curbuf;
3259 }
3260
3261 if (EQUAL_POS(lastpos, *cursor_pos) && !wraparound
3262 && (dirc == 0 || dirc == '/' ? cur < cnt : cur > 0))
3263 cur += dirc == 0 ? 0 : dirc == '/' ? 1 : -1;
3264 else
3265 {
3266 int done_search = FALSE;
3267 pos_T endpos = {0, 0, 0};
3268
3269 p_ws = FALSE;
3270#ifdef FEAT_RELTIME
3271 if (timeout > 0)
3272 profile_setlimit(timeout, &start);
3273#endif
3274 while (!got_int && searchit(curwin, curbuf, &lastpos, &endpos,
3275 FORWARD, NULL, 1, SEARCH_KEEP, RE_LAST, NULL) != FAIL)
3276 {
3277 done_search = TRUE;
3278#ifdef FEAT_RELTIME
3279 // Stop after passing the time limit.
3280 if (timeout > 0 && profile_passed_limit(&start))
3281 {
3282 incomplete = 1;
3283 break;
3284 }
3285#endif
3286 cnt++;
3287 if (LTOREQ_POS(lastpos, p))
3288 {
3289 cur = cnt;
Bram Moolenaar57f75a52020-06-02 22:06:21 +02003290 if (LT_POS(p, endpos))
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003291 exact_match = TRUE;
3292 }
3293 fast_breakcheck();
3294 if (maxcount > 0 && cnt > maxcount)
3295 {
3296 incomplete = 2; // max count exceeded
3297 break;
3298 }
3299 }
3300 if (got_int)
3301 cur = -1; // abort
3302 if (done_search)
3303 {
3304 vim_free(lastpat);
3305 lastpat = vim_strsave(spats[last_idx].pat);
3306 chgtick = CHANGEDTICK(curbuf);
3307 lbuf = curbuf;
3308 lastpos = p;
3309 }
3310 }
3311 stat->cur = cur;
3312 stat->cnt = cnt;
3313 stat->exact_match = exact_match;
3314 stat->incomplete = incomplete;
3315 stat->last_maxcount = last_maxcount;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003316 p_ws = save_ws;
3317}
3318
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319#if defined(FEAT_FIND_ID) || defined(PROTO)
3320/*
3321 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01003322 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003325find_pattern_in_path(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003326 char_u *ptr, // pointer to search pattern
3327 int dir UNUSED, // direction of expansion
3328 int len, // length of search pattern
3329 int whole, // match whole words only
3330 int skip_comments, // don't match inside comments
3331 int type, // Type of search; are we looking for a type?
3332 // a macro?
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003333 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003334 int action, // What to do when we find it
3335 linenr_T start_lnum, // first line to start searching
3336 linenr_T end_lnum) // last line for searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003338 SearchedFile *files; // Stack of included files
3339 SearchedFile *bigger; // When we need more space
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 int max_path_depth = 50;
3341 long match_count = 1;
3342
3343 char_u *pat;
3344 char_u *new_fname;
3345 char_u *curr_fname = curbuf->b_fname;
3346 char_u *prev_fname = NULL;
3347 linenr_T lnum;
3348 int depth;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003349 int depth_displayed; // For type==CHECK_PATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 int old_files;
3351 int already_searched;
3352 char_u *file_line;
3353 char_u *line;
3354 char_u *p;
3355 char_u save_char;
3356 int define_matched;
3357 regmatch_T regmatch;
3358 regmatch_T incl_regmatch;
3359 regmatch_T def_regmatch;
3360 int matched = FALSE;
3361 int did_show = FALSE;
3362 int found = FALSE;
3363 int i;
3364 char_u *already = NULL;
3365 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003366 char_u *inc_opt = NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02003367#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368 win_T *curwin_save = NULL;
3369#endif
3370
3371 regmatch.regprog = NULL;
3372 incl_regmatch.regprog = NULL;
3373 def_regmatch.regprog = NULL;
3374
3375 file_line = alloc(LSIZE);
3376 if (file_line == NULL)
3377 return;
3378
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 if (type != CHECK_PATH && type != FIND_DEFINE
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003380 // when CONT_SOL is set compare "ptr" with the beginning of the line
3381 // is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003382 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 {
3384 pat = alloc(len + 5);
3385 if (pat == NULL)
3386 goto fpip_end;
3387 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003388 // ignore case according to p_ic, p_scs and pat
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389 regmatch.rm_ic = ignorecase(pat);
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003390 regmatch.regprog = vim_regcomp(pat, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 vim_free(pat);
3392 if (regmatch.regprog == NULL)
3393 goto fpip_end;
3394 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003395 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
3396 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 {
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003398 incl_regmatch.regprog = vim_regcomp(inc_opt,
3399 magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 if (incl_regmatch.regprog == NULL)
3401 goto fpip_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003402 incl_regmatch.rm_ic = FALSE; // don't ignore case in incl. pat.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 }
3404 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
3405 {
3406 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003407 ? p_def : curbuf->b_p_def,
3408 magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 if (def_regmatch.regprog == NULL)
3410 goto fpip_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003411 def_regmatch.rm_ic = FALSE; // don't ignore case in define pat.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003413 files = lalloc_clear(max_path_depth * sizeof(SearchedFile), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 if (files == NULL)
3415 goto fpip_end;
3416 old_files = max_path_depth;
3417 depth = depth_displayed = -1;
3418
3419 lnum = start_lnum;
3420 if (end_lnum > curbuf->b_ml.ml_line_count)
3421 end_lnum = curbuf->b_ml.ml_line_count;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003422 if (lnum > end_lnum) // do at least one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423 lnum = end_lnum;
3424 line = ml_get(lnum);
3425
3426 for (;;)
3427 {
3428 if (incl_regmatch.regprog != NULL
3429 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
3430 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003431 char_u *p_fname = (curr_fname == curbuf->b_fname)
3432 ? curbuf->b_ffname : curr_fname;
3433
3434 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003435 // Use text from '\zs' to '\ze' (or end) of 'include'.
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003436 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02003437 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003438 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
3439 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003440 // Use text after match with 'include'.
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003441 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003442 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 already_searched = FALSE;
3444 if (new_fname != NULL)
3445 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003446 // Check whether we have already searched in this file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 for (i = 0;; i++)
3448 {
3449 if (i == depth + 1)
3450 i = old_files;
3451 if (i == max_path_depth)
3452 break;
Bram Moolenaar99499b12019-05-23 21:35:48 +02003453 if (fullpathcmp(new_fname, files[i].name, TRUE, TRUE)
3454 & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 {
3456 if (type != CHECK_PATH &&
3457 action == ACTION_SHOW_ALL && files[i].matched)
3458 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003459 msg_putchar('\n'); // cursor below last one
3460 if (!got_int) // don't display if 'q'
3461 // typed at "--more--"
3462 // message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 {
3464 msg_home_replace_hl(new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003465 msg_puts(_(" (includes previously listed match)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466 prev_fname = NULL;
3467 }
3468 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01003469 VIM_CLEAR(new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470 already_searched = TRUE;
3471 break;
3472 }
3473 }
3474 }
3475
3476 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
3477 || (new_fname == NULL && !already_searched)))
3478 {
3479 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003480 msg_putchar('\n'); // cursor below last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481 else
3482 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003483 gotocmdline(TRUE); // cursor at status line
Bram Moolenaar32526b32019-01-19 17:43:09 +01003484 msg_puts_title(_("--- Included files "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003486 msg_puts_title(_("not found "));
3487 msg_puts_title(_("in path ---\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 }
3489 did_show = TRUE;
3490 while (depth_displayed < depth && !got_int)
3491 {
3492 ++depth_displayed;
3493 for (i = 0; i < depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003494 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 msg_home_replace(files[depth_displayed].name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003496 msg_puts(" -->\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003498 if (!got_int) // don't display if 'q' typed
3499 // for "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 {
3501 for (i = 0; i <= depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003502 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503 if (new_fname != NULL)
3504 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003505 // using "new_fname" is more reliable, e.g., when
3506 // 'includeexpr' is set.
Bram Moolenaar8820b482017-03-16 17:23:31 +01003507 msg_outtrans_attr(new_fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 }
3509 else
3510 {
3511 /*
3512 * Isolate the file name.
3513 * Include the surrounding "" or <> if present.
3514 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003515 if (inc_opt != NULL
3516 && strstr((char *)inc_opt, "\\zs") != NULL)
3517 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003518 // pattern contains \zs, use the match
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003519 p = incl_regmatch.startp[0];
3520 i = (int)(incl_regmatch.endp[0]
3521 - incl_regmatch.startp[0]);
3522 }
3523 else
3524 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003525 // find the file name after the end of the match
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003526 for (p = incl_regmatch.endp[0];
3527 *p && !vim_isfilec(*p); p++)
3528 ;
3529 for (i = 0; vim_isfilec(p[i]); i++)
3530 ;
3531 }
3532
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 if (i == 0)
3534 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003535 // Nothing found, use the rest of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003537 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003539 // Avoid checking before the start of the line, can
3540 // happen if \zs appears in the regexp.
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003541 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 {
3543 if (p[-1] == '"' || p[-1] == '<')
3544 {
3545 --p;
3546 ++i;
3547 }
3548 if (p[i] == '"' || p[i] == '>')
3549 ++i;
3550 }
3551 save_char = p[i];
3552 p[i] = NUL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01003553 msg_outtrans_attr(p, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 p[i] = save_char;
3555 }
3556
3557 if (new_fname == NULL && action == ACTION_SHOW_ALL)
3558 {
3559 if (already_searched)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003560 msg_puts(_(" (Already listed)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01003562 msg_puts(_(" NOT FOUND"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 }
3564 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003565 out_flush(); // output each line directly
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566 }
3567
3568 if (new_fname != NULL)
3569 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003570 // Push the new file onto the file stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 if (depth + 1 == old_files)
3572 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003573 bigger = ALLOC_MULT(SearchedFile, max_path_depth * 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 if (bigger != NULL)
3575 {
3576 for (i = 0; i <= depth; i++)
3577 bigger[i] = files[i];
3578 for (i = depth + 1; i < old_files + max_path_depth; i++)
3579 {
3580 bigger[i].fp = NULL;
3581 bigger[i].name = NULL;
3582 bigger[i].lnum = 0;
3583 bigger[i].matched = FALSE;
3584 }
3585 for (i = old_files; i < max_path_depth; i++)
3586 bigger[i + max_path_depth] = files[i];
3587 old_files += max_path_depth;
3588 max_path_depth *= 2;
3589 vim_free(files);
3590 files = bigger;
3591 }
3592 }
3593 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
3594 == NULL)
3595 vim_free(new_fname);
3596 else
3597 {
3598 if (++depth == old_files)
3599 {
3600 /*
3601 * lalloc() for 'bigger' must have failed above. We
3602 * will forget one of our already visited files now.
3603 */
3604 vim_free(files[old_files].name);
3605 ++old_files;
3606 }
3607 files[depth].name = curr_fname = new_fname;
3608 files[depth].lnum = 0;
3609 files[depth].matched = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610 if (action == ACTION_EXPAND)
3611 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003612 msg_hist_off = TRUE; // reset in msg_trunc_attr()
Bram Moolenaar555b2802005-05-19 21:08:39 +00003613 vim_snprintf((char*)IObuff, IOSIZE,
3614 _("Scanning included file: %s"),
3615 (char *)new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003616 msg_trunc_attr((char *)IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003618 else if (p_verbose >= 5)
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00003619 {
3620 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003621 smsg(_("Searching included file %s"),
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00003622 (char *)new_fname);
3623 verbose_leave();
3624 }
3625
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 }
3627 }
3628 }
3629 else
3630 {
3631 /*
3632 * Check if the line is a define (type == FIND_DEFINE)
3633 */
3634 p = line;
3635search_line:
3636 define_matched = FALSE;
3637 if (def_regmatch.regprog != NULL
3638 && vim_regexec(&def_regmatch, line, (colnr_T)0))
3639 {
3640 /*
3641 * Pattern must be first identifier after 'define', so skip
3642 * to that position before checking for match of pattern. Also
3643 * don't let it match beyond the end of this identifier.
3644 */
3645 p = def_regmatch.endp[0];
3646 while (*p && !vim_iswordc(*p))
3647 p++;
3648 define_matched = TRUE;
3649 }
3650
3651 /*
3652 * Look for a match. Don't do this if we are looking for a
3653 * define and this line didn't match define_prog above.
3654 */
3655 if (def_regmatch.regprog == NULL || define_matched)
3656 {
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003657 if (define_matched || (compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003659 // compare the first "len" chars from "ptr"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 startp = skipwhite(p);
3661 if (p_ic)
3662 matched = !MB_STRNICMP(startp, ptr, len);
3663 else
3664 matched = !STRNCMP(startp, ptr, len);
3665 if (matched && define_matched && whole
3666 && vim_iswordc(startp[len]))
3667 matched = FALSE;
3668 }
3669 else if (regmatch.regprog != NULL
3670 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
3671 {
3672 matched = TRUE;
3673 startp = regmatch.startp[0];
3674 /*
3675 * Check if the line is not a comment line (unless we are
3676 * looking for a define). A line starting with "# define"
3677 * is not considered to be a comment line.
3678 */
3679 if (!define_matched && skip_comments)
3680 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 if ((*line != '#' ||
3682 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02003683 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684 matched = FALSE;
3685
3686 /*
3687 * Also check for a "/ *" or "/ /" before the match.
3688 * Skips lines like "int backwards; / * normal index
3689 * * /" when looking for "normal".
3690 * Note: Doesn't skip "/ *" in comments.
3691 */
3692 p = skipwhite(line);
3693 if (matched
3694 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 for (p = line; *p && p < startp; ++p)
3696 {
3697 if (matched
3698 && p[0] == '/'
3699 && (p[1] == '*' || p[1] == '/'))
3700 {
3701 matched = FALSE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003702 // After "//" all text is comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 if (p[1] == '/')
3704 break;
3705 ++p;
3706 }
3707 else if (!matched && p[0] == '*' && p[1] == '/')
3708 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003709 // Can find match after "* /".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 matched = TRUE;
3711 ++p;
3712 }
3713 }
3714 }
3715 }
3716 }
3717 }
3718 if (matched)
3719 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 if (action == ACTION_EXPAND)
3721 {
Bram Moolenaard9eefe32019-04-06 14:22:21 +02003722 int cont_s_ipos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 int add_r;
3724 char_u *aux;
3725
3726 if (depth == -1 && lnum == curwin->w_cursor.lnum)
3727 break;
3728 found = TRUE;
3729 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003730 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003732 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 if (vim_iswordp(p))
3734 goto exit_matched;
3735 p = find_word_start(p);
3736 }
3737 p = find_word_end(p);
3738 i = (int)(p - aux);
3739
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003740 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003742 // IOSIZE > compl_length, so the STRNCPY works
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00003744
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003745 // Get the next line: when "depth" < 0 from the current
3746 // buffer, otherwise from the included file. Jump to
3747 // exit_matched when past the last line.
Bram Moolenaar89d40322006-08-29 15:30:07 +00003748 if (depth < 0)
3749 {
3750 if (lnum >= end_lnum)
3751 goto exit_matched;
3752 line = ml_get(++lnum);
3753 }
3754 else if (vim_fgets(line = file_line,
3755 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 goto exit_matched;
3757
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003758 // we read a line, set "already" to check this "line" later
3759 // if depth >= 0 we'll increase files[depth].lnum far
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01003760 // below -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 already = aux = p = skipwhite(line);
3762 p = find_word_start(p);
3763 p = find_word_end(p);
3764 if (p > aux)
3765 {
3766 if (*aux != ')' && IObuff[i-1] != TAB)
3767 {
3768 if (IObuff[i-1] != ' ')
3769 IObuff[i++] = ' ';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003770 // IObuf =~ "\(\k\|\i\).* ", thus i >= 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 if (p_js
3772 && (IObuff[i-2] == '.'
3773 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
3774 && (IObuff[i-2] == '?'
3775 || IObuff[i-2] == '!'))))
3776 IObuff[i++] = ' ';
3777 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003778 // copy as much as possible of the new word
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 if (p - aux >= IOSIZE - i)
3780 p = aux + IOSIZE - i - 1;
3781 STRNCPY(IObuff + i, aux, p - aux);
3782 i += (int)(p - aux);
Bram Moolenaard9eefe32019-04-06 14:22:21 +02003783 cont_s_ipos = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 }
3785 IObuff[i] = NUL;
3786 aux = IObuff;
3787
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003788 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789 goto exit_matched;
3790 }
3791
Bram Moolenaare8c3a142006-08-29 14:30:35 +00003792 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 curr_fname == curbuf->b_fname ? NULL : curr_fname,
Bram Moolenaard9eefe32019-04-06 14:22:21 +02003794 dir, cont_s_ipos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 if (add_r == OK)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003796 // if dir was BACKWARD then honor it just once
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00003798 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799 break;
3800 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003801 else if (action == ACTION_SHOW_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 {
3803 found = TRUE;
3804 if (!did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003805 gotocmdline(TRUE); // cursor at status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 if (curr_fname != prev_fname)
3807 {
3808 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003809 msg_putchar('\n'); // cursor below last one
3810 if (!got_int) // don't display if 'q' typed
3811 // at "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 msg_home_replace_hl(curr_fname);
3813 prev_fname = curr_fname;
3814 }
3815 did_show = TRUE;
3816 if (!got_int)
3817 show_pat_in_path(line, type, TRUE, action,
3818 (depth == -1) ? NULL : files[depth].fp,
3819 (depth == -1) ? &lnum : &files[depth].lnum,
3820 match_count++);
3821
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003822 // Set matched flag for this file and all the ones that
3823 // include it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 for (i = 0; i <= depth; ++i)
3825 files[i].matched = TRUE;
3826 }
3827 else if (--count <= 0)
3828 {
3829 found = TRUE;
3830 if (depth == -1 && lnum == curwin->w_cursor.lnum
Bram Moolenaar4033c552017-09-16 20:54:51 +02003831#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 && g_do_tagpreview == 0
3833#endif
3834 )
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003835 emsg(_("E387: Match is on current line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 else if (action == ACTION_SHOW)
3837 {
3838 show_pat_in_path(line, type, did_show, action,
3839 (depth == -1) ? NULL : files[depth].fp,
3840 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
3841 did_show = TRUE;
3842 }
3843 else
3844 {
3845#ifdef FEAT_GUI
3846 need_mouse_correct = TRUE;
3847#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02003848#if defined(FEAT_QUICKFIX)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003849 // ":psearch" uses the preview window
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850 if (g_do_tagpreview != 0)
3851 {
3852 curwin_save = curwin;
Bram Moolenaar576a4a62019-08-18 15:25:17 +02003853 prepare_tagpreview(TRUE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854 }
3855#endif
3856 if (action == ACTION_SPLIT)
3857 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003860 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 }
3862 if (depth == -1)
3863 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003864 // match in current file
Bram Moolenaar4033c552017-09-16 20:54:51 +02003865#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 if (g_do_tagpreview != 0)
3867 {
Bram Moolenaar92bb83e2021-02-03 23:04:46 +01003868 if (!win_valid(curwin_save))
3869 break;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003870 if (!GETFILE_SUCCESS(getfile(
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02003871 curwin_save->w_buffer->b_fnum, NULL,
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003872 NULL, TRUE, lnum, FALSE)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003873 break; // failed to jump to file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 }
3875 else
3876#endif
3877 setpcmark();
3878 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02003879 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 }
3881 else
3882 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003883 if (!GETFILE_SUCCESS(getfile(
3884 0, files[depth].name, NULL, TRUE,
3885 files[depth].lnum, FALSE)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003886 break; // failed to jump to file
3887 // autocommands may have changed the lnum, we don't
3888 // want that here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889 curwin->w_cursor.lnum = files[depth].lnum;
3890 }
3891 }
3892 if (action != ACTION_SHOW)
3893 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00003894 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 curwin->w_set_curswant = TRUE;
3896 }
3897
Bram Moolenaar4033c552017-09-16 20:54:51 +02003898#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003900 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003902 // Return cursor to where we were
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 validate_cursor();
3904 redraw_later(VALID);
3905 win_enter(curwin_save, TRUE);
3906 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003907# ifdef FEAT_PROP_POPUP
Bram Moolenaar1b6d9c42019-08-05 21:52:04 +02003908 else if (WIN_IS_POPUP(curwin))
3909 // can't keep focus in popup window
3910 win_enter(firstwin, TRUE);
3911# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912#endif
3913 break;
3914 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915exit_matched:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 matched = FALSE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003917 // look for other matches in the rest of the line if we
3918 // are not at the end of it already
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 if (def_regmatch.regprog == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003921 && !(compl_cont_status & CONT_SOL)
Bram Moolenaarfe81d452009-04-22 14:44:41 +00003922 && *startp != NUL
Bram Moolenaar1614a142019-10-06 22:00:13 +02003923 && *(p = startp + mb_ptr2len(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 goto search_line;
3925 }
3926 line_breakcheck();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 if (action == ACTION_EXPAND)
Bram Moolenaar472e8592016-10-15 17:06:47 +02003928 ins_compl_check_keys(30, FALSE);
Bram Moolenaar7591bb32019-03-30 13:53:47 +01003929 if (got_int || ins_compl_interrupted())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 break;
3931
3932 /*
3933 * Read the next line. When reading an included file and encountering
3934 * end-of-file, close the file and continue in the file that included
3935 * it.
3936 */
3937 while (depth >= 0 && !already
3938 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
3939 {
3940 fclose(files[depth].fp);
3941 --old_files;
3942 files[old_files].name = files[depth].name;
3943 files[old_files].matched = files[depth].matched;
3944 --depth;
3945 curr_fname = (depth == -1) ? curbuf->b_fname
3946 : files[depth].name;
3947 if (depth < depth_displayed)
3948 depth_displayed = depth;
3949 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003950 if (depth >= 0) // we could read the line
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02003951 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 files[depth].lnum++;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003953 // Remove any CR and LF from the line.
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02003954 i = (int)STRLEN(line);
3955 if (i > 0 && line[i - 1] == '\n')
3956 line[--i] = NUL;
3957 if (i > 0 && line[i - 1] == '\r')
3958 line[--i] = NUL;
3959 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 else if (!already)
3961 {
3962 if (++lnum > end_lnum)
3963 break;
3964 line = ml_get(lnum);
3965 }
3966 already = NULL;
3967 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003968 // End of big for (;;) loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003970 // Close any files that are still open.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 for (i = 0; i <= depth; i++)
3972 {
3973 fclose(files[i].fp);
3974 vim_free(files[i].name);
3975 }
3976 for (i = old_files; i < max_path_depth; i++)
3977 vim_free(files[i].name);
3978 vim_free(files);
3979
3980 if (type == CHECK_PATH)
3981 {
3982 if (!did_show)
3983 {
3984 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003985 msg(_("All included files were found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01003987 msg(_("No included files"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 }
3989 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003990 else if (!found && action != ACTION_EXPAND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 {
Bram Moolenaar7591bb32019-03-30 13:53:47 +01003992 if (got_int || ins_compl_interrupted())
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003993 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 else if (type == FIND_DEFINE)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003995 emsg(_("E388: Couldn't find definition"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003997 emsg(_("E389: Couldn't find pattern"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998 }
3999 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
4000 msg_end();
4001
4002fpip_end:
4003 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02004004 vim_regfree(regmatch.regprog);
4005 vim_regfree(incl_regmatch.regprog);
4006 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007}
4008
4009 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004010show_pat_in_path(
4011 char_u *line,
4012 int type,
4013 int did_show,
4014 int action,
4015 FILE *fp,
4016 linenr_T *lnum,
4017 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018{
4019 char_u *p;
4020
4021 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004022 msg_putchar('\n'); // cursor below last one
Bram Moolenaar91170f82006-05-05 21:15:17 +00004023 else if (!msg_silent)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004024 gotocmdline(TRUE); // cursor at status line
4025 if (got_int) // 'q' typed at "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026 return;
4027 for (;;)
4028 {
4029 p = line + STRLEN(line) - 1;
4030 if (fp != NULL)
4031 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004032 // We used fgets(), so get rid of newline at end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 if (p >= line && *p == '\n')
4034 --p;
4035 if (p >= line && *p == '\r')
4036 --p;
4037 *(p + 1) = NUL;
4038 }
4039 if (action == ACTION_SHOW_ALL)
4040 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004041 sprintf((char *)IObuff, "%3ld: ", count); // show match nr
Bram Moolenaar32526b32019-01-19 17:43:09 +01004042 msg_puts((char *)IObuff);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004043 sprintf((char *)IObuff, "%4ld", *lnum); // show line nr
4044 // Highlight line numbers
Bram Moolenaar32526b32019-01-19 17:43:09 +01004045 msg_puts_attr((char *)IObuff, HL_ATTR(HLF_N));
4046 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004048 msg_prt_line(line, FALSE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004049 out_flush(); // show one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004051 // Definition continues until line that doesn't end with '\'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
4053 break;
4054
4055 if (fp != NULL)
4056 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004057 if (vim_fgets(line, LSIZE, fp)) // end of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058 break;
4059 ++*lnum;
4060 }
4061 else
4062 {
4063 if (++*lnum > curbuf->b_ml.ml_line_count)
4064 break;
4065 line = ml_get(*lnum);
4066 }
4067 msg_putchar('\n');
4068 }
4069}
4070#endif
4071
4072#ifdef FEAT_VIMINFO
Bram Moolenaar6bd1d772019-10-09 22:01:25 +02004073/*
4074 * Return the last used search pattern at "idx".
4075 */
Bram Moolenaarc3328162019-07-23 22:15:25 +02004076 spat_T *
4077get_spat(int idx)
4078{
4079 return &spats[idx];
4080}
4081
Bram Moolenaar6bd1d772019-10-09 22:01:25 +02004082/*
4083 * Return the last used search pattern index.
4084 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 int
Bram Moolenaarc3328162019-07-23 22:15:25 +02004086get_spat_last_idx(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087{
Bram Moolenaarc3328162019-07-23 22:15:25 +02004088 return last_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090#endif
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004091
4092#ifdef FEAT_EVAL
4093/*
4094 * "searchcount()" function
4095 */
4096 void
4097f_searchcount(typval_T *argvars, typval_T *rettv)
4098{
4099 pos_T pos = curwin->w_cursor;
4100 char_u *pattern = NULL;
4101 int maxcount = SEARCH_STAT_DEF_MAX_COUNT;
4102 long timeout = SEARCH_STAT_DEF_TIMEOUT;
Bram Moolenaar4140c4f2020-09-05 23:16:00 +02004103 int recompute = TRUE;
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004104 searchstat_T stat;
4105
4106 if (rettv_dict_alloc(rettv) == FAIL)
4107 return;
4108
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02004109 if (in_vim9script() && check_for_opt_dict_arg(argvars, 0) == FAIL)
4110 return;
4111
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004112 if (shortmess(SHM_SEARCHCOUNT)) // 'shortmess' contains 'S' flag
4113 recompute = TRUE;
4114
4115 if (argvars[0].v_type != VAR_UNKNOWN)
4116 {
Bram Moolenaar14681622020-06-03 22:57:39 +02004117 dict_T *dict;
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004118 dictitem_T *di;
4119 listitem_T *li;
4120 int error = FALSE;
4121
Bram Moolenaar14681622020-06-03 22:57:39 +02004122 if (argvars[0].v_type != VAR_DICT || argvars[0].vval.v_dict == NULL)
4123 {
4124 emsg(_(e_dictreq));
4125 return;
4126 }
4127 dict = argvars[0].vval.v_dict;
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004128 di = dict_find(dict, (char_u *)"timeout", -1);
4129 if (di != NULL)
4130 {
4131 timeout = (long)tv_get_number_chk(&di->di_tv, &error);
4132 if (error)
4133 return;
4134 }
4135 di = dict_find(dict, (char_u *)"maxcount", -1);
4136 if (di != NULL)
4137 {
4138 maxcount = (int)tv_get_number_chk(&di->di_tv, &error);
4139 if (error)
4140 return;
4141 }
Bram Moolenaar597aaac2020-09-05 21:21:16 +02004142 recompute = dict_get_bool(dict, (char_u *)"recompute", recompute);
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004143 di = dict_find(dict, (char_u *)"pattern", -1);
4144 if (di != NULL)
4145 {
4146 pattern = tv_get_string_chk(&di->di_tv);
4147 if (pattern == NULL)
4148 return;
4149 }
4150 di = dict_find(dict, (char_u *)"pos", -1);
4151 if (di != NULL)
4152 {
4153 if (di->di_tv.v_type != VAR_LIST)
4154 {
4155 semsg(_(e_invarg2), "pos");
4156 return;
4157 }
4158 if (list_len(di->di_tv.vval.v_list) != 3)
4159 {
4160 semsg(_(e_invarg2), "List format should be [lnum, col, off]");
4161 return;
4162 }
4163 li = list_find(di->di_tv.vval.v_list, 0L);
4164 if (li != NULL)
4165 {
4166 pos.lnum = tv_get_number_chk(&li->li_tv, &error);
4167 if (error)
4168 return;
4169 }
4170 li = list_find(di->di_tv.vval.v_list, 1L);
4171 if (li != NULL)
4172 {
4173 pos.col = tv_get_number_chk(&li->li_tv, &error) - 1;
4174 if (error)
4175 return;
4176 }
4177 li = list_find(di->di_tv.vval.v_list, 2L);
4178 if (li != NULL)
4179 {
4180 pos.coladd = tv_get_number_chk(&li->li_tv, &error);
4181 if (error)
4182 return;
4183 }
4184 }
4185 }
4186
4187 save_last_search_pattern();
4188 if (pattern != NULL)
4189 {
4190 if (*pattern == NUL)
4191 goto the_end;
Bram Moolenaar109aece2020-06-01 19:08:54 +02004192 vim_free(spats[last_idx].pat);
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004193 spats[last_idx].pat = vim_strsave(pattern);
4194 }
4195 if (spats[last_idx].pat == NULL || *spats[last_idx].pat == NUL)
4196 goto the_end; // the previous pattern was never defined
4197
4198 update_search_stat(0, &pos, &pos, &stat, recompute, maxcount, timeout);
4199
4200 dict_add_number(rettv->vval.v_dict, "current", stat.cur);
4201 dict_add_number(rettv->vval.v_dict, "total", stat.cnt);
4202 dict_add_number(rettv->vval.v_dict, "exact_match", stat.exact_match);
4203 dict_add_number(rettv->vval.v_dict, "incomplete", stat.incomplete);
4204 dict_add_number(rettv->vval.v_dict, "maxcount", stat.last_maxcount);
4205
4206the_end:
4207 restore_last_search_pattern();
4208}
Bram Moolenaar635414d2020-09-11 22:25:15 +02004209
4210/*
4211 * Fuzzy string matching
4212 *
4213 * Ported from the lib_fts library authored by Forrest Smith.
4214 * https://github.com/forrestthewoods/lib_fts/tree/master/code
4215 *
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004216 * The following blog describes the fuzzy matching algorithm:
Bram Moolenaar635414d2020-09-11 22:25:15 +02004217 * https://www.forrestthewoods.com/blog/reverse_engineering_sublime_texts_fuzzy_match/
4218 *
4219 * Each matching string is assigned a score. The following factors are checked:
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004220 * - Matched letter
4221 * - Unmatched letter
4222 * - Consecutively matched letters
4223 * - Proximity to start
4224 * - Letter following a separator (space, underscore)
4225 * - Uppercase letter following lowercase (aka CamelCase)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004226 *
4227 * Matched letters are good. Unmatched letters are bad. Matching near the start
4228 * is good. Matching the first letter in the middle of a phrase is good.
4229 * Matching the uppercase letters in camel case entries is good.
4230 *
4231 * The score assigned for each factor is explained below.
4232 * File paths are different from file names. File extensions may be ignorable.
4233 * Single words care about consecutive matches but not separators or camel
4234 * case.
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004235 * Score starts at 100
Bram Moolenaar635414d2020-09-11 22:25:15 +02004236 * Matched letter: +0 points
4237 * Unmatched letter: -1 point
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004238 * Consecutive match bonus: +15 points
4239 * First letter bonus: +15 points
4240 * Separator bonus: +30 points
4241 * Camel case bonus: +30 points
4242 * Unmatched leading letter: -5 points (max: -15)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004243 *
4244 * There is some nuance to this. Scores don’t have an intrinsic meaning. The
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004245 * score range isn’t 0 to 100. It’s roughly [50, 150]. Longer words have a
Bram Moolenaar635414d2020-09-11 22:25:15 +02004246 * lower minimum score due to unmatched letter penalty. Longer search patterns
4247 * have a higher maximum score due to match bonuses.
4248 *
4249 * Separator and camel case bonus is worth a LOT. Consecutive matches are worth
4250 * quite a bit.
4251 *
4252 * There is a penalty if you DON’T match the first three letters. Which
4253 * effectively rewards matching near the start. However there’s no difference
4254 * in matching between the middle and end.
4255 *
4256 * There is not an explicit bonus for an exact match. Unmatched letters receive
4257 * a penalty. So shorter strings and closer matches are worth more.
4258 */
4259typedef struct
4260{
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004261 int idx; // used for stable sort
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004262 listitem_T *item;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004263 int score;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004264 list_T *lmatchpos;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004265} fuzzyItem_T;
4266
Bram Moolenaare9f9f162020-10-20 19:01:30 +02004267// bonus for adjacent matches; this is higher than SEPARATOR_BONUS so that
4268// matching a whole word is preferred.
4269#define SEQUENTIAL_BONUS 40
Bram Moolenaardcdd42a2020-10-29 18:58:01 +01004270// bonus if match occurs after a path separator
4271#define PATH_SEPARATOR_BONUS 30
4272// bonus if match occurs after a word separator
4273#define WORD_SEPARATOR_BONUS 25
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004274// bonus if match is uppercase and prev is lower
4275#define CAMEL_BONUS 30
4276// bonus if the first letter is matched
4277#define FIRST_LETTER_BONUS 15
4278// penalty applied for every letter in str before the first match
4279#define LEADING_LETTER_PENALTY -5
4280// maximum penalty for leading letters
4281#define MAX_LEADING_LETTER_PENALTY -15
4282// penalty for every letter that doesn't match
4283#define UNMATCHED_LETTER_PENALTY -1
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004284// penalty for gap in matching positions (-2 * k)
4285#define GAP_PENALTY -2
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004286// Score for a string that doesn't fuzzy match the pattern
4287#define SCORE_NONE -9999
4288
4289#define FUZZY_MATCH_RECURSION_LIMIT 10
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004290
4291/*
4292 * Compute a score for a fuzzy matched string. The matching character locations
4293 * are in 'matches'.
4294 */
4295 static int
4296fuzzy_match_compute_score(
4297 char_u *str,
4298 int strSz,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004299 int_u *matches,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004300 int numMatches)
4301{
4302 int score;
4303 int penalty;
4304 int unmatched;
4305 int i;
4306 char_u *p = str;
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004307 int_u sidx = 0;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004308
4309 // Initialize score
4310 score = 100;
4311
4312 // Apply leading letter penalty
4313 penalty = LEADING_LETTER_PENALTY * matches[0];
4314 if (penalty < MAX_LEADING_LETTER_PENALTY)
4315 penalty = MAX_LEADING_LETTER_PENALTY;
4316 score += penalty;
4317
4318 // Apply unmatched penalty
4319 unmatched = strSz - numMatches;
4320 score += UNMATCHED_LETTER_PENALTY * unmatched;
4321
4322 // Apply ordering bonuses
4323 for (i = 0; i < numMatches; ++i)
4324 {
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004325 int_u currIdx = matches[i];
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004326
4327 if (i > 0)
4328 {
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004329 int_u prevIdx = matches[i - 1];
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004330
4331 // Sequential
4332 if (currIdx == (prevIdx + 1))
4333 score += SEQUENTIAL_BONUS;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004334 else
4335 score += GAP_PENALTY * (currIdx - prevIdx);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004336 }
4337
4338 // Check for bonuses based on neighbor character value
4339 if (currIdx > 0)
4340 {
4341 // Camel case
Bram Moolenaarc53e9c52020-09-22 22:08:32 +02004342 int neighbor = ' ';
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004343 int curr;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004344
4345 if (has_mbyte)
4346 {
4347 while (sidx < currIdx)
4348 {
4349 neighbor = (*mb_ptr2char)(p);
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004350 MB_PTR_ADV(p);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004351 sidx++;
4352 }
4353 curr = (*mb_ptr2char)(p);
4354 }
4355 else
4356 {
4357 neighbor = str[currIdx - 1];
4358 curr = str[currIdx];
4359 }
4360
4361 if (vim_islower(neighbor) && vim_isupper(curr))
4362 score += CAMEL_BONUS;
4363
Bram Moolenaardcdd42a2020-10-29 18:58:01 +01004364 // Bonus if the match follows a separator character
4365 if (neighbor == '/' || neighbor == '\\')
4366 score += PATH_SEPARATOR_BONUS;
4367 else if (neighbor == ' ' || neighbor == '_')
4368 score += WORD_SEPARATOR_BONUS;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004369 }
4370 else
4371 {
4372 // First letter
4373 score += FIRST_LETTER_BONUS;
4374 }
4375 }
4376 return score;
4377}
4378
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004379/*
4380 * Perform a recursive search for fuzzy matching 'fuzpat' in 'str'.
4381 * Return the number of matching characters.
4382 */
Bram Moolenaar635414d2020-09-11 22:25:15 +02004383 static int
4384fuzzy_match_recursive(
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004385 char_u *fuzpat,
4386 char_u *str,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004387 int_u strIdx,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004388 int *outScore,
4389 char_u *strBegin,
4390 int strLen,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004391 int_u *srcMatches,
4392 int_u *matches,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004393 int maxMatches,
4394 int nextMatch,
4395 int *recursionCount)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004396{
4397 // Recursion params
4398 int recursiveMatch = FALSE;
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004399 int_u bestRecursiveMatches[MAX_FUZZY_MATCHES];
Bram Moolenaar635414d2020-09-11 22:25:15 +02004400 int bestRecursiveScore = 0;
4401 int first_match;
4402 int matched;
4403
4404 // Count recursions
4405 ++*recursionCount;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004406 if (*recursionCount >= FUZZY_MATCH_RECURSION_LIMIT)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004407 return 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004408
4409 // Detect end of strings
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004410 if (*fuzpat == NUL || *str == NUL)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004411 return 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004412
4413 // Loop through fuzpat and str looking for a match
4414 first_match = TRUE;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004415 while (*fuzpat != NUL && *str != NUL)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004416 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004417 int c1;
4418 int c2;
4419
4420 c1 = PTR2CHAR(fuzpat);
4421 c2 = PTR2CHAR(str);
4422
Bram Moolenaar635414d2020-09-11 22:25:15 +02004423 // Found match
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004424 if (vim_tolower(c1) == vim_tolower(c2))
Bram Moolenaar635414d2020-09-11 22:25:15 +02004425 {
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004426 int_u recursiveMatches[MAX_FUZZY_MATCHES];
Bram Moolenaar635414d2020-09-11 22:25:15 +02004427 int recursiveScore = 0;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004428 char_u *next_char;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004429
4430 // Supplied matches buffer was too short
4431 if (nextMatch >= maxMatches)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004432 return 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004433
4434 // "Copy-on-Write" srcMatches into matches
4435 if (first_match && srcMatches)
4436 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004437 memcpy(matches, srcMatches, nextMatch * sizeof(srcMatches[0]));
Bram Moolenaar635414d2020-09-11 22:25:15 +02004438 first_match = FALSE;
4439 }
4440
4441 // Recursive call that "skips" this match
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004442 if (has_mbyte)
4443 next_char = str + (*mb_ptr2len)(str);
4444 else
4445 next_char = str + 1;
4446 if (fuzzy_match_recursive(fuzpat, next_char, strIdx + 1,
4447 &recursiveScore, strBegin, strLen, matches,
4448 recursiveMatches,
K.Takataeeec2542021-06-02 13:28:16 +02004449 ARRAY_LENGTH(recursiveMatches),
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004450 nextMatch, recursionCount))
Bram Moolenaar635414d2020-09-11 22:25:15 +02004451 {
4452 // Pick best recursive score
4453 if (!recursiveMatch || recursiveScore > bestRecursiveScore)
4454 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004455 memcpy(bestRecursiveMatches, recursiveMatches,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004456 MAX_FUZZY_MATCHES * sizeof(recursiveMatches[0]));
Bram Moolenaar635414d2020-09-11 22:25:15 +02004457 bestRecursiveScore = recursiveScore;
4458 }
4459 recursiveMatch = TRUE;
4460 }
4461
4462 // Advance
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004463 matches[nextMatch++] = strIdx;
4464 if (has_mbyte)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004465 MB_PTR_ADV(fuzpat);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004466 else
4467 ++fuzpat;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004468 }
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004469 if (has_mbyte)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004470 MB_PTR_ADV(str);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004471 else
4472 ++str;
4473 strIdx++;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004474 }
4475
4476 // Determine if full fuzpat was matched
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004477 matched = *fuzpat == NUL ? TRUE : FALSE;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004478
4479 // Calculate score
4480 if (matched)
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004481 *outScore = fuzzy_match_compute_score(strBegin, strLen, matches,
4482 nextMatch);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004483
4484 // Return best result
4485 if (recursiveMatch && (!matched || bestRecursiveScore > *outScore))
4486 {
4487 // Recursive score is better than "this"
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004488 memcpy(matches, bestRecursiveMatches, maxMatches * sizeof(matches[0]));
Bram Moolenaar635414d2020-09-11 22:25:15 +02004489 *outScore = bestRecursiveScore;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004490 return nextMatch;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004491 }
4492 else if (matched)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004493 return nextMatch; // "this" score is better than recursive
Bram Moolenaar635414d2020-09-11 22:25:15 +02004494
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004495 return 0; // no match
Bram Moolenaar635414d2020-09-11 22:25:15 +02004496}
4497
4498/*
4499 * fuzzy_match()
4500 *
4501 * Performs exhaustive search via recursion to find all possible matches and
4502 * match with highest score.
4503 * Scores values have no intrinsic meaning. Possible score range is not
4504 * normalized and varies with pattern.
4505 * Recursion is limited internally (default=10) to prevent degenerate cases
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004506 * (pat_arg="aaaaaa" str="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa").
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004507 * Uses char_u for match indices. Therefore patterns are limited to
4508 * MAX_FUZZY_MATCHES characters.
Bram Moolenaar635414d2020-09-11 22:25:15 +02004509 *
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004510 * Returns TRUE if 'pat_arg' matches 'str'. Also returns the match score in
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004511 * 'outScore' and the matching character positions in 'matches'.
Bram Moolenaar635414d2020-09-11 22:25:15 +02004512 */
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004513 int
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004514fuzzy_match(
4515 char_u *str,
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004516 char_u *pat_arg,
4517 int matchseq,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004518 int *outScore,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004519 int_u *matches,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004520 int maxMatches)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004521{
Bram Moolenaar635414d2020-09-11 22:25:15 +02004522 int recursionCount = 0;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004523 int len = MB_CHARLEN(str);
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004524 char_u *save_pat;
4525 char_u *pat;
4526 char_u *p;
4527 int complete = FALSE;
4528 int score = 0;
4529 int numMatches = 0;
4530 int matchCount;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004531
4532 *outScore = 0;
4533
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004534 save_pat = vim_strsave(pat_arg);
4535 if (save_pat == NULL)
4536 return FALSE;
4537 pat = save_pat;
4538 p = pat;
4539
4540 // Try matching each word in 'pat_arg' in 'str'
4541 while (TRUE)
4542 {
4543 if (matchseq)
4544 complete = TRUE;
4545 else
4546 {
4547 // Extract one word from the pattern (separated by space)
4548 p = skipwhite(p);
4549 if (*p == NUL)
4550 break;
4551 pat = p;
4552 while (*p != NUL && !VIM_ISWHITE(PTR2CHAR(p)))
4553 {
4554 if (has_mbyte)
4555 MB_PTR_ADV(p);
4556 else
4557 ++p;
4558 }
4559 if (*p == NUL) // processed all the words
4560 complete = TRUE;
4561 *p = NUL;
4562 }
4563
4564 score = 0;
4565 recursionCount = 0;
4566 matchCount = fuzzy_match_recursive(pat, str, 0, &score, str, len, NULL,
4567 matches + numMatches, maxMatches - numMatches,
4568 0, &recursionCount);
4569 if (matchCount == 0)
4570 {
4571 numMatches = 0;
4572 break;
4573 }
4574
4575 // Accumulate the match score and the number of matches
4576 *outScore += score;
4577 numMatches += matchCount;
4578
4579 if (complete)
4580 break;
4581
4582 // try matching the next word
4583 ++p;
4584 }
4585
4586 vim_free(save_pat);
4587 return numMatches != 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004588}
4589
4590/*
4591 * Sort the fuzzy matches in the descending order of the match score.
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004592 * For items with same score, retain the order using the index (stable sort)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004593 */
4594 static int
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004595fuzzy_match_item_compare(const void *s1, const void *s2)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004596{
4597 int v1 = ((fuzzyItem_T *)s1)->score;
4598 int v2 = ((fuzzyItem_T *)s2)->score;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004599 int idx1 = ((fuzzyItem_T *)s1)->idx;
4600 int idx2 = ((fuzzyItem_T *)s2)->idx;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004601
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004602 return v1 == v2 ? (idx1 - idx2) : v1 > v2 ? -1 : 1;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004603}
4604
4605/*
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004606 * Fuzzy search the string 'str' in a list of 'items' and return the matching
4607 * strings in 'fmatchlist'.
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004608 * If 'matchseq' is TRUE, then for multi-word search strings, match all the
4609 * words in sequence.
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004610 * If 'items' is a list of strings, then search for 'str' in the list.
4611 * If 'items' is a list of dicts, then either use 'key' to lookup the string
4612 * for each item or use 'item_cb' Funcref function to get the string.
4613 * If 'retmatchpos' is TRUE, then return a list of positions where 'str'
4614 * matches for each item.
Bram Moolenaar635414d2020-09-11 22:25:15 +02004615 */
4616 static void
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004617fuzzy_match_in_list(
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004618 list_T *items,
4619 char_u *str,
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004620 int matchseq,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004621 char_u *key,
4622 callback_T *item_cb,
4623 int retmatchpos,
4624 list_T *fmatchlist)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004625{
4626 long len;
4627 fuzzyItem_T *ptrs;
4628 listitem_T *li;
4629 long i = 0;
4630 int found_match = FALSE;
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004631 int_u matches[MAX_FUZZY_MATCHES];
Bram Moolenaar635414d2020-09-11 22:25:15 +02004632
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004633 len = list_len(items);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004634 if (len == 0)
4635 return;
4636
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004637 ptrs = ALLOC_CLEAR_MULT(fuzzyItem_T, len);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004638 if (ptrs == NULL)
4639 return;
4640
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004641 // For all the string items in items, get the fuzzy matching score
4642 FOR_ALL_LIST_ITEMS(items, li)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004643 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004644 int score;
4645 char_u *itemstr;
4646 typval_T rettv;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004647
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004648 ptrs[i].idx = i;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004649 ptrs[i].item = li;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004650 ptrs[i].score = SCORE_NONE;
4651 itemstr = NULL;
4652 rettv.v_type = VAR_UNKNOWN;
4653 if (li->li_tv.v_type == VAR_STRING) // list of strings
4654 itemstr = li->li_tv.vval.v_string;
4655 else if (li->li_tv.v_type == VAR_DICT &&
4656 (key != NULL || item_cb->cb_name != NULL))
4657 {
4658 // For a dict, either use the specified key to lookup the string or
4659 // use the specified callback function to get the string.
4660 if (key != NULL)
4661 itemstr = dict_get_string(li->li_tv.vval.v_dict, key, FALSE);
4662 else
Bram Moolenaar635414d2020-09-11 22:25:15 +02004663 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004664 typval_T argv[2];
4665
4666 // Invoke the supplied callback (if any) to get the dict item
4667 li->li_tv.vval.v_dict->dv_refcount++;
4668 argv[0].v_type = VAR_DICT;
4669 argv[0].vval.v_dict = li->li_tv.vval.v_dict;
4670 argv[1].v_type = VAR_UNKNOWN;
4671 if (call_callback(item_cb, -1, &rettv, 1, argv) != FAIL)
4672 {
4673 if (rettv.v_type == VAR_STRING)
4674 itemstr = rettv.vval.v_string;
4675 }
4676 dict_unref(li->li_tv.vval.v_dict);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004677 }
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004678 }
4679
4680 if (itemstr != NULL
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004681 && fuzzy_match(itemstr, str, matchseq, &score, matches,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004682 sizeof(matches) / sizeof(matches[0])))
4683 {
4684 // Copy the list of matching positions in itemstr to a list, if
4685 // 'retmatchpos' is set.
4686 if (retmatchpos)
4687 {
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004688 int j = 0;
4689 char_u *p;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004690
4691 ptrs[i].lmatchpos = list_alloc();
4692 if (ptrs[i].lmatchpos == NULL)
4693 goto done;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004694
4695 p = str;
4696 while (*p != NUL)
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004697 {
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004698 if (!VIM_ISWHITE(PTR2CHAR(p)))
4699 {
4700 if (list_append_number(ptrs[i].lmatchpos,
4701 matches[j]) == FAIL)
4702 goto done;
4703 j++;
4704 }
4705 if (has_mbyte)
4706 MB_PTR_ADV(p);
4707 else
4708 ++p;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004709 }
4710 }
4711 ptrs[i].score = score;
4712 found_match = TRUE;
4713 }
Bram Moolenaar635414d2020-09-11 22:25:15 +02004714 ++i;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004715 clear_tv(&rettv);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004716 }
4717
4718 if (found_match)
4719 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004720 list_T *l;
4721
Bram Moolenaar635414d2020-09-11 22:25:15 +02004722 // Sort the list by the descending order of the match score
4723 qsort((void *)ptrs, (size_t)len, sizeof(fuzzyItem_T),
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004724 fuzzy_match_item_compare);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004725
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004726 // For matchfuzzy(), return a list of matched strings.
4727 // ['str1', 'str2', 'str3']
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004728 // For matchfuzzypos(), return a list with three items.
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004729 // The first item is a list of matched strings. The second item
4730 // is a list of lists where each list item is a list of matched
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004731 // character positions. The third item is a list of matching scores.
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004732 // [['str1', 'str2', 'str3'], [[1, 3], [1, 3], [1, 3]]]
4733 if (retmatchpos)
4734 {
4735 li = list_find(fmatchlist, 0);
4736 if (li == NULL || li->li_tv.vval.v_list == NULL)
4737 goto done;
4738 l = li->li_tv.vval.v_list;
4739 }
4740 else
4741 l = fmatchlist;
4742
4743 // Copy the matching strings with a valid score to the return list
Bram Moolenaar635414d2020-09-11 22:25:15 +02004744 for (i = 0; i < len; i++)
4745 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004746 if (ptrs[i].score == SCORE_NONE)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004747 break;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004748 list_append_tv(l, &ptrs[i].item->li_tv);
4749 }
4750
4751 // next copy the list of matching positions
4752 if (retmatchpos)
4753 {
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004754 li = list_find(fmatchlist, -2);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004755 if (li == NULL || li->li_tv.vval.v_list == NULL)
4756 goto done;
4757 l = li->li_tv.vval.v_list;
4758
4759 for (i = 0; i < len; i++)
4760 {
4761 if (ptrs[i].score == SCORE_NONE)
4762 break;
4763 if (ptrs[i].lmatchpos != NULL &&
4764 list_append_list(l, ptrs[i].lmatchpos) == FAIL)
4765 goto done;
4766 }
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004767
4768 // copy the matching scores
4769 li = list_find(fmatchlist, -1);
4770 if (li == NULL || li->li_tv.vval.v_list == NULL)
4771 goto done;
4772 l = li->li_tv.vval.v_list;
4773 for (i = 0; i < len; i++)
4774 {
4775 if (ptrs[i].score == SCORE_NONE)
4776 break;
4777 if (list_append_number(l, ptrs[i].score) == FAIL)
4778 goto done;
4779 }
Bram Moolenaar635414d2020-09-11 22:25:15 +02004780 }
4781 }
4782
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004783done:
Bram Moolenaar635414d2020-09-11 22:25:15 +02004784 vim_free(ptrs);
4785}
4786
4787/*
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004788 * Do fuzzy matching. Returns the list of matched strings in 'rettv'.
4789 * If 'retmatchpos' is TRUE, also returns the matching character positions.
4790 */
4791 static void
4792do_fuzzymatch(typval_T *argvars, typval_T *rettv, int retmatchpos)
4793{
4794 callback_T cb;
4795 char_u *key = NULL;
4796 int ret;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004797 int matchseq = FALSE;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004798
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02004799 if (in_vim9script()
4800 && (check_for_list_arg(argvars, 0) == FAIL
4801 || check_for_string_arg(argvars, 1) == FAIL
4802 || check_for_opt_dict_arg(argvars, 2) == FAIL))
4803 return;
4804
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004805 CLEAR_POINTER(&cb);
4806
4807 // validate and get the arguments
4808 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
4809 {
4810 semsg(_(e_listarg), retmatchpos ? "matchfuzzypos()" : "matchfuzzy()");
4811 return;
4812 }
4813 if (argvars[1].v_type != VAR_STRING
4814 || argvars[1].vval.v_string == NULL)
4815 {
4816 semsg(_(e_invarg2), tv_get_string(&argvars[1]));
4817 return;
4818 }
4819
4820 if (argvars[2].v_type != VAR_UNKNOWN)
4821 {
4822 dict_T *d;
4823 dictitem_T *di;
4824
4825 if (argvars[2].v_type != VAR_DICT || argvars[2].vval.v_dict == NULL)
4826 {
4827 emsg(_(e_dictreq));
4828 return;
4829 }
4830
4831 // To search a dict, either a callback function or a key can be
4832 // specified.
4833 d = argvars[2].vval.v_dict;
4834 if ((di = dict_find(d, (char_u *)"key", -1)) != NULL)
4835 {
4836 if (di->di_tv.v_type != VAR_STRING
4837 || di->di_tv.vval.v_string == NULL
4838 || *di->di_tv.vval.v_string == NUL)
4839 {
4840 semsg(_(e_invarg2), tv_get_string(&di->di_tv));
4841 return;
4842 }
4843 key = tv_get_string(&di->di_tv);
4844 }
4845 else if ((di = dict_find(d, (char_u *)"text_cb", -1)) != NULL)
4846 {
4847 cb = get_callback(&di->di_tv);
4848 if (cb.cb_name == NULL)
4849 {
4850 semsg(_(e_invargval), "text_cb");
4851 return;
4852 }
4853 }
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004854 if (dict_find(d, (char_u *)"matchseq", -1) != NULL)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004855 matchseq = TRUE;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004856 }
4857
4858 // get the fuzzy matches
4859 ret = rettv_list_alloc(rettv);
4860 if (ret != OK)
4861 goto done;
4862 if (retmatchpos)
4863 {
4864 list_T *l;
4865
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004866 // For matchfuzzypos(), a list with three items are returned. First
4867 // item is a list of matching strings, the second item is a list of
4868 // lists with matching positions within each string and the third item
4869 // is the list of scores of the matches.
4870 l = list_alloc();
4871 if (l == NULL)
4872 goto done;
4873 if (list_append_list(rettv->vval.v_list, l) == FAIL)
4874 goto done;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004875 l = list_alloc();
4876 if (l == NULL)
4877 goto done;
4878 if (list_append_list(rettv->vval.v_list, l) == FAIL)
4879 goto done;
4880 l = list_alloc();
4881 if (l == NULL)
4882 goto done;
4883 if (list_append_list(rettv->vval.v_list, l) == FAIL)
4884 goto done;
4885 }
4886
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004887 fuzzy_match_in_list(argvars[0].vval.v_list, tv_get_string(&argvars[1]),
4888 matchseq, key, &cb, retmatchpos, rettv->vval.v_list);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004889
4890done:
4891 free_callback(&cb);
4892}
4893
4894/*
Bram Moolenaar635414d2020-09-11 22:25:15 +02004895 * "matchfuzzy()" function
4896 */
4897 void
4898f_matchfuzzy(typval_T *argvars, typval_T *rettv)
4899{
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004900 do_fuzzymatch(argvars, rettv, FALSE);
4901}
4902
4903/*
4904 * "matchfuzzypos()" function
4905 */
4906 void
4907f_matchfuzzypos(typval_T *argvars, typval_T *rettv)
4908{
4909 do_fuzzymatch(argvars, rettv, TRUE);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004910}
4911
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004912#endif