blob: 470bde21468bfa2b358f52fae3be4f51fbbfecb2 [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;
Christian Brabandt6dd74242022-02-14 12:44:32 +0000328static int saved_search_match_endcol;
329static int saved_search_match_lines;
Bram Moolenaared8bc782018-12-01 21:08:21 +0100330
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100331/*
332 * Save and restore the search pattern for incremental highlight search
333 * feature.
334 *
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100335 * It's similar to but different from save_search_patterns() and
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100336 * restore_search_patterns(), because the search pattern must be restored when
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100337 * canceling incremental searching even if it's called inside user functions.
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100338 */
339 void
340save_last_search_pattern(void)
341{
Bram Moolenaar442a8532020-06-04 20:56:09 +0200342 if (++did_save_last_search_spat != 1)
343 // nested call, nothing to do
344 return;
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100345
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100346 saved_last_search_spat = spats[RE_SEARCH];
347 if (spats[RE_SEARCH].pat != NULL)
348 saved_last_search_spat.pat = vim_strsave(spats[RE_SEARCH].pat);
349 saved_last_idx = last_idx;
350 saved_no_hlsearch = no_hlsearch;
351}
352
353 void
354restore_last_search_pattern(void)
355{
Bram Moolenaar442a8532020-06-04 20:56:09 +0200356 if (--did_save_last_search_spat > 0)
357 // nested call, nothing to do
358 return;
359 if (did_save_last_search_spat != 0)
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100360 {
Bram Moolenaar442a8532020-06-04 20:56:09 +0200361 iemsg("restore_last_search_pattern() called more often than save_last_search_pattern()");
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100362 return;
363 }
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100364
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100365 vim_free(spats[RE_SEARCH].pat);
366 spats[RE_SEARCH] = saved_last_search_spat;
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100367 saved_last_search_spat.pat = NULL;
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100368# if defined(FEAT_EVAL)
369 set_vv_searchforward();
370# endif
371 last_idx = saved_last_idx;
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200372 set_no_hlsearch(saved_no_hlsearch);
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100373}
Bram Moolenaard0480092017-11-16 22:20:39 +0100374
Christian Brabandt6dd74242022-02-14 12:44:32 +0000375/*
376 * Save and restore the incsearch highlighting variables.
377 * This is required so that calling searchcount() at does not invalidate the
378 * incsearch highlighting.
379 */
380 static void
381save_incsearch_state(void)
382{
383 saved_search_match_endcol = search_match_endcol;
384 saved_search_match_lines = search_match_lines;
385}
386
387 static void
388restore_incsearch_state(void)
389{
390 search_match_endcol = saved_search_match_endcol;
391 search_match_lines = saved_search_match_lines;
392}
393
Bram Moolenaard0480092017-11-16 22:20:39 +0100394 char_u *
395last_search_pattern(void)
396{
397 return spats[RE_SEARCH].pat;
398}
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100399#endif
400
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401/*
402 * Return TRUE when case should be ignored for search pattern "pat".
403 * Uses the 'ignorecase' and 'smartcase' options.
404 */
405 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100406ignorecase(char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407{
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200408 return ignorecase_opt(pat, p_ic, p_scs);
409}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200411/*
412 * As ignorecase() put pass the "ic" and "scs" flags.
413 */
414 int
415ignorecase_opt(char_u *pat, int ic_in, int scs)
416{
417 int ic = ic_in;
418
419 if (ic && !no_smartcase && scs
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200420 && !(ctrl_x_mode_not_default() && curbuf->b_p_inf))
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200421 ic = !pat_has_uppercase(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422 no_smartcase = FALSE;
423
424 return ic;
425}
426
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200427/*
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200428 * Return TRUE if pattern "pat" has an uppercase character.
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200429 */
430 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100431pat_has_uppercase(char_u *pat)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200432{
433 char_u *p = pat;
Christian Brabandt78ba9332021-08-01 12:44:37 +0200434 magic_T magic_val = MAGIC_ON;
435
436 // get the magicness of the pattern
437 (void)skip_regexp_ex(pat, NUL, magic_isset(), NULL, NULL, &magic_val);
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200438
439 while (*p != NUL)
440 {
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200441 int l;
442
443 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
444 {
445 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
446 return TRUE;
447 p += l;
448 }
Christian Brabandtbc67e5a2021-08-05 15:24:59 +0200449 else if (*p == '\\' && magic_val <= MAGIC_ON)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200450 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100451 if (p[1] == '_' && p[2] != NUL) // skip "\_X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200452 p += 3;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100453 else if (p[1] == '%' && p[2] != NUL) // skip "\%X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200454 p += 3;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100455 else if (p[1] != NUL) // skip "\X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200456 p += 2;
457 else
458 p += 1;
459 }
Christian Brabandt78ba9332021-08-01 12:44:37 +0200460 else if ((*p == '%' || *p == '_') && magic_val == MAGIC_ALL)
461 {
462 if (p[1] != NUL) // skip "_X" and %X
463 p += 2;
Christian Brabandtbc67e5a2021-08-05 15:24:59 +0200464 else
465 p++;
Christian Brabandt78ba9332021-08-01 12:44:37 +0200466 }
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200467 else if (MB_ISUPPER(*p))
468 return TRUE;
469 else
470 ++p;
471 }
472 return FALSE;
473}
474
Bram Moolenaar113e1072019-01-20 15:30:40 +0100475#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100477last_csearch(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200478{
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200479 return lastc_bytes;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200480}
481
482 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100483last_csearch_forward(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200484{
485 return lastcdir == FORWARD;
486}
487
488 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100489last_csearch_until(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200490{
491 return last_t_cmd == TRUE;
492}
493
494 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100495set_last_csearch(int c, char_u *s UNUSED, int len UNUSED)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200496{
497 *lastc = c;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200498 lastc_bytelen = len;
499 if (len)
500 memcpy(lastc_bytes, s, len);
501 else
Bram Moolenaara80faa82020-04-12 19:37:17 +0200502 CLEAR_FIELD(lastc_bytes);
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200503}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100504#endif
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200505
506 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100507set_csearch_direction(int cdir)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200508{
509 lastcdir = cdir;
510}
511
512 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100513set_csearch_until(int t_cmd)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200514{
515 last_t_cmd = t_cmd;
516}
517
518 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100519last_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520{
521 return spats[last_idx].pat;
522}
523
524/*
525 * Reset search direction to forward. For "gd" and "gD" commands.
526 */
527 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100528reset_search_dir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529{
530 spats[0].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000531#if defined(FEAT_EVAL)
532 set_vv_searchforward();
533#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534}
535
536#if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
537/*
538 * Set the last search pattern. For ":let @/ =" and viminfo.
539 * Also set the saved search pattern, so that this works in an autocommand.
540 */
541 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100542set_last_search_pat(
543 char_u *s,
544 int idx,
545 int magic,
546 int setlast)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547{
548 vim_free(spats[idx].pat);
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100549 // An empty string means that nothing should be matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 if (*s == NUL)
551 spats[idx].pat = NULL;
552 else
553 spats[idx].pat = vim_strsave(s);
554 spats[idx].magic = magic;
555 spats[idx].no_scs = FALSE;
556 spats[idx].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000557#if defined(FEAT_EVAL)
558 set_vv_searchforward();
559#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 spats[idx].off.line = FALSE;
561 spats[idx].off.end = FALSE;
562 spats[idx].off.off = 0;
563 if (setlast)
564 last_idx = idx;
565 if (save_level)
566 {
567 vim_free(saved_spats[idx].pat);
568 saved_spats[idx] = spats[0];
569 if (spats[idx].pat == NULL)
570 saved_spats[idx].pat = NULL;
571 else
572 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
Bram Moolenaar975880b2019-03-03 14:42:11 +0100573# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100574 saved_spats_last_idx = last_idx;
Bram Moolenaar975880b2019-03-03 14:42:11 +0100575# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 }
577# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100578 // If 'hlsearch' set and search pat changed: need redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 if (p_hls && idx == last_idx && !no_hlsearch)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000580 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581# endif
582}
583#endif
584
585#ifdef FEAT_SEARCH_EXTRA
586/*
587 * Get a regexp program for the last used search pattern.
588 * This is used for highlighting all matches in a window.
589 * Values returned in regmatch->regprog and regmatch->rmm_ic.
590 */
591 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100592last_pat_prog(regmmatch_T *regmatch)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593{
594 if (spats[last_idx].pat == NULL)
595 {
596 regmatch->regprog = NULL;
597 return;
598 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100599 ++emsg_off; // So it doesn't beep if bad expr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
601 --emsg_off;
602}
603#endif
604
605/*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100606 * Lowest level search function.
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100607 * Search for 'count'th occurrence of pattern "pat" in direction "dir".
608 * Start at position "pos" and return the found position in "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 *
610 * if (options & SEARCH_MSG) == 0 don't give any messages
611 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
612 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
613 * if (options & SEARCH_HIS) put search pattern in history
614 * if (options & SEARCH_END) return position at end of match
615 * if (options & SEARCH_START) accept match at pos itself
616 * if (options & SEARCH_KEEP) keep previous search pattern
617 * if (options & SEARCH_FOLD) match only once in a closed fold
618 * if (options & SEARCH_PEEK) check for typed char, cancel search
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100619 * if (options & SEARCH_COL) start at pos->col instead of zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620 *
621 * Return FAIL (zero) for failure, non-zero for success.
622 * When FEAT_EVAL is defined, returns the index of the first matching
623 * subpattern plus one; one if there was none.
624 */
625 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100626searchit(
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200627 win_T *win, // window to search in; can be NULL for a
628 // buffer without a window!
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100629 buf_T *buf,
630 pos_T *pos,
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100631 pos_T *end_pos, // set to end of the match, unless NULL
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100632 int dir,
633 char_u *pat,
634 long count,
635 int options,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200636 int pat_use, // which pattern to use when "pat" is empty
637 searchit_arg_T *extra_arg) // optional extra arguments, can be NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638{
639 int found;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100640 linenr_T lnum; // no init to shut up Apollo cc
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100641 colnr_T col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 regmmatch_T regmatch;
643 char_u *ptr;
644 colnr_T matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 lpos_T endpos;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000646 lpos_T matchpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647 int loop;
648 pos_T start_pos;
649 int at_first_line;
650 int extra_col;
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200651 int start_char_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652 int match_ok;
653 long nmatched;
654 int submatch = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100655 int first_match = TRUE;
Bram Moolenaar53989552019-12-23 22:59:18 +0100656 int called_emsg_before = called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657#ifdef FEAT_SEARCH_EXTRA
658 int break_loop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659#endif
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200660 linenr_T stop_lnum = 0; // stop after this line number when != 0
661#ifdef FEAT_RELTIME
662 proftime_T *tm = NULL; // timeout limit or NULL
663 int *timed_out = NULL; // set when timed out or NULL
664#endif
665
666 if (extra_arg != NULL)
667 {
668 stop_lnum = extra_arg->sa_stop_lnum;
669#ifdef FEAT_RELTIME
670 tm = extra_arg->sa_tm;
671 timed_out = &extra_arg->sa_timed_out;
672#endif
673 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674
675 if (search_regcomp(pat, RE_SEARCH, pat_use,
676 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
677 {
678 if ((options & SEARCH_MSG) && !rc_did_emsg)
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000679 semsg(_(e_invalid_search_string_str), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 return FAIL;
681 }
682
Bram Moolenaar280f1262006-01-30 00:14:18 +0000683 /*
684 * find the string
685 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100686 do // loop for count
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100688 // When not accepting a match at the start position set "extra_col" to
689 // a non-zero value. Don't do that when starting at MAXCOL, since
690 // MAXCOL + 1 is zero.
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200691 if (pos->col == MAXCOL)
692 start_char_len = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100693 // Watch out for the "col" being MAXCOL - 2, used in a closed fold.
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200694 else if (has_mbyte
695 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
696 && pos->col < MAXCOL - 2)
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100697 {
Bram Moolenaar82846a02018-02-09 18:09:54 +0100698 ptr = ml_get_buf(buf, pos->lnum, FALSE);
Bram Moolenaar8846ac52018-02-09 19:24:01 +0100699 if ((int)STRLEN(ptr) <= pos->col)
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200700 start_char_len = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100701 else
Bram Moolenaar82846a02018-02-09 18:09:54 +0100702 start_char_len = (*mb_ptr2len)(ptr + pos->col);
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100703 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100704 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200705 start_char_len = 1;
706 if (dir == FORWARD)
707 {
708 if (options & SEARCH_START)
709 extra_col = 0;
710 else
711 extra_col = start_char_len;
712 }
713 else
714 {
715 if (options & SEARCH_START)
716 extra_col = start_char_len;
717 else
718 extra_col = 0;
719 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100720
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100721 start_pos = *pos; // remember start pos for detecting no match
722 found = 0; // default: not found
723 at_first_line = TRUE; // default: start in first line
724 if (pos->lnum == 0) // correct lnum for when starting in line 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 {
726 pos->lnum = 1;
727 pos->col = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100728 at_first_line = FALSE; // not in first line now
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729 }
730
731 /*
732 * Start searching in current line, unless searching backwards and
733 * we're in column 0.
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000734 * If we are searching backwards, in column 0, and not including the
735 * current position, gain some efficiency by skipping back a line.
736 * Otherwise begin the search in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737 */
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000738 if (dir == BACKWARD && start_pos.col == 0
739 && (options & SEARCH_START) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 {
741 lnum = pos->lnum - 1;
742 at_first_line = FALSE;
743 }
744 else
745 lnum = pos->lnum;
746
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100747 for (loop = 0; loop <= 1; ++loop) // loop twice if 'wrapscan' set
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 {
749 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
750 lnum += dir, at_first_line = FALSE)
751 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100752 // Stop after checking "stop_lnum", if it's set.
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000753 if (stop_lnum != 0 && (dir == FORWARD
754 ? lnum > stop_lnum : lnum < stop_lnum))
755 break;
Bram Moolenaar76929292008-01-06 19:07:36 +0000756#ifdef FEAT_RELTIME
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100757 // Stop after passing the "tm" time limit.
Bram Moolenaar76929292008-01-06 19:07:36 +0000758 if (tm != NULL && profile_passed_limit(tm))
759 break;
760#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000761
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000763 * Look for a match somewhere in line "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100765 col = at_first_line && (options & SEARCH_COL) ? pos->col
766 : (colnr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 nmatched = vim_regexec_multi(&regmatch, win, buf,
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100768 lnum, col,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000769#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200770 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000771#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200772 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000773#endif
774 );
Bram Moolenaar795aaa12020-10-02 20:36:01 +0200775 // vim_regexec_multi() may clear "regprog"
776 if (regmatch.regprog == NULL)
777 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100778 // Abort searching on an error (e.g., out of stack).
Bram Moolenaar53989552019-12-23 22:59:18 +0100779 if (called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200780#ifdef FEAT_RELTIME
781 || (timed_out != NULL && *timed_out)
782#endif
783 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 break;
785 if (nmatched > 0)
786 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100787 // match may actually be in another line when using \zs
Bram Moolenaar677ee682005-01-27 14:41:15 +0000788 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 endpos = regmatch.endpos[0];
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000790#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 submatch = first_submatch(&regmatch);
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000792#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100793 // "lnum" may be past end of buffer for "\n\zs".
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000794 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
795 ptr = (char_u *)"";
796 else
797 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798
799 /*
800 * Forward search in the first line: match should be after
801 * the start position. If not, continue at the end of the
802 * match (this is vi compatible) or on the next char.
803 */
804 if (dir == FORWARD && at_first_line)
805 {
806 match_ok = TRUE;
807 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000808 * When the match starts in a next line it's certainly
809 * past the start position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 * When match lands on a NUL the cursor will be put
811 * one back afterwards, compare with that position,
812 * otherwise "/$" will get stuck on end of line.
813 */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000814 while (matchpos.lnum == 0
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100815 && ((options & SEARCH_END) && first_match
Bram Moolenaar677ee682005-01-27 14:41:15 +0000816 ? (nmatched == 1
817 && (int)endpos.col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 < (int)start_pos.col + extra_col)
Bram Moolenaar677ee682005-01-27 14:41:15 +0000819 : ((int)matchpos.col
820 - (ptr[matchpos.col] == NUL)
821 < (int)start_pos.col + extra_col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 {
823 /*
824 * If vi-compatible searching, continue at the end
825 * of the match, otherwise continue one position
826 * forward.
827 */
828 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
829 {
830 if (nmatched > 1)
831 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100832 // end is in next line, thus no match in
833 // this line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 match_ok = FALSE;
835 break;
836 }
837 matchcol = endpos.col;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100838 // for empty match: advance one char
Bram Moolenaar677ee682005-01-27 14:41:15 +0000839 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 && ptr[matchcol] != NUL)
841 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 if (has_mbyte)
843 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000844 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 ++matchcol;
847 }
848 }
849 else
850 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000851 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 if (ptr[matchcol] != NUL)
853 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000855 matchcol += (*mb_ptr2len)(ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 + matchcol);
857 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 ++matchcol;
859 }
860 }
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200861 if (matchcol == 0 && (options & SEARCH_START))
Bram Moolenaardb333a52013-03-19 15:27:48 +0100862 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 if (ptr[matchcol] == NUL
864 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000865 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000866 matchcol,
867#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200868 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000869#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200870 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000871#endif
872 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 {
874 match_ok = FALSE;
875 break;
876 }
Bram Moolenaar795aaa12020-10-02 20:36:01 +0200877 // vim_regexec_multi() may clear "regprog"
878 if (regmatch.regprog == NULL)
879 break;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000880 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881 endpos = regmatch.endpos[0];
882# ifdef FEAT_EVAL
883 submatch = first_submatch(&regmatch);
884# endif
885
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100886 // Need to get the line pointer again, a
887 // multi-line search may have made it invalid.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000888 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 }
890 if (!match_ok)
891 continue;
892 }
893 if (dir == BACKWARD)
894 {
895 /*
896 * Now, if there are multiple matches on this line,
897 * we have to get the last one. Or the last one before
898 * the cursor, if we're on that line.
899 * When putting the new cursor at the end, compare
900 * relative to the end of the match.
901 */
902 match_ok = FALSE;
903 for (;;)
904 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100905 // Remember a position that is before the start
906 // position, we use it if it's the last match in
907 // the line. Always accept a position after
908 // wrapping around.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000909 if (loop
910 || ((options & SEARCH_END)
911 ? (lnum + regmatch.endpos[0].lnum
912 < start_pos.lnum
913 || (lnum + regmatch.endpos[0].lnum
914 == start_pos.lnum
915 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200916 < (int)start_pos.col
917 + extra_col))
Bram Moolenaar677ee682005-01-27 14:41:15 +0000918 : (lnum + regmatch.startpos[0].lnum
919 < start_pos.lnum
920 || (lnum + regmatch.startpos[0].lnum
921 == start_pos.lnum
922 && (int)regmatch.startpos[0].col
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200923 < (int)start_pos.col
924 + extra_col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000927 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928 endpos = regmatch.endpos[0];
929# ifdef FEAT_EVAL
930 submatch = first_submatch(&regmatch);
931# endif
932 }
933 else
934 break;
935
936 /*
937 * We found a valid match, now check if there is
938 * another one after it.
939 * If vi-compatible searching, continue at the end
940 * of the match, otherwise continue one position
941 * forward.
942 */
943 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
944 {
945 if (nmatched > 1)
946 break;
947 matchcol = endpos.col;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100948 // for empty match: advance one char
Bram Moolenaar677ee682005-01-27 14:41:15 +0000949 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 && ptr[matchcol] != NUL)
951 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 if (has_mbyte)
953 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000954 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 ++matchcol;
957 }
958 }
959 else
960 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100961 // Stop when the match is in a next line.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000962 if (matchpos.lnum > 0)
963 break;
964 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 if (ptr[matchcol] != NUL)
966 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967 if (has_mbyte)
968 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000969 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 ++matchcol;
972 }
973 }
974 if (ptr[matchcol] == NUL
975 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000976 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000977 matchcol,
978#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200979 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000980#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200981 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000982#endif
983 )) == 0)
Bram Moolenaar9d322762018-02-09 16:04:25 +0100984 {
985#ifdef FEAT_RELTIME
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100986 // If the search timed out, we did find a match
987 // but it might be the wrong one, so that's not
988 // OK.
Bram Moolenaar9d322762018-02-09 16:04:25 +0100989 if (timed_out != NULL && *timed_out)
990 match_ok = FALSE;
991#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 break;
Bram Moolenaar9d322762018-02-09 16:04:25 +0100993 }
Bram Moolenaar795aaa12020-10-02 20:36:01 +0200994 // vim_regexec_multi() may clear "regprog"
995 if (regmatch.regprog == NULL)
996 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100998 // Need to get the line pointer again, a
999 // multi-line search may have made it invalid.
Bram Moolenaar677ee682005-01-27 14:41:15 +00001000 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 }
1002
1003 /*
1004 * If there is only a match after the cursor, skip
1005 * this match.
1006 */
1007 if (!match_ok)
1008 continue;
1009 }
1010
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001011 // With the SEARCH_END option move to the last character
1012 // of the match. Don't do it for an empty match, end
1013 // should be same as start then.
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +02001014 if ((options & SEARCH_END) && !(options & SEARCH_NOOF)
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001015 && !(matchpos.lnum == endpos.lnum
1016 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001018 // For a match in the first column, set the position
1019 // on the NUL in the previous line.
Bram Moolenaar677ee682005-01-27 14:41:15 +00001020 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001021 pos->col = endpos.col;
1022 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001023 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001024 if (pos->lnum > 1) // just in case
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001025 {
1026 --pos->lnum;
1027 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
1028 pos->lnum, FALSE));
1029 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001030 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001031 else
1032 {
1033 --pos->col;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001034 if (has_mbyte
1035 && pos->lnum <= buf->b_ml.ml_line_count)
1036 {
1037 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1038 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
1039 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001040 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001041 if (end_pos != NULL)
1042 {
1043 end_pos->lnum = lnum + matchpos.lnum;
1044 end_pos->col = matchpos.col;
1045 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 }
1047 else
1048 {
Bram Moolenaar677ee682005-01-27 14:41:15 +00001049 pos->lnum = lnum + matchpos.lnum;
1050 pos->col = matchpos.col;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001051 if (end_pos != NULL)
1052 {
1053 end_pos->lnum = lnum + endpos.lnum;
1054 end_pos->col = endpos.col;
1055 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 pos->coladd = 0;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001058 if (end_pos != NULL)
1059 end_pos->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 found = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +01001061 first_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001063 // Set variables used for 'incsearch' highlighting.
Bram Moolenaar677ee682005-01-27 14:41:15 +00001064 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 search_match_endcol = endpos.col;
1066 break;
1067 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001068 line_breakcheck(); // stop if ctrl-C typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 if (got_int)
1070 break;
1071
1072#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001073 // Cancel searching if a character was typed. Used for
1074 // 'incsearch'. Don't check too often, that would slowdown
1075 // searching too much.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 if ((options & SEARCH_PEEK)
1077 && ((lnum - pos->lnum) & 0x3f) == 0
1078 && char_avail())
1079 {
1080 break_loop = TRUE;
1081 break;
1082 }
1083#endif
1084
1085 if (loop && lnum == start_pos.lnum)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001086 break; // if second loop, stop where started
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 }
1088 at_first_line = FALSE;
1089
Bram Moolenaar795aaa12020-10-02 20:36:01 +02001090 // vim_regexec_multi() may clear "regprog"
1091 if (regmatch.regprog == NULL)
1092 break;
1093
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001095 * Stop the search if wrapscan isn't set, "stop_lnum" is
1096 * specified, after an interrupt, after a match and after looping
1097 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 */
Bram Moolenaar53989552019-12-23 22:59:18 +01001099 if (!p_ws || stop_lnum != 0 || got_int
1100 || called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001101#ifdef FEAT_RELTIME
1102 || (timed_out != NULL && *timed_out)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001103#endif
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001104#ifdef FEAT_SEARCH_EXTRA
1105 || break_loop
1106#endif
1107 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 break;
1109
1110 /*
1111 * If 'wrapscan' is set we continue at the other end of the file.
1112 * If 'shortmess' does not contain 's', we give a message.
1113 * This message is also remembered in keep_msg for when the screen
1114 * is redrawn. The keep_msg is cleared whenever another message is
1115 * written.
1116 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001117 if (dir == BACKWARD) // start second loop at the other end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00001121 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
1122 give_warning((char_u *)_(dir == BACKWARD
1123 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001124 if (extra_arg != NULL)
1125 extra_arg->sa_wrapped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 }
Bram Moolenaar53989552019-12-23 22:59:18 +01001127 if (got_int || called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001128#ifdef FEAT_RELTIME
1129 || (timed_out != NULL && *timed_out)
1130#endif
Bram Moolenaar78a15312009-05-15 19:33:18 +00001131#ifdef FEAT_SEARCH_EXTRA
1132 || break_loop
1133#endif
1134 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 break;
1136 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001137 while (--count > 0 && found); // stop after count matches or no match
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138
Bram Moolenaar473de612013-06-08 18:19:48 +02001139 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001141 if (!found) // did not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 {
1143 if (got_int)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001144 emsg(_(e_interrupted));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 else if ((options & SEARCH_MSG) == SEARCH_MSG)
1146 {
1147 if (p_ws)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001148 semsg(_(e_pattern_not_found_str), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 else if (lnum == 0)
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001150 semsg(_(e_search_hit_top_without_match_for_str), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 else
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001152 semsg(_(e_search_hit_bottom_without_match_for_str), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 }
1154 return FAIL;
1155 }
1156
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001157 // A pattern like "\n\zs" may go past the last line.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001158 if (pos->lnum > buf->b_ml.ml_line_count)
1159 {
1160 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001161 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001162 if (pos->col > 0)
1163 --pos->col;
1164 }
1165
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 return submatch + 1;
1167}
1168
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00001169#if defined(FEAT_EVAL) || defined(FEAT_PROTO)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001170 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001171set_search_direction(int cdir)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001172{
1173 spats[0].off.dir = cdir;
1174}
1175
1176 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001177set_vv_searchforward(void)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001178{
1179 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1180}
1181
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182/*
1183 * Return the number of the first subpat that matched.
Bram Moolenaarad4d8a12015-12-28 19:20:36 +01001184 * Return zero if none of them matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 */
1186 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001187first_submatch(regmmatch_T *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188{
1189 int submatch;
1190
1191 for (submatch = 1; ; ++submatch)
1192 {
1193 if (rp->startpos[submatch].lnum >= 0)
1194 break;
1195 if (submatch == 9)
1196 {
1197 submatch = 0;
1198 break;
1199 }
1200 }
1201 return submatch;
1202}
1203#endif
1204
1205/*
1206 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001207 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 * If 'dirc' is 0: use previous dir.
1209 * If 'pat' is NULL or empty : use previous string.
1210 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1211 * If 'options & SEARCH_ECHO': echo the search command and handle options
1212 * If 'options & SEARCH_MSG' : may give error message
1213 * If 'options & SEARCH_OPT' : interpret optional flags
1214 * If 'options & SEARCH_HIS' : put search pattern in history
1215 * If 'options & SEARCH_NOOF': don't add offset to position
1216 * If 'options & SEARCH_MARK': set previous context mark
1217 * If 'options & SEARCH_KEEP': keep previous search pattern
1218 * If 'options & SEARCH_START': accept match at curpos itself
1219 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1220 *
1221 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1222 * makes the movement linewise without moving the match position.
1223 *
Bram Moolenaarb6c27352015-03-05 19:57:49 +01001224 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 */
1226 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001227do_search(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001228 oparg_T *oap, // can be NULL
1229 int dirc, // '/' or '?'
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001230 int search_delim, // the delimiter for the search, e.g. '%' in
1231 // s%regex%replacement%
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001232 char_u *pat,
1233 long count,
1234 int options,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001235 searchit_arg_T *sia) // optional arguments or NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001237 pos_T pos; // position of the last match
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 char_u *searchstr;
Bram Moolenaarc3328162019-07-23 22:15:25 +02001239 soffset_T old_off;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001240 int retval; // Return value
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 char_u *p;
1242 long c;
1243 char_u *dircp;
1244 char_u *strcopy = NULL;
1245 char_u *ps;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001246 char_u *msgbuf = NULL;
1247 size_t len;
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001248 int has_offset = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249
1250 /*
1251 * A line offset is not remembered, this is vi compatible.
1252 */
1253 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1254 {
1255 spats[0].off.line = FALSE;
1256 spats[0].off.off = 0;
1257 }
1258
1259 /*
1260 * Save the values for when (options & SEARCH_KEEP) is used.
1261 * (there is no "if ()" around this because gcc wants them initialized)
1262 */
1263 old_off = spats[0].off;
1264
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001265 pos = curwin->w_cursor; // start searching at the cursor position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266
1267 /*
1268 * Find out the direction of the search.
1269 */
1270 if (dirc == 0)
1271 dirc = spats[0].off.dir;
1272 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001273 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001275#if defined(FEAT_EVAL)
1276 set_vv_searchforward();
1277#endif
1278 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 if (options & SEARCH_REV)
1280 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001281#ifdef MSWIN
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001282 // There is a bug in the Visual C++ 2.2 compiler which means that
1283 // dirc always ends up being '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 dirc = (dirc == '/') ? '?' : '/';
1285#else
1286 if (dirc == '/')
1287 dirc = '?';
1288 else
1289 dirc = '/';
1290#endif
1291 }
1292
1293#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001294 // If the cursor is in a closed fold, don't find another match in the same
1295 // fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 if (dirc == '/')
1297 {
1298 if (hasFolding(pos.lnum, NULL, &pos.lnum))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001299 pos.col = MAXCOL - 2; // avoid overflow when adding 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 }
1301 else
1302 {
1303 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1304 pos.col = 0;
1305 }
1306#endif
1307
1308#ifdef FEAT_SEARCH_EXTRA
1309 /*
1310 * Turn 'hlsearch' highlighting back on.
1311 */
1312 if (no_hlsearch && !(options & SEARCH_KEEP))
1313 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001314 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02001315 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 }
1317#endif
1318
1319 /*
1320 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1321 */
1322 for (;;)
1323 {
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001324 int show_top_bot_msg = FALSE;
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02001325
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 searchstr = pat;
1327 dircp = NULL;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001328 // use previous pattern
Bram Moolenaarc036e872020-02-21 21:30:52 +01001329 if (pat == NULL || *pat == NUL || *pat == search_delim)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001331 if (spats[RE_SEARCH].pat == NULL) // no previous pattern
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 {
Bram Moolenaarea683da2016-09-09 21:41:34 +02001333 searchstr = spats[RE_SUBST].pat;
1334 if (searchstr == NULL)
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001335 {
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001336 emsg(_(e_no_previous_regular_expression));
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001337 retval = 0;
1338 goto end_do_search;
1339 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001341 else
1342 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001343 // make search_regcomp() use spats[RE_SEARCH].pat
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001344 searchstr = (char_u *)"";
1345 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 }
1347
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001348 if (pat != NULL && *pat != NUL) // look for (new) offset
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 {
1350 /*
1351 * Find end of regular expression.
1352 * If there is a matching '/' or '?', toss it.
1353 */
1354 ps = strcopy;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01001355 p = skip_regexp_ex(pat, search_delim, magic_isset(),
Bram Moolenaard93a7fc2021-01-04 12:42:13 +01001356 &strcopy, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 if (strcopy != ps)
1358 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001359 // made a copy of "pat" to change "\?" to "?"
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001360 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 pat = strcopy;
1362 searchstr = strcopy;
1363 }
Bram Moolenaarc036e872020-02-21 21:30:52 +01001364 if (*p == search_delim)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001366 dircp = p; // remember where we put the NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367 *p++ = NUL;
1368 }
1369 spats[0].off.line = FALSE;
1370 spats[0].off.end = FALSE;
1371 spats[0].off.off = 0;
1372 /*
1373 * Check for a line offset or a character offset.
1374 * For get_address (echo off) we don't check for a character
1375 * offset, because it is meaningless and the 's' could be a
1376 * substitute command.
1377 */
1378 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1379 spats[0].off.line = TRUE;
Dominique Pelle7765f5c2022-04-10 11:26:53 +01001380 else if ((options & SEARCH_OPT)
1381 && (*p == 'e' || *p == 's' || *p == 'b'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001383 if (*p == 'e') // end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 spats[0].off.end = SEARCH_END;
1385 ++p;
1386 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001387 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') // got an offset
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001389 // 'nr' or '+nr' or '-nr'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1391 spats[0].off.off = atol((char *)p);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001392 else if (*p == '-') // single '-'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 spats[0].off.off = -1;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001394 else // single '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 spats[0].off.off = 1;
1396 ++p;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001397 while (VIM_ISDIGIT(*p)) // skip number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 ++p;
1399 }
1400
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001401 // compute length of search command for get_address()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 searchcmdlen += (int)(p - pat);
1403
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001404 pat = p; // put pat after search command
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 }
1406
Dominique Pelle7765f5c2022-04-10 11:26:53 +01001407 if ((options & SEARCH_ECHO) && messaging()
1408 && !msg_silent
1409 && (!cmd_silent || !shortmess(SHM_SEARCHCOUNT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411 char_u *trunc;
Bram Moolenaar984f0312019-05-24 13:11:47 +02001412 char_u off_buf[40];
Bram Moolenaard33a7642019-05-24 17:56:14 +02001413 size_t off_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001415 // Compute msg_row early.
1416 msg_start();
1417
Bram Moolenaar984f0312019-05-24 13:11:47 +02001418 // Get the offset, so we know how long it is.
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001419 if (!cmd_silent &&
1420 (spats[0].off.line || spats[0].off.end || spats[0].off.off))
Bram Moolenaar984f0312019-05-24 13:11:47 +02001421 {
1422 p = off_buf;
1423 *p++ = dirc;
1424 if (spats[0].off.end)
1425 *p++ = 'e';
1426 else if (!spats[0].off.line)
1427 *p++ = 's';
1428 if (spats[0].off.off > 0 || spats[0].off.line)
1429 *p++ = '+';
1430 *p = NUL;
1431 if (spats[0].off.off != 0 || spats[0].off.line)
1432 sprintf((char *)p, "%ld", spats[0].off.off);
1433 off_len = STRLEN(off_buf);
1434 }
1435
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 if (*searchstr == NUL)
Bram Moolenaar2fb8f682018-12-01 13:14:45 +01001437 p = spats[0].pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 else
1439 p = searchstr;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001440
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001441 if (!shortmess(SHM_SEARCHCOUNT) || cmd_silent)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001442 {
1443 // Reserve enough space for the search pattern + offset +
Bram Moolenaar984f0312019-05-24 13:11:47 +02001444 // search stat. Use all the space available, so that the
1445 // search state is right aligned. If there is not enough space
1446 // msg_strtrunc() will shorten in the middle.
Bram Moolenaar19e8ac72019-09-03 22:23:38 +02001447 if (msg_scrolled != 0 && !cmd_silent)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001448 // Use all the columns.
1449 len = (int)(Rows - msg_row) * Columns - 1;
1450 else
1451 // Use up to 'showcmd' column.
1452 len = (int)(Rows - msg_row - 1) * Columns + sc_col - 1;
Bram Moolenaar984f0312019-05-24 13:11:47 +02001453 if (len < STRLEN(p) + off_len + SEARCH_STAT_BUF_LEN + 3)
1454 len = STRLEN(p) + off_len + SEARCH_STAT_BUF_LEN + 3;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001455 }
1456 else
1457 // Reserve enough space for the search pattern + offset.
Bram Moolenaar984f0312019-05-24 13:11:47 +02001458 len = STRLEN(p) + off_len + 3;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001459
Bram Moolenaar880e4d92020-04-11 21:31:28 +02001460 vim_free(msgbuf);
Bram Moolenaar51e14382019-05-25 20:21:28 +02001461 msgbuf = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 if (msgbuf != NULL)
1463 {
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001464 vim_memset(msgbuf, ' ', len);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001465 msgbuf[len - 1] = NUL;
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001466 // do not fill the msgbuf buffer, if cmd_silent is set, leave it
1467 // empty for the search_stat feature.
1468 if (!cmd_silent)
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001469 {
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001470 msgbuf[0] = dirc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001472 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1473 {
1474 // Use a space to draw the composing char on.
1475 msgbuf[1] = ' ';
1476 mch_memmove(msgbuf + 2, p, STRLEN(p));
1477 }
1478 else
1479 mch_memmove(msgbuf + 1, p, STRLEN(p));
1480 if (off_len > 0)
1481 mch_memmove(msgbuf + STRLEN(p) + 1, off_buf, off_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001483 trunc = msg_strtrunc(msgbuf, TRUE);
1484 if (trunc != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 {
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001486 vim_free(msgbuf);
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001487 msgbuf = trunc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001490#ifdef FEAT_RIGHTLEFT
1491 // The search pattern could be shown on the right in
1492 // rightleft mode, but the 'ruler' and 'showcmd' area use
1493 // it too, thus it would be blanked out again very soon.
1494 // Show it on the left, but do reverse the text.
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001495 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1496 {
1497 char_u *r;
1498 size_t pat_len;
1499
1500 r = reverse_text(msgbuf);
1501 if (r != NULL)
1502 {
1503 vim_free(msgbuf);
1504 msgbuf = r;
1505 // move reversed text to beginning of buffer
1506 while (*r != NUL && *r == ' ')
1507 r++;
1508 pat_len = msgbuf + STRLEN(msgbuf) - r;
1509 mch_memmove(msgbuf, r, pat_len);
1510 // overwrite old text
1511 if ((size_t)(r - msgbuf) >= pat_len)
1512 vim_memset(r, ' ', pat_len);
1513 else
1514 vim_memset(msgbuf + pat_len, ' ', r - msgbuf);
1515 }
1516 }
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001517#endif
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001518 msg_outtrans(msgbuf);
1519 msg_clr_eos();
1520 msg_check();
1521
1522 gotocmdline(FALSE);
1523 out_flush();
1524 msg_nowait = TRUE; // don't wait for this message
1525 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 }
1527 }
1528
1529 /*
1530 * If there is a character offset, subtract it from the current
1531 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001532 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 * This is not done for a line offset, because then we would not be vi
1534 * compatible.
1535 */
Bram Moolenaared203462004-06-16 11:19:22 +00001536 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 {
1538 if (spats[0].off.off > 0)
1539 {
1540 for (c = spats[0].off.off; c; --c)
1541 if (decl(&pos) == -1)
1542 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001543 if (c) // at start of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001545 pos.lnum = 0; // allow lnum == 0 here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 pos.col = MAXCOL;
1547 }
1548 }
1549 else
1550 {
1551 for (c = spats[0].off.off; c; ++c)
1552 if (incl(&pos) == -1)
1553 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001554 if (c) // at end of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 {
1556 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1557 pos.col = 0;
1558 }
1559 }
1560 }
1561
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001562 /*
1563 * The actual search.
1564 */
Bram Moolenaar14184a32019-02-16 15:10:30 +01001565 c = searchit(curwin, curbuf, &pos, NULL,
1566 dirc == '/' ? FORWARD : BACKWARD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 searchstr, count, spats[0].off.end + (options &
1568 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1569 + SEARCH_MSG + SEARCH_START
1570 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001571 RE_LAST, sia);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572
1573 if (dircp != NULL)
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001574 *dircp = search_delim; // restore second '/' or '?' for normal_cmd()
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001575
1576 if (!shortmess(SHM_SEARCH)
1577 && ((dirc == '/' && LT_POS(pos, curwin->w_cursor))
1578 || (dirc == '?' && LT_POS(curwin->w_cursor, pos))))
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02001579 show_top_bot_msg = TRUE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001580
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 if (c == FAIL)
1582 {
1583 retval = 0;
1584 goto end_do_search;
1585 }
1586 if (spats[0].off.end && oap != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001587 oap->inclusive = TRUE; // 'e' includes last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001589 retval = 1; // pattern found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590
1591 /*
1592 * Add character and/or line offset
1593 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001594 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 {
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001596 pos_T org_pos = pos;
1597
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001598 if (spats[0].off.line) // Add the offset to the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 {
1600 c = pos.lnum + spats[0].off.off;
1601 if (c < 1)
1602 pos.lnum = 1;
1603 else if (c > curbuf->b_ml.ml_line_count)
1604 pos.lnum = curbuf->b_ml.ml_line_count;
1605 else
1606 pos.lnum = c;
1607 pos.col = 0;
1608
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001609 retval = 2; // pattern found, line offset added
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001611 else if (pos.col < MAXCOL - 2) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001613 // to the right, check for end of file
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001614 c = spats[0].off.off;
1615 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001617 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 if (incl(&pos) == -1)
1619 break;
1620 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001621 // to the left, check for start of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 else
1623 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001624 while (c++ < 0)
1625 if (decl(&pos) == -1)
1626 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 }
1628 }
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001629 if (!EQUAL_POS(pos, org_pos))
1630 has_offset = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 }
1632
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001633 // Show [1/15] if 'S' is not in 'shortmess'.
1634 if ((options & SEARCH_ECHO)
1635 && messaging()
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001636 && !msg_silent
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001637 && c != FAIL
1638 && !shortmess(SHM_SEARCHCOUNT)
1639 && msgbuf != NULL)
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02001640 cmdline_search_stat(dirc, &pos, &curwin->w_cursor,
1641 show_top_bot_msg, msgbuf,
1642 (count != 1 || has_offset
Bram Moolenaar6cb07262020-05-29 22:49:43 +02001643#ifdef FEAT_FOLDING
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02001644 || (!(fdo_flags & FDO_SEARCH)
1645 && hasFolding(curwin->w_cursor.lnum,
1646 NULL, NULL))
Bram Moolenaar6cb07262020-05-29 22:49:43 +02001647#endif
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02001648 ),
1649 SEARCH_STAT_DEF_MAX_COUNT,
1650 SEARCH_STAT_DEF_TIMEOUT);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001651
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 /*
1653 * The search command can be followed by a ';' to do another search.
1654 * For example: "/pat/;/foo/+3;?bar"
1655 * This is like doing another search command, except:
1656 * - The remembered direction '/' or '?' is from the first search.
1657 * - When an error happens the cursor isn't moved at all.
1658 * Don't do this when called by get_address() (it handles ';' itself).
1659 */
1660 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1661 break;
1662
1663 dirc = *++pat;
Bram Moolenaarc036e872020-02-21 21:30:52 +01001664 search_delim = dirc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665 if (dirc != '?' && dirc != '/')
1666 {
1667 retval = 0;
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001668 emsg(_(e_expected_question_or_slash_after_semicolon));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 goto end_do_search;
1670 }
1671 ++pat;
1672 }
1673
1674 if (options & SEARCH_MARK)
1675 setpcmark();
1676 curwin->w_cursor = pos;
1677 curwin->w_set_curswant = TRUE;
1678
1679end_do_search:
Bram Moolenaare1004402020-10-24 20:49:43 +02001680 if ((options & SEARCH_KEEP) || (cmdmod.cmod_flags & CMOD_KEEPPATTERNS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 spats[0].off = old_off;
1682 vim_free(strcopy);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001683 vim_free(msgbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684
1685 return retval;
1686}
1687
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688/*
1689 * search_for_exact_line(buf, pos, dir, pat)
1690 *
1691 * Search for a line starting with the given pattern (ignoring leading
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001692 * white-space), starting from pos and going in direction "dir". "pos" will
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 * contain the position of the match found. Blank lines match only if
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001694 * ADDING is set. If p_ic is set then the pattern must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 * Return OK for success, or FAIL if no line found.
1696 */
1697 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001698search_for_exact_line(
1699 buf_T *buf,
1700 pos_T *pos,
1701 int dir,
1702 char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703{
1704 linenr_T start = 0;
1705 char_u *ptr;
1706 char_u *p;
1707
1708 if (buf->b_ml.ml_line_count == 0)
1709 return FAIL;
1710 for (;;)
1711 {
1712 pos->lnum += dir;
1713 if (pos->lnum < 1)
1714 {
1715 if (p_ws)
1716 {
1717 pos->lnum = buf->b_ml.ml_line_count;
1718 if (!shortmess(SHM_SEARCH))
1719 give_warning((char_u *)_(top_bot_msg), TRUE);
1720 }
1721 else
1722 {
1723 pos->lnum = 1;
1724 break;
1725 }
1726 }
1727 else if (pos->lnum > buf->b_ml.ml_line_count)
1728 {
1729 if (p_ws)
1730 {
1731 pos->lnum = 1;
1732 if (!shortmess(SHM_SEARCH))
1733 give_warning((char_u *)_(bot_top_msg), TRUE);
1734 }
1735 else
1736 {
1737 pos->lnum = 1;
1738 break;
1739 }
1740 }
1741 if (pos->lnum == start)
1742 break;
1743 if (start == 0)
1744 start = pos->lnum;
1745 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1746 p = skipwhite(ptr);
1747 pos->col = (colnr_T) (p - ptr);
1748
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001749 // when adding lines the matching line may be empty but it is not
1750 // ignored because we are interested in the next line -- Acevedo
Yegappan Lakshmanand94fbfc2022-01-04 17:01:44 +00001751 if (compl_status_adding() && !compl_status_sol())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 {
1753 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1754 return OK;
1755 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001756 else if (*p != NUL) // ignore empty lines
1757 { // expanding lines or words
Yegappan Lakshmanand94fbfc2022-01-04 17:01:44 +00001758 if ((p_ic ? MB_STRNICMP(p, pat, ins_compl_len())
1759 : STRNCMP(p, pat, ins_compl_len())) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 return OK;
1761 }
1762 }
1763 return FAIL;
1764}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765
1766/*
1767 * Character Searches
1768 */
1769
1770/*
1771 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1772 * position of the character, otherwise move to just before the char.
1773 * Do this "cap->count1" times.
1774 * Return FAIL or OK.
1775 */
1776 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001777searchc(cmdarg_T *cap, int t_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001779 int c = cap->nchar; // char to search for
1780 int dir = cap->arg; // TRUE for searching forward
1781 long count = cap->count1; // repeat count
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 int col;
1783 char_u *p;
1784 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001785 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001787 if (c != NUL) // normal search: remember args for repeat
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001789 if (!KeyStuffed) // don't remember when redoing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001791 *lastc = c;
1792 set_csearch_direction(dir);
1793 set_csearch_until(t_cmd);
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001794 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 if (cap->ncharC1 != 0)
1796 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001797 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1,
1798 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 if (cap->ncharC2 != 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001800 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2,
1801 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 }
1804 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001805 else // repeat previous search
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 {
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001807 if (*lastc == NUL && lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808 return FAIL;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001809 if (dir) // repeat in opposite direction
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 dir = -lastcdir;
1811 else
1812 dir = lastcdir;
1813 t_cmd = last_t_cmd;
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001814 c = *lastc;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001815 // For multi-byte re-use last lastc_bytes[] and lastc_bytelen.
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001816
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001817 // Force a move of at least one char, so ";" and "," will move the
1818 // cursor, even if the cursor is right in front of char we are looking
1819 // at.
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001820 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001821 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 }
1823
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001824 if (dir == BACKWARD)
1825 cap->oap->inclusive = FALSE;
1826 else
1827 cap->oap->inclusive = TRUE;
1828
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 p = ml_get_curline();
1830 col = curwin->w_cursor.col;
1831 len = (int)STRLEN(p);
1832
1833 while (count--)
1834 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 if (has_mbyte)
1836 {
1837 for (;;)
1838 {
1839 if (dir > 0)
1840 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001841 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 if (col >= len)
1843 return FAIL;
1844 }
1845 else
1846 {
1847 if (col == 0)
1848 return FAIL;
1849 col -= (*mb_head_off)(p, p + col - 1) + 1;
1850 }
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001851 if (lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001853 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 break;
1855 }
Bram Moolenaar66727e12017-03-01 22:17:05 +01001856 else if (STRNCMP(p + col, lastc_bytes, lastc_bytelen) == 0
Bram Moolenaarb129a442016-12-01 17:25:20 +01001857 && stop)
Bram Moolenaar66727e12017-03-01 22:17:05 +01001858 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001859 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 }
1861 }
1862 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 {
1864 for (;;)
1865 {
1866 if ((col += dir) < 0 || col >= len)
1867 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001868 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001870 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 }
1872 }
1873 }
1874
1875 if (t_cmd)
1876 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001877 // backup to before the character (possibly double-byte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 col -= dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 if (has_mbyte)
1880 {
1881 if (dir < 0)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001882 // Landed on the search char which is lastc_bytelen long
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001883 col += lastc_bytelen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001885 // To previous char, which may be multi-byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 col -= (*mb_head_off)(p, p + col);
1887 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 }
1889 curwin->w_cursor.col = col;
1890
1891 return OK;
1892}
1893
1894/*
1895 * "Other" Searches
1896 */
1897
1898/*
1899 * findmatch - find the matching paren or brace
1900 *
1901 * Improvement over vi: Braces inside quotes are ignored.
1902 */
1903 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001904findmatch(oparg_T *oap, int initc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905{
1906 return findmatchlimit(oap, initc, 0, 0);
1907}
1908
1909/*
1910 * Return TRUE if the character before "linep[col]" equals "ch".
1911 * Return FALSE if "col" is zero.
1912 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1913 * is NULL.
1914 * Handles multibyte string correctly.
1915 */
1916 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001917check_prevcol(
1918 char_u *linep,
1919 int col,
1920 int ch,
1921 int *prevcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922{
1923 --col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 if (col > 0 && has_mbyte)
1925 col -= (*mb_head_off)(linep, linep + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 if (prevcol)
1927 *prevcol = col;
1928 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1929}
1930
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001931/*
1932 * Raw string start is found at linep[startpos.col - 1].
1933 * Return TRUE if the matching end can be found between startpos and endpos.
1934 */
1935 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001936find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos)
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001937{
1938 char_u *p;
1939 char_u *delim_copy;
1940 size_t delim_len;
1941 linenr_T lnum;
1942 int found = FALSE;
1943
1944 for (p = linep + startpos->col + 1; *p && *p != '('; ++p)
1945 ;
1946 delim_len = (p - linep) - startpos->col - 1;
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001947 delim_copy = vim_strnsave(linep + startpos->col + 1, delim_len);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001948 if (delim_copy == NULL)
1949 return FALSE;
1950 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum)
1951 {
1952 char_u *line = ml_get(lnum);
1953
1954 for (p = line + (lnum == startpos->lnum
1955 ? startpos->col + 1 : 0); *p; ++p)
1956 {
1957 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col)
1958 break;
Bram Moolenaar282f9c62020-08-04 21:46:18 +02001959 if (*p == ')' && STRNCMP(delim_copy, p + 1, delim_len) == 0
1960 && p[delim_len + 1] == '"')
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001961 {
1962 found = TRUE;
1963 break;
1964 }
1965 }
1966 if (found)
1967 break;
1968 }
1969 vim_free(delim_copy);
1970 return found;
1971}
1972
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973/*
Bram Moolenaar556ae8e2019-11-21 22:27:22 +01001974 * Check matchpairs option for "*initc".
1975 * If there is a match set "*initc" to the matching character and "*findc" to
1976 * the opposite character. Set "*backwards" to the direction.
1977 * When "switchit" is TRUE swap the direction.
1978 */
1979 static void
1980find_mps_values(
1981 int *initc,
1982 int *findc,
1983 int *backwards,
1984 int switchit)
1985{
1986 char_u *ptr;
1987
1988 ptr = curbuf->b_p_mps;
1989 while (*ptr != NUL)
1990 {
1991 if (has_mbyte)
1992 {
1993 char_u *prev;
1994
1995 if (mb_ptr2char(ptr) == *initc)
1996 {
1997 if (switchit)
1998 {
1999 *findc = *initc;
2000 *initc = mb_ptr2char(ptr + mb_ptr2len(ptr) + 1);
2001 *backwards = TRUE;
2002 }
2003 else
2004 {
2005 *findc = mb_ptr2char(ptr + mb_ptr2len(ptr) + 1);
2006 *backwards = FALSE;
2007 }
2008 return;
2009 }
2010 prev = ptr;
2011 ptr += mb_ptr2len(ptr) + 1;
2012 if (mb_ptr2char(ptr) == *initc)
2013 {
2014 if (switchit)
2015 {
2016 *findc = *initc;
2017 *initc = mb_ptr2char(prev);
2018 *backwards = FALSE;
2019 }
2020 else
2021 {
2022 *findc = mb_ptr2char(prev);
2023 *backwards = TRUE;
2024 }
2025 return;
2026 }
2027 ptr += mb_ptr2len(ptr);
2028 }
2029 else
2030 {
2031 if (*ptr == *initc)
2032 {
2033 if (switchit)
2034 {
2035 *backwards = TRUE;
2036 *findc = *initc;
2037 *initc = ptr[2];
2038 }
2039 else
2040 {
2041 *backwards = FALSE;
2042 *findc = ptr[2];
2043 }
2044 return;
2045 }
2046 ptr += 2;
2047 if (*ptr == *initc)
2048 {
2049 if (switchit)
2050 {
2051 *backwards = FALSE;
2052 *findc = *initc;
2053 *initc = ptr[-2];
2054 }
2055 else
2056 {
2057 *backwards = TRUE;
2058 *findc = ptr[-2];
2059 }
2060 return;
2061 }
2062 ++ptr;
2063 }
2064 if (*ptr == ',')
2065 ++ptr;
2066 }
2067}
2068
2069/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 * findmatchlimit -- find the matching paren or brace, if it exists within
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002071 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling
2072 * off the edge of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 *
2074 * "initc" is the character to find a match for. NUL means to find the
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002075 * character at or after the cursor. Special values:
2076 * '*' look for C-style comment / *
2077 * '/' look for C-style comment / *, ignoring comment-end
2078 * '#' look for preprocessor directives
2079 * 'R' look for raw string start: R"delim(text)delim" (only backwards)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 *
2081 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
2082 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
2083 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
2084 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002085 *
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002086 * "oap" is only used to set oap->motion_type for a linewise motion, it can be
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002087 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 */
2089
2090 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002091findmatchlimit(
2092 oparg_T *oap,
2093 int initc,
2094 int flags,
2095 int maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002097 static pos_T pos; // current search position
2098 int findc = 0; // matching brace
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 int c;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002100 int count = 0; // cumulative number of braces
2101 int backwards = FALSE; // init for gcc
2102 int raw_string = FALSE; // search for raw string
2103 int inquote = FALSE; // TRUE when inside quotes
2104 char_u *linep; // pointer to current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105 char_u *ptr;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002106 int do_quotes; // check for quotes in current line
2107 int at_start; // do_quotes value at start position
2108 int hash_dir = 0; // Direction searched for # things
2109 int comment_dir = 0; // Direction searched for comments
2110 pos_T match_pos; // Where last slash-star was found
2111 int start_in_quotes; // start position is in quotes
2112 int traveled = 0; // how far we've searched so far
2113 int ignore_cend = FALSE; // ignore comment end
2114 int cpo_match; // vi compatible matching
2115 int cpo_bsl; // don't recognize backslashes
2116 int match_escaped = 0; // search for escaped match
2117 int dir; // Direction to search
2118 int comment_col = MAXCOL; // start of / / comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002119#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002120 int lispcomm = FALSE; // inside of Lisp-style comment
2121 int lisp = curbuf->b_p_lisp; // engage Lisp-specific hacks ;)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002122#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123
2124 pos = curwin->w_cursor;
Bram Moolenaarc56c4592013-08-14 17:45:29 +02002125 pos.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 linep = ml_get(pos.lnum);
2127
2128 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
2129 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
2130
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002131 // Direction to search when initc is '/', '*' or '#'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 if (flags & FM_BACKWARD)
2133 dir = BACKWARD;
2134 else if (flags & FM_FORWARD)
2135 dir = FORWARD;
2136 else
2137 dir = 0;
2138
2139 /*
2140 * if initc given, look in the table for the matching character
2141 * '/' and '*' are special cases: look for start or end of comment.
2142 * When '/' is used, we ignore running backwards into an star-slash, for
2143 * "[*" command, we just want to find any comment.
2144 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002145 if (initc == '/' || initc == '*' || initc == 'R')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146 {
2147 comment_dir = dir;
2148 if (initc == '/')
2149 ignore_cend = TRUE;
2150 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002151 raw_string = (initc == 'R');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 initc = NUL;
2153 }
2154 else if (initc != '#' && initc != NUL)
2155 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002156 find_mps_values(&initc, &findc, &backwards, TRUE);
Connor Lane Smithb9115da2021-07-31 13:31:42 +02002157 if (dir)
2158 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002159 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 return NULL;
2161 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 else
2163 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002164 /*
2165 * Either initc is '#', or no initc was given and we need to look
2166 * under the cursor.
2167 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 if (initc == '#')
2169 {
2170 hash_dir = dir;
2171 }
2172 else
2173 {
2174 /*
2175 * initc was not given, must look for something to match under
2176 * or near the cursor.
2177 * Only check for special things when 'cpo' doesn't have '%'.
2178 */
2179 if (!cpo_match)
2180 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002181 // Are we before or at #if, #else etc.?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 ptr = skipwhite(linep);
2183 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
2184 {
2185 ptr = skipwhite(ptr + 1);
2186 if ( STRNCMP(ptr, "if", 2) == 0
2187 || STRNCMP(ptr, "endif", 5) == 0
2188 || STRNCMP(ptr, "el", 2) == 0)
2189 hash_dir = 1;
2190 }
2191
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002192 // Are we on a comment?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 else if (linep[pos.col] == '/')
2194 {
2195 if (linep[pos.col + 1] == '*')
2196 {
2197 comment_dir = FORWARD;
2198 backwards = FALSE;
2199 pos.col++;
2200 }
2201 else if (pos.col > 0 && linep[pos.col - 1] == '*')
2202 {
2203 comment_dir = BACKWARD;
2204 backwards = TRUE;
2205 pos.col--;
2206 }
2207 }
2208 else if (linep[pos.col] == '*')
2209 {
2210 if (linep[pos.col + 1] == '/')
2211 {
2212 comment_dir = BACKWARD;
2213 backwards = TRUE;
2214 }
2215 else if (pos.col > 0 && linep[pos.col - 1] == '/')
2216 {
2217 comment_dir = FORWARD;
2218 backwards = FALSE;
2219 }
2220 }
2221 }
2222
2223 /*
2224 * If we are not on a comment or the # at the start of a line, then
2225 * look for brace anywhere on this line after the cursor.
2226 */
2227 if (!hash_dir && !comment_dir)
2228 {
2229 /*
2230 * Find the brace under or after the cursor.
2231 * If beyond the end of the line, use the last character in
2232 * the line.
2233 */
2234 if (linep[pos.col] == NUL && pos.col)
2235 --pos.col;
2236 for (;;)
2237 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002238 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 if (initc == NUL)
2240 break;
2241
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002242 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 if (findc)
2244 break;
Bram Moolenaar1614a142019-10-06 22:00:13 +02002245 pos.col += mb_ptr2len(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 }
2247 if (!findc)
2248 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002249 // no brace in the line, maybe use " #if" then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 if (!cpo_match && *skipwhite(linep) == '#')
2251 hash_dir = 1;
2252 else
2253 return NULL;
2254 }
2255 else if (!cpo_bsl)
2256 {
2257 int col, bslcnt = 0;
2258
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002259 // Set "match_escaped" if there are an odd number of
2260 // backslashes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2262 bslcnt++;
2263 match_escaped = (bslcnt & 1);
2264 }
2265 }
2266 }
2267 if (hash_dir)
2268 {
2269 /*
2270 * Look for matching #if, #else, #elif, or #endif
2271 */
2272 if (oap != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002273 oap->motion_type = MLINE; // Linewise for this case only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 if (initc != '#')
2275 {
2276 ptr = skipwhite(skipwhite(linep) + 1);
2277 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
2278 hash_dir = 1;
2279 else if (STRNCMP(ptr, "endif", 5) == 0)
2280 hash_dir = -1;
2281 else
2282 return NULL;
2283 }
2284 pos.col = 0;
2285 while (!got_int)
2286 {
2287 if (hash_dir > 0)
2288 {
2289 if (pos.lnum == curbuf->b_ml.ml_line_count)
2290 break;
2291 }
2292 else if (pos.lnum == 1)
2293 break;
2294 pos.lnum += hash_dir;
2295 linep = ml_get(pos.lnum);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002296 line_breakcheck(); // check for CTRL-C typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297 ptr = skipwhite(linep);
2298 if (*ptr != '#')
2299 continue;
2300 pos.col = (colnr_T) (ptr - linep);
2301 ptr = skipwhite(ptr + 1);
2302 if (hash_dir > 0)
2303 {
2304 if (STRNCMP(ptr, "if", 2) == 0)
2305 count++;
2306 else if (STRNCMP(ptr, "el", 2) == 0)
2307 {
2308 if (count == 0)
2309 return &pos;
2310 }
2311 else if (STRNCMP(ptr, "endif", 5) == 0)
2312 {
2313 if (count == 0)
2314 return &pos;
2315 count--;
2316 }
2317 }
2318 else
2319 {
2320 if (STRNCMP(ptr, "if", 2) == 0)
2321 {
2322 if (count == 0)
2323 return &pos;
2324 count--;
2325 }
2326 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
2327 {
2328 if (count == 0)
2329 return &pos;
2330 }
2331 else if (STRNCMP(ptr, "endif", 5) == 0)
2332 count++;
2333 }
2334 }
2335 return NULL;
2336 }
2337 }
2338
2339#ifdef FEAT_RIGHTLEFT
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002340 // This is just guessing: when 'rightleft' is set, search for a matching
2341 // paren/brace in the other direction.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
2343 backwards = !backwards;
2344#endif
2345
2346 do_quotes = -1;
2347 start_in_quotes = MAYBE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002348 CLEAR_POS(&match_pos);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002349
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002350 // backward search: Check if this line contains a single-line comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002351 if ((backwards && comment_dir)
2352#ifdef FEAT_LISP
2353 || lisp
2354#endif
2355 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002357#ifdef FEAT_LISP
2358 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002359 lispcomm = TRUE; // find match inside this comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002360#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 while (!got_int)
2362 {
2363 /*
2364 * Go to the next position, forward or backward. We could use
2365 * inc() and dec() here, but that is much slower
2366 */
2367 if (backwards)
2368 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002369#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002370 // char to match is inside of comment, don't search outside
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002371 if (lispcomm && pos.col < (colnr_T)comment_col)
2372 break;
2373#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002374 if (pos.col == 0) // at start of line, go to prev. one
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002376 if (pos.lnum == 1) // start of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 break;
2378 --pos.lnum;
2379
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002380 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 break;
2382
2383 linep = ml_get(pos.lnum);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002384 pos.col = (colnr_T)STRLEN(linep); // pos.col on trailing NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 do_quotes = -1;
2386 line_breakcheck();
2387
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002388 // Check if this line contains a single-line comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002389 if (comment_dir
2390#ifdef FEAT_LISP
2391 || lisp
2392#endif
2393 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002395#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002396 // skip comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002397 if (lisp && comment_col != MAXCOL)
2398 pos.col = comment_col;
2399#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 }
2401 else
2402 {
2403 --pos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 if (has_mbyte)
2405 pos.col -= (*mb_head_off)(linep, linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 }
2407 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002408 else // forward search
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002410 if (linep[pos.col] == NUL
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002411 // at end of line, go to next one
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002412#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002413 // don't search for match in comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002414 || (lisp && comment_col != MAXCOL
2415 && pos.col == (colnr_T)comment_col)
2416#endif
2417 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002419 if (pos.lnum == curbuf->b_ml.ml_line_count // end of file
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002420#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002421 // line is exhausted and comment with it,
2422 // don't search for match in code
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002423 || lispcomm
2424#endif
2425 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 break;
2427 ++pos.lnum;
2428
2429 if (maxtravel && traveled++ > maxtravel)
2430 break;
2431
2432 linep = ml_get(pos.lnum);
2433 pos.col = 0;
2434 do_quotes = -1;
2435 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002436#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002437 if (lisp) // find comment pos in new line
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002438 comment_col = check_linecomment(linep);
2439#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 }
2441 else
2442 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002444 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 ++pos.col;
2447 }
2448 }
2449
2450 /*
2451 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2452 */
Dominique Pelle7765f5c2022-04-10 11:26:53 +01002453 if (pos.col == 0 && (flags & FM_BLOCKSTOP)
2454 && (linep[0] == '{' || linep[0] == '}'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002456 if (linep[0] == findc && count == 0) // match!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 return &pos;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002458 break; // out of scope
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 }
2460
2461 if (comment_dir)
2462 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002463 // Note: comments do not nest, and we ignore quotes in them
2464 // TODO: ignore comment brackets inside strings
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 if (comment_dir == FORWARD)
2466 {
2467 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2468 {
2469 pos.col++;
2470 return &pos;
2471 }
2472 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002473 else // Searching backwards
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 {
2475 /*
2476 * A comment may contain / * or / /, it may also start or end
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002477 * with / * /. Ignore a / * after / / and after *.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478 */
2479 if (pos.col == 0)
2480 continue;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002481 else if (raw_string)
2482 {
2483 if (linep[pos.col - 1] == 'R'
2484 && linep[pos.col] == '"'
2485 && vim_strchr(linep + pos.col + 1, '(') != NULL)
2486 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002487 // Possible start of raw string. Now that we have the
2488 // delimiter we can check if it ends before where we
2489 // started searching, or before the previously found
2490 // raw string start.
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002491 if (!find_rawstring_end(linep, &pos,
2492 count > 0 ? &match_pos : &curwin->w_cursor))
2493 {
2494 count++;
2495 match_pos = pos;
2496 match_pos.col--;
2497 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002498 linep = ml_get(pos.lnum); // may have been released
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002499 }
2500 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501 else if ( linep[pos.col - 1] == '/'
2502 && linep[pos.col] == '*'
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002503 && (pos.col == 1 || linep[pos.col - 2] != '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 && (int)pos.col < comment_col)
2505 {
2506 count++;
2507 match_pos = pos;
2508 match_pos.col--;
2509 }
2510 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2511 {
2512 if (count > 0)
2513 pos = match_pos;
2514 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2515 && (int)pos.col <= comment_col)
2516 pos.col -= 2;
2517 else if (ignore_cend)
2518 continue;
2519 else
2520 return NULL;
2521 return &pos;
2522 }
2523 }
2524 continue;
2525 }
2526
2527 /*
2528 * If smart matching ('cpoptions' does not contain '%'), braces inside
2529 * of quotes are ignored, but only if there is an even number of
2530 * quotes in the line.
2531 */
2532 if (cpo_match)
2533 do_quotes = 0;
2534 else if (do_quotes == -1)
2535 {
2536 /*
2537 * Count the number of quotes in the line, skipping \" and '"'.
2538 * Watch out for "\\".
2539 */
2540 at_start = do_quotes;
2541 for (ptr = linep; *ptr; ++ptr)
2542 {
2543 if (ptr == linep + pos.col + backwards)
2544 at_start = (do_quotes & 1);
2545 if (*ptr == '"'
2546 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2547 ++do_quotes;
2548 if (*ptr == '\\' && ptr[1] != NUL)
2549 ++ptr;
2550 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002551 do_quotes &= 1; // result is 1 with even number of quotes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552
2553 /*
2554 * If we find an uneven count, check current line and previous
2555 * one for a '\' at the end.
2556 */
2557 if (!do_quotes)
2558 {
2559 inquote = FALSE;
2560 if (ptr[-1] == '\\')
2561 {
2562 do_quotes = 1;
2563 if (start_in_quotes == MAYBE)
2564 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002565 // Do we need to use at_start here?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 inquote = TRUE;
2567 start_in_quotes = TRUE;
2568 }
2569 else if (backwards)
2570 inquote = TRUE;
2571 }
2572 if (pos.lnum > 1)
2573 {
2574 ptr = ml_get(pos.lnum - 1);
2575 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2576 {
2577 do_quotes = 1;
2578 if (start_in_quotes == MAYBE)
2579 {
2580 inquote = at_start;
2581 if (inquote)
2582 start_in_quotes = TRUE;
2583 }
2584 else if (!backwards)
2585 inquote = TRUE;
2586 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002587
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002588 // ml_get() only keeps one line, need to get linep again
Bram Moolenaaraec11792007-07-10 11:09:36 +00002589 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 }
2591 }
2592 }
2593 if (start_in_quotes == MAYBE)
2594 start_in_quotes = FALSE;
2595
2596 /*
2597 * If 'smartmatch' is set:
2598 * Things inside quotes are ignored by setting 'inquote'. If we
2599 * find a quote without a preceding '\' invert 'inquote'. At the
2600 * end of a line not ending in '\' we reset 'inquote'.
2601 *
2602 * In lines with an uneven number of quotes (without preceding '\')
2603 * we do not know which part to ignore. Therefore we only set
2604 * inquote if the number of quotes in a line is even, unless this
2605 * line or the previous one ends in a '\'. Complicated, isn't it?
2606 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002607 c = PTR2CHAR(linep + pos.col);
2608 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 {
2610 case NUL:
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002611 // at end of line without trailing backslash, reset inquote
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2613 {
2614 inquote = FALSE;
2615 start_in_quotes = FALSE;
2616 }
2617 break;
2618
2619 case '"':
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002620 // a quote that is preceded with an odd number of backslashes is
2621 // ignored
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622 if (do_quotes)
2623 {
2624 int col;
2625
2626 for (col = pos.col - 1; col >= 0; --col)
2627 if (linep[col] != '\\')
2628 break;
2629 if ((((int)pos.col - 1 - col) & 1) == 0)
2630 {
2631 inquote = !inquote;
2632 start_in_quotes = FALSE;
2633 }
2634 }
2635 break;
2636
2637 /*
2638 * If smart matching ('cpoptions' does not contain '%'):
2639 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2640 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2641 * skipped, there is never a brace in them.
2642 * Ignore this when finding matches for `'.
2643 */
2644 case '\'':
2645 if (!cpo_match && initc != '\'' && findc != '\'')
2646 {
2647 if (backwards)
2648 {
2649 if (pos.col > 1)
2650 {
2651 if (linep[pos.col - 2] == '\'')
2652 {
2653 pos.col -= 2;
2654 break;
2655 }
Dominique Pelle7765f5c2022-04-10 11:26:53 +01002656 else if (linep[pos.col - 2] == '\\'
2657 && pos.col > 2 && linep[pos.col - 3] == '\'')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 {
2659 pos.col -= 3;
2660 break;
2661 }
2662 }
2663 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002664 else if (linep[pos.col + 1]) // forward search
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 {
Dominique Pelle7765f5c2022-04-10 11:26:53 +01002666 if (linep[pos.col + 1] == '\\'
2667 && linep[pos.col + 2] && linep[pos.col + 3] == '\'')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 {
2669 pos.col += 3;
2670 break;
2671 }
2672 else if (linep[pos.col + 2] == '\'')
2673 {
2674 pos.col += 2;
2675 break;
2676 }
2677 }
2678 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002679 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680
2681 default:
2682#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002683 /*
2684 * For Lisp skip over backslashed (), {} and [].
2685 * (actually, we skip #\( et al)
2686 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 if (curbuf->b_p_lisp
2688 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002689 && pos.col > 1
2690 && check_prevcol(linep, pos.col, '\\', NULL)
2691 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 break;
2693#endif
2694
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002695 // Check for match outside of quotes, and inside of
2696 // quotes when the start is also inside of quotes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697 if ((!inquote || start_in_quotes == TRUE)
2698 && (c == initc || c == findc))
2699 {
2700 int col, bslcnt = 0;
2701
2702 if (!cpo_bsl)
2703 {
2704 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2705 bslcnt++;
2706 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002707 // Only accept a match when 'M' is in 'cpo' or when escaping
2708 // is what we expect.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2710 {
2711 if (c == initc)
2712 count++;
2713 else
2714 {
2715 if (count == 0)
2716 return &pos;
2717 count--;
2718 }
2719 }
2720 }
2721 }
2722 }
2723
2724 if (comment_dir == BACKWARD && count > 0)
2725 {
2726 pos = match_pos;
2727 return &pos;
2728 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002729 return (pos_T *)NULL; // never found it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730}
2731
2732/*
2733 * Check if line[] contains a / / comment.
2734 * Return MAXCOL if not, otherwise return the column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735 */
Bram Moolenaar6e371ec2021-12-12 14:16:39 +00002736 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002737check_linecomment(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738{
2739 char_u *p;
2740
2741 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002742#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002743 // skip Lispish one-line comments
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002744 if (curbuf->b_p_lisp)
2745 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002746 if (vim_strchr(p, ';') != NULL) // there may be comments
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002747 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002748 int in_str = FALSE; // inside of string
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002749
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002750 p = line; // scan from start
Bram Moolenaar520470a2005-06-16 21:59:56 +00002751 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002752 {
2753 if (*p == '"')
2754 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002755 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002756 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002757 if (*(p - 1) != '\\') // skip escaped quote
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002758 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002759 }
2760 else if (p == line || ((p - line) >= 2
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002761 // skip #\" form
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002762 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002763 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002764 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002765 else if (!in_str && ((p - line) < 2
Bram Moolenaarba263672021-12-29 18:09:13 +00002766 || (*(p - 1) != '\\' && *(p - 2) != '#'))
2767 && !is_pos_in_string(line, (colnr_T)(p - line)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002768 break; // found!
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002769 ++p;
2770 }
2771 }
2772 else
2773 p = NULL;
2774 }
2775 else
2776#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 while ((p = vim_strchr(p, '/')) != NULL)
2778 {
Bram Moolenaarba263672021-12-29 18:09:13 +00002779 // Accept a double /, unless it's preceded with * and followed by *,
2780 // because * / / * is an end and start of a C comment.
2781 // Only accept the position if it is not inside a string.
2782 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*')
2783 && !is_pos_in_string(line, (colnr_T)(p - line)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 break;
2785 ++p;
2786 }
2787
2788 if (p == NULL)
2789 return MAXCOL;
2790 return (int)(p - line);
2791}
2792
2793/*
2794 * Move cursor briefly to character matching the one under the cursor.
2795 * Used for Insert mode and "r" command.
2796 * Show the match only if it is visible on the screen.
2797 * If there isn't a match, then beep.
2798 */
2799 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002800showmatch(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002801 int c) // char to show match for
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802{
2803 pos_T *lpos, save_cursor;
2804 pos_T mpos;
2805 colnr_T vcol;
2806 long save_so;
2807 long save_siso;
2808#ifdef CURSOR_SHAPE
2809 int save_state;
2810#endif
2811 colnr_T save_dollar_vcol;
2812 char_u *p;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002813 long *so = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so;
2814 long *siso = curwin->w_p_siso >= 0 ? &curwin->w_p_siso : &p_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815
2816 /*
2817 * Only show match for chars in the 'matchpairs' option.
2818 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002819 // 'matchpairs' is "x:y,x:y"
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002820 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 {
2822#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002823 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002824 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002825#endif
Bram Moolenaar1614a142019-10-06 22:00:13 +02002826 p += mb_ptr2len(p) + 1;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002827 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828#ifdef FEAT_RIGHTLEFT
2829 && !(curwin->w_p_rl ^ p_ri)
2830#endif
2831 )
2832 break;
Bram Moolenaar1614a142019-10-06 22:00:13 +02002833 p += mb_ptr2len(p);
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002834 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 return;
2836 }
Bram Moolenaar5b8cabf2021-04-02 18:55:57 +02002837 if (*p == NUL)
2838 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002840 if ((lpos = findmatch(NULL, NUL)) == NULL) // no match, so beep
Bram Moolenaar165bc692015-07-21 17:53:25 +02002841 vim_beep(BO_MATCH);
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002842 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 {
2844 if (!curwin->w_p_wrap)
2845 getvcol(curwin, lpos, NULL, &vcol, NULL);
2846 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
Bram Moolenaar02631462017-09-22 15:20:32 +02002847 && vcol < curwin->w_leftcol + curwin->w_width))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002849 mpos = *lpos; // save the pos, update_screen() may change it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 save_cursor = curwin->w_cursor;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002851 save_so = *so;
2852 save_siso = *siso;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002853 // Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2854 // stop displaying the "$".
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002855 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2856 dollar_vcol = -1;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002857 ++curwin->w_virtcol; // do display ')' just before "$"
2858 update_screen(VALID); // show the new char first
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859
2860 save_dollar_vcol = dollar_vcol;
2861#ifdef CURSOR_SHAPE
2862 save_state = State;
2863 State = SHOWMATCH;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002864 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002866 curwin->w_cursor = mpos; // move to matching char
2867 *so = 0; // don't use 'scrolloff' here
2868 *siso = 0; // don't use 'sidescrolloff' here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 showruler(FALSE);
2870 setcursor();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002871 cursor_on(); // make sure that the cursor is shown
Bram Moolenaara338adc2018-01-31 20:51:47 +01002872 out_flush_cursor(TRUE, FALSE);
2873
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002874 // Restore dollar_vcol(), because setcursor() may call curs_rows()
2875 // which resets it if the matching position is in a previous line
2876 // and has a higher column number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 dollar_vcol = save_dollar_vcol;
2878
2879 /*
2880 * brief pause, unless 'm' is present in 'cpo' and a character is
2881 * available.
2882 */
2883 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
Bram Moolenaareda1da02019-11-17 17:06:33 +01002884 ui_delay(p_mat * 100L + 8, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 else if (!char_avail())
Bram Moolenaareda1da02019-11-17 17:06:33 +01002886 ui_delay(p_mat * 100L + 9, FALSE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002887 curwin->w_cursor = save_cursor; // restore cursor position
Bram Moolenaar375e3392019-01-31 18:26:10 +01002888 *so = save_so;
2889 *siso = save_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890#ifdef CURSOR_SHAPE
2891 State = save_state;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002892 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893#endif
2894 }
2895 }
2896}
2897
2898/*
Bram Moolenaar453c1922019-10-26 14:42:09 +02002899 * Check if the pattern is zero-width.
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002900 * If move is TRUE, check from the beginning of the buffer, else from position
2901 * "cur".
2902 * "direction" is FORWARD or BACKWARD.
2903 * Returns TRUE, FALSE or -1 for failure.
2904 */
2905 static int
2906is_zero_width(char_u *pattern, int move, pos_T *cur, int direction)
2907{
2908 regmmatch_T regmatch;
2909 int nmatched = 0;
2910 int result = -1;
2911 pos_T pos;
Bram Moolenaar53989552019-12-23 22:59:18 +01002912 int called_emsg_before = called_emsg;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002913 int flag = 0;
2914
2915 if (pattern == NULL)
2916 pattern = spats[last_idx].pat;
2917
2918 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
2919 SEARCH_KEEP, &regmatch) == FAIL)
2920 return -1;
2921
2922 // init startcol correctly
2923 regmatch.startpos[0].col = -1;
2924 // move to match
2925 if (move)
2926 {
2927 CLEAR_POS(&pos);
2928 }
2929 else
2930 {
2931 pos = *cur;
2932 // accept a match at the cursor position
2933 flag = SEARCH_START;
2934 }
2935
2936 if (searchit(curwin, curbuf, &pos, NULL, direction, pattern, 1,
2937 SEARCH_KEEP + flag, RE_SEARCH, NULL) != FAIL)
2938 {
2939 // Zero-width pattern should match somewhere, then we can check if
2940 // start and end are in the same position.
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002941 do
2942 {
2943 regmatch.startpos[0].col++;
2944 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
2945 pos.lnum, regmatch.startpos[0].col, NULL, NULL);
2946 if (nmatched != 0)
2947 break;
Bram Moolenaar795aaa12020-10-02 20:36:01 +02002948 } while (regmatch.regprog != NULL
2949 && direction == FORWARD ? regmatch.startpos[0].col < pos.col
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002950 : regmatch.startpos[0].col > pos.col);
2951
Bram Moolenaar53989552019-12-23 22:59:18 +01002952 if (called_emsg == called_emsg_before)
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002953 {
2954 result = (nmatched != 0
2955 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
2956 && regmatch.startpos[0].col == regmatch.endpos[0].col);
2957 }
2958 }
2959
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002960 vim_regfree(regmatch.regprog);
2961 return result;
2962}
2963
Bram Moolenaardde0efe2012-08-23 15:53:05 +02002964
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002965/*
2966 * Find next search match under cursor, cursor at end.
2967 * Used while an operator is pending, and in Visual mode.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002968 */
2969 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002970current_search(
2971 long count,
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002972 int forward) // TRUE for forward, FALSE for backward
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002973{
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002974 pos_T start_pos; // start position of the pattern match
2975 pos_T end_pos; // end position of the pattern match
2976 pos_T orig_pos; // position of the cursor at beginning
2977 pos_T pos; // position after the pattern
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002978 int i;
2979 int dir;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002980 int result; // result of various function calls
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002981 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002982 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02002983 pos_T save_VIsual = VIsual;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002984 int zero_width;
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02002985 int skip_first_backward;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002986
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002987 // Correct cursor when 'selection' is exclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002988 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002989 dec_cursor();
2990
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02002991 // When searching forward and the cursor is at the start of the Visual
2992 // area, skip the first search backward, otherwise it doesn't move.
2993 skip_first_backward = forward && VIsual_active
2994 && LT_POS(curwin->w_cursor, VIsual);
2995
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002996 orig_pos = pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002997 if (VIsual_active)
2998 {
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002999 if (forward)
3000 incl(&pos);
3001 else
3002 decl(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003003 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003004
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003005 // Is the pattern is zero-width?, this time, don't care about the direction
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02003006 zero_width = is_zero_width(spats[last_idx].pat, TRUE, &curwin->w_cursor,
Bram Moolenaar22ab5472017-09-26 12:28:45 +02003007 FORWARD);
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02003008 if (zero_width == -1)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003009 return FAIL; // pattern not found
Bram Moolenaarba6ba362012-08-08 15:27:57 +02003010
Bram Moolenaarba6ba362012-08-08 15:27:57 +02003011 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003012 * The trick is to first search backwards and then search forward again,
3013 * so that a match at the current cursor position will be correctly
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003014 * captured. When "forward" is false do it the other way around.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003015 */
3016 for (i = 0; i < 2; i++)
3017 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003018 if (forward)
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003019 {
3020 if (i == 0 && skip_first_backward)
3021 continue;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003022 dir = i;
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003023 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003024 else
3025 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02003026
3027 flags = 0;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02003028 if (!dir && !zero_width)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02003029 flags = SEARCH_END;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003030 end_pos = pos;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02003031
Bram Moolenaar82cf7f62019-11-02 23:22:47 +01003032 // wrapping should not occur in the first round
3033 if (i == 0)
3034 p_ws = FALSE;
3035
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003036 result = searchit(curwin, curbuf, &pos, &end_pos,
3037 (dir ? FORWARD : BACKWARD),
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003038 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02003039 SEARCH_KEEP | flags, RE_SEARCH, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003040
Bram Moolenaar82cf7f62019-11-02 23:22:47 +01003041 p_ws = old_p_ws;
3042
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003043 // First search may fail, but then start searching from the
3044 // beginning of the file (cursor might be on the search match)
3045 // except when Visual mode is active, so that extending the visual
3046 // selection works.
3047 if (i == 1 && !result) // not found, abort
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003048 {
3049 curwin->w_cursor = orig_pos;
3050 if (VIsual_active)
3051 VIsual = save_VIsual;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003052 return FAIL;
3053 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003054 else if (i == 0 && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003055 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003056 if (forward)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003057 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003058 // try again from start of buffer
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003059 CLEAR_POS(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003060 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003061 else
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003062 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003063 // try again from end of buffer
3064 // searching backwards, so set pos to last line and col
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003065 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02003066 pos.col = (colnr_T)STRLEN(
3067 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003068 }
3069 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003070 }
3071
3072 start_pos = pos;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003073
3074 if (!VIsual_active)
3075 VIsual = start_pos;
3076
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003077 // put the cursor after the match
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003078 curwin->w_cursor = end_pos;
Bram Moolenaar453c1922019-10-26 14:42:09 +02003079 if (LT_POS(VIsual, end_pos) && forward)
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003080 {
3081 if (skip_first_backward)
3082 // put the cursor on the start of the match
3083 curwin->w_cursor = pos;
3084 else
3085 // put the cursor on last character of match
3086 dec_cursor();
3087 }
Bram Moolenaar28f224b2020-10-10 16:45:25 +02003088 else if (VIsual_active && LT_POS(curwin->w_cursor, VIsual) && forward)
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02003089 curwin->w_cursor = pos; // put the cursor on the start of the match
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003090 VIsual_active = TRUE;
3091 VIsual_mode = 'v';
3092
Bram Moolenaarb7633612019-02-10 21:48:25 +01003093 if (*p_sel == 'e')
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003094 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003095 // Correction for exclusive selection depends on the direction.
Bram Moolenaarb7633612019-02-10 21:48:25 +01003096 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor))
3097 inc_cursor();
3098 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual))
3099 inc(&VIsual);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003100 }
3101
3102#ifdef FEAT_FOLDING
3103 if (fdo_flags & FDO_SEARCH && KeyTyped)
3104 foldOpenCursor();
3105#endif
3106
3107 may_start_select('c');
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003108 setmouse();
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003109#ifdef FEAT_CLIPBOARD
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003110 // Make sure the clipboard gets updated. Needed because start and
3111 // end are still the same, and the selection needs to be owned
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003112 clip_star.vmode = NUL;
3113#endif
3114 redraw_curbuf_later(INVERTED);
3115 showmode();
3116
3117 return OK;
3118}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02003119
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
3121 || defined(PROTO)
3122/*
3123 * return TRUE if line 'lnum' is empty or has white chars only.
3124 */
3125 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003126linewhite(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127{
3128 char_u *p;
3129
3130 p = skipwhite(ml_get(lnum));
3131 return (*p == NUL);
3132}
3133#endif
3134
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003135/*
3136 * Add the search count "[3/19]" to "msgbuf".
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003137 * See update_search_stat() for other arguments.
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003138 */
3139 static void
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003140cmdline_search_stat(
3141 int dirc,
3142 pos_T *pos,
3143 pos_T *cursor_pos,
3144 int show_top_bot_msg,
3145 char_u *msgbuf,
3146 int recompute,
3147 int maxcount,
3148 long timeout)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003149{
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003150 searchstat_T stat;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003151
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003152 update_search_stat(dirc, pos, cursor_pos, &stat, recompute, maxcount,
3153 timeout);
3154 if (stat.cur > 0)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003155 {
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003156 char t[SEARCH_STAT_BUF_LEN];
Bram Moolenaare2ad8262019-05-24 13:22:22 +02003157 size_t len;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003158
3159#ifdef FEAT_RIGHTLEFT
3160 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
3161 {
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003162 if (stat.incomplete == 1)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02003163 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[?/??]");
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003164 else if (stat.cnt > maxcount && stat.cur > maxcount)
3165 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>%d/>%d]",
3166 maxcount, maxcount);
3167 else if (stat.cnt > maxcount)
3168 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>%d/%d]",
3169 maxcount, stat.cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003170 else
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003171 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/%d]",
3172 stat.cnt, stat.cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003173 }
3174 else
3175#endif
3176 {
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003177 if (stat.incomplete == 1)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02003178 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[?/??]");
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003179 else if (stat.cnt > maxcount && stat.cur > maxcount)
3180 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>%d/>%d]",
3181 maxcount, maxcount);
3182 else if (stat.cnt > maxcount)
3183 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/>%d]",
3184 stat.cur, maxcount);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003185 else
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003186 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/%d]",
3187 stat.cur, stat.cnt);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003188 }
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02003189
3190 len = STRLEN(t);
Bram Moolenaardc6855a2019-05-18 19:26:29 +02003191 if (show_top_bot_msg && len + 2 < SEARCH_STAT_BUF_LEN)
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02003192 {
Bram Moolenaar16b58ae2019-09-06 20:40:21 +02003193 mch_memmove(t + 2, t, len);
3194 t[0] = 'W';
3195 t[1] = ' ';
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02003196 len += 2;
3197 }
3198
3199 mch_memmove(msgbuf + STRLEN(msgbuf) - len, t, len);
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003200 if (dirc == '?' && stat.cur == maxcount + 1)
3201 stat.cur = -1;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003202
Bram Moolenaar984f0312019-05-24 13:11:47 +02003203 // keep the message even after redraw, but don't put in history
3204 msg_hist_off = TRUE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003205 give_warning(msgbuf, FALSE);
Bram Moolenaar984f0312019-05-24 13:11:47 +02003206 msg_hist_off = FALSE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003207 }
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003208}
3209
3210/*
3211 * Add the search count information to "stat".
3212 * "stat" must not be NULL.
3213 * When "recompute" is TRUE always recompute the numbers.
3214 * dirc == 0: don't find the next/previous match (only set the result to "stat")
3215 * dirc == '/': find the next match
3216 * dirc == '?': find the previous match
3217 */
3218 static void
3219update_search_stat(
3220 int dirc,
3221 pos_T *pos,
3222 pos_T *cursor_pos,
3223 searchstat_T *stat,
3224 int recompute,
3225 int maxcount,
Bram Moolenaarf9ca08e2020-06-01 18:56:03 +02003226 long timeout UNUSED)
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003227{
3228 int save_ws = p_ws;
3229 int wraparound = FALSE;
3230 pos_T p = (*pos);
Bram Moolenaar14681622020-06-03 22:57:39 +02003231 static pos_T lastpos = {0, 0, 0};
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003232 static int cur = 0;
3233 static int cnt = 0;
3234 static int exact_match = FALSE;
3235 static int incomplete = 0;
3236 static int last_maxcount = SEARCH_STAT_DEF_MAX_COUNT;
3237 static int chgtick = 0;
3238 static char_u *lastpat = NULL;
3239 static buf_T *lbuf = NULL;
3240#ifdef FEAT_RELTIME
3241 proftime_T start;
3242#endif
3243
3244 vim_memset(stat, 0, sizeof(searchstat_T));
3245
3246 if (dirc == 0 && !recompute && !EMPTY_POS(lastpos))
3247 {
3248 stat->cur = cur;
3249 stat->cnt = cnt;
3250 stat->exact_match = exact_match;
3251 stat->incomplete = incomplete;
3252 stat->last_maxcount = last_maxcount;
3253 return;
3254 }
3255 last_maxcount = maxcount;
3256
3257 wraparound = ((dirc == '?' && LT_POS(lastpos, p))
3258 || (dirc == '/' && LT_POS(p, lastpos)));
3259
3260 // If anything relevant changed the count has to be recomputed.
3261 // MB_STRNICMP ignores case, but we should not ignore case.
3262 // Unfortunately, there is no MB_STRNICMP function.
3263 // XXX: above comment should be "no MB_STRCMP function" ?
3264 if (!(chgtick == CHANGEDTICK(curbuf)
3265 && MB_STRNICMP(lastpat, spats[last_idx].pat, STRLEN(lastpat)) == 0
3266 && STRLEN(lastpat) == STRLEN(spats[last_idx].pat)
3267 && EQUAL_POS(lastpos, *cursor_pos)
3268 && lbuf == curbuf) || wraparound || cur < 0
3269 || (maxcount > 0 && cur > maxcount) || recompute)
3270 {
3271 cur = 0;
3272 cnt = 0;
3273 exact_match = FALSE;
3274 incomplete = 0;
3275 CLEAR_POS(&lastpos);
3276 lbuf = curbuf;
3277 }
3278
3279 if (EQUAL_POS(lastpos, *cursor_pos) && !wraparound
3280 && (dirc == 0 || dirc == '/' ? cur < cnt : cur > 0))
3281 cur += dirc == 0 ? 0 : dirc == '/' ? 1 : -1;
3282 else
3283 {
3284 int done_search = FALSE;
3285 pos_T endpos = {0, 0, 0};
3286
3287 p_ws = FALSE;
3288#ifdef FEAT_RELTIME
3289 if (timeout > 0)
3290 profile_setlimit(timeout, &start);
3291#endif
3292 while (!got_int && searchit(curwin, curbuf, &lastpos, &endpos,
3293 FORWARD, NULL, 1, SEARCH_KEEP, RE_LAST, NULL) != FAIL)
3294 {
3295 done_search = TRUE;
3296#ifdef FEAT_RELTIME
3297 // Stop after passing the time limit.
3298 if (timeout > 0 && profile_passed_limit(&start))
3299 {
3300 incomplete = 1;
3301 break;
3302 }
3303#endif
3304 cnt++;
3305 if (LTOREQ_POS(lastpos, p))
3306 {
3307 cur = cnt;
Bram Moolenaar57f75a52020-06-02 22:06:21 +02003308 if (LT_POS(p, endpos))
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003309 exact_match = TRUE;
3310 }
3311 fast_breakcheck();
3312 if (maxcount > 0 && cnt > maxcount)
3313 {
3314 incomplete = 2; // max count exceeded
3315 break;
3316 }
3317 }
3318 if (got_int)
3319 cur = -1; // abort
3320 if (done_search)
3321 {
3322 vim_free(lastpat);
3323 lastpat = vim_strsave(spats[last_idx].pat);
3324 chgtick = CHANGEDTICK(curbuf);
3325 lbuf = curbuf;
3326 lastpos = p;
3327 }
3328 }
3329 stat->cur = cur;
3330 stat->cnt = cnt;
3331 stat->exact_match = exact_match;
3332 stat->incomplete = incomplete;
3333 stat->last_maxcount = last_maxcount;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003334 p_ws = save_ws;
3335}
3336
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337#if defined(FEAT_FIND_ID) || defined(PROTO)
3338/*
3339 * Find identifiers or defines in included files.
Yegappan Lakshmanand94fbfc2022-01-04 17:01:44 +00003340 * If p_ic && compl_status_sol() then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003343find_pattern_in_path(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003344 char_u *ptr, // pointer to search pattern
3345 int dir UNUSED, // direction of expansion
3346 int len, // length of search pattern
3347 int whole, // match whole words only
3348 int skip_comments, // don't match inside comments
3349 int type, // Type of search; are we looking for a type?
3350 // a macro?
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003351 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003352 int action, // What to do when we find it
3353 linenr_T start_lnum, // first line to start searching
3354 linenr_T end_lnum) // last line for searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003356 SearchedFile *files; // Stack of included files
3357 SearchedFile *bigger; // When we need more space
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358 int max_path_depth = 50;
3359 long match_count = 1;
3360
3361 char_u *pat;
3362 char_u *new_fname;
3363 char_u *curr_fname = curbuf->b_fname;
3364 char_u *prev_fname = NULL;
3365 linenr_T lnum;
3366 int depth;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003367 int depth_displayed; // For type==CHECK_PATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368 int old_files;
3369 int already_searched;
3370 char_u *file_line;
3371 char_u *line;
3372 char_u *p;
3373 char_u save_char;
3374 int define_matched;
3375 regmatch_T regmatch;
3376 regmatch_T incl_regmatch;
3377 regmatch_T def_regmatch;
3378 int matched = FALSE;
3379 int did_show = FALSE;
3380 int found = FALSE;
3381 int i;
3382 char_u *already = NULL;
3383 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003384 char_u *inc_opt = NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02003385#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386 win_T *curwin_save = NULL;
3387#endif
3388
3389 regmatch.regprog = NULL;
3390 incl_regmatch.regprog = NULL;
3391 def_regmatch.regprog = NULL;
3392
3393 file_line = alloc(LSIZE);
3394 if (file_line == NULL)
3395 return;
3396
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 if (type != CHECK_PATH && type != FIND_DEFINE
Yegappan Lakshmanand94fbfc2022-01-04 17:01:44 +00003398 // when CONT_SOL is set compare "ptr" with the beginning of the
3399 // line is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo
3400 && !compl_status_sol())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 {
3402 pat = alloc(len + 5);
3403 if (pat == NULL)
3404 goto fpip_end;
3405 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003406 // ignore case according to p_ic, p_scs and pat
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 regmatch.rm_ic = ignorecase(pat);
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003408 regmatch.regprog = vim_regcomp(pat, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 vim_free(pat);
3410 if (regmatch.regprog == NULL)
3411 goto fpip_end;
3412 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003413 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
3414 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 {
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003416 incl_regmatch.regprog = vim_regcomp(inc_opt,
3417 magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 if (incl_regmatch.regprog == NULL)
3419 goto fpip_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003420 incl_regmatch.rm_ic = FALSE; // don't ignore case in incl. pat.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 }
3422 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
3423 {
3424 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003425 ? p_def : curbuf->b_p_def,
3426 magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427 if (def_regmatch.regprog == NULL)
3428 goto fpip_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003429 def_regmatch.rm_ic = FALSE; // don't ignore case in define pat.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003431 files = lalloc_clear(max_path_depth * sizeof(SearchedFile), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 if (files == NULL)
3433 goto fpip_end;
3434 old_files = max_path_depth;
3435 depth = depth_displayed = -1;
3436
3437 lnum = start_lnum;
3438 if (end_lnum > curbuf->b_ml.ml_line_count)
3439 end_lnum = curbuf->b_ml.ml_line_count;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003440 if (lnum > end_lnum) // do at least one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 lnum = end_lnum;
3442 line = ml_get(lnum);
3443
3444 for (;;)
3445 {
3446 if (incl_regmatch.regprog != NULL
3447 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
3448 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003449 char_u *p_fname = (curr_fname == curbuf->b_fname)
3450 ? curbuf->b_ffname : curr_fname;
3451
3452 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003453 // Use text from '\zs' to '\ze' (or end) of 'include'.
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003454 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02003455 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003456 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
3457 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003458 // Use text after match with 'include'.
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003459 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003460 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 already_searched = FALSE;
3462 if (new_fname != NULL)
3463 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003464 // Check whether we have already searched in this file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 for (i = 0;; i++)
3466 {
3467 if (i == depth + 1)
3468 i = old_files;
3469 if (i == max_path_depth)
3470 break;
Bram Moolenaar99499b12019-05-23 21:35:48 +02003471 if (fullpathcmp(new_fname, files[i].name, TRUE, TRUE)
3472 & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473 {
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003474 if (type != CHECK_PATH
3475 && action == ACTION_SHOW_ALL
3476 && files[i].matched)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003478 msg_putchar('\n'); // cursor below last one
3479 if (!got_int) // don't display if 'q'
3480 // typed at "--more--"
3481 // message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 {
3483 msg_home_replace_hl(new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003484 msg_puts(_(" (includes previously listed match)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 prev_fname = NULL;
3486 }
3487 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01003488 VIM_CLEAR(new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 already_searched = TRUE;
3490 break;
3491 }
3492 }
3493 }
3494
3495 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
3496 || (new_fname == NULL && !already_searched)))
3497 {
3498 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003499 msg_putchar('\n'); // cursor below last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 else
3501 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003502 gotocmdline(TRUE); // cursor at status line
Bram Moolenaar32526b32019-01-19 17:43:09 +01003503 msg_puts_title(_("--- Included files "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003505 msg_puts_title(_("not found "));
3506 msg_puts_title(_("in path ---\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 }
3508 did_show = TRUE;
3509 while (depth_displayed < depth && !got_int)
3510 {
3511 ++depth_displayed;
3512 for (i = 0; i < depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003513 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514 msg_home_replace(files[depth_displayed].name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003515 msg_puts(" -->\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003517 if (!got_int) // don't display if 'q' typed
3518 // for "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519 {
3520 for (i = 0; i <= depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003521 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522 if (new_fname != NULL)
3523 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003524 // using "new_fname" is more reliable, e.g., when
3525 // 'includeexpr' is set.
Bram Moolenaar8820b482017-03-16 17:23:31 +01003526 msg_outtrans_attr(new_fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527 }
3528 else
3529 {
3530 /*
3531 * Isolate the file name.
3532 * Include the surrounding "" or <> if present.
3533 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003534 if (inc_opt != NULL
3535 && strstr((char *)inc_opt, "\\zs") != NULL)
3536 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003537 // pattern contains \zs, use the match
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003538 p = incl_regmatch.startp[0];
3539 i = (int)(incl_regmatch.endp[0]
3540 - incl_regmatch.startp[0]);
3541 }
3542 else
3543 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003544 // find the file name after the end of the match
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003545 for (p = incl_regmatch.endp[0];
3546 *p && !vim_isfilec(*p); p++)
3547 ;
3548 for (i = 0; vim_isfilec(p[i]); i++)
3549 ;
3550 }
3551
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 if (i == 0)
3553 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003554 // Nothing found, use the rest of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003556 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003558 // Avoid checking before the start of the line, can
3559 // happen if \zs appears in the regexp.
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003560 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 {
3562 if (p[-1] == '"' || p[-1] == '<')
3563 {
3564 --p;
3565 ++i;
3566 }
3567 if (p[i] == '"' || p[i] == '>')
3568 ++i;
3569 }
3570 save_char = p[i];
3571 p[i] = NUL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01003572 msg_outtrans_attr(p, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 p[i] = save_char;
3574 }
3575
3576 if (new_fname == NULL && action == ACTION_SHOW_ALL)
3577 {
3578 if (already_searched)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003579 msg_puts(_(" (Already listed)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01003581 msg_puts(_(" NOT FOUND"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 }
3583 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003584 out_flush(); // output each line directly
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585 }
3586
3587 if (new_fname != NULL)
3588 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003589 // Push the new file onto the file stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 if (depth + 1 == old_files)
3591 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003592 bigger = ALLOC_MULT(SearchedFile, max_path_depth * 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 if (bigger != NULL)
3594 {
3595 for (i = 0; i <= depth; i++)
3596 bigger[i] = files[i];
3597 for (i = depth + 1; i < old_files + max_path_depth; i++)
3598 {
3599 bigger[i].fp = NULL;
3600 bigger[i].name = NULL;
3601 bigger[i].lnum = 0;
3602 bigger[i].matched = FALSE;
3603 }
3604 for (i = old_files; i < max_path_depth; i++)
3605 bigger[i + max_path_depth] = files[i];
3606 old_files += max_path_depth;
3607 max_path_depth *= 2;
3608 vim_free(files);
3609 files = bigger;
3610 }
3611 }
3612 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
3613 == NULL)
3614 vim_free(new_fname);
3615 else
3616 {
3617 if (++depth == old_files)
3618 {
3619 /*
3620 * lalloc() for 'bigger' must have failed above. We
3621 * will forget one of our already visited files now.
3622 */
3623 vim_free(files[old_files].name);
3624 ++old_files;
3625 }
3626 files[depth].name = curr_fname = new_fname;
3627 files[depth].lnum = 0;
3628 files[depth].matched = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 if (action == ACTION_EXPAND)
3630 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003631 msg_hist_off = TRUE; // reset in msg_trunc_attr()
Bram Moolenaar555b2802005-05-19 21:08:39 +00003632 vim_snprintf((char*)IObuff, IOSIZE,
3633 _("Scanning included file: %s"),
3634 (char *)new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003635 msg_trunc_attr((char *)IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003637 else if (p_verbose >= 5)
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00003638 {
3639 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003640 smsg(_("Searching included file %s"),
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00003641 (char *)new_fname);
3642 verbose_leave();
3643 }
3644
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645 }
3646 }
3647 }
3648 else
3649 {
3650 /*
3651 * Check if the line is a define (type == FIND_DEFINE)
3652 */
3653 p = line;
3654search_line:
3655 define_matched = FALSE;
3656 if (def_regmatch.regprog != NULL
3657 && vim_regexec(&def_regmatch, line, (colnr_T)0))
3658 {
3659 /*
3660 * Pattern must be first identifier after 'define', so skip
3661 * to that position before checking for match of pattern. Also
3662 * don't let it match beyond the end of this identifier.
3663 */
3664 p = def_regmatch.endp[0];
3665 while (*p && !vim_iswordc(*p))
3666 p++;
3667 define_matched = TRUE;
3668 }
3669
3670 /*
3671 * Look for a match. Don't do this if we are looking for a
3672 * define and this line didn't match define_prog above.
3673 */
3674 if (def_regmatch.regprog == NULL || define_matched)
3675 {
Yegappan Lakshmanand94fbfc2022-01-04 17:01:44 +00003676 if (define_matched || compl_status_sol())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003678 // compare the first "len" chars from "ptr"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 startp = skipwhite(p);
3680 if (p_ic)
3681 matched = !MB_STRNICMP(startp, ptr, len);
3682 else
3683 matched = !STRNCMP(startp, ptr, len);
3684 if (matched && define_matched && whole
3685 && vim_iswordc(startp[len]))
3686 matched = FALSE;
3687 }
3688 else if (regmatch.regprog != NULL
3689 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
3690 {
3691 matched = TRUE;
3692 startp = regmatch.startp[0];
3693 /*
3694 * Check if the line is not a comment line (unless we are
3695 * looking for a define). A line starting with "# define"
3696 * is not considered to be a comment line.
3697 */
3698 if (!define_matched && skip_comments)
3699 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 if ((*line != '#' ||
3701 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02003702 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 matched = FALSE;
3704
3705 /*
3706 * Also check for a "/ *" or "/ /" before the match.
3707 * Skips lines like "int backwards; / * normal index
3708 * * /" when looking for "normal".
3709 * Note: Doesn't skip "/ *" in comments.
3710 */
3711 p = skipwhite(line);
3712 if (matched
3713 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714 for (p = line; *p && p < startp; ++p)
3715 {
3716 if (matched
3717 && p[0] == '/'
3718 && (p[1] == '*' || p[1] == '/'))
3719 {
3720 matched = FALSE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003721 // After "//" all text is comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 if (p[1] == '/')
3723 break;
3724 ++p;
3725 }
3726 else if (!matched && p[0] == '*' && p[1] == '/')
3727 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003728 // Can find match after "* /".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 matched = TRUE;
3730 ++p;
3731 }
3732 }
3733 }
3734 }
3735 }
3736 }
3737 if (matched)
3738 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 if (action == ACTION_EXPAND)
3740 {
Bram Moolenaard9eefe32019-04-06 14:22:21 +02003741 int cont_s_ipos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 int add_r;
3743 char_u *aux;
3744
3745 if (depth == -1 && lnum == curwin->w_cursor.lnum)
3746 break;
3747 found = TRUE;
3748 aux = p = startp;
Yegappan Lakshmanand94fbfc2022-01-04 17:01:44 +00003749 if (compl_status_adding())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 {
Yegappan Lakshmanand94fbfc2022-01-04 17:01:44 +00003751 p += ins_compl_len();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 if (vim_iswordp(p))
3753 goto exit_matched;
3754 p = find_word_start(p);
3755 }
3756 p = find_word_end(p);
3757 i = (int)(p - aux);
3758
Yegappan Lakshmanand94fbfc2022-01-04 17:01:44 +00003759 if (compl_status_adding() && i == ins_compl_len())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003761 // IOSIZE > compl_length, so the STRNCPY works
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00003763
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003764 // Get the next line: when "depth" < 0 from the current
3765 // buffer, otherwise from the included file. Jump to
3766 // exit_matched when past the last line.
Bram Moolenaar89d40322006-08-29 15:30:07 +00003767 if (depth < 0)
3768 {
3769 if (lnum >= end_lnum)
3770 goto exit_matched;
3771 line = ml_get(++lnum);
3772 }
3773 else if (vim_fgets(line = file_line,
3774 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 goto exit_matched;
3776
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003777 // we read a line, set "already" to check this "line" later
3778 // if depth >= 0 we'll increase files[depth].lnum far
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01003779 // below -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 already = aux = p = skipwhite(line);
3781 p = find_word_start(p);
3782 p = find_word_end(p);
3783 if (p > aux)
3784 {
3785 if (*aux != ')' && IObuff[i-1] != TAB)
3786 {
3787 if (IObuff[i-1] != ' ')
3788 IObuff[i++] = ' ';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003789 // IObuf =~ "\(\k\|\i\).* ", thus i >= 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 if (p_js
3791 && (IObuff[i-2] == '.'
3792 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
3793 && (IObuff[i-2] == '?'
3794 || IObuff[i-2] == '!'))))
3795 IObuff[i++] = ' ';
3796 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003797 // copy as much as possible of the new word
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 if (p - aux >= IOSIZE - i)
3799 p = aux + IOSIZE - i - 1;
3800 STRNCPY(IObuff + i, aux, p - aux);
3801 i += (int)(p - aux);
Bram Moolenaard9eefe32019-04-06 14:22:21 +02003802 cont_s_ipos = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803 }
3804 IObuff[i] = NUL;
3805 aux = IObuff;
3806
Yegappan Lakshmanand94fbfc2022-01-04 17:01:44 +00003807 if (i == ins_compl_len())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 goto exit_matched;
3809 }
3810
Bram Moolenaare8c3a142006-08-29 14:30:35 +00003811 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 curr_fname == curbuf->b_fname ? NULL : curr_fname,
Bram Moolenaard9eefe32019-04-06 14:22:21 +02003813 dir, cont_s_ipos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 if (add_r == OK)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003815 // if dir was BACKWARD then honor it just once
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00003817 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818 break;
3819 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003820 else if (action == ACTION_SHOW_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821 {
3822 found = TRUE;
3823 if (!did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003824 gotocmdline(TRUE); // cursor at status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 if (curr_fname != prev_fname)
3826 {
3827 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003828 msg_putchar('\n'); // cursor below last one
3829 if (!got_int) // don't display if 'q' typed
3830 // at "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 msg_home_replace_hl(curr_fname);
3832 prev_fname = curr_fname;
3833 }
3834 did_show = TRUE;
3835 if (!got_int)
3836 show_pat_in_path(line, type, TRUE, action,
3837 (depth == -1) ? NULL : files[depth].fp,
3838 (depth == -1) ? &lnum : &files[depth].lnum,
3839 match_count++);
3840
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003841 // Set matched flag for this file and all the ones that
3842 // include it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843 for (i = 0; i <= depth; ++i)
3844 files[i].matched = TRUE;
3845 }
3846 else if (--count <= 0)
3847 {
3848 found = TRUE;
3849 if (depth == -1 && lnum == curwin->w_cursor.lnum
Bram Moolenaar4033c552017-09-16 20:54:51 +02003850#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 && g_do_tagpreview == 0
3852#endif
3853 )
Bram Moolenaarac78dd42022-01-02 19:25:26 +00003854 emsg(_(e_match_is_on_current_line));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003855 else if (action == ACTION_SHOW)
3856 {
3857 show_pat_in_path(line, type, did_show, action,
3858 (depth == -1) ? NULL : files[depth].fp,
3859 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
3860 did_show = TRUE;
3861 }
3862 else
3863 {
3864#ifdef FEAT_GUI
3865 need_mouse_correct = TRUE;
3866#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02003867#if defined(FEAT_QUICKFIX)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003868 // ":psearch" uses the preview window
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 if (g_do_tagpreview != 0)
3870 {
3871 curwin_save = curwin;
Bram Moolenaar576a4a62019-08-18 15:25:17 +02003872 prepare_tagpreview(TRUE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 }
3874#endif
3875 if (action == ACTION_SPLIT)
3876 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003879 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 }
3881 if (depth == -1)
3882 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003883 // match in current file
Bram Moolenaar4033c552017-09-16 20:54:51 +02003884#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885 if (g_do_tagpreview != 0)
3886 {
Bram Moolenaar92bb83e2021-02-03 23:04:46 +01003887 if (!win_valid(curwin_save))
3888 break;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003889 if (!GETFILE_SUCCESS(getfile(
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02003890 curwin_save->w_buffer->b_fnum, NULL,
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003891 NULL, TRUE, lnum, FALSE)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003892 break; // failed to jump to file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 }
3894 else
3895#endif
3896 setpcmark();
3897 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02003898 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 }
3900 else
3901 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003902 if (!GETFILE_SUCCESS(getfile(
3903 0, files[depth].name, NULL, TRUE,
3904 files[depth].lnum, FALSE)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003905 break; // failed to jump to file
3906 // autocommands may have changed the lnum, we don't
3907 // want that here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 curwin->w_cursor.lnum = files[depth].lnum;
3909 }
3910 }
3911 if (action != ACTION_SHOW)
3912 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00003913 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914 curwin->w_set_curswant = TRUE;
3915 }
3916
Bram Moolenaar4033c552017-09-16 20:54:51 +02003917#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003919 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003921 // Return cursor to where we were
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 validate_cursor();
3923 redraw_later(VALID);
3924 win_enter(curwin_save, TRUE);
3925 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003926# ifdef FEAT_PROP_POPUP
Bram Moolenaar1b6d9c42019-08-05 21:52:04 +02003927 else if (WIN_IS_POPUP(curwin))
3928 // can't keep focus in popup window
3929 win_enter(firstwin, TRUE);
3930# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931#endif
3932 break;
3933 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934exit_matched:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 matched = FALSE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003936 // look for other matches in the rest of the line if we
3937 // are not at the end of it already
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 if (def_regmatch.regprog == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 && action == ACTION_EXPAND
Yegappan Lakshmanand94fbfc2022-01-04 17:01:44 +00003940 && !compl_status_sol()
Bram Moolenaarfe81d452009-04-22 14:44:41 +00003941 && *startp != NUL
Bram Moolenaar1614a142019-10-06 22:00:13 +02003942 && *(p = startp + mb_ptr2len(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 goto search_line;
3944 }
3945 line_breakcheck();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946 if (action == ACTION_EXPAND)
Bram Moolenaar472e8592016-10-15 17:06:47 +02003947 ins_compl_check_keys(30, FALSE);
Bram Moolenaar7591bb32019-03-30 13:53:47 +01003948 if (got_int || ins_compl_interrupted())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949 break;
3950
3951 /*
3952 * Read the next line. When reading an included file and encountering
3953 * end-of-file, close the file and continue in the file that included
3954 * it.
3955 */
3956 while (depth >= 0 && !already
3957 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
3958 {
3959 fclose(files[depth].fp);
3960 --old_files;
3961 files[old_files].name = files[depth].name;
3962 files[old_files].matched = files[depth].matched;
3963 --depth;
3964 curr_fname = (depth == -1) ? curbuf->b_fname
3965 : files[depth].name;
3966 if (depth < depth_displayed)
3967 depth_displayed = depth;
3968 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003969 if (depth >= 0) // we could read the line
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02003970 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 files[depth].lnum++;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003972 // Remove any CR and LF from the line.
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02003973 i = (int)STRLEN(line);
3974 if (i > 0 && line[i - 1] == '\n')
3975 line[--i] = NUL;
3976 if (i > 0 && line[i - 1] == '\r')
3977 line[--i] = NUL;
3978 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 else if (!already)
3980 {
3981 if (++lnum > end_lnum)
3982 break;
3983 line = ml_get(lnum);
3984 }
3985 already = NULL;
3986 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003987 // End of big for (;;) loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003989 // Close any files that are still open.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 for (i = 0; i <= depth; i++)
3991 {
3992 fclose(files[i].fp);
3993 vim_free(files[i].name);
3994 }
3995 for (i = old_files; i < max_path_depth; i++)
3996 vim_free(files[i].name);
3997 vim_free(files);
3998
3999 if (type == CHECK_PATH)
4000 {
4001 if (!did_show)
4002 {
4003 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004004 msg(_("All included files were found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01004006 msg(_("No included files"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007 }
4008 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02004009 else if (!found && action != ACTION_EXPAND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010 {
Bram Moolenaar7591bb32019-03-30 13:53:47 +01004011 if (got_int || ins_compl_interrupted())
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00004012 emsg(_(e_interrupted));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 else if (type == FIND_DEFINE)
Bram Moolenaarac78dd42022-01-02 19:25:26 +00004014 emsg(_(e_couldnt_find_definition));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015 else
Bram Moolenaarac78dd42022-01-02 19:25:26 +00004016 emsg(_(e_couldnt_find_pattern));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 }
4018 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
4019 msg_end();
4020
4021fpip_end:
4022 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02004023 vim_regfree(regmatch.regprog);
4024 vim_regfree(incl_regmatch.regprog);
4025 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026}
4027
4028 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004029show_pat_in_path(
4030 char_u *line,
4031 int type,
4032 int did_show,
4033 int action,
4034 FILE *fp,
4035 linenr_T *lnum,
4036 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037{
4038 char_u *p;
4039
4040 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004041 msg_putchar('\n'); // cursor below last one
Bram Moolenaar91170f82006-05-05 21:15:17 +00004042 else if (!msg_silent)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004043 gotocmdline(TRUE); // cursor at status line
4044 if (got_int) // 'q' typed at "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045 return;
4046 for (;;)
4047 {
4048 p = line + STRLEN(line) - 1;
4049 if (fp != NULL)
4050 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004051 // We used fgets(), so get rid of newline at end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052 if (p >= line && *p == '\n')
4053 --p;
4054 if (p >= line && *p == '\r')
4055 --p;
4056 *(p + 1) = NUL;
4057 }
4058 if (action == ACTION_SHOW_ALL)
4059 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004060 sprintf((char *)IObuff, "%3ld: ", count); // show match nr
Bram Moolenaar32526b32019-01-19 17:43:09 +01004061 msg_puts((char *)IObuff);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004062 sprintf((char *)IObuff, "%4ld", *lnum); // show line nr
4063 // Highlight line numbers
Bram Moolenaar32526b32019-01-19 17:43:09 +01004064 msg_puts_attr((char *)IObuff, HL_ATTR(HLF_N));
4065 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004067 msg_prt_line(line, FALSE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004068 out_flush(); // show one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004070 // Definition continues until line that doesn't end with '\'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
4072 break;
4073
4074 if (fp != NULL)
4075 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004076 if (vim_fgets(line, LSIZE, fp)) // end of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077 break;
4078 ++*lnum;
4079 }
4080 else
4081 {
4082 if (++*lnum > curbuf->b_ml.ml_line_count)
4083 break;
4084 line = ml_get(*lnum);
4085 }
4086 msg_putchar('\n');
4087 }
4088}
4089#endif
4090
4091#ifdef FEAT_VIMINFO
Bram Moolenaar6bd1d772019-10-09 22:01:25 +02004092/*
4093 * Return the last used search pattern at "idx".
4094 */
Bram Moolenaarc3328162019-07-23 22:15:25 +02004095 spat_T *
4096get_spat(int idx)
4097{
4098 return &spats[idx];
4099}
4100
Bram Moolenaar6bd1d772019-10-09 22:01:25 +02004101/*
4102 * Return the last used search pattern index.
4103 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 int
Bram Moolenaarc3328162019-07-23 22:15:25 +02004105get_spat_last_idx(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106{
Bram Moolenaarc3328162019-07-23 22:15:25 +02004107 return last_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109#endif
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004110
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00004111#if defined(FEAT_EVAL) || defined(FEAT_PROTO)
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004112/*
4113 * "searchcount()" function
4114 */
4115 void
4116f_searchcount(typval_T *argvars, typval_T *rettv)
4117{
4118 pos_T pos = curwin->w_cursor;
4119 char_u *pattern = NULL;
4120 int maxcount = SEARCH_STAT_DEF_MAX_COUNT;
4121 long timeout = SEARCH_STAT_DEF_TIMEOUT;
Bram Moolenaar4140c4f2020-09-05 23:16:00 +02004122 int recompute = TRUE;
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004123 searchstat_T stat;
4124
4125 if (rettv_dict_alloc(rettv) == FAIL)
4126 return;
4127
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02004128 if (in_vim9script() && check_for_opt_dict_arg(argvars, 0) == FAIL)
4129 return;
4130
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004131 if (shortmess(SHM_SEARCHCOUNT)) // 'shortmess' contains 'S' flag
4132 recompute = TRUE;
4133
4134 if (argvars[0].v_type != VAR_UNKNOWN)
4135 {
Bram Moolenaar14681622020-06-03 22:57:39 +02004136 dict_T *dict;
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004137 dictitem_T *di;
4138 listitem_T *li;
4139 int error = FALSE;
4140
Bram Moolenaar14681622020-06-03 22:57:39 +02004141 if (argvars[0].v_type != VAR_DICT || argvars[0].vval.v_dict == NULL)
4142 {
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00004143 emsg(_(e_dictionary_required));
Bram Moolenaar14681622020-06-03 22:57:39 +02004144 return;
4145 }
4146 dict = argvars[0].vval.v_dict;
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004147 di = dict_find(dict, (char_u *)"timeout", -1);
4148 if (di != NULL)
4149 {
4150 timeout = (long)tv_get_number_chk(&di->di_tv, &error);
4151 if (error)
4152 return;
4153 }
4154 di = dict_find(dict, (char_u *)"maxcount", -1);
4155 if (di != NULL)
4156 {
4157 maxcount = (int)tv_get_number_chk(&di->di_tv, &error);
4158 if (error)
4159 return;
4160 }
Bram Moolenaar597aaac2020-09-05 21:21:16 +02004161 recompute = dict_get_bool(dict, (char_u *)"recompute", recompute);
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004162 di = dict_find(dict, (char_u *)"pattern", -1);
4163 if (di != NULL)
4164 {
4165 pattern = tv_get_string_chk(&di->di_tv);
4166 if (pattern == NULL)
4167 return;
4168 }
4169 di = dict_find(dict, (char_u *)"pos", -1);
4170 if (di != NULL)
4171 {
4172 if (di->di_tv.v_type != VAR_LIST)
4173 {
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00004174 semsg(_(e_invalid_argument_str), "pos");
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004175 return;
4176 }
4177 if (list_len(di->di_tv.vval.v_list) != 3)
4178 {
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00004179 semsg(_(e_invalid_argument_str), "List format should be [lnum, col, off]");
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004180 return;
4181 }
4182 li = list_find(di->di_tv.vval.v_list, 0L);
4183 if (li != NULL)
4184 {
4185 pos.lnum = tv_get_number_chk(&li->li_tv, &error);
4186 if (error)
4187 return;
4188 }
4189 li = list_find(di->di_tv.vval.v_list, 1L);
4190 if (li != NULL)
4191 {
4192 pos.col = tv_get_number_chk(&li->li_tv, &error) - 1;
4193 if (error)
4194 return;
4195 }
4196 li = list_find(di->di_tv.vval.v_list, 2L);
4197 if (li != NULL)
4198 {
4199 pos.coladd = tv_get_number_chk(&li->li_tv, &error);
4200 if (error)
4201 return;
4202 }
4203 }
4204 }
4205
4206 save_last_search_pattern();
Christian Brabandt6dd74242022-02-14 12:44:32 +00004207#ifdef FEAT_SEARCH_EXTRA
4208 save_incsearch_state();
4209#endif
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004210 if (pattern != NULL)
4211 {
4212 if (*pattern == NUL)
4213 goto the_end;
Bram Moolenaar109aece2020-06-01 19:08:54 +02004214 vim_free(spats[last_idx].pat);
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004215 spats[last_idx].pat = vim_strsave(pattern);
4216 }
4217 if (spats[last_idx].pat == NULL || *spats[last_idx].pat == NUL)
4218 goto the_end; // the previous pattern was never defined
4219
4220 update_search_stat(0, &pos, &pos, &stat, recompute, maxcount, timeout);
4221
4222 dict_add_number(rettv->vval.v_dict, "current", stat.cur);
4223 dict_add_number(rettv->vval.v_dict, "total", stat.cnt);
4224 dict_add_number(rettv->vval.v_dict, "exact_match", stat.exact_match);
4225 dict_add_number(rettv->vval.v_dict, "incomplete", stat.incomplete);
4226 dict_add_number(rettv->vval.v_dict, "maxcount", stat.last_maxcount);
4227
4228the_end:
4229 restore_last_search_pattern();
Christian Brabandt6dd74242022-02-14 12:44:32 +00004230#ifdef FEAT_SEARCH_EXTRA
4231 restore_incsearch_state();
4232#endif
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004233}
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00004234#endif
Bram Moolenaar635414d2020-09-11 22:25:15 +02004235
4236/*
4237 * Fuzzy string matching
4238 *
4239 * Ported from the lib_fts library authored by Forrest Smith.
4240 * https://github.com/forrestthewoods/lib_fts/tree/master/code
4241 *
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004242 * The following blog describes the fuzzy matching algorithm:
Bram Moolenaar635414d2020-09-11 22:25:15 +02004243 * https://www.forrestthewoods.com/blog/reverse_engineering_sublime_texts_fuzzy_match/
4244 *
4245 * Each matching string is assigned a score. The following factors are checked:
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004246 * - Matched letter
4247 * - Unmatched letter
4248 * - Consecutively matched letters
4249 * - Proximity to start
4250 * - Letter following a separator (space, underscore)
4251 * - Uppercase letter following lowercase (aka CamelCase)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004252 *
4253 * Matched letters are good. Unmatched letters are bad. Matching near the start
4254 * is good. Matching the first letter in the middle of a phrase is good.
4255 * Matching the uppercase letters in camel case entries is good.
4256 *
4257 * The score assigned for each factor is explained below.
4258 * File paths are different from file names. File extensions may be ignorable.
4259 * Single words care about consecutive matches but not separators or camel
4260 * case.
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004261 * Score starts at 100
Bram Moolenaar635414d2020-09-11 22:25:15 +02004262 * Matched letter: +0 points
4263 * Unmatched letter: -1 point
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004264 * Consecutive match bonus: +15 points
4265 * First letter bonus: +15 points
4266 * Separator bonus: +30 points
4267 * Camel case bonus: +30 points
4268 * Unmatched leading letter: -5 points (max: -15)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004269 *
4270 * There is some nuance to this. Scores don’t have an intrinsic meaning. The
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004271 * score range isn’t 0 to 100. It’s roughly [50, 150]. Longer words have a
Bram Moolenaar635414d2020-09-11 22:25:15 +02004272 * lower minimum score due to unmatched letter penalty. Longer search patterns
4273 * have a higher maximum score due to match bonuses.
4274 *
4275 * Separator and camel case bonus is worth a LOT. Consecutive matches are worth
4276 * quite a bit.
4277 *
4278 * There is a penalty if you DON’T match the first three letters. Which
4279 * effectively rewards matching near the start. However there’s no difference
4280 * in matching between the middle and end.
4281 *
4282 * There is not an explicit bonus for an exact match. Unmatched letters receive
4283 * a penalty. So shorter strings and closer matches are worth more.
4284 */
4285typedef struct
4286{
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004287 int idx; // used for stable sort
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004288 listitem_T *item;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004289 int score;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004290 list_T *lmatchpos;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004291} fuzzyItem_T;
4292
Bram Moolenaare9f9f162020-10-20 19:01:30 +02004293// bonus for adjacent matches; this is higher than SEPARATOR_BONUS so that
4294// matching a whole word is preferred.
4295#define SEQUENTIAL_BONUS 40
Bram Moolenaardcdd42a2020-10-29 18:58:01 +01004296// bonus if match occurs after a path separator
4297#define PATH_SEPARATOR_BONUS 30
4298// bonus if match occurs after a word separator
4299#define WORD_SEPARATOR_BONUS 25
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004300// bonus if match is uppercase and prev is lower
4301#define CAMEL_BONUS 30
4302// bonus if the first letter is matched
4303#define FIRST_LETTER_BONUS 15
4304// penalty applied for every letter in str before the first match
kylo252ae6f1d82022-02-16 19:24:07 +00004305#define LEADING_LETTER_PENALTY (-5)
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004306// maximum penalty for leading letters
kylo252ae6f1d82022-02-16 19:24:07 +00004307#define MAX_LEADING_LETTER_PENALTY (-15)
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004308// penalty for every letter that doesn't match
kylo252ae6f1d82022-02-16 19:24:07 +00004309#define UNMATCHED_LETTER_PENALTY (-1)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004310// penalty for gap in matching positions (-2 * k)
kylo252ae6f1d82022-02-16 19:24:07 +00004311#define GAP_PENALTY (-2)
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004312// Score for a string that doesn't fuzzy match the pattern
kylo252ae6f1d82022-02-16 19:24:07 +00004313#define SCORE_NONE (-9999)
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004314
4315#define FUZZY_MATCH_RECURSION_LIMIT 10
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004316
4317/*
4318 * Compute a score for a fuzzy matched string. The matching character locations
4319 * are in 'matches'.
4320 */
4321 static int
4322fuzzy_match_compute_score(
4323 char_u *str,
4324 int strSz,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004325 int_u *matches,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004326 int numMatches)
4327{
4328 int score;
4329 int penalty;
4330 int unmatched;
4331 int i;
4332 char_u *p = str;
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004333 int_u sidx = 0;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004334
4335 // Initialize score
4336 score = 100;
4337
4338 // Apply leading letter penalty
4339 penalty = LEADING_LETTER_PENALTY * matches[0];
4340 if (penalty < MAX_LEADING_LETTER_PENALTY)
4341 penalty = MAX_LEADING_LETTER_PENALTY;
4342 score += penalty;
4343
4344 // Apply unmatched penalty
4345 unmatched = strSz - numMatches;
4346 score += UNMATCHED_LETTER_PENALTY * unmatched;
4347
4348 // Apply ordering bonuses
4349 for (i = 0; i < numMatches; ++i)
4350 {
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004351 int_u currIdx = matches[i];
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004352
4353 if (i > 0)
4354 {
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004355 int_u prevIdx = matches[i - 1];
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004356
4357 // Sequential
4358 if (currIdx == (prevIdx + 1))
4359 score += SEQUENTIAL_BONUS;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004360 else
4361 score += GAP_PENALTY * (currIdx - prevIdx);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004362 }
4363
4364 // Check for bonuses based on neighbor character value
4365 if (currIdx > 0)
4366 {
4367 // Camel case
Bram Moolenaarc53e9c52020-09-22 22:08:32 +02004368 int neighbor = ' ';
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004369 int curr;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004370
4371 if (has_mbyte)
4372 {
4373 while (sidx < currIdx)
4374 {
4375 neighbor = (*mb_ptr2char)(p);
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004376 MB_PTR_ADV(p);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004377 sidx++;
4378 }
4379 curr = (*mb_ptr2char)(p);
4380 }
4381 else
4382 {
4383 neighbor = str[currIdx - 1];
4384 curr = str[currIdx];
4385 }
4386
4387 if (vim_islower(neighbor) && vim_isupper(curr))
4388 score += CAMEL_BONUS;
4389
Bram Moolenaardcdd42a2020-10-29 18:58:01 +01004390 // Bonus if the match follows a separator character
4391 if (neighbor == '/' || neighbor == '\\')
4392 score += PATH_SEPARATOR_BONUS;
4393 else if (neighbor == ' ' || neighbor == '_')
4394 score += WORD_SEPARATOR_BONUS;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004395 }
4396 else
4397 {
4398 // First letter
4399 score += FIRST_LETTER_BONUS;
4400 }
4401 }
4402 return score;
4403}
4404
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004405/*
4406 * Perform a recursive search for fuzzy matching 'fuzpat' in 'str'.
4407 * Return the number of matching characters.
4408 */
Bram Moolenaar635414d2020-09-11 22:25:15 +02004409 static int
4410fuzzy_match_recursive(
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004411 char_u *fuzpat,
4412 char_u *str,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004413 int_u strIdx,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004414 int *outScore,
4415 char_u *strBegin,
4416 int strLen,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004417 int_u *srcMatches,
4418 int_u *matches,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004419 int maxMatches,
4420 int nextMatch,
4421 int *recursionCount)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004422{
4423 // Recursion params
4424 int recursiveMatch = FALSE;
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004425 int_u bestRecursiveMatches[MAX_FUZZY_MATCHES];
Bram Moolenaar635414d2020-09-11 22:25:15 +02004426 int bestRecursiveScore = 0;
4427 int first_match;
4428 int matched;
4429
4430 // Count recursions
4431 ++*recursionCount;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004432 if (*recursionCount >= FUZZY_MATCH_RECURSION_LIMIT)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004433 return 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004434
4435 // Detect end of strings
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004436 if (*fuzpat == NUL || *str == NUL)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004437 return 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004438
4439 // Loop through fuzpat and str looking for a match
4440 first_match = TRUE;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004441 while (*fuzpat != NUL && *str != NUL)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004442 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004443 int c1;
4444 int c2;
4445
4446 c1 = PTR2CHAR(fuzpat);
4447 c2 = PTR2CHAR(str);
4448
Bram Moolenaar635414d2020-09-11 22:25:15 +02004449 // Found match
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004450 if (vim_tolower(c1) == vim_tolower(c2))
Bram Moolenaar635414d2020-09-11 22:25:15 +02004451 {
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004452 int_u recursiveMatches[MAX_FUZZY_MATCHES];
Bram Moolenaar635414d2020-09-11 22:25:15 +02004453 int recursiveScore = 0;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004454 char_u *next_char;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004455
4456 // Supplied matches buffer was too short
4457 if (nextMatch >= maxMatches)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004458 return 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004459
4460 // "Copy-on-Write" srcMatches into matches
4461 if (first_match && srcMatches)
4462 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004463 memcpy(matches, srcMatches, nextMatch * sizeof(srcMatches[0]));
Bram Moolenaar635414d2020-09-11 22:25:15 +02004464 first_match = FALSE;
4465 }
4466
4467 // Recursive call that "skips" this match
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004468 if (has_mbyte)
4469 next_char = str + (*mb_ptr2len)(str);
4470 else
4471 next_char = str + 1;
4472 if (fuzzy_match_recursive(fuzpat, next_char, strIdx + 1,
4473 &recursiveScore, strBegin, strLen, matches,
4474 recursiveMatches,
K.Takataeeec2542021-06-02 13:28:16 +02004475 ARRAY_LENGTH(recursiveMatches),
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004476 nextMatch, recursionCount))
Bram Moolenaar635414d2020-09-11 22:25:15 +02004477 {
4478 // Pick best recursive score
4479 if (!recursiveMatch || recursiveScore > bestRecursiveScore)
4480 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004481 memcpy(bestRecursiveMatches, recursiveMatches,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004482 MAX_FUZZY_MATCHES * sizeof(recursiveMatches[0]));
Bram Moolenaar635414d2020-09-11 22:25:15 +02004483 bestRecursiveScore = recursiveScore;
4484 }
4485 recursiveMatch = TRUE;
4486 }
4487
4488 // Advance
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004489 matches[nextMatch++] = strIdx;
4490 if (has_mbyte)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004491 MB_PTR_ADV(fuzpat);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004492 else
4493 ++fuzpat;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004494 }
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004495 if (has_mbyte)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004496 MB_PTR_ADV(str);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004497 else
4498 ++str;
4499 strIdx++;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004500 }
4501
4502 // Determine if full fuzpat was matched
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004503 matched = *fuzpat == NUL ? TRUE : FALSE;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004504
4505 // Calculate score
4506 if (matched)
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004507 *outScore = fuzzy_match_compute_score(strBegin, strLen, matches,
4508 nextMatch);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004509
4510 // Return best result
4511 if (recursiveMatch && (!matched || bestRecursiveScore > *outScore))
4512 {
4513 // Recursive score is better than "this"
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004514 memcpy(matches, bestRecursiveMatches, maxMatches * sizeof(matches[0]));
Bram Moolenaar635414d2020-09-11 22:25:15 +02004515 *outScore = bestRecursiveScore;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004516 return nextMatch;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004517 }
4518 else if (matched)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004519 return nextMatch; // "this" score is better than recursive
Bram Moolenaar635414d2020-09-11 22:25:15 +02004520
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004521 return 0; // no match
Bram Moolenaar635414d2020-09-11 22:25:15 +02004522}
4523
4524/*
4525 * fuzzy_match()
4526 *
4527 * Performs exhaustive search via recursion to find all possible matches and
4528 * match with highest score.
4529 * Scores values have no intrinsic meaning. Possible score range is not
4530 * normalized and varies with pattern.
4531 * Recursion is limited internally (default=10) to prevent degenerate cases
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004532 * (pat_arg="aaaaaa" str="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa").
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004533 * Uses char_u for match indices. Therefore patterns are limited to
4534 * MAX_FUZZY_MATCHES characters.
Bram Moolenaar635414d2020-09-11 22:25:15 +02004535 *
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004536 * Returns TRUE if 'pat_arg' matches 'str'. Also returns the match score in
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004537 * 'outScore' and the matching character positions in 'matches'.
Bram Moolenaar635414d2020-09-11 22:25:15 +02004538 */
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004539 int
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004540fuzzy_match(
4541 char_u *str,
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004542 char_u *pat_arg,
4543 int matchseq,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004544 int *outScore,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004545 int_u *matches,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004546 int maxMatches)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004547{
Bram Moolenaar635414d2020-09-11 22:25:15 +02004548 int recursionCount = 0;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004549 int len = MB_CHARLEN(str);
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004550 char_u *save_pat;
4551 char_u *pat;
4552 char_u *p;
4553 int complete = FALSE;
4554 int score = 0;
4555 int numMatches = 0;
4556 int matchCount;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004557
4558 *outScore = 0;
4559
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004560 save_pat = vim_strsave(pat_arg);
4561 if (save_pat == NULL)
4562 return FALSE;
4563 pat = save_pat;
4564 p = pat;
4565
4566 // Try matching each word in 'pat_arg' in 'str'
4567 while (TRUE)
4568 {
4569 if (matchseq)
4570 complete = TRUE;
4571 else
4572 {
4573 // Extract one word from the pattern (separated by space)
4574 p = skipwhite(p);
4575 if (*p == NUL)
4576 break;
4577 pat = p;
4578 while (*p != NUL && !VIM_ISWHITE(PTR2CHAR(p)))
4579 {
4580 if (has_mbyte)
4581 MB_PTR_ADV(p);
4582 else
4583 ++p;
4584 }
4585 if (*p == NUL) // processed all the words
4586 complete = TRUE;
4587 *p = NUL;
4588 }
4589
4590 score = 0;
4591 recursionCount = 0;
4592 matchCount = fuzzy_match_recursive(pat, str, 0, &score, str, len, NULL,
4593 matches + numMatches, maxMatches - numMatches,
4594 0, &recursionCount);
4595 if (matchCount == 0)
4596 {
4597 numMatches = 0;
4598 break;
4599 }
4600
4601 // Accumulate the match score and the number of matches
4602 *outScore += score;
4603 numMatches += matchCount;
4604
4605 if (complete)
4606 break;
4607
4608 // try matching the next word
4609 ++p;
4610 }
4611
4612 vim_free(save_pat);
4613 return numMatches != 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004614}
4615
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00004616#if defined(FEAT_EVAL) || defined(FEAT_PROTO)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004617/*
4618 * Sort the fuzzy matches in the descending order of the match score.
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004619 * For items with same score, retain the order using the index (stable sort)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004620 */
4621 static int
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004622fuzzy_match_item_compare(const void *s1, const void *s2)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004623{
4624 int v1 = ((fuzzyItem_T *)s1)->score;
4625 int v2 = ((fuzzyItem_T *)s2)->score;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004626 int idx1 = ((fuzzyItem_T *)s1)->idx;
4627 int idx2 = ((fuzzyItem_T *)s2)->idx;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004628
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004629 return v1 == v2 ? (idx1 - idx2) : v1 > v2 ? -1 : 1;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004630}
4631
4632/*
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004633 * Fuzzy search the string 'str' in a list of 'items' and return the matching
4634 * strings in 'fmatchlist'.
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004635 * If 'matchseq' is TRUE, then for multi-word search strings, match all the
4636 * words in sequence.
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004637 * If 'items' is a list of strings, then search for 'str' in the list.
4638 * If 'items' is a list of dicts, then either use 'key' to lookup the string
4639 * for each item or use 'item_cb' Funcref function to get the string.
4640 * If 'retmatchpos' is TRUE, then return a list of positions where 'str'
4641 * matches for each item.
Bram Moolenaar635414d2020-09-11 22:25:15 +02004642 */
4643 static void
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004644fuzzy_match_in_list(
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004645 list_T *items,
4646 char_u *str,
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004647 int matchseq,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004648 char_u *key,
4649 callback_T *item_cb,
4650 int retmatchpos,
4651 list_T *fmatchlist)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004652{
4653 long len;
4654 fuzzyItem_T *ptrs;
4655 listitem_T *li;
4656 long i = 0;
4657 int found_match = FALSE;
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004658 int_u matches[MAX_FUZZY_MATCHES];
Bram Moolenaar635414d2020-09-11 22:25:15 +02004659
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004660 len = list_len(items);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004661 if (len == 0)
4662 return;
4663
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004664 ptrs = ALLOC_CLEAR_MULT(fuzzyItem_T, len);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004665 if (ptrs == NULL)
4666 return;
4667
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004668 // For all the string items in items, get the fuzzy matching score
4669 FOR_ALL_LIST_ITEMS(items, li)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004670 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004671 int score;
4672 char_u *itemstr;
4673 typval_T rettv;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004674
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004675 ptrs[i].idx = i;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004676 ptrs[i].item = li;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004677 ptrs[i].score = SCORE_NONE;
4678 itemstr = NULL;
4679 rettv.v_type = VAR_UNKNOWN;
4680 if (li->li_tv.v_type == VAR_STRING) // list of strings
4681 itemstr = li->li_tv.vval.v_string;
Dominique Pelle7765f5c2022-04-10 11:26:53 +01004682 else if (li->li_tv.v_type == VAR_DICT
4683 && (key != NULL || item_cb->cb_name != NULL))
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004684 {
4685 // For a dict, either use the specified key to lookup the string or
4686 // use the specified callback function to get the string.
4687 if (key != NULL)
4688 itemstr = dict_get_string(li->li_tv.vval.v_dict, key, FALSE);
4689 else
Bram Moolenaar635414d2020-09-11 22:25:15 +02004690 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004691 typval_T argv[2];
4692
4693 // Invoke the supplied callback (if any) to get the dict item
4694 li->li_tv.vval.v_dict->dv_refcount++;
4695 argv[0].v_type = VAR_DICT;
4696 argv[0].vval.v_dict = li->li_tv.vval.v_dict;
4697 argv[1].v_type = VAR_UNKNOWN;
4698 if (call_callback(item_cb, -1, &rettv, 1, argv) != FAIL)
4699 {
4700 if (rettv.v_type == VAR_STRING)
4701 itemstr = rettv.vval.v_string;
4702 }
4703 dict_unref(li->li_tv.vval.v_dict);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004704 }
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004705 }
4706
4707 if (itemstr != NULL
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004708 && fuzzy_match(itemstr, str, matchseq, &score, matches,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004709 sizeof(matches) / sizeof(matches[0])))
4710 {
4711 // Copy the list of matching positions in itemstr to a list, if
4712 // 'retmatchpos' is set.
4713 if (retmatchpos)
4714 {
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004715 int j = 0;
4716 char_u *p;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004717
4718 ptrs[i].lmatchpos = list_alloc();
4719 if (ptrs[i].lmatchpos == NULL)
4720 goto done;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004721
4722 p = str;
4723 while (*p != NUL)
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004724 {
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004725 if (!VIM_ISWHITE(PTR2CHAR(p)))
4726 {
4727 if (list_append_number(ptrs[i].lmatchpos,
4728 matches[j]) == FAIL)
4729 goto done;
4730 j++;
4731 }
4732 if (has_mbyte)
4733 MB_PTR_ADV(p);
4734 else
4735 ++p;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004736 }
4737 }
4738 ptrs[i].score = score;
4739 found_match = TRUE;
4740 }
Bram Moolenaar635414d2020-09-11 22:25:15 +02004741 ++i;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004742 clear_tv(&rettv);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004743 }
4744
4745 if (found_match)
4746 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004747 list_T *l;
4748
Bram Moolenaar635414d2020-09-11 22:25:15 +02004749 // Sort the list by the descending order of the match score
4750 qsort((void *)ptrs, (size_t)len, sizeof(fuzzyItem_T),
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004751 fuzzy_match_item_compare);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004752
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004753 // For matchfuzzy(), return a list of matched strings.
4754 // ['str1', 'str2', 'str3']
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004755 // For matchfuzzypos(), return a list with three items.
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004756 // The first item is a list of matched strings. The second item
4757 // is a list of lists where each list item is a list of matched
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004758 // character positions. The third item is a list of matching scores.
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004759 // [['str1', 'str2', 'str3'], [[1, 3], [1, 3], [1, 3]]]
4760 if (retmatchpos)
4761 {
4762 li = list_find(fmatchlist, 0);
4763 if (li == NULL || li->li_tv.vval.v_list == NULL)
4764 goto done;
4765 l = li->li_tv.vval.v_list;
4766 }
4767 else
4768 l = fmatchlist;
4769
4770 // Copy the matching strings with a valid score to the return list
Bram Moolenaar635414d2020-09-11 22:25:15 +02004771 for (i = 0; i < len; i++)
4772 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004773 if (ptrs[i].score == SCORE_NONE)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004774 break;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004775 list_append_tv(l, &ptrs[i].item->li_tv);
4776 }
4777
4778 // next copy the list of matching positions
4779 if (retmatchpos)
4780 {
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004781 li = list_find(fmatchlist, -2);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004782 if (li == NULL || li->li_tv.vval.v_list == NULL)
4783 goto done;
4784 l = li->li_tv.vval.v_list;
4785
4786 for (i = 0; i < len; i++)
4787 {
4788 if (ptrs[i].score == SCORE_NONE)
4789 break;
Dominique Pelle7765f5c2022-04-10 11:26:53 +01004790 if (ptrs[i].lmatchpos != NULL
4791 && list_append_list(l, ptrs[i].lmatchpos) == FAIL)
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004792 goto done;
4793 }
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004794
4795 // copy the matching scores
4796 li = list_find(fmatchlist, -1);
4797 if (li == NULL || li->li_tv.vval.v_list == NULL)
4798 goto done;
4799 l = li->li_tv.vval.v_list;
4800 for (i = 0; i < len; i++)
4801 {
4802 if (ptrs[i].score == SCORE_NONE)
4803 break;
4804 if (list_append_number(l, ptrs[i].score) == FAIL)
4805 goto done;
4806 }
Bram Moolenaar635414d2020-09-11 22:25:15 +02004807 }
4808 }
4809
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004810done:
Bram Moolenaar635414d2020-09-11 22:25:15 +02004811 vim_free(ptrs);
4812}
4813
4814/*
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004815 * Do fuzzy matching. Returns the list of matched strings in 'rettv'.
4816 * If 'retmatchpos' is TRUE, also returns the matching character positions.
4817 */
4818 static void
4819do_fuzzymatch(typval_T *argvars, typval_T *rettv, int retmatchpos)
4820{
4821 callback_T cb;
4822 char_u *key = NULL;
4823 int ret;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004824 int matchseq = FALSE;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004825
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02004826 if (in_vim9script()
4827 && (check_for_list_arg(argvars, 0) == FAIL
4828 || check_for_string_arg(argvars, 1) == FAIL
4829 || check_for_opt_dict_arg(argvars, 2) == FAIL))
4830 return;
4831
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004832 CLEAR_POINTER(&cb);
4833
4834 // validate and get the arguments
4835 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
4836 {
Bram Moolenaar3a846e62022-01-01 16:21:00 +00004837 semsg(_(e_argument_of_str_must_be_list),
4838 retmatchpos ? "matchfuzzypos()" : "matchfuzzy()");
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004839 return;
4840 }
4841 if (argvars[1].v_type != VAR_STRING
4842 || argvars[1].vval.v_string == NULL)
4843 {
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00004844 semsg(_(e_invalid_argument_str), tv_get_string(&argvars[1]));
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004845 return;
4846 }
4847
4848 if (argvars[2].v_type != VAR_UNKNOWN)
4849 {
4850 dict_T *d;
4851 dictitem_T *di;
4852
4853 if (argvars[2].v_type != VAR_DICT || argvars[2].vval.v_dict == NULL)
4854 {
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00004855 emsg(_(e_dictionary_required));
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004856 return;
4857 }
4858
4859 // To search a dict, either a callback function or a key can be
4860 // specified.
4861 d = argvars[2].vval.v_dict;
4862 if ((di = dict_find(d, (char_u *)"key", -1)) != NULL)
4863 {
4864 if (di->di_tv.v_type != VAR_STRING
4865 || di->di_tv.vval.v_string == NULL
4866 || *di->di_tv.vval.v_string == NUL)
4867 {
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00004868 semsg(_(e_invalid_argument_str), tv_get_string(&di->di_tv));
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004869 return;
4870 }
4871 key = tv_get_string(&di->di_tv);
4872 }
4873 else if ((di = dict_find(d, (char_u *)"text_cb", -1)) != NULL)
4874 {
4875 cb = get_callback(&di->di_tv);
4876 if (cb.cb_name == NULL)
4877 {
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00004878 semsg(_(e_invalid_value_for_argument_str), "text_cb");
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004879 return;
4880 }
4881 }
Yegappan Lakshmanan4829c1c2022-04-04 15:16:54 +01004882 if (dict_has_key(d, "matchseq"))
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004883 matchseq = TRUE;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004884 }
4885
4886 // get the fuzzy matches
4887 ret = rettv_list_alloc(rettv);
4888 if (ret != OK)
4889 goto done;
4890 if (retmatchpos)
4891 {
4892 list_T *l;
4893
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004894 // For matchfuzzypos(), a list with three items are returned. First
4895 // item is a list of matching strings, the second item is a list of
4896 // lists with matching positions within each string and the third item
4897 // is the list of scores of the matches.
4898 l = list_alloc();
4899 if (l == NULL)
4900 goto done;
4901 if (list_append_list(rettv->vval.v_list, l) == FAIL)
4902 goto done;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004903 l = list_alloc();
4904 if (l == NULL)
4905 goto done;
4906 if (list_append_list(rettv->vval.v_list, l) == FAIL)
4907 goto done;
4908 l = list_alloc();
4909 if (l == NULL)
4910 goto done;
4911 if (list_append_list(rettv->vval.v_list, l) == FAIL)
4912 goto done;
4913 }
4914
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004915 fuzzy_match_in_list(argvars[0].vval.v_list, tv_get_string(&argvars[1]),
4916 matchseq, key, &cb, retmatchpos, rettv->vval.v_list);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004917
4918done:
4919 free_callback(&cb);
4920}
4921
4922/*
Bram Moolenaar635414d2020-09-11 22:25:15 +02004923 * "matchfuzzy()" function
4924 */
4925 void
4926f_matchfuzzy(typval_T *argvars, typval_T *rettv)
4927{
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004928 do_fuzzymatch(argvars, rettv, FALSE);
4929}
4930
4931/*
4932 * "matchfuzzypos()" function
4933 */
4934 void
4935f_matchfuzzypos(typval_T *argvars, typval_T *rettv)
4936{
4937 do_fuzzymatch(argvars, rettv, TRUE);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004938}
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004939#endif
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00004940
4941/*
4942 * Same as fuzzy_match_item_compare() except for use with a string match
4943 */
4944 static int
4945fuzzy_match_str_compare(const void *s1, const void *s2)
4946{
4947 int v1 = ((fuzmatch_str_T *)s1)->score;
4948 int v2 = ((fuzmatch_str_T *)s2)->score;
4949 int idx1 = ((fuzmatch_str_T *)s1)->idx;
4950 int idx2 = ((fuzmatch_str_T *)s2)->idx;
4951
4952 return v1 == v2 ? (idx1 - idx2) : v1 > v2 ? -1 : 1;
4953}
4954
4955/*
4956 * Sort fuzzy matches by score
4957 */
4958 static void
4959fuzzy_match_str_sort(fuzmatch_str_T *fm, int sz)
4960{
4961 // Sort the list by the descending order of the match score
4962 qsort((void *)fm, (size_t)sz, sizeof(fuzmatch_str_T),
4963 fuzzy_match_str_compare);
4964}
4965
4966/*
4967 * Same as fuzzy_match_item_compare() except for use with a function name
4968 * string match. <SNR> functions should be sorted to the end.
4969 */
4970 static int
4971fuzzy_match_func_compare(const void *s1, const void *s2)
4972{
4973 int v1 = ((fuzmatch_str_T *)s1)->score;
4974 int v2 = ((fuzmatch_str_T *)s2)->score;
4975 int idx1 = ((fuzmatch_str_T *)s1)->idx;
4976 int idx2 = ((fuzmatch_str_T *)s2)->idx;
4977 char_u *str1 = ((fuzmatch_str_T *)s1)->str;
4978 char_u *str2 = ((fuzmatch_str_T *)s2)->str;
4979
4980 if (*str1 != '<' && *str2 == '<') return -1;
4981 if (*str1 == '<' && *str2 != '<') return 1;
4982 return v1 == v2 ? (idx1 - idx2) : v1 > v2 ? -1 : 1;
4983}
4984
4985/*
4986 * Sort fuzzy matches of function names by score.
4987 * <SNR> functions should be sorted to the end.
4988 */
4989 static void
4990fuzzy_match_func_sort(fuzmatch_str_T *fm, int sz)
4991{
4992 // Sort the list by the descending order of the match score
4993 qsort((void *)fm, (size_t)sz, sizeof(fuzmatch_str_T),
4994 fuzzy_match_func_compare);
4995}
4996
4997/*
4998 * Fuzzy match 'pat' in 'str'. Returns 0 if there is no match. Otherwise,
4999 * returns the match score.
5000 */
5001 int
5002fuzzy_match_str(char_u *str, char_u *pat)
5003{
5004 int score = 0;
Yegappan Lakshmanan5ec633b2022-02-25 15:24:24 +00005005 int_u matchpos[MAX_FUZZY_MATCHES];
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00005006
5007 if (str == NULL || pat == NULL)
5008 return 0;
5009
Yegappan Lakshmanan6caeda22022-02-27 12:07:30 +00005010 fuzzy_match(str, pat, TRUE, &score, matchpos,
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00005011 sizeof(matchpos) / sizeof(matchpos[0]));
5012
5013 return score;
5014}
5015
5016/*
Bram Moolenaarc6e0a5e2022-04-10 18:09:06 +01005017 * Free an array of fuzzy string matches "fuzmatch[count]".
5018 */
5019 void
5020fuzmatch_str_free(fuzmatch_str_T *fuzmatch, int count)
5021{
5022 int i;
5023
5024 if (fuzmatch == NULL)
5025 return;
5026 for (i = 0; i < count; ++i)
5027 vim_free(fuzmatch[i].str);
5028 vim_free(fuzmatch);
5029}
5030
5031/*
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00005032 * Copy a list of fuzzy matches into a string list after sorting the matches by
5033 * the fuzzy score. Frees the memory allocated for 'fuzmatch'.
5034 * Returns OK on success and FAIL on memory allocation failure.
5035 */
5036 int
5037fuzzymatches_to_strmatches(
5038 fuzmatch_str_T *fuzmatch,
5039 char_u ***matches,
5040 int count,
5041 int funcsort)
5042{
5043 int i;
5044
5045 if (count <= 0)
5046 return OK;
5047
5048 *matches = ALLOC_MULT(char_u *, count);
5049 if (*matches == NULL)
5050 {
Bram Moolenaarc6e0a5e2022-04-10 18:09:06 +01005051 fuzmatch_str_free(fuzmatch, count);
Yegappan Lakshmanan38b85cb2022-02-24 13:28:41 +00005052 return FAIL;
5053 }
5054
5055 // Sort the list by the descending order of the match score
5056 if (funcsort)
5057 fuzzy_match_func_sort((void *)fuzmatch, (size_t)count);
5058 else
5059 fuzzy_match_str_sort((void *)fuzmatch, (size_t)count);
5060
5061 for (i = 0; i < count; i++)
5062 (*matches)[i] = fuzmatch[i].str;
5063 vim_free(fuzmatch);
5064
5065 return OK;
5066}