blob: 719599e15a623dbe6aef895a1256e3431872f723 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 * search.c: code for normal mode searching commands
11 */
12
13#include "vim.h"
14
Bram Moolenaar071d4272004-06-13 20:20:40 +000015#ifdef FEAT_EVAL
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010016static void set_vv_searchforward(void);
17static int first_submatch(regmmatch_T *rp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000019#ifdef FEAT_FIND_ID
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010020static void show_pat_in_path(char_u *, int,
21 int, int, FILE *, linenr_T *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022#endif
Bram Moolenaare8f5ec02020-06-01 17:28:35 +020023
24typedef struct searchstat
25{
26 int cur; // current position of found words
27 int cnt; // total count of found words
28 int exact_match; // TRUE if matched exactly on specified position
29 int incomplete; // 0: search was fully completed
30 // 1: recomputing was timed out
31 // 2: max count exceeded
32 int last_maxcount; // the max count of the last search
33} searchstat_T;
34
35static void cmdline_search_stat(int dirc, pos_T *pos, pos_T *cursor_pos, int show_top_bot_msg, char_u *msgbuf, int recompute, int maxcount, long timeout);
36static void update_search_stat(int dirc, pos_T *pos, pos_T *cursor_pos, searchstat_T *stat, int recompute, int maxcount, long timeout);
37
Bram Moolenaarea6561a2020-06-01 21:32:45 +020038#define SEARCH_STAT_DEF_TIMEOUT 40L
Bram Moolenaare8f5ec02020-06-01 17:28:35 +020039#define SEARCH_STAT_DEF_MAX_COUNT 99
40#define SEARCH_STAT_BUF_LEN 12
Bram Moolenaar071d4272004-06-13 20:20:40 +000041
Bram Moolenaar071d4272004-06-13 20:20:40 +000042/*
43 * This file contains various searching-related routines. These fall into
44 * three groups:
45 * 1. string searches (for /, ?, n, and N)
46 * 2. character searches within a single line (for f, F, t, T, etc)
47 * 3. "other" kinds of searches like the '%' command, and 'word' searches.
48 */
49
50/*
51 * String searches
52 *
53 * The string search functions are divided into two levels:
54 * lowest: searchit(); uses an pos_T for starting position and found match.
55 * Highest: do_search(); uses curwin->w_cursor; calls searchit().
56 *
57 * The last search pattern is remembered for repeating the same search.
58 * This pattern is shared between the :g, :s, ? and / commands.
59 * This is in search_regcomp().
60 *
61 * The actual string matching is done using a heavily modified version of
62 * Henry Spencer's regular expression library. See regexp.c.
63 */
64
Bram Moolenaar071d4272004-06-13 20:20:40 +000065/*
66 * Two search patterns are remembered: One for the :substitute command and
67 * one for other searches. last_idx points to the one that was used the last
68 * time.
69 */
Bram Moolenaarc3328162019-07-23 22:15:25 +020070static spat_T spats[2] =
Bram Moolenaar071d4272004-06-13 20:20:40 +000071{
Bram Moolenaar63d9e732019-12-05 21:10:38 +010072 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}}, // last used search pat
73 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}} // last used substitute pat
Bram Moolenaar071d4272004-06-13 20:20:40 +000074};
75
Bram Moolenaar63d9e732019-12-05 21:10:38 +010076static int last_idx = 0; // index in spats[] for RE_LAST
Bram Moolenaar071d4272004-06-13 20:20:40 +000077
Bram Moolenaar63d9e732019-12-05 21:10:38 +010078static char_u lastc[2] = {NUL, NUL}; // last character searched for
79static int lastcdir = FORWARD; // last direction of character search
80static int last_t_cmd = TRUE; // last search t_cmd
Bram Moolenaardbd24b52015-08-11 14:26:19 +020081static char_u lastc_bytes[MB_MAXBYTES + 1];
Bram Moolenaar63d9e732019-12-05 21:10:38 +010082static int lastc_bytelen = 1; // >1 for multi-byte char
Bram Moolenaardbd24b52015-08-11 14:26:19 +020083
Bram Moolenaar63d9e732019-12-05 21:10:38 +010084// copy of spats[], for keeping the search patterns while executing autocmds
Bram Moolenaarc3328162019-07-23 22:15:25 +020085static spat_T saved_spats[2];
Bram Moolenaara2cff1d2021-10-15 12:51:29 +010086static char_u *saved_mr_pattern = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000087# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +010088static int saved_spats_last_idx = 0;
89static int saved_spats_no_hlsearch = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000090# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000091
Bram Moolenaara2cff1d2021-10-15 12:51:29 +010092// allocated copy of pattern used by search_regcomp()
93static char_u *mr_pattern = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000094
95#ifdef FEAT_FIND_ID
96/*
97 * Type used by find_pattern_in_path() to remember which included files have
98 * been searched already.
99 */
100typedef struct SearchedFile
101{
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100102 FILE *fp; // File pointer
103 char_u *name; // Full name of file
104 linenr_T lnum; // Line we were up to in file
105 int matched; // Found a match in this file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106} SearchedFile;
107#endif
108
109/*
110 * translate search pattern for vim_regcomp()
111 *
112 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd)
113 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command)
114 * pat_save == RE_BOTH: save pat in both patterns (:global command)
115 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL
Bram Moolenaarb8017e72007-05-10 18:59:07 +0000116 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117 * pat_use == RE_LAST: use last used pattern if "pat" is NULL
118 * options & SEARCH_HIS: put search string in history
119 * options & SEARCH_KEEP: keep previous search pattern
120 *
121 * returns FAIL if failed, OK otherwise.
122 */
123 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100124search_regcomp(
125 char_u *pat,
126 int pat_save,
127 int pat_use,
128 int options,
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100129 regmmatch_T *regmatch) // return: pattern and ignore-case flag
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130{
131 int magic;
132 int i;
133
134 rc_did_emsg = FALSE;
Bram Moolenaarf4e20992020-12-21 19:59:08 +0100135 magic = magic_isset();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136
137 /*
138 * If no pattern given, use a previously defined pattern.
139 */
140 if (pat == NULL || *pat == NUL)
141 {
142 if (pat_use == RE_LAST)
143 i = last_idx;
144 else
145 i = pat_use;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100146 if (spats[i].pat == NULL) // pattern was never defined
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147 {
148 if (pat_use == RE_SUBST)
Bram Moolenaare29a27f2021-07-20 21:07:36 +0200149 emsg(_(e_no_previous_substitute_regular_expression));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150 else
Bram Moolenaare29a27f2021-07-20 21:07:36 +0200151 emsg(_(e_no_previous_regular_expression));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152 rc_did_emsg = TRUE;
153 return FAIL;
154 }
155 pat = spats[i].pat;
156 magic = spats[i].magic;
157 no_smartcase = spats[i].no_scs;
158 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100159 else if (options & SEARCH_HIS) // put new pattern in history
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161
Bram Moolenaara2cff1d2021-10-15 12:51:29 +0100162 vim_free(mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163#ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
Bram Moolenaara2cff1d2021-10-15 12:51:29 +0100165 mr_pattern = reverse_text(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166 else
167#endif
Bram Moolenaara2cff1d2021-10-15 12:51:29 +0100168 mr_pattern = vim_strsave(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169
170 /*
171 * Save the currently used pattern in the appropriate place,
172 * unless the pattern should not be remembered.
173 */
Bram Moolenaare1004402020-10-24 20:49:43 +0200174 if (!(options & SEARCH_KEEP)
175 && (cmdmod.cmod_flags & CMOD_KEEPPATTERNS) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100177 // search or global command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178 if (pat_save == RE_SEARCH || pat_save == RE_BOTH)
179 save_re_pat(RE_SEARCH, pat, magic);
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100180 // substitute or global command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 if (pat_save == RE_SUBST || pat_save == RE_BOTH)
182 save_re_pat(RE_SUBST, pat, magic);
183 }
184
185 regmatch->rmm_ic = ignorecase(pat);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +0000186 regmatch->rmm_maxcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
188 if (regmatch->regprog == NULL)
189 return FAIL;
190 return OK;
191}
192
193/*
194 * Get search pattern used by search_regcomp().
195 */
196 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100197get_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198{
199 return mr_pattern;
200}
201
Bram Moolenaarabc97732007-08-08 20:49:37 +0000202#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203/*
204 * Reverse text into allocated memory.
205 * Returns the allocated string, NULL when out of memory.
206 */
Bram Moolenaarabc97732007-08-08 20:49:37 +0000207 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100208reverse_text(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209{
210 unsigned len;
211 unsigned s_i, rev_i;
212 char_u *rev;
213
214 /*
215 * Reverse the pattern.
216 */
217 len = (unsigned)STRLEN(s);
218 rev = alloc(len + 1);
219 if (rev != NULL)
220 {
221 rev_i = len;
222 for (s_i = 0; s_i < len; ++s_i)
223 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 if (has_mbyte)
225 {
226 int mb_len;
227
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000228 mb_len = (*mb_ptr2len)(s + s_i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 rev_i -= mb_len;
230 mch_memmove(rev + rev_i, s + s_i, mb_len);
231 s_i += mb_len - 1;
232 }
233 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234 rev[--rev_i] = s[s_i];
235
236 }
237 rev[len] = NUL;
238 }
239 return rev;
240}
241#endif
242
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +0100243 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100244save_re_pat(int idx, char_u *pat, int magic)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245{
246 if (spats[idx].pat != pat)
247 {
248 vim_free(spats[idx].pat);
249 spats[idx].pat = vim_strsave(pat);
250 spats[idx].magic = magic;
251 spats[idx].no_scs = no_smartcase;
252 last_idx = idx;
253#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100254 // If 'hlsearch' set and search pat changed: need redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255 if (p_hls)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000256 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200257 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258#endif
259 }
260}
261
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262/*
263 * Save the search patterns, so they can be restored later.
264 * Used before/after executing autocommands and user functions.
265 */
266static int save_level = 0;
267
268 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100269save_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270{
271 if (save_level++ == 0)
272 {
273 saved_spats[0] = spats[0];
274 if (spats[0].pat != NULL)
275 saved_spats[0].pat = vim_strsave(spats[0].pat);
276 saved_spats[1] = spats[1];
277 if (spats[1].pat != NULL)
278 saved_spats[1].pat = vim_strsave(spats[1].pat);
Bram Moolenaara2cff1d2021-10-15 12:51:29 +0100279 if (mr_pattern == NULL)
280 saved_mr_pattern = NULL;
281 else
282 saved_mr_pattern = vim_strsave(mr_pattern);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100283#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100284 saved_spats_last_idx = last_idx;
285 saved_spats_no_hlsearch = no_hlsearch;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100286#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287 }
288}
289
290 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100291restore_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292{
293 if (--save_level == 0)
294 {
295 vim_free(spats[0].pat);
296 spats[0] = saved_spats[0];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100297#if defined(FEAT_EVAL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000298 set_vv_searchforward();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100299#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 vim_free(spats[1].pat);
301 spats[1] = saved_spats[1];
Bram Moolenaara2cff1d2021-10-15 12:51:29 +0100302 vim_free(mr_pattern);
303 mr_pattern = saved_mr_pattern;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100304#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100305 last_idx = saved_spats_last_idx;
306 set_no_hlsearch(saved_spats_no_hlsearch);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100307#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308 }
309}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000311#if defined(EXITFREE) || defined(PROTO)
312 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100313free_search_patterns(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000314{
315 vim_free(spats[0].pat);
316 vim_free(spats[1].pat);
Bram Moolenaara2cff1d2021-10-15 12:51:29 +0100317 VIM_CLEAR(mr_pattern);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000318}
319#endif
320
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100321#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100322// copy of spats[RE_SEARCH], for keeping the search patterns while incremental
323// searching
Bram Moolenaarc3328162019-07-23 22:15:25 +0200324static spat_T saved_last_search_spat;
Bram Moolenaared8bc782018-12-01 21:08:21 +0100325static int did_save_last_search_spat = 0;
326static int saved_last_idx = 0;
327static int saved_no_hlsearch = 0;
328
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100329/*
330 * Save and restore the search pattern for incremental highlight search
331 * feature.
332 *
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100333 * It's similar to but different from save_search_patterns() and
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100334 * restore_search_patterns(), because the search pattern must be restored when
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100335 * canceling incremental searching even if it's called inside user functions.
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100336 */
337 void
338save_last_search_pattern(void)
339{
Bram Moolenaar442a8532020-06-04 20:56:09 +0200340 if (++did_save_last_search_spat != 1)
341 // nested call, nothing to do
342 return;
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100343
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100344 saved_last_search_spat = spats[RE_SEARCH];
345 if (spats[RE_SEARCH].pat != NULL)
346 saved_last_search_spat.pat = vim_strsave(spats[RE_SEARCH].pat);
347 saved_last_idx = last_idx;
348 saved_no_hlsearch = no_hlsearch;
349}
350
351 void
352restore_last_search_pattern(void)
353{
Bram Moolenaar442a8532020-06-04 20:56:09 +0200354 if (--did_save_last_search_spat > 0)
355 // nested call, nothing to do
356 return;
357 if (did_save_last_search_spat != 0)
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100358 {
Bram Moolenaar442a8532020-06-04 20:56:09 +0200359 iemsg("restore_last_search_pattern() called more often than save_last_search_pattern()");
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100360 return;
361 }
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100362
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100363 vim_free(spats[RE_SEARCH].pat);
364 spats[RE_SEARCH] = saved_last_search_spat;
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100365 saved_last_search_spat.pat = NULL;
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100366# if defined(FEAT_EVAL)
367 set_vv_searchforward();
368# endif
369 last_idx = saved_last_idx;
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200370 set_no_hlsearch(saved_no_hlsearch);
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100371}
Bram Moolenaard0480092017-11-16 22:20:39 +0100372
373 char_u *
374last_search_pattern(void)
375{
376 return spats[RE_SEARCH].pat;
377}
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100378#endif
379
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380/*
381 * Return TRUE when case should be ignored for search pattern "pat".
382 * Uses the 'ignorecase' and 'smartcase' options.
383 */
384 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100385ignorecase(char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386{
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200387 return ignorecase_opt(pat, p_ic, p_scs);
388}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200390/*
391 * As ignorecase() put pass the "ic" and "scs" flags.
392 */
393 int
394ignorecase_opt(char_u *pat, int ic_in, int scs)
395{
396 int ic = ic_in;
397
398 if (ic && !no_smartcase && scs
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200399 && !(ctrl_x_mode_not_default() && curbuf->b_p_inf))
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200400 ic = !pat_has_uppercase(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 no_smartcase = FALSE;
402
403 return ic;
404}
405
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200406/*
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200407 * Return TRUE if pattern "pat" has an uppercase character.
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200408 */
409 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100410pat_has_uppercase(char_u *pat)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200411{
412 char_u *p = pat;
Christian Brabandt78ba9332021-08-01 12:44:37 +0200413 magic_T magic_val = MAGIC_ON;
414
415 // get the magicness of the pattern
416 (void)skip_regexp_ex(pat, NUL, magic_isset(), NULL, NULL, &magic_val);
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200417
418 while (*p != NUL)
419 {
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200420 int l;
421
422 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
423 {
424 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
425 return TRUE;
426 p += l;
427 }
Christian Brabandtbc67e5a2021-08-05 15:24:59 +0200428 else if (*p == '\\' && magic_val <= MAGIC_ON)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200429 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100430 if (p[1] == '_' && p[2] != NUL) // skip "\_X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200431 p += 3;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100432 else if (p[1] == '%' && p[2] != NUL) // skip "\%X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200433 p += 3;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100434 else if (p[1] != NUL) // skip "\X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200435 p += 2;
436 else
437 p += 1;
438 }
Christian Brabandt78ba9332021-08-01 12:44:37 +0200439 else if ((*p == '%' || *p == '_') && magic_val == MAGIC_ALL)
440 {
441 if (p[1] != NUL) // skip "_X" and %X
442 p += 2;
Christian Brabandtbc67e5a2021-08-05 15:24:59 +0200443 else
444 p++;
Christian Brabandt78ba9332021-08-01 12:44:37 +0200445 }
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200446 else if (MB_ISUPPER(*p))
447 return TRUE;
448 else
449 ++p;
450 }
451 return FALSE;
452}
453
Bram Moolenaar113e1072019-01-20 15:30:40 +0100454#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100456last_csearch(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200457{
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200458 return lastc_bytes;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200459}
460
461 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100462last_csearch_forward(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200463{
464 return lastcdir == FORWARD;
465}
466
467 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100468last_csearch_until(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200469{
470 return last_t_cmd == TRUE;
471}
472
473 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100474set_last_csearch(int c, char_u *s UNUSED, int len UNUSED)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200475{
476 *lastc = c;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200477 lastc_bytelen = len;
478 if (len)
479 memcpy(lastc_bytes, s, len);
480 else
Bram Moolenaara80faa82020-04-12 19:37:17 +0200481 CLEAR_FIELD(lastc_bytes);
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200482}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100483#endif
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200484
485 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100486set_csearch_direction(int cdir)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200487{
488 lastcdir = cdir;
489}
490
491 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100492set_csearch_until(int t_cmd)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200493{
494 last_t_cmd = t_cmd;
495}
496
497 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100498last_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499{
500 return spats[last_idx].pat;
501}
502
503/*
504 * Reset search direction to forward. For "gd" and "gD" commands.
505 */
506 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100507reset_search_dir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508{
509 spats[0].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000510#if defined(FEAT_EVAL)
511 set_vv_searchforward();
512#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513}
514
515#if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
516/*
517 * Set the last search pattern. For ":let @/ =" and viminfo.
518 * Also set the saved search pattern, so that this works in an autocommand.
519 */
520 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100521set_last_search_pat(
522 char_u *s,
523 int idx,
524 int magic,
525 int setlast)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526{
527 vim_free(spats[idx].pat);
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100528 // An empty string means that nothing should be matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 if (*s == NUL)
530 spats[idx].pat = NULL;
531 else
532 spats[idx].pat = vim_strsave(s);
533 spats[idx].magic = magic;
534 spats[idx].no_scs = FALSE;
535 spats[idx].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000536#if defined(FEAT_EVAL)
537 set_vv_searchforward();
538#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539 spats[idx].off.line = FALSE;
540 spats[idx].off.end = FALSE;
541 spats[idx].off.off = 0;
542 if (setlast)
543 last_idx = idx;
544 if (save_level)
545 {
546 vim_free(saved_spats[idx].pat);
547 saved_spats[idx] = spats[0];
548 if (spats[idx].pat == NULL)
549 saved_spats[idx].pat = NULL;
550 else
551 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
Bram Moolenaar975880b2019-03-03 14:42:11 +0100552# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100553 saved_spats_last_idx = last_idx;
Bram Moolenaar975880b2019-03-03 14:42:11 +0100554# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 }
556# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100557 // If 'hlsearch' set and search pat changed: need redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558 if (p_hls && idx == last_idx && !no_hlsearch)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000559 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560# endif
561}
562#endif
563
564#ifdef FEAT_SEARCH_EXTRA
565/*
566 * Get a regexp program for the last used search pattern.
567 * This is used for highlighting all matches in a window.
568 * Values returned in regmatch->regprog and regmatch->rmm_ic.
569 */
570 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100571last_pat_prog(regmmatch_T *regmatch)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572{
573 if (spats[last_idx].pat == NULL)
574 {
575 regmatch->regprog = NULL;
576 return;
577 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100578 ++emsg_off; // So it doesn't beep if bad expr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
580 --emsg_off;
581}
582#endif
583
584/*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100585 * Lowest level search function.
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100586 * Search for 'count'th occurrence of pattern "pat" in direction "dir".
587 * Start at position "pos" and return the found position in "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 *
589 * if (options & SEARCH_MSG) == 0 don't give any messages
590 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
591 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
592 * if (options & SEARCH_HIS) put search pattern in history
593 * if (options & SEARCH_END) return position at end of match
594 * if (options & SEARCH_START) accept match at pos itself
595 * if (options & SEARCH_KEEP) keep previous search pattern
596 * if (options & SEARCH_FOLD) match only once in a closed fold
597 * if (options & SEARCH_PEEK) check for typed char, cancel search
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100598 * if (options & SEARCH_COL) start at pos->col instead of zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 *
600 * Return FAIL (zero) for failure, non-zero for success.
601 * When FEAT_EVAL is defined, returns the index of the first matching
602 * subpattern plus one; one if there was none.
603 */
604 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100605searchit(
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200606 win_T *win, // window to search in; can be NULL for a
607 // buffer without a window!
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100608 buf_T *buf,
609 pos_T *pos,
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100610 pos_T *end_pos, // set to end of the match, unless NULL
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100611 int dir,
612 char_u *pat,
613 long count,
614 int options,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200615 int pat_use, // which pattern to use when "pat" is empty
616 searchit_arg_T *extra_arg) // optional extra arguments, can be NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617{
618 int found;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100619 linenr_T lnum; // no init to shut up Apollo cc
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100620 colnr_T col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621 regmmatch_T regmatch;
622 char_u *ptr;
623 colnr_T matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 lpos_T endpos;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000625 lpos_T matchpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626 int loop;
627 pos_T start_pos;
628 int at_first_line;
629 int extra_col;
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200630 int start_char_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631 int match_ok;
632 long nmatched;
633 int submatch = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100634 int first_match = TRUE;
Bram Moolenaar53989552019-12-23 22:59:18 +0100635 int called_emsg_before = called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636#ifdef FEAT_SEARCH_EXTRA
637 int break_loop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638#endif
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200639 linenr_T stop_lnum = 0; // stop after this line number when != 0
640#ifdef FEAT_RELTIME
641 proftime_T *tm = NULL; // timeout limit or NULL
642 int *timed_out = NULL; // set when timed out or NULL
643#endif
644
645 if (extra_arg != NULL)
646 {
647 stop_lnum = extra_arg->sa_stop_lnum;
648#ifdef FEAT_RELTIME
649 tm = extra_arg->sa_tm;
650 timed_out = &extra_arg->sa_timed_out;
651#endif
652 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653
654 if (search_regcomp(pat, RE_SEARCH, pat_use,
655 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
656 {
657 if ((options & SEARCH_MSG) && !rc_did_emsg)
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000658 semsg(_(e_invalid_search_string_str), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 return FAIL;
660 }
661
Bram Moolenaar280f1262006-01-30 00:14:18 +0000662 /*
663 * find the string
664 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100665 do // loop for count
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100667 // When not accepting a match at the start position set "extra_col" to
668 // a non-zero value. Don't do that when starting at MAXCOL, since
669 // MAXCOL + 1 is zero.
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200670 if (pos->col == MAXCOL)
671 start_char_len = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100672 // Watch out for the "col" being MAXCOL - 2, used in a closed fold.
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200673 else if (has_mbyte
674 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
675 && pos->col < MAXCOL - 2)
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100676 {
Bram Moolenaar82846a02018-02-09 18:09:54 +0100677 ptr = ml_get_buf(buf, pos->lnum, FALSE);
Bram Moolenaar8846ac52018-02-09 19:24:01 +0100678 if ((int)STRLEN(ptr) <= pos->col)
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200679 start_char_len = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100680 else
Bram Moolenaar82846a02018-02-09 18:09:54 +0100681 start_char_len = (*mb_ptr2len)(ptr + pos->col);
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100682 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100683 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200684 start_char_len = 1;
685 if (dir == FORWARD)
686 {
687 if (options & SEARCH_START)
688 extra_col = 0;
689 else
690 extra_col = start_char_len;
691 }
692 else
693 {
694 if (options & SEARCH_START)
695 extra_col = start_char_len;
696 else
697 extra_col = 0;
698 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100699
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100700 start_pos = *pos; // remember start pos for detecting no match
701 found = 0; // default: not found
702 at_first_line = TRUE; // default: start in first line
703 if (pos->lnum == 0) // correct lnum for when starting in line 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 {
705 pos->lnum = 1;
706 pos->col = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100707 at_first_line = FALSE; // not in first line now
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 }
709
710 /*
711 * Start searching in current line, unless searching backwards and
712 * we're in column 0.
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000713 * If we are searching backwards, in column 0, and not including the
714 * current position, gain some efficiency by skipping back a line.
715 * Otherwise begin the search in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 */
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000717 if (dir == BACKWARD && start_pos.col == 0
718 && (options & SEARCH_START) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 {
720 lnum = pos->lnum - 1;
721 at_first_line = FALSE;
722 }
723 else
724 lnum = pos->lnum;
725
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100726 for (loop = 0; loop <= 1; ++loop) // loop twice if 'wrapscan' set
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 {
728 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
729 lnum += dir, at_first_line = FALSE)
730 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100731 // Stop after checking "stop_lnum", if it's set.
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000732 if (stop_lnum != 0 && (dir == FORWARD
733 ? lnum > stop_lnum : lnum < stop_lnum))
734 break;
Bram Moolenaar76929292008-01-06 19:07:36 +0000735#ifdef FEAT_RELTIME
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100736 // Stop after passing the "tm" time limit.
Bram Moolenaar76929292008-01-06 19:07:36 +0000737 if (tm != NULL && profile_passed_limit(tm))
738 break;
739#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000740
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000742 * Look for a match somewhere in line "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100744 col = at_first_line && (options & SEARCH_COL) ? pos->col
745 : (colnr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 nmatched = vim_regexec_multi(&regmatch, win, buf,
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100747 lnum, col,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000748#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200749 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000750#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200751 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000752#endif
753 );
Bram Moolenaar795aaa12020-10-02 20:36:01 +0200754 // vim_regexec_multi() may clear "regprog"
755 if (regmatch.regprog == NULL)
756 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100757 // Abort searching on an error (e.g., out of stack).
Bram Moolenaar53989552019-12-23 22:59:18 +0100758 if (called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200759#ifdef FEAT_RELTIME
760 || (timed_out != NULL && *timed_out)
761#endif
762 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 break;
764 if (nmatched > 0)
765 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100766 // match may actually be in another line when using \zs
Bram Moolenaar677ee682005-01-27 14:41:15 +0000767 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768 endpos = regmatch.endpos[0];
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000769#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 submatch = first_submatch(&regmatch);
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000771#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100772 // "lnum" may be past end of buffer for "\n\zs".
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000773 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
774 ptr = (char_u *)"";
775 else
776 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777
778 /*
779 * Forward search in the first line: match should be after
780 * the start position. If not, continue at the end of the
781 * match (this is vi compatible) or on the next char.
782 */
783 if (dir == FORWARD && at_first_line)
784 {
785 match_ok = TRUE;
786 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000787 * When the match starts in a next line it's certainly
788 * past the start position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 * When match lands on a NUL the cursor will be put
790 * one back afterwards, compare with that position,
791 * otherwise "/$" will get stuck on end of line.
792 */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000793 while (matchpos.lnum == 0
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100794 && ((options & SEARCH_END) && first_match
Bram Moolenaar677ee682005-01-27 14:41:15 +0000795 ? (nmatched == 1
796 && (int)endpos.col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 < (int)start_pos.col + extra_col)
Bram Moolenaar677ee682005-01-27 14:41:15 +0000798 : ((int)matchpos.col
799 - (ptr[matchpos.col] == NUL)
800 < (int)start_pos.col + extra_col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801 {
802 /*
803 * If vi-compatible searching, continue at the end
804 * of the match, otherwise continue one position
805 * forward.
806 */
807 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
808 {
809 if (nmatched > 1)
810 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100811 // end is in next line, thus no match in
812 // this line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 match_ok = FALSE;
814 break;
815 }
816 matchcol = endpos.col;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100817 // for empty match: advance one char
Bram Moolenaar677ee682005-01-27 14:41:15 +0000818 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 && ptr[matchcol] != NUL)
820 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 if (has_mbyte)
822 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000823 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 ++matchcol;
826 }
827 }
828 else
829 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000830 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 if (ptr[matchcol] != NUL)
832 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000834 matchcol += (*mb_ptr2len)(ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 + matchcol);
836 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 ++matchcol;
838 }
839 }
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200840 if (matchcol == 0 && (options & SEARCH_START))
Bram Moolenaardb333a52013-03-19 15:27:48 +0100841 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 if (ptr[matchcol] == NUL
843 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000844 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000845 matchcol,
846#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200847 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000848#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200849 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000850#endif
851 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 {
853 match_ok = FALSE;
854 break;
855 }
Bram Moolenaar795aaa12020-10-02 20:36:01 +0200856 // vim_regexec_multi() may clear "regprog"
857 if (regmatch.regprog == NULL)
858 break;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000859 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 endpos = regmatch.endpos[0];
861# ifdef FEAT_EVAL
862 submatch = first_submatch(&regmatch);
863# endif
864
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100865 // Need to get the line pointer again, a
866 // multi-line search may have made it invalid.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000867 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868 }
869 if (!match_ok)
870 continue;
871 }
872 if (dir == BACKWARD)
873 {
874 /*
875 * Now, if there are multiple matches on this line,
876 * we have to get the last one. Or the last one before
877 * the cursor, if we're on that line.
878 * When putting the new cursor at the end, compare
879 * relative to the end of the match.
880 */
881 match_ok = FALSE;
882 for (;;)
883 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100884 // Remember a position that is before the start
885 // position, we use it if it's the last match in
886 // the line. Always accept a position after
887 // wrapping around.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000888 if (loop
889 || ((options & SEARCH_END)
890 ? (lnum + regmatch.endpos[0].lnum
891 < start_pos.lnum
892 || (lnum + regmatch.endpos[0].lnum
893 == start_pos.lnum
894 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200895 < (int)start_pos.col
896 + extra_col))
Bram Moolenaar677ee682005-01-27 14:41:15 +0000897 : (lnum + regmatch.startpos[0].lnum
898 < start_pos.lnum
899 || (lnum + regmatch.startpos[0].lnum
900 == start_pos.lnum
901 && (int)regmatch.startpos[0].col
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200902 < (int)start_pos.col
903 + extra_col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000906 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 endpos = regmatch.endpos[0];
908# ifdef FEAT_EVAL
909 submatch = first_submatch(&regmatch);
910# endif
911 }
912 else
913 break;
914
915 /*
916 * We found a valid match, now check if there is
917 * another one after it.
918 * If vi-compatible searching, continue at the end
919 * of the match, otherwise continue one position
920 * forward.
921 */
922 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
923 {
924 if (nmatched > 1)
925 break;
926 matchcol = endpos.col;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100927 // for empty match: advance one char
Bram Moolenaar677ee682005-01-27 14:41:15 +0000928 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 && ptr[matchcol] != NUL)
930 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 if (has_mbyte)
932 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000933 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 ++matchcol;
936 }
937 }
938 else
939 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100940 // Stop when the match is in a next line.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000941 if (matchpos.lnum > 0)
942 break;
943 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 if (ptr[matchcol] != NUL)
945 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 if (has_mbyte)
947 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000948 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 ++matchcol;
951 }
952 }
953 if (ptr[matchcol] == NUL
954 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000955 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000956 matchcol,
957#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200958 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000959#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200960 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000961#endif
962 )) == 0)
Bram Moolenaar9d322762018-02-09 16:04:25 +0100963 {
964#ifdef FEAT_RELTIME
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100965 // If the search timed out, we did find a match
966 // but it might be the wrong one, so that's not
967 // OK.
Bram Moolenaar9d322762018-02-09 16:04:25 +0100968 if (timed_out != NULL && *timed_out)
969 match_ok = FALSE;
970#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 break;
Bram Moolenaar9d322762018-02-09 16:04:25 +0100972 }
Bram Moolenaar795aaa12020-10-02 20:36:01 +0200973 // vim_regexec_multi() may clear "regprog"
974 if (regmatch.regprog == NULL)
975 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100977 // Need to get the line pointer again, a
978 // multi-line search may have made it invalid.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000979 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 }
981
982 /*
983 * If there is only a match after the cursor, skip
984 * this match.
985 */
986 if (!match_ok)
987 continue;
988 }
989
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100990 // With the SEARCH_END option move to the last character
991 // of the match. Don't do it for an empty match, end
992 // should be same as start then.
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200993 if ((options & SEARCH_END) && !(options & SEARCH_NOOF)
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000994 && !(matchpos.lnum == endpos.lnum
995 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100997 // For a match in the first column, set the position
998 // on the NUL in the previous line.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000999 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001000 pos->col = endpos.col;
1001 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001002 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001003 if (pos->lnum > 1) // just in case
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001004 {
1005 --pos->lnum;
1006 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
1007 pos->lnum, FALSE));
1008 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001009 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001010 else
1011 {
1012 --pos->col;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001013 if (has_mbyte
1014 && pos->lnum <= buf->b_ml.ml_line_count)
1015 {
1016 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1017 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
1018 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001019 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001020 if (end_pos != NULL)
1021 {
1022 end_pos->lnum = lnum + matchpos.lnum;
1023 end_pos->col = matchpos.col;
1024 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 }
1026 else
1027 {
Bram Moolenaar677ee682005-01-27 14:41:15 +00001028 pos->lnum = lnum + matchpos.lnum;
1029 pos->col = matchpos.col;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001030 if (end_pos != NULL)
1031 {
1032 end_pos->lnum = lnum + endpos.lnum;
1033 end_pos->col = endpos.col;
1034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 pos->coladd = 0;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001037 if (end_pos != NULL)
1038 end_pos->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039 found = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +01001040 first_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001042 // Set variables used for 'incsearch' highlighting.
Bram Moolenaar677ee682005-01-27 14:41:15 +00001043 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 search_match_endcol = endpos.col;
1045 break;
1046 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001047 line_breakcheck(); // stop if ctrl-C typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 if (got_int)
1049 break;
1050
1051#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001052 // Cancel searching if a character was typed. Used for
1053 // 'incsearch'. Don't check too often, that would slowdown
1054 // searching too much.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 if ((options & SEARCH_PEEK)
1056 && ((lnum - pos->lnum) & 0x3f) == 0
1057 && char_avail())
1058 {
1059 break_loop = TRUE;
1060 break;
1061 }
1062#endif
1063
1064 if (loop && lnum == start_pos.lnum)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001065 break; // if second loop, stop where started
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 }
1067 at_first_line = FALSE;
1068
Bram Moolenaar795aaa12020-10-02 20:36:01 +02001069 // vim_regexec_multi() may clear "regprog"
1070 if (regmatch.regprog == NULL)
1071 break;
1072
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001074 * Stop the search if wrapscan isn't set, "stop_lnum" is
1075 * specified, after an interrupt, after a match and after looping
1076 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 */
Bram Moolenaar53989552019-12-23 22:59:18 +01001078 if (!p_ws || stop_lnum != 0 || got_int
1079 || called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001080#ifdef FEAT_RELTIME
1081 || (timed_out != NULL && *timed_out)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001082#endif
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001083#ifdef FEAT_SEARCH_EXTRA
1084 || break_loop
1085#endif
1086 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 break;
1088
1089 /*
1090 * If 'wrapscan' is set we continue at the other end of the file.
1091 * If 'shortmess' does not contain 's', we give a message.
1092 * This message is also remembered in keep_msg for when the screen
1093 * is redrawn. The keep_msg is cleared whenever another message is
1094 * written.
1095 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001096 if (dir == BACKWARD) // start second loop at the other end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00001100 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
1101 give_warning((char_u *)_(dir == BACKWARD
1102 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001103 if (extra_arg != NULL)
1104 extra_arg->sa_wrapped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 }
Bram Moolenaar53989552019-12-23 22:59:18 +01001106 if (got_int || called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001107#ifdef FEAT_RELTIME
1108 || (timed_out != NULL && *timed_out)
1109#endif
Bram Moolenaar78a15312009-05-15 19:33:18 +00001110#ifdef FEAT_SEARCH_EXTRA
1111 || break_loop
1112#endif
1113 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 break;
1115 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001116 while (--count > 0 && found); // stop after count matches or no match
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117
Bram Moolenaar473de612013-06-08 18:19:48 +02001118 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001120 if (!found) // did not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 {
1122 if (got_int)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001123 emsg(_(e_interrupted));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 else if ((options & SEARCH_MSG) == SEARCH_MSG)
1125 {
1126 if (p_ws)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001127 semsg(_(e_pattern_not_found_str), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 else if (lnum == 0)
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001129 semsg(_(e_search_hit_top_without_match_for_str), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 else
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001131 semsg(_(e_search_hit_bottom_without_match_for_str), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 }
1133 return FAIL;
1134 }
1135
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001136 // A pattern like "\n\zs" may go past the last line.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001137 if (pos->lnum > buf->b_ml.ml_line_count)
1138 {
1139 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001140 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001141 if (pos->col > 0)
1142 --pos->col;
1143 }
1144
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 return submatch + 1;
1146}
1147
1148#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001149 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001150set_search_direction(int cdir)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001151{
1152 spats[0].off.dir = cdir;
1153}
1154
1155 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001156set_vv_searchforward(void)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001157{
1158 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1159}
1160
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161/*
1162 * Return the number of the first subpat that matched.
Bram Moolenaarad4d8a12015-12-28 19:20:36 +01001163 * Return zero if none of them matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 */
1165 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001166first_submatch(regmmatch_T *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167{
1168 int submatch;
1169
1170 for (submatch = 1; ; ++submatch)
1171 {
1172 if (rp->startpos[submatch].lnum >= 0)
1173 break;
1174 if (submatch == 9)
1175 {
1176 submatch = 0;
1177 break;
1178 }
1179 }
1180 return submatch;
1181}
1182#endif
1183
1184/*
1185 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001186 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 * If 'dirc' is 0: use previous dir.
1188 * If 'pat' is NULL or empty : use previous string.
1189 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1190 * If 'options & SEARCH_ECHO': echo the search command and handle options
1191 * If 'options & SEARCH_MSG' : may give error message
1192 * If 'options & SEARCH_OPT' : interpret optional flags
1193 * If 'options & SEARCH_HIS' : put search pattern in history
1194 * If 'options & SEARCH_NOOF': don't add offset to position
1195 * If 'options & SEARCH_MARK': set previous context mark
1196 * If 'options & SEARCH_KEEP': keep previous search pattern
1197 * If 'options & SEARCH_START': accept match at curpos itself
1198 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1199 *
1200 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1201 * makes the movement linewise without moving the match position.
1202 *
Bram Moolenaarb6c27352015-03-05 19:57:49 +01001203 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 */
1205 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001206do_search(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001207 oparg_T *oap, // can be NULL
1208 int dirc, // '/' or '?'
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001209 int search_delim, // the delimiter for the search, e.g. '%' in
1210 // s%regex%replacement%
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001211 char_u *pat,
1212 long count,
1213 int options,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001214 searchit_arg_T *sia) // optional arguments or NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001216 pos_T pos; // position of the last match
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 char_u *searchstr;
Bram Moolenaarc3328162019-07-23 22:15:25 +02001218 soffset_T old_off;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001219 int retval; // Return value
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220 char_u *p;
1221 long c;
1222 char_u *dircp;
1223 char_u *strcopy = NULL;
1224 char_u *ps;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001225 char_u *msgbuf = NULL;
1226 size_t len;
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001227 int has_offset = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228
1229 /*
1230 * A line offset is not remembered, this is vi compatible.
1231 */
1232 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1233 {
1234 spats[0].off.line = FALSE;
1235 spats[0].off.off = 0;
1236 }
1237
1238 /*
1239 * Save the values for when (options & SEARCH_KEEP) is used.
1240 * (there is no "if ()" around this because gcc wants them initialized)
1241 */
1242 old_off = spats[0].off;
1243
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001244 pos = curwin->w_cursor; // start searching at the cursor position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245
1246 /*
1247 * Find out the direction of the search.
1248 */
1249 if (dirc == 0)
1250 dirc = spats[0].off.dir;
1251 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001252 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001254#if defined(FEAT_EVAL)
1255 set_vv_searchforward();
1256#endif
1257 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 if (options & SEARCH_REV)
1259 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001260#ifdef MSWIN
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001261 // There is a bug in the Visual C++ 2.2 compiler which means that
1262 // dirc always ends up being '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 dirc = (dirc == '/') ? '?' : '/';
1264#else
1265 if (dirc == '/')
1266 dirc = '?';
1267 else
1268 dirc = '/';
1269#endif
1270 }
1271
1272#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001273 // If the cursor is in a closed fold, don't find another match in the same
1274 // fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 if (dirc == '/')
1276 {
1277 if (hasFolding(pos.lnum, NULL, &pos.lnum))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001278 pos.col = MAXCOL - 2; // avoid overflow when adding 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 }
1280 else
1281 {
1282 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1283 pos.col = 0;
1284 }
1285#endif
1286
1287#ifdef FEAT_SEARCH_EXTRA
1288 /*
1289 * Turn 'hlsearch' highlighting back on.
1290 */
1291 if (no_hlsearch && !(options & SEARCH_KEEP))
1292 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001293 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02001294 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 }
1296#endif
1297
1298 /*
1299 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1300 */
1301 for (;;)
1302 {
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001303 int show_top_bot_msg = FALSE;
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02001304
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 searchstr = pat;
1306 dircp = NULL;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001307 // use previous pattern
Bram Moolenaarc036e872020-02-21 21:30:52 +01001308 if (pat == NULL || *pat == NUL || *pat == search_delim)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001310 if (spats[RE_SEARCH].pat == NULL) // no previous pattern
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 {
Bram Moolenaarea683da2016-09-09 21:41:34 +02001312 searchstr = spats[RE_SUBST].pat;
1313 if (searchstr == NULL)
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001314 {
Bram Moolenaare29a27f2021-07-20 21:07:36 +02001315 emsg(_(e_no_previous_regular_expression));
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001316 retval = 0;
1317 goto end_do_search;
1318 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001320 else
1321 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001322 // make search_regcomp() use spats[RE_SEARCH].pat
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001323 searchstr = (char_u *)"";
1324 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 }
1326
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001327 if (pat != NULL && *pat != NUL) // look for (new) offset
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 {
1329 /*
1330 * Find end of regular expression.
1331 * If there is a matching '/' or '?', toss it.
1332 */
1333 ps = strcopy;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01001334 p = skip_regexp_ex(pat, search_delim, magic_isset(),
Bram Moolenaard93a7fc2021-01-04 12:42:13 +01001335 &strcopy, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 if (strcopy != ps)
1337 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001338 // made a copy of "pat" to change "\?" to "?"
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001339 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 pat = strcopy;
1341 searchstr = strcopy;
1342 }
Bram Moolenaarc036e872020-02-21 21:30:52 +01001343 if (*p == search_delim)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001345 dircp = p; // remember where we put the NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 *p++ = NUL;
1347 }
1348 spats[0].off.line = FALSE;
1349 spats[0].off.end = FALSE;
1350 spats[0].off.off = 0;
1351 /*
1352 * Check for a line offset or a character offset.
1353 * For get_address (echo off) we don't check for a character
1354 * offset, because it is meaningless and the 's' could be a
1355 * substitute command.
1356 */
1357 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1358 spats[0].off.line = TRUE;
1359 else if ((options & SEARCH_OPT) &&
1360 (*p == 'e' || *p == 's' || *p == 'b'))
1361 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001362 if (*p == 'e') // end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 spats[0].off.end = SEARCH_END;
1364 ++p;
1365 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001366 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') // got an offset
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001368 // 'nr' or '+nr' or '-nr'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1370 spats[0].off.off = atol((char *)p);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001371 else if (*p == '-') // single '-'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 spats[0].off.off = -1;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001373 else // single '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 spats[0].off.off = 1;
1375 ++p;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001376 while (VIM_ISDIGIT(*p)) // skip number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 ++p;
1378 }
1379
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001380 // compute length of search command for get_address()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 searchcmdlen += (int)(p - pat);
1382
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001383 pat = p; // put pat after search command
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 }
1385
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001386 if ((options & SEARCH_ECHO) && messaging() &&
1387 !msg_silent &&
1388 (!cmd_silent || !shortmess(SHM_SEARCHCOUNT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 char_u *trunc;
Bram Moolenaar984f0312019-05-24 13:11:47 +02001391 char_u off_buf[40];
Bram Moolenaard33a7642019-05-24 17:56:14 +02001392 size_t off_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001394 // Compute msg_row early.
1395 msg_start();
1396
Bram Moolenaar984f0312019-05-24 13:11:47 +02001397 // Get the offset, so we know how long it is.
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001398 if (!cmd_silent &&
1399 (spats[0].off.line || spats[0].off.end || spats[0].off.off))
Bram Moolenaar984f0312019-05-24 13:11:47 +02001400 {
1401 p = off_buf;
1402 *p++ = dirc;
1403 if (spats[0].off.end)
1404 *p++ = 'e';
1405 else if (!spats[0].off.line)
1406 *p++ = 's';
1407 if (spats[0].off.off > 0 || spats[0].off.line)
1408 *p++ = '+';
1409 *p = NUL;
1410 if (spats[0].off.off != 0 || spats[0].off.line)
1411 sprintf((char *)p, "%ld", spats[0].off.off);
1412 off_len = STRLEN(off_buf);
1413 }
1414
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 if (*searchstr == NUL)
Bram Moolenaar2fb8f682018-12-01 13:14:45 +01001416 p = spats[0].pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 else
1418 p = searchstr;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001419
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001420 if (!shortmess(SHM_SEARCHCOUNT) || cmd_silent)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001421 {
1422 // Reserve enough space for the search pattern + offset +
Bram Moolenaar984f0312019-05-24 13:11:47 +02001423 // search stat. Use all the space available, so that the
1424 // search state is right aligned. If there is not enough space
1425 // msg_strtrunc() will shorten in the middle.
Bram Moolenaar19e8ac72019-09-03 22:23:38 +02001426 if (msg_scrolled != 0 && !cmd_silent)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001427 // Use all the columns.
1428 len = (int)(Rows - msg_row) * Columns - 1;
1429 else
1430 // Use up to 'showcmd' column.
1431 len = (int)(Rows - msg_row - 1) * Columns + sc_col - 1;
Bram Moolenaar984f0312019-05-24 13:11:47 +02001432 if (len < STRLEN(p) + off_len + SEARCH_STAT_BUF_LEN + 3)
1433 len = STRLEN(p) + off_len + SEARCH_STAT_BUF_LEN + 3;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001434 }
1435 else
1436 // Reserve enough space for the search pattern + offset.
Bram Moolenaar984f0312019-05-24 13:11:47 +02001437 len = STRLEN(p) + off_len + 3;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001438
Bram Moolenaar880e4d92020-04-11 21:31:28 +02001439 vim_free(msgbuf);
Bram Moolenaar51e14382019-05-25 20:21:28 +02001440 msgbuf = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 if (msgbuf != NULL)
1442 {
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001443 vim_memset(msgbuf, ' ', len);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001444 msgbuf[len - 1] = NUL;
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001445 // do not fill the msgbuf buffer, if cmd_silent is set, leave it
1446 // empty for the search_stat feature.
1447 if (!cmd_silent)
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001448 {
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001449 msgbuf[0] = dirc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001451 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1452 {
1453 // Use a space to draw the composing char on.
1454 msgbuf[1] = ' ';
1455 mch_memmove(msgbuf + 2, p, STRLEN(p));
1456 }
1457 else
1458 mch_memmove(msgbuf + 1, p, STRLEN(p));
1459 if (off_len > 0)
1460 mch_memmove(msgbuf + STRLEN(p) + 1, off_buf, off_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001462 trunc = msg_strtrunc(msgbuf, TRUE);
1463 if (trunc != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 {
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001465 vim_free(msgbuf);
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001466 msgbuf = trunc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001469#ifdef FEAT_RIGHTLEFT
1470 // The search pattern could be shown on the right in
1471 // rightleft mode, but the 'ruler' and 'showcmd' area use
1472 // it too, thus it would be blanked out again very soon.
1473 // Show it on the left, but do reverse the text.
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001474 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1475 {
1476 char_u *r;
1477 size_t pat_len;
1478
1479 r = reverse_text(msgbuf);
1480 if (r != NULL)
1481 {
1482 vim_free(msgbuf);
1483 msgbuf = r;
1484 // move reversed text to beginning of buffer
1485 while (*r != NUL && *r == ' ')
1486 r++;
1487 pat_len = msgbuf + STRLEN(msgbuf) - r;
1488 mch_memmove(msgbuf, r, pat_len);
1489 // overwrite old text
1490 if ((size_t)(r - msgbuf) >= pat_len)
1491 vim_memset(r, ' ', pat_len);
1492 else
1493 vim_memset(msgbuf + pat_len, ' ', r - msgbuf);
1494 }
1495 }
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001496#endif
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001497 msg_outtrans(msgbuf);
1498 msg_clr_eos();
1499 msg_check();
1500
1501 gotocmdline(FALSE);
1502 out_flush();
1503 msg_nowait = TRUE; // don't wait for this message
1504 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 }
1506 }
1507
1508 /*
1509 * If there is a character offset, subtract it from the current
1510 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001511 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 * This is not done for a line offset, because then we would not be vi
1513 * compatible.
1514 */
Bram Moolenaared203462004-06-16 11:19:22 +00001515 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 {
1517 if (spats[0].off.off > 0)
1518 {
1519 for (c = spats[0].off.off; c; --c)
1520 if (decl(&pos) == -1)
1521 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001522 if (c) // at start of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001524 pos.lnum = 0; // allow lnum == 0 here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 pos.col = MAXCOL;
1526 }
1527 }
1528 else
1529 {
1530 for (c = spats[0].off.off; c; ++c)
1531 if (incl(&pos) == -1)
1532 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001533 if (c) // at end of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 {
1535 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1536 pos.col = 0;
1537 }
1538 }
1539 }
1540
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001541 /*
1542 * The actual search.
1543 */
Bram Moolenaar14184a32019-02-16 15:10:30 +01001544 c = searchit(curwin, curbuf, &pos, NULL,
1545 dirc == '/' ? FORWARD : BACKWARD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 searchstr, count, spats[0].off.end + (options &
1547 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1548 + SEARCH_MSG + SEARCH_START
1549 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001550 RE_LAST, sia);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551
1552 if (dircp != NULL)
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02001553 *dircp = search_delim; // restore second '/' or '?' for normal_cmd()
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001554
1555 if (!shortmess(SHM_SEARCH)
1556 && ((dirc == '/' && LT_POS(pos, curwin->w_cursor))
1557 || (dirc == '?' && LT_POS(curwin->w_cursor, pos))))
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02001558 show_top_bot_msg = TRUE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001559
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 if (c == FAIL)
1561 {
1562 retval = 0;
1563 goto end_do_search;
1564 }
1565 if (spats[0].off.end && oap != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001566 oap->inclusive = TRUE; // 'e' includes last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001568 retval = 1; // pattern found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569
1570 /*
1571 * Add character and/or line offset
1572 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001573 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 {
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001575 pos_T org_pos = pos;
1576
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001577 if (spats[0].off.line) // Add the offset to the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 {
1579 c = pos.lnum + spats[0].off.off;
1580 if (c < 1)
1581 pos.lnum = 1;
1582 else if (c > curbuf->b_ml.ml_line_count)
1583 pos.lnum = curbuf->b_ml.ml_line_count;
1584 else
1585 pos.lnum = c;
1586 pos.col = 0;
1587
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001588 retval = 2; // pattern found, line offset added
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001590 else if (pos.col < MAXCOL - 2) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001592 // to the right, check for end of file
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001593 c = spats[0].off.off;
1594 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001596 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 if (incl(&pos) == -1)
1598 break;
1599 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001600 // to the left, check for start of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 else
1602 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001603 while (c++ < 0)
1604 if (decl(&pos) == -1)
1605 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 }
1607 }
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001608 if (!EQUAL_POS(pos, org_pos))
1609 has_offset = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 }
1611
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001612 // Show [1/15] if 'S' is not in 'shortmess'.
1613 if ((options & SEARCH_ECHO)
1614 && messaging()
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001615 && !msg_silent
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001616 && c != FAIL
1617 && !shortmess(SHM_SEARCHCOUNT)
1618 && msgbuf != NULL)
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02001619 cmdline_search_stat(dirc, &pos, &curwin->w_cursor,
1620 show_top_bot_msg, msgbuf,
1621 (count != 1 || has_offset
Bram Moolenaar6cb07262020-05-29 22:49:43 +02001622#ifdef FEAT_FOLDING
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02001623 || (!(fdo_flags & FDO_SEARCH)
1624 && hasFolding(curwin->w_cursor.lnum,
1625 NULL, NULL))
Bram Moolenaar6cb07262020-05-29 22:49:43 +02001626#endif
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02001627 ),
1628 SEARCH_STAT_DEF_MAX_COUNT,
1629 SEARCH_STAT_DEF_TIMEOUT);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001630
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 /*
1632 * The search command can be followed by a ';' to do another search.
1633 * For example: "/pat/;/foo/+3;?bar"
1634 * This is like doing another search command, except:
1635 * - The remembered direction '/' or '?' is from the first search.
1636 * - When an error happens the cursor isn't moved at all.
1637 * Don't do this when called by get_address() (it handles ';' itself).
1638 */
1639 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1640 break;
1641
1642 dirc = *++pat;
Bram Moolenaarc036e872020-02-21 21:30:52 +01001643 search_delim = dirc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 if (dirc != '?' && dirc != '/')
1645 {
1646 retval = 0;
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001647 emsg(_(e_expected_question_or_slash_after_semicolon));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 goto end_do_search;
1649 }
1650 ++pat;
1651 }
1652
1653 if (options & SEARCH_MARK)
1654 setpcmark();
1655 curwin->w_cursor = pos;
1656 curwin->w_set_curswant = TRUE;
1657
1658end_do_search:
Bram Moolenaare1004402020-10-24 20:49:43 +02001659 if ((options & SEARCH_KEEP) || (cmdmod.cmod_flags & CMOD_KEEPPATTERNS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 spats[0].off = old_off;
1661 vim_free(strcopy);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001662 vim_free(msgbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663
1664 return retval;
1665}
1666
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667/*
1668 * search_for_exact_line(buf, pos, dir, pat)
1669 *
1670 * Search for a line starting with the given pattern (ignoring leading
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001671 * white-space), starting from pos and going in direction "dir". "pos" will
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 * contain the position of the match found. Blank lines match only if
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001673 * ADDING is set. If p_ic is set then the pattern must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 * Return OK for success, or FAIL if no line found.
1675 */
1676 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001677search_for_exact_line(
1678 buf_T *buf,
1679 pos_T *pos,
1680 int dir,
1681 char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682{
1683 linenr_T start = 0;
1684 char_u *ptr;
1685 char_u *p;
1686
1687 if (buf->b_ml.ml_line_count == 0)
1688 return FAIL;
1689 for (;;)
1690 {
1691 pos->lnum += dir;
1692 if (pos->lnum < 1)
1693 {
1694 if (p_ws)
1695 {
1696 pos->lnum = buf->b_ml.ml_line_count;
1697 if (!shortmess(SHM_SEARCH))
1698 give_warning((char_u *)_(top_bot_msg), TRUE);
1699 }
1700 else
1701 {
1702 pos->lnum = 1;
1703 break;
1704 }
1705 }
1706 else if (pos->lnum > buf->b_ml.ml_line_count)
1707 {
1708 if (p_ws)
1709 {
1710 pos->lnum = 1;
1711 if (!shortmess(SHM_SEARCH))
1712 give_warning((char_u *)_(bot_top_msg), TRUE);
1713 }
1714 else
1715 {
1716 pos->lnum = 1;
1717 break;
1718 }
1719 }
1720 if (pos->lnum == start)
1721 break;
1722 if (start == 0)
1723 start = pos->lnum;
1724 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1725 p = skipwhite(ptr);
1726 pos->col = (colnr_T) (p - ptr);
1727
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001728 // when adding lines the matching line may be empty but it is not
1729 // ignored because we are interested in the next line -- Acevedo
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001730 if ((compl_cont_status & CONT_ADDING)
1731 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 {
1733 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1734 return OK;
1735 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001736 else if (*p != NUL) // ignore empty lines
1737 { // expanding lines or words
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001738 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1739 : STRNCMP(p, pat, compl_length)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 return OK;
1741 }
1742 }
1743 return FAIL;
1744}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745
1746/*
1747 * Character Searches
1748 */
1749
1750/*
1751 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1752 * position of the character, otherwise move to just before the char.
1753 * Do this "cap->count1" times.
1754 * Return FAIL or OK.
1755 */
1756 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001757searchc(cmdarg_T *cap, int t_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001759 int c = cap->nchar; // char to search for
1760 int dir = cap->arg; // TRUE for searching forward
1761 long count = cap->count1; // repeat count
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 int col;
1763 char_u *p;
1764 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001765 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001767 if (c != NUL) // normal search: remember args for repeat
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001769 if (!KeyStuffed) // don't remember when redoing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001771 *lastc = c;
1772 set_csearch_direction(dir);
1773 set_csearch_until(t_cmd);
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001774 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 if (cap->ncharC1 != 0)
1776 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001777 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1,
1778 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 if (cap->ncharC2 != 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001780 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2,
1781 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 }
1784 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001785 else // repeat previous search
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 {
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001787 if (*lastc == NUL && lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 return FAIL;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001789 if (dir) // repeat in opposite direction
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 dir = -lastcdir;
1791 else
1792 dir = lastcdir;
1793 t_cmd = last_t_cmd;
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001794 c = *lastc;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001795 // For multi-byte re-use last lastc_bytes[] and lastc_bytelen.
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001796
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001797 // Force a move of at least one char, so ";" and "," will move the
1798 // cursor, even if the cursor is right in front of char we are looking
1799 // at.
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001800 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001801 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 }
1803
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001804 if (dir == BACKWARD)
1805 cap->oap->inclusive = FALSE;
1806 else
1807 cap->oap->inclusive = TRUE;
1808
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 p = ml_get_curline();
1810 col = curwin->w_cursor.col;
1811 len = (int)STRLEN(p);
1812
1813 while (count--)
1814 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 if (has_mbyte)
1816 {
1817 for (;;)
1818 {
1819 if (dir > 0)
1820 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001821 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 if (col >= len)
1823 return FAIL;
1824 }
1825 else
1826 {
1827 if (col == 0)
1828 return FAIL;
1829 col -= (*mb_head_off)(p, p + col - 1) + 1;
1830 }
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001831 if (lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001833 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 break;
1835 }
Bram Moolenaar66727e12017-03-01 22:17:05 +01001836 else if (STRNCMP(p + col, lastc_bytes, lastc_bytelen) == 0
Bram Moolenaarb129a442016-12-01 17:25:20 +01001837 && stop)
Bram Moolenaar66727e12017-03-01 22:17:05 +01001838 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001839 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 }
1841 }
1842 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 {
1844 for (;;)
1845 {
1846 if ((col += dir) < 0 || col >= len)
1847 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001848 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001850 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 }
1852 }
1853 }
1854
1855 if (t_cmd)
1856 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001857 // backup to before the character (possibly double-byte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 col -= dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 if (has_mbyte)
1860 {
1861 if (dir < 0)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001862 // Landed on the search char which is lastc_bytelen long
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001863 col += lastc_bytelen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001865 // To previous char, which may be multi-byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 col -= (*mb_head_off)(p, p + col);
1867 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 }
1869 curwin->w_cursor.col = col;
1870
1871 return OK;
1872}
1873
1874/*
1875 * "Other" Searches
1876 */
1877
1878/*
1879 * findmatch - find the matching paren or brace
1880 *
1881 * Improvement over vi: Braces inside quotes are ignored.
1882 */
1883 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001884findmatch(oparg_T *oap, int initc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885{
1886 return findmatchlimit(oap, initc, 0, 0);
1887}
1888
1889/*
1890 * Return TRUE if the character before "linep[col]" equals "ch".
1891 * Return FALSE if "col" is zero.
1892 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1893 * is NULL.
1894 * Handles multibyte string correctly.
1895 */
1896 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001897check_prevcol(
1898 char_u *linep,
1899 int col,
1900 int ch,
1901 int *prevcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902{
1903 --col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 if (col > 0 && has_mbyte)
1905 col -= (*mb_head_off)(linep, linep + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 if (prevcol)
1907 *prevcol = col;
1908 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1909}
1910
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001911/*
1912 * Raw string start is found at linep[startpos.col - 1].
1913 * Return TRUE if the matching end can be found between startpos and endpos.
1914 */
1915 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001916find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos)
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001917{
1918 char_u *p;
1919 char_u *delim_copy;
1920 size_t delim_len;
1921 linenr_T lnum;
1922 int found = FALSE;
1923
1924 for (p = linep + startpos->col + 1; *p && *p != '('; ++p)
1925 ;
1926 delim_len = (p - linep) - startpos->col - 1;
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001927 delim_copy = vim_strnsave(linep + startpos->col + 1, delim_len);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001928 if (delim_copy == NULL)
1929 return FALSE;
1930 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum)
1931 {
1932 char_u *line = ml_get(lnum);
1933
1934 for (p = line + (lnum == startpos->lnum
1935 ? startpos->col + 1 : 0); *p; ++p)
1936 {
1937 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col)
1938 break;
Bram Moolenaar282f9c62020-08-04 21:46:18 +02001939 if (*p == ')' && STRNCMP(delim_copy, p + 1, delim_len) == 0
1940 && p[delim_len + 1] == '"')
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001941 {
1942 found = TRUE;
1943 break;
1944 }
1945 }
1946 if (found)
1947 break;
1948 }
1949 vim_free(delim_copy);
1950 return found;
1951}
1952
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953/*
Bram Moolenaar556ae8e2019-11-21 22:27:22 +01001954 * Check matchpairs option for "*initc".
1955 * If there is a match set "*initc" to the matching character and "*findc" to
1956 * the opposite character. Set "*backwards" to the direction.
1957 * When "switchit" is TRUE swap the direction.
1958 */
1959 static void
1960find_mps_values(
1961 int *initc,
1962 int *findc,
1963 int *backwards,
1964 int switchit)
1965{
1966 char_u *ptr;
1967
1968 ptr = curbuf->b_p_mps;
1969 while (*ptr != NUL)
1970 {
1971 if (has_mbyte)
1972 {
1973 char_u *prev;
1974
1975 if (mb_ptr2char(ptr) == *initc)
1976 {
1977 if (switchit)
1978 {
1979 *findc = *initc;
1980 *initc = mb_ptr2char(ptr + mb_ptr2len(ptr) + 1);
1981 *backwards = TRUE;
1982 }
1983 else
1984 {
1985 *findc = mb_ptr2char(ptr + mb_ptr2len(ptr) + 1);
1986 *backwards = FALSE;
1987 }
1988 return;
1989 }
1990 prev = ptr;
1991 ptr += mb_ptr2len(ptr) + 1;
1992 if (mb_ptr2char(ptr) == *initc)
1993 {
1994 if (switchit)
1995 {
1996 *findc = *initc;
1997 *initc = mb_ptr2char(prev);
1998 *backwards = FALSE;
1999 }
2000 else
2001 {
2002 *findc = mb_ptr2char(prev);
2003 *backwards = TRUE;
2004 }
2005 return;
2006 }
2007 ptr += mb_ptr2len(ptr);
2008 }
2009 else
2010 {
2011 if (*ptr == *initc)
2012 {
2013 if (switchit)
2014 {
2015 *backwards = TRUE;
2016 *findc = *initc;
2017 *initc = ptr[2];
2018 }
2019 else
2020 {
2021 *backwards = FALSE;
2022 *findc = ptr[2];
2023 }
2024 return;
2025 }
2026 ptr += 2;
2027 if (*ptr == *initc)
2028 {
2029 if (switchit)
2030 {
2031 *backwards = FALSE;
2032 *findc = *initc;
2033 *initc = ptr[-2];
2034 }
2035 else
2036 {
2037 *backwards = TRUE;
2038 *findc = ptr[-2];
2039 }
2040 return;
2041 }
2042 ++ptr;
2043 }
2044 if (*ptr == ',')
2045 ++ptr;
2046 }
2047}
2048
2049/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 * findmatchlimit -- find the matching paren or brace, if it exists within
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002051 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling
2052 * off the edge of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 *
2054 * "initc" is the character to find a match for. NUL means to find the
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002055 * character at or after the cursor. Special values:
2056 * '*' look for C-style comment / *
2057 * '/' look for C-style comment / *, ignoring comment-end
2058 * '#' look for preprocessor directives
2059 * 'R' look for raw string start: R"delim(text)delim" (only backwards)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 *
2061 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
2062 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
2063 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
2064 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002065 *
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002066 * "oap" is only used to set oap->motion_type for a linewise motion, it can be
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002067 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 */
2069
2070 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002071findmatchlimit(
2072 oparg_T *oap,
2073 int initc,
2074 int flags,
2075 int maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002077 static pos_T pos; // current search position
2078 int findc = 0; // matching brace
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 int c;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002080 int count = 0; // cumulative number of braces
2081 int backwards = FALSE; // init for gcc
2082 int raw_string = FALSE; // search for raw string
2083 int inquote = FALSE; // TRUE when inside quotes
2084 char_u *linep; // pointer to current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 char_u *ptr;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002086 int do_quotes; // check for quotes in current line
2087 int at_start; // do_quotes value at start position
2088 int hash_dir = 0; // Direction searched for # things
2089 int comment_dir = 0; // Direction searched for comments
2090 pos_T match_pos; // Where last slash-star was found
2091 int start_in_quotes; // start position is in quotes
2092 int traveled = 0; // how far we've searched so far
2093 int ignore_cend = FALSE; // ignore comment end
2094 int cpo_match; // vi compatible matching
2095 int cpo_bsl; // don't recognize backslashes
2096 int match_escaped = 0; // search for escaped match
2097 int dir; // Direction to search
2098 int comment_col = MAXCOL; // start of / / comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002099#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002100 int lispcomm = FALSE; // inside of Lisp-style comment
2101 int lisp = curbuf->b_p_lisp; // engage Lisp-specific hacks ;)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002102#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103
2104 pos = curwin->w_cursor;
Bram Moolenaarc56c4592013-08-14 17:45:29 +02002105 pos.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106 linep = ml_get(pos.lnum);
2107
2108 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
2109 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
2110
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002111 // Direction to search when initc is '/', '*' or '#'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112 if (flags & FM_BACKWARD)
2113 dir = BACKWARD;
2114 else if (flags & FM_FORWARD)
2115 dir = FORWARD;
2116 else
2117 dir = 0;
2118
2119 /*
2120 * if initc given, look in the table for the matching character
2121 * '/' and '*' are special cases: look for start or end of comment.
2122 * When '/' is used, we ignore running backwards into an star-slash, for
2123 * "[*" command, we just want to find any comment.
2124 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002125 if (initc == '/' || initc == '*' || initc == 'R')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 {
2127 comment_dir = dir;
2128 if (initc == '/')
2129 ignore_cend = TRUE;
2130 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002131 raw_string = (initc == 'R');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 initc = NUL;
2133 }
2134 else if (initc != '#' && initc != NUL)
2135 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002136 find_mps_values(&initc, &findc, &backwards, TRUE);
Connor Lane Smithb9115da2021-07-31 13:31:42 +02002137 if (dir)
2138 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002139 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 return NULL;
2141 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 else
2143 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002144 /*
2145 * Either initc is '#', or no initc was given and we need to look
2146 * under the cursor.
2147 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 if (initc == '#')
2149 {
2150 hash_dir = dir;
2151 }
2152 else
2153 {
2154 /*
2155 * initc was not given, must look for something to match under
2156 * or near the cursor.
2157 * Only check for special things when 'cpo' doesn't have '%'.
2158 */
2159 if (!cpo_match)
2160 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002161 // Are we before or at #if, #else etc.?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 ptr = skipwhite(linep);
2163 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
2164 {
2165 ptr = skipwhite(ptr + 1);
2166 if ( STRNCMP(ptr, "if", 2) == 0
2167 || STRNCMP(ptr, "endif", 5) == 0
2168 || STRNCMP(ptr, "el", 2) == 0)
2169 hash_dir = 1;
2170 }
2171
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002172 // Are we on a comment?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 else if (linep[pos.col] == '/')
2174 {
2175 if (linep[pos.col + 1] == '*')
2176 {
2177 comment_dir = FORWARD;
2178 backwards = FALSE;
2179 pos.col++;
2180 }
2181 else if (pos.col > 0 && linep[pos.col - 1] == '*')
2182 {
2183 comment_dir = BACKWARD;
2184 backwards = TRUE;
2185 pos.col--;
2186 }
2187 }
2188 else if (linep[pos.col] == '*')
2189 {
2190 if (linep[pos.col + 1] == '/')
2191 {
2192 comment_dir = BACKWARD;
2193 backwards = TRUE;
2194 }
2195 else if (pos.col > 0 && linep[pos.col - 1] == '/')
2196 {
2197 comment_dir = FORWARD;
2198 backwards = FALSE;
2199 }
2200 }
2201 }
2202
2203 /*
2204 * If we are not on a comment or the # at the start of a line, then
2205 * look for brace anywhere on this line after the cursor.
2206 */
2207 if (!hash_dir && !comment_dir)
2208 {
2209 /*
2210 * Find the brace under or after the cursor.
2211 * If beyond the end of the line, use the last character in
2212 * the line.
2213 */
2214 if (linep[pos.col] == NUL && pos.col)
2215 --pos.col;
2216 for (;;)
2217 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002218 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 if (initc == NUL)
2220 break;
2221
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002222 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 if (findc)
2224 break;
Bram Moolenaar1614a142019-10-06 22:00:13 +02002225 pos.col += mb_ptr2len(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 }
2227 if (!findc)
2228 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002229 // no brace in the line, maybe use " #if" then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 if (!cpo_match && *skipwhite(linep) == '#')
2231 hash_dir = 1;
2232 else
2233 return NULL;
2234 }
2235 else if (!cpo_bsl)
2236 {
2237 int col, bslcnt = 0;
2238
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002239 // Set "match_escaped" if there are an odd number of
2240 // backslashes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2242 bslcnt++;
2243 match_escaped = (bslcnt & 1);
2244 }
2245 }
2246 }
2247 if (hash_dir)
2248 {
2249 /*
2250 * Look for matching #if, #else, #elif, or #endif
2251 */
2252 if (oap != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002253 oap->motion_type = MLINE; // Linewise for this case only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 if (initc != '#')
2255 {
2256 ptr = skipwhite(skipwhite(linep) + 1);
2257 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
2258 hash_dir = 1;
2259 else if (STRNCMP(ptr, "endif", 5) == 0)
2260 hash_dir = -1;
2261 else
2262 return NULL;
2263 }
2264 pos.col = 0;
2265 while (!got_int)
2266 {
2267 if (hash_dir > 0)
2268 {
2269 if (pos.lnum == curbuf->b_ml.ml_line_count)
2270 break;
2271 }
2272 else if (pos.lnum == 1)
2273 break;
2274 pos.lnum += hash_dir;
2275 linep = ml_get(pos.lnum);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002276 line_breakcheck(); // check for CTRL-C typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 ptr = skipwhite(linep);
2278 if (*ptr != '#')
2279 continue;
2280 pos.col = (colnr_T) (ptr - linep);
2281 ptr = skipwhite(ptr + 1);
2282 if (hash_dir > 0)
2283 {
2284 if (STRNCMP(ptr, "if", 2) == 0)
2285 count++;
2286 else if (STRNCMP(ptr, "el", 2) == 0)
2287 {
2288 if (count == 0)
2289 return &pos;
2290 }
2291 else if (STRNCMP(ptr, "endif", 5) == 0)
2292 {
2293 if (count == 0)
2294 return &pos;
2295 count--;
2296 }
2297 }
2298 else
2299 {
2300 if (STRNCMP(ptr, "if", 2) == 0)
2301 {
2302 if (count == 0)
2303 return &pos;
2304 count--;
2305 }
2306 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
2307 {
2308 if (count == 0)
2309 return &pos;
2310 }
2311 else if (STRNCMP(ptr, "endif", 5) == 0)
2312 count++;
2313 }
2314 }
2315 return NULL;
2316 }
2317 }
2318
2319#ifdef FEAT_RIGHTLEFT
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002320 // This is just guessing: when 'rightleft' is set, search for a matching
2321 // paren/brace in the other direction.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
2323 backwards = !backwards;
2324#endif
2325
2326 do_quotes = -1;
2327 start_in_quotes = MAYBE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002328 CLEAR_POS(&match_pos);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002329
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002330 // backward search: Check if this line contains a single-line comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002331 if ((backwards && comment_dir)
2332#ifdef FEAT_LISP
2333 || lisp
2334#endif
2335 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002337#ifdef FEAT_LISP
2338 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002339 lispcomm = TRUE; // find match inside this comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002340#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 while (!got_int)
2342 {
2343 /*
2344 * Go to the next position, forward or backward. We could use
2345 * inc() and dec() here, but that is much slower
2346 */
2347 if (backwards)
2348 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002349#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002350 // char to match is inside of comment, don't search outside
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002351 if (lispcomm && pos.col < (colnr_T)comment_col)
2352 break;
2353#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002354 if (pos.col == 0) // at start of line, go to prev. one
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002356 if (pos.lnum == 1) // start of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 break;
2358 --pos.lnum;
2359
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002360 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 break;
2362
2363 linep = ml_get(pos.lnum);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002364 pos.col = (colnr_T)STRLEN(linep); // pos.col on trailing NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 do_quotes = -1;
2366 line_breakcheck();
2367
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002368 // Check if this line contains a single-line comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002369 if (comment_dir
2370#ifdef FEAT_LISP
2371 || lisp
2372#endif
2373 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002375#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002376 // skip comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002377 if (lisp && comment_col != MAXCOL)
2378 pos.col = comment_col;
2379#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 }
2381 else
2382 {
2383 --pos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 if (has_mbyte)
2385 pos.col -= (*mb_head_off)(linep, linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 }
2387 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002388 else // forward search
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002390 if (linep[pos.col] == NUL
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002391 // at end of line, go to next one
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002392#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002393 // don't search for match in comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002394 || (lisp && comment_col != MAXCOL
2395 && pos.col == (colnr_T)comment_col)
2396#endif
2397 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002399 if (pos.lnum == curbuf->b_ml.ml_line_count // end of file
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002400#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002401 // line is exhausted and comment with it,
2402 // don't search for match in code
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002403 || lispcomm
2404#endif
2405 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 break;
2407 ++pos.lnum;
2408
2409 if (maxtravel && traveled++ > maxtravel)
2410 break;
2411
2412 linep = ml_get(pos.lnum);
2413 pos.col = 0;
2414 do_quotes = -1;
2415 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002416#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002417 if (lisp) // find comment pos in new line
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002418 comment_col = check_linecomment(linep);
2419#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 }
2421 else
2422 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002424 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 ++pos.col;
2427 }
2428 }
2429
2430 /*
2431 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2432 */
2433 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2434 (linep[0] == '{' || linep[0] == '}'))
2435 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002436 if (linep[0] == findc && count == 0) // match!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437 return &pos;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002438 break; // out of scope
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 }
2440
2441 if (comment_dir)
2442 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002443 // Note: comments do not nest, and we ignore quotes in them
2444 // TODO: ignore comment brackets inside strings
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 if (comment_dir == FORWARD)
2446 {
2447 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2448 {
2449 pos.col++;
2450 return &pos;
2451 }
2452 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002453 else // Searching backwards
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 {
2455 /*
2456 * A comment may contain / * or / /, it may also start or end
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002457 * with / * /. Ignore a / * after / / and after *.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 */
2459 if (pos.col == 0)
2460 continue;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002461 else if (raw_string)
2462 {
2463 if (linep[pos.col - 1] == 'R'
2464 && linep[pos.col] == '"'
2465 && vim_strchr(linep + pos.col + 1, '(') != NULL)
2466 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002467 // Possible start of raw string. Now that we have the
2468 // delimiter we can check if it ends before where we
2469 // started searching, or before the previously found
2470 // raw string start.
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002471 if (!find_rawstring_end(linep, &pos,
2472 count > 0 ? &match_pos : &curwin->w_cursor))
2473 {
2474 count++;
2475 match_pos = pos;
2476 match_pos.col--;
2477 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002478 linep = ml_get(pos.lnum); // may have been released
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002479 }
2480 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 else if ( linep[pos.col - 1] == '/'
2482 && linep[pos.col] == '*'
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002483 && (pos.col == 1 || linep[pos.col - 2] != '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 && (int)pos.col < comment_col)
2485 {
2486 count++;
2487 match_pos = pos;
2488 match_pos.col--;
2489 }
2490 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2491 {
2492 if (count > 0)
2493 pos = match_pos;
2494 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2495 && (int)pos.col <= comment_col)
2496 pos.col -= 2;
2497 else if (ignore_cend)
2498 continue;
2499 else
2500 return NULL;
2501 return &pos;
2502 }
2503 }
2504 continue;
2505 }
2506
2507 /*
2508 * If smart matching ('cpoptions' does not contain '%'), braces inside
2509 * of quotes are ignored, but only if there is an even number of
2510 * quotes in the line.
2511 */
2512 if (cpo_match)
2513 do_quotes = 0;
2514 else if (do_quotes == -1)
2515 {
2516 /*
2517 * Count the number of quotes in the line, skipping \" and '"'.
2518 * Watch out for "\\".
2519 */
2520 at_start = do_quotes;
2521 for (ptr = linep; *ptr; ++ptr)
2522 {
2523 if (ptr == linep + pos.col + backwards)
2524 at_start = (do_quotes & 1);
2525 if (*ptr == '"'
2526 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2527 ++do_quotes;
2528 if (*ptr == '\\' && ptr[1] != NUL)
2529 ++ptr;
2530 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002531 do_quotes &= 1; // result is 1 with even number of quotes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532
2533 /*
2534 * If we find an uneven count, check current line and previous
2535 * one for a '\' at the end.
2536 */
2537 if (!do_quotes)
2538 {
2539 inquote = FALSE;
2540 if (ptr[-1] == '\\')
2541 {
2542 do_quotes = 1;
2543 if (start_in_quotes == MAYBE)
2544 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002545 // Do we need to use at_start here?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 inquote = TRUE;
2547 start_in_quotes = TRUE;
2548 }
2549 else if (backwards)
2550 inquote = TRUE;
2551 }
2552 if (pos.lnum > 1)
2553 {
2554 ptr = ml_get(pos.lnum - 1);
2555 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2556 {
2557 do_quotes = 1;
2558 if (start_in_quotes == MAYBE)
2559 {
2560 inquote = at_start;
2561 if (inquote)
2562 start_in_quotes = TRUE;
2563 }
2564 else if (!backwards)
2565 inquote = TRUE;
2566 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002567
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002568 // ml_get() only keeps one line, need to get linep again
Bram Moolenaaraec11792007-07-10 11:09:36 +00002569 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 }
2571 }
2572 }
2573 if (start_in_quotes == MAYBE)
2574 start_in_quotes = FALSE;
2575
2576 /*
2577 * If 'smartmatch' is set:
2578 * Things inside quotes are ignored by setting 'inquote'. If we
2579 * find a quote without a preceding '\' invert 'inquote'. At the
2580 * end of a line not ending in '\' we reset 'inquote'.
2581 *
2582 * In lines with an uneven number of quotes (without preceding '\')
2583 * we do not know which part to ignore. Therefore we only set
2584 * inquote if the number of quotes in a line is even, unless this
2585 * line or the previous one ends in a '\'. Complicated, isn't it?
2586 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002587 c = PTR2CHAR(linep + pos.col);
2588 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589 {
2590 case NUL:
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002591 // at end of line without trailing backslash, reset inquote
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2593 {
2594 inquote = FALSE;
2595 start_in_quotes = FALSE;
2596 }
2597 break;
2598
2599 case '"':
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002600 // a quote that is preceded with an odd number of backslashes is
2601 // ignored
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 if (do_quotes)
2603 {
2604 int col;
2605
2606 for (col = pos.col - 1; col >= 0; --col)
2607 if (linep[col] != '\\')
2608 break;
2609 if ((((int)pos.col - 1 - col) & 1) == 0)
2610 {
2611 inquote = !inquote;
2612 start_in_quotes = FALSE;
2613 }
2614 }
2615 break;
2616
2617 /*
2618 * If smart matching ('cpoptions' does not contain '%'):
2619 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2620 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2621 * skipped, there is never a brace in them.
2622 * Ignore this when finding matches for `'.
2623 */
2624 case '\'':
2625 if (!cpo_match && initc != '\'' && findc != '\'')
2626 {
2627 if (backwards)
2628 {
2629 if (pos.col > 1)
2630 {
2631 if (linep[pos.col - 2] == '\'')
2632 {
2633 pos.col -= 2;
2634 break;
2635 }
2636 else if (linep[pos.col - 2] == '\\' &&
2637 pos.col > 2 && linep[pos.col - 3] == '\'')
2638 {
2639 pos.col -= 3;
2640 break;
2641 }
2642 }
2643 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002644 else if (linep[pos.col + 1]) // forward search
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 {
2646 if (linep[pos.col + 1] == '\\' &&
2647 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2648 {
2649 pos.col += 3;
2650 break;
2651 }
2652 else if (linep[pos.col + 2] == '\'')
2653 {
2654 pos.col += 2;
2655 break;
2656 }
2657 }
2658 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002659 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660
2661 default:
2662#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002663 /*
2664 * For Lisp skip over backslashed (), {} and [].
2665 * (actually, we skip #\( et al)
2666 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 if (curbuf->b_p_lisp
2668 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002669 && pos.col > 1
2670 && check_prevcol(linep, pos.col, '\\', NULL)
2671 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 break;
2673#endif
2674
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002675 // Check for match outside of quotes, and inside of
2676 // quotes when the start is also inside of quotes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 if ((!inquote || start_in_quotes == TRUE)
2678 && (c == initc || c == findc))
2679 {
2680 int col, bslcnt = 0;
2681
2682 if (!cpo_bsl)
2683 {
2684 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2685 bslcnt++;
2686 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002687 // Only accept a match when 'M' is in 'cpo' or when escaping
2688 // is what we expect.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2690 {
2691 if (c == initc)
2692 count++;
2693 else
2694 {
2695 if (count == 0)
2696 return &pos;
2697 count--;
2698 }
2699 }
2700 }
2701 }
2702 }
2703
2704 if (comment_dir == BACKWARD && count > 0)
2705 {
2706 pos = match_pos;
2707 return &pos;
2708 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002709 return (pos_T *)NULL; // never found it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710}
2711
2712/*
2713 * Check if line[] contains a / / comment.
2714 * Return MAXCOL if not, otherwise return the column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 */
Bram Moolenaar6e371ec2021-12-12 14:16:39 +00002716 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002717check_linecomment(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718{
2719 char_u *p;
2720
2721 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002722#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002723 // skip Lispish one-line comments
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002724 if (curbuf->b_p_lisp)
2725 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002726 if (vim_strchr(p, ';') != NULL) // there may be comments
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002727 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002728 int in_str = FALSE; // inside of string
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002729
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002730 p = line; // scan from start
Bram Moolenaar520470a2005-06-16 21:59:56 +00002731 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002732 {
2733 if (*p == '"')
2734 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002735 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002736 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002737 if (*(p - 1) != '\\') // skip escaped quote
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002738 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002739 }
2740 else if (p == line || ((p - line) >= 2
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002741 // skip #\" form
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002742 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002743 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002744 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002745 else if (!in_str && ((p - line) < 2
Bram Moolenaarba263672021-12-29 18:09:13 +00002746 || (*(p - 1) != '\\' && *(p - 2) != '#'))
2747 && !is_pos_in_string(line, (colnr_T)(p - line)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002748 break; // found!
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002749 ++p;
2750 }
2751 }
2752 else
2753 p = NULL;
2754 }
2755 else
2756#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 while ((p = vim_strchr(p, '/')) != NULL)
2758 {
Bram Moolenaarba263672021-12-29 18:09:13 +00002759 // Accept a double /, unless it's preceded with * and followed by *,
2760 // because * / / * is an end and start of a C comment.
2761 // Only accept the position if it is not inside a string.
2762 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*')
2763 && !is_pos_in_string(line, (colnr_T)(p - line)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 break;
2765 ++p;
2766 }
2767
2768 if (p == NULL)
2769 return MAXCOL;
2770 return (int)(p - line);
2771}
2772
2773/*
2774 * Move cursor briefly to character matching the one under the cursor.
2775 * Used for Insert mode and "r" command.
2776 * Show the match only if it is visible on the screen.
2777 * If there isn't a match, then beep.
2778 */
2779 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002780showmatch(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002781 int c) // char to show match for
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782{
2783 pos_T *lpos, save_cursor;
2784 pos_T mpos;
2785 colnr_T vcol;
2786 long save_so;
2787 long save_siso;
2788#ifdef CURSOR_SHAPE
2789 int save_state;
2790#endif
2791 colnr_T save_dollar_vcol;
2792 char_u *p;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002793 long *so = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so;
2794 long *siso = curwin->w_p_siso >= 0 ? &curwin->w_p_siso : &p_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795
2796 /*
2797 * Only show match for chars in the 'matchpairs' option.
2798 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002799 // 'matchpairs' is "x:y,x:y"
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002800 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 {
2802#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002803 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002804 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002805#endif
Bram Moolenaar1614a142019-10-06 22:00:13 +02002806 p += mb_ptr2len(p) + 1;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002807 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808#ifdef FEAT_RIGHTLEFT
2809 && !(curwin->w_p_rl ^ p_ri)
2810#endif
2811 )
2812 break;
Bram Moolenaar1614a142019-10-06 22:00:13 +02002813 p += mb_ptr2len(p);
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002814 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 return;
2816 }
Bram Moolenaar5b8cabf2021-04-02 18:55:57 +02002817 if (*p == NUL)
2818 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002820 if ((lpos = findmatch(NULL, NUL)) == NULL) // no match, so beep
Bram Moolenaar165bc692015-07-21 17:53:25 +02002821 vim_beep(BO_MATCH);
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002822 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 {
2824 if (!curwin->w_p_wrap)
2825 getvcol(curwin, lpos, NULL, &vcol, NULL);
2826 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
Bram Moolenaar02631462017-09-22 15:20:32 +02002827 && vcol < curwin->w_leftcol + curwin->w_width))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002829 mpos = *lpos; // save the pos, update_screen() may change it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 save_cursor = curwin->w_cursor;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002831 save_so = *so;
2832 save_siso = *siso;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002833 // Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2834 // stop displaying the "$".
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002835 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2836 dollar_vcol = -1;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002837 ++curwin->w_virtcol; // do display ')' just before "$"
2838 update_screen(VALID); // show the new char first
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839
2840 save_dollar_vcol = dollar_vcol;
2841#ifdef CURSOR_SHAPE
2842 save_state = State;
2843 State = SHOWMATCH;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002844 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002846 curwin->w_cursor = mpos; // move to matching char
2847 *so = 0; // don't use 'scrolloff' here
2848 *siso = 0; // don't use 'sidescrolloff' here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 showruler(FALSE);
2850 setcursor();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002851 cursor_on(); // make sure that the cursor is shown
Bram Moolenaara338adc2018-01-31 20:51:47 +01002852 out_flush_cursor(TRUE, FALSE);
2853
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002854 // Restore dollar_vcol(), because setcursor() may call curs_rows()
2855 // which resets it if the matching position is in a previous line
2856 // and has a higher column number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 dollar_vcol = save_dollar_vcol;
2858
2859 /*
2860 * brief pause, unless 'm' is present in 'cpo' and a character is
2861 * available.
2862 */
2863 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
Bram Moolenaareda1da02019-11-17 17:06:33 +01002864 ui_delay(p_mat * 100L + 8, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 else if (!char_avail())
Bram Moolenaareda1da02019-11-17 17:06:33 +01002866 ui_delay(p_mat * 100L + 9, FALSE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002867 curwin->w_cursor = save_cursor; // restore cursor position
Bram Moolenaar375e3392019-01-31 18:26:10 +01002868 *so = save_so;
2869 *siso = save_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870#ifdef CURSOR_SHAPE
2871 State = save_state;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002872 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873#endif
2874 }
2875 }
2876}
2877
2878/*
Bram Moolenaar453c1922019-10-26 14:42:09 +02002879 * Check if the pattern is zero-width.
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002880 * If move is TRUE, check from the beginning of the buffer, else from position
2881 * "cur".
2882 * "direction" is FORWARD or BACKWARD.
2883 * Returns TRUE, FALSE or -1 for failure.
2884 */
2885 static int
2886is_zero_width(char_u *pattern, int move, pos_T *cur, int direction)
2887{
2888 regmmatch_T regmatch;
2889 int nmatched = 0;
2890 int result = -1;
2891 pos_T pos;
Bram Moolenaar53989552019-12-23 22:59:18 +01002892 int called_emsg_before = called_emsg;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002893 int flag = 0;
2894
2895 if (pattern == NULL)
2896 pattern = spats[last_idx].pat;
2897
2898 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
2899 SEARCH_KEEP, &regmatch) == FAIL)
2900 return -1;
2901
2902 // init startcol correctly
2903 regmatch.startpos[0].col = -1;
2904 // move to match
2905 if (move)
2906 {
2907 CLEAR_POS(&pos);
2908 }
2909 else
2910 {
2911 pos = *cur;
2912 // accept a match at the cursor position
2913 flag = SEARCH_START;
2914 }
2915
2916 if (searchit(curwin, curbuf, &pos, NULL, direction, pattern, 1,
2917 SEARCH_KEEP + flag, RE_SEARCH, NULL) != FAIL)
2918 {
2919 // Zero-width pattern should match somewhere, then we can check if
2920 // start and end are in the same position.
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002921 do
2922 {
2923 regmatch.startpos[0].col++;
2924 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
2925 pos.lnum, regmatch.startpos[0].col, NULL, NULL);
2926 if (nmatched != 0)
2927 break;
Bram Moolenaar795aaa12020-10-02 20:36:01 +02002928 } while (regmatch.regprog != NULL
2929 && direction == FORWARD ? regmatch.startpos[0].col < pos.col
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002930 : regmatch.startpos[0].col > pos.col);
2931
Bram Moolenaar53989552019-12-23 22:59:18 +01002932 if (called_emsg == called_emsg_before)
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002933 {
2934 result = (nmatched != 0
2935 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
2936 && regmatch.startpos[0].col == regmatch.endpos[0].col);
2937 }
2938 }
2939
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002940 vim_regfree(regmatch.regprog);
2941 return result;
2942}
2943
Bram Moolenaardde0efe2012-08-23 15:53:05 +02002944
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002945/*
2946 * Find next search match under cursor, cursor at end.
2947 * Used while an operator is pending, and in Visual mode.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002948 */
2949 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002950current_search(
2951 long count,
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002952 int forward) // TRUE for forward, FALSE for backward
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002953{
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002954 pos_T start_pos; // start position of the pattern match
2955 pos_T end_pos; // end position of the pattern match
2956 pos_T orig_pos; // position of the cursor at beginning
2957 pos_T pos; // position after the pattern
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002958 int i;
2959 int dir;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002960 int result; // result of various function calls
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002961 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002962 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02002963 pos_T save_VIsual = VIsual;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002964 int zero_width;
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02002965 int skip_first_backward;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002966
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002967 // Correct cursor when 'selection' is exclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002968 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002969 dec_cursor();
2970
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02002971 // When searching forward and the cursor is at the start of the Visual
2972 // area, skip the first search backward, otherwise it doesn't move.
2973 skip_first_backward = forward && VIsual_active
2974 && LT_POS(curwin->w_cursor, VIsual);
2975
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002976 orig_pos = pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002977 if (VIsual_active)
2978 {
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002979 if (forward)
2980 incl(&pos);
2981 else
2982 decl(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002983 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002984
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002985 // Is the pattern is zero-width?, this time, don't care about the direction
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002986 zero_width = is_zero_width(spats[last_idx].pat, TRUE, &curwin->w_cursor,
Bram Moolenaar22ab5472017-09-26 12:28:45 +02002987 FORWARD);
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002988 if (zero_width == -1)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002989 return FAIL; // pattern not found
Bram Moolenaarba6ba362012-08-08 15:27:57 +02002990
Bram Moolenaarba6ba362012-08-08 15:27:57 +02002991 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002992 * The trick is to first search backwards and then search forward again,
2993 * so that a match at the current cursor position will be correctly
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02002994 * captured. When "forward" is false do it the other way around.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002995 */
2996 for (i = 0; i < 2; i++)
2997 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002998 if (forward)
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02002999 {
3000 if (i == 0 && skip_first_backward)
3001 continue;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003002 dir = i;
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003003 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003004 else
3005 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02003006
3007 flags = 0;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02003008 if (!dir && !zero_width)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02003009 flags = SEARCH_END;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003010 end_pos = pos;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02003011
Bram Moolenaar82cf7f62019-11-02 23:22:47 +01003012 // wrapping should not occur in the first round
3013 if (i == 0)
3014 p_ws = FALSE;
3015
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003016 result = searchit(curwin, curbuf, &pos, &end_pos,
3017 (dir ? FORWARD : BACKWARD),
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003018 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02003019 SEARCH_KEEP | flags, RE_SEARCH, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003020
Bram Moolenaar82cf7f62019-11-02 23:22:47 +01003021 p_ws = old_p_ws;
3022
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003023 // First search may fail, but then start searching from the
3024 // beginning of the file (cursor might be on the search match)
3025 // except when Visual mode is active, so that extending the visual
3026 // selection works.
3027 if (i == 1 && !result) // not found, abort
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003028 {
3029 curwin->w_cursor = orig_pos;
3030 if (VIsual_active)
3031 VIsual = save_VIsual;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003032 return FAIL;
3033 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003034 else if (i == 0 && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003035 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003036 if (forward)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003037 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003038 // try again from start of buffer
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003039 CLEAR_POS(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003040 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003041 else
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003042 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003043 // try again from end of buffer
3044 // searching backwards, so set pos to last line and col
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003045 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02003046 pos.col = (colnr_T)STRLEN(
3047 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003048 }
3049 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003050 }
3051
3052 start_pos = pos;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003053
3054 if (!VIsual_active)
3055 VIsual = start_pos;
3056
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003057 // put the cursor after the match
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003058 curwin->w_cursor = end_pos;
Bram Moolenaar453c1922019-10-26 14:42:09 +02003059 if (LT_POS(VIsual, end_pos) && forward)
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003060 {
3061 if (skip_first_backward)
3062 // put the cursor on the start of the match
3063 curwin->w_cursor = pos;
3064 else
3065 // put the cursor on last character of match
3066 dec_cursor();
3067 }
Bram Moolenaar28f224b2020-10-10 16:45:25 +02003068 else if (VIsual_active && LT_POS(curwin->w_cursor, VIsual) && forward)
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02003069 curwin->w_cursor = pos; // put the cursor on the start of the match
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003070 VIsual_active = TRUE;
3071 VIsual_mode = 'v';
3072
Bram Moolenaarb7633612019-02-10 21:48:25 +01003073 if (*p_sel == 'e')
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003074 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003075 // Correction for exclusive selection depends on the direction.
Bram Moolenaarb7633612019-02-10 21:48:25 +01003076 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor))
3077 inc_cursor();
3078 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual))
3079 inc(&VIsual);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003080 }
3081
3082#ifdef FEAT_FOLDING
3083 if (fdo_flags & FDO_SEARCH && KeyTyped)
3084 foldOpenCursor();
3085#endif
3086
3087 may_start_select('c');
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003088 setmouse();
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003089#ifdef FEAT_CLIPBOARD
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003090 // Make sure the clipboard gets updated. Needed because start and
3091 // end are still the same, and the selection needs to be owned
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003092 clip_star.vmode = NUL;
3093#endif
3094 redraw_curbuf_later(INVERTED);
3095 showmode();
3096
3097 return OK;
3098}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02003099
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
3101 || defined(PROTO)
3102/*
3103 * return TRUE if line 'lnum' is empty or has white chars only.
3104 */
3105 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003106linewhite(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107{
3108 char_u *p;
3109
3110 p = skipwhite(ml_get(lnum));
3111 return (*p == NUL);
3112}
3113#endif
3114
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003115/*
3116 * Add the search count "[3/19]" to "msgbuf".
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003117 * See update_search_stat() for other arguments.
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003118 */
3119 static void
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003120cmdline_search_stat(
3121 int dirc,
3122 pos_T *pos,
3123 pos_T *cursor_pos,
3124 int show_top_bot_msg,
3125 char_u *msgbuf,
3126 int recompute,
3127 int maxcount,
3128 long timeout)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003129{
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003130 searchstat_T stat;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003131
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003132 update_search_stat(dirc, pos, cursor_pos, &stat, recompute, maxcount,
3133 timeout);
3134 if (stat.cur > 0)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003135 {
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003136 char t[SEARCH_STAT_BUF_LEN];
Bram Moolenaare2ad8262019-05-24 13:22:22 +02003137 size_t len;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003138
3139#ifdef FEAT_RIGHTLEFT
3140 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
3141 {
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003142 if (stat.incomplete == 1)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02003143 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[?/??]");
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003144 else if (stat.cnt > maxcount && stat.cur > maxcount)
3145 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>%d/>%d]",
3146 maxcount, maxcount);
3147 else if (stat.cnt > maxcount)
3148 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>%d/%d]",
3149 maxcount, stat.cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003150 else
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003151 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/%d]",
3152 stat.cnt, stat.cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003153 }
3154 else
3155#endif
3156 {
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003157 if (stat.incomplete == 1)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02003158 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[?/??]");
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003159 else if (stat.cnt > maxcount && stat.cur > maxcount)
3160 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>%d/>%d]",
3161 maxcount, maxcount);
3162 else if (stat.cnt > maxcount)
3163 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/>%d]",
3164 stat.cur, maxcount);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003165 else
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003166 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/%d]",
3167 stat.cur, stat.cnt);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003168 }
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02003169
3170 len = STRLEN(t);
Bram Moolenaardc6855a2019-05-18 19:26:29 +02003171 if (show_top_bot_msg && len + 2 < SEARCH_STAT_BUF_LEN)
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02003172 {
Bram Moolenaar16b58ae2019-09-06 20:40:21 +02003173 mch_memmove(t + 2, t, len);
3174 t[0] = 'W';
3175 t[1] = ' ';
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02003176 len += 2;
3177 }
3178
3179 mch_memmove(msgbuf + STRLEN(msgbuf) - len, t, len);
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003180 if (dirc == '?' && stat.cur == maxcount + 1)
3181 stat.cur = -1;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003182
Bram Moolenaar984f0312019-05-24 13:11:47 +02003183 // keep the message even after redraw, but don't put in history
3184 msg_hist_off = TRUE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003185 give_warning(msgbuf, FALSE);
Bram Moolenaar984f0312019-05-24 13:11:47 +02003186 msg_hist_off = FALSE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003187 }
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003188}
3189
3190/*
3191 * Add the search count information to "stat".
3192 * "stat" must not be NULL.
3193 * When "recompute" is TRUE always recompute the numbers.
3194 * dirc == 0: don't find the next/previous match (only set the result to "stat")
3195 * dirc == '/': find the next match
3196 * dirc == '?': find the previous match
3197 */
3198 static void
3199update_search_stat(
3200 int dirc,
3201 pos_T *pos,
3202 pos_T *cursor_pos,
3203 searchstat_T *stat,
3204 int recompute,
3205 int maxcount,
Bram Moolenaarf9ca08e2020-06-01 18:56:03 +02003206 long timeout UNUSED)
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003207{
3208 int save_ws = p_ws;
3209 int wraparound = FALSE;
3210 pos_T p = (*pos);
Bram Moolenaar14681622020-06-03 22:57:39 +02003211 static pos_T lastpos = {0, 0, 0};
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003212 static int cur = 0;
3213 static int cnt = 0;
3214 static int exact_match = FALSE;
3215 static int incomplete = 0;
3216 static int last_maxcount = SEARCH_STAT_DEF_MAX_COUNT;
3217 static int chgtick = 0;
3218 static char_u *lastpat = NULL;
3219 static buf_T *lbuf = NULL;
3220#ifdef FEAT_RELTIME
3221 proftime_T start;
3222#endif
3223
3224 vim_memset(stat, 0, sizeof(searchstat_T));
3225
3226 if (dirc == 0 && !recompute && !EMPTY_POS(lastpos))
3227 {
3228 stat->cur = cur;
3229 stat->cnt = cnt;
3230 stat->exact_match = exact_match;
3231 stat->incomplete = incomplete;
3232 stat->last_maxcount = last_maxcount;
3233 return;
3234 }
3235 last_maxcount = maxcount;
3236
3237 wraparound = ((dirc == '?' && LT_POS(lastpos, p))
3238 || (dirc == '/' && LT_POS(p, lastpos)));
3239
3240 // If anything relevant changed the count has to be recomputed.
3241 // MB_STRNICMP ignores case, but we should not ignore case.
3242 // Unfortunately, there is no MB_STRNICMP function.
3243 // XXX: above comment should be "no MB_STRCMP function" ?
3244 if (!(chgtick == CHANGEDTICK(curbuf)
3245 && MB_STRNICMP(lastpat, spats[last_idx].pat, STRLEN(lastpat)) == 0
3246 && STRLEN(lastpat) == STRLEN(spats[last_idx].pat)
3247 && EQUAL_POS(lastpos, *cursor_pos)
3248 && lbuf == curbuf) || wraparound || cur < 0
3249 || (maxcount > 0 && cur > maxcount) || recompute)
3250 {
3251 cur = 0;
3252 cnt = 0;
3253 exact_match = FALSE;
3254 incomplete = 0;
3255 CLEAR_POS(&lastpos);
3256 lbuf = curbuf;
3257 }
3258
3259 if (EQUAL_POS(lastpos, *cursor_pos) && !wraparound
3260 && (dirc == 0 || dirc == '/' ? cur < cnt : cur > 0))
3261 cur += dirc == 0 ? 0 : dirc == '/' ? 1 : -1;
3262 else
3263 {
3264 int done_search = FALSE;
3265 pos_T endpos = {0, 0, 0};
3266
3267 p_ws = FALSE;
3268#ifdef FEAT_RELTIME
3269 if (timeout > 0)
3270 profile_setlimit(timeout, &start);
3271#endif
3272 while (!got_int && searchit(curwin, curbuf, &lastpos, &endpos,
3273 FORWARD, NULL, 1, SEARCH_KEEP, RE_LAST, NULL) != FAIL)
3274 {
3275 done_search = TRUE;
3276#ifdef FEAT_RELTIME
3277 // Stop after passing the time limit.
3278 if (timeout > 0 && profile_passed_limit(&start))
3279 {
3280 incomplete = 1;
3281 break;
3282 }
3283#endif
3284 cnt++;
3285 if (LTOREQ_POS(lastpos, p))
3286 {
3287 cur = cnt;
Bram Moolenaar57f75a52020-06-02 22:06:21 +02003288 if (LT_POS(p, endpos))
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003289 exact_match = TRUE;
3290 }
3291 fast_breakcheck();
3292 if (maxcount > 0 && cnt > maxcount)
3293 {
3294 incomplete = 2; // max count exceeded
3295 break;
3296 }
3297 }
3298 if (got_int)
3299 cur = -1; // abort
3300 if (done_search)
3301 {
3302 vim_free(lastpat);
3303 lastpat = vim_strsave(spats[last_idx].pat);
3304 chgtick = CHANGEDTICK(curbuf);
3305 lbuf = curbuf;
3306 lastpos = p;
3307 }
3308 }
3309 stat->cur = cur;
3310 stat->cnt = cnt;
3311 stat->exact_match = exact_match;
3312 stat->incomplete = incomplete;
3313 stat->last_maxcount = last_maxcount;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003314 p_ws = save_ws;
3315}
3316
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317#if defined(FEAT_FIND_ID) || defined(PROTO)
3318/*
3319 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01003320 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003323find_pattern_in_path(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003324 char_u *ptr, // pointer to search pattern
3325 int dir UNUSED, // direction of expansion
3326 int len, // length of search pattern
3327 int whole, // match whole words only
3328 int skip_comments, // don't match inside comments
3329 int type, // Type of search; are we looking for a type?
3330 // a macro?
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003331 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003332 int action, // What to do when we find it
3333 linenr_T start_lnum, // first line to start searching
3334 linenr_T end_lnum) // last line for searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003336 SearchedFile *files; // Stack of included files
3337 SearchedFile *bigger; // When we need more space
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338 int max_path_depth = 50;
3339 long match_count = 1;
3340
3341 char_u *pat;
3342 char_u *new_fname;
3343 char_u *curr_fname = curbuf->b_fname;
3344 char_u *prev_fname = NULL;
3345 linenr_T lnum;
3346 int depth;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003347 int depth_displayed; // For type==CHECK_PATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 int old_files;
3349 int already_searched;
3350 char_u *file_line;
3351 char_u *line;
3352 char_u *p;
3353 char_u save_char;
3354 int define_matched;
3355 regmatch_T regmatch;
3356 regmatch_T incl_regmatch;
3357 regmatch_T def_regmatch;
3358 int matched = FALSE;
3359 int did_show = FALSE;
3360 int found = FALSE;
3361 int i;
3362 char_u *already = NULL;
3363 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003364 char_u *inc_opt = NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02003365#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 win_T *curwin_save = NULL;
3367#endif
3368
3369 regmatch.regprog = NULL;
3370 incl_regmatch.regprog = NULL;
3371 def_regmatch.regprog = NULL;
3372
3373 file_line = alloc(LSIZE);
3374 if (file_line == NULL)
3375 return;
3376
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 if (type != CHECK_PATH && type != FIND_DEFINE
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003378 // when CONT_SOL is set compare "ptr" with the beginning of the line
3379 // is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003380 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 {
3382 pat = alloc(len + 5);
3383 if (pat == NULL)
3384 goto fpip_end;
3385 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003386 // ignore case according to p_ic, p_scs and pat
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 regmatch.rm_ic = ignorecase(pat);
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003388 regmatch.regprog = vim_regcomp(pat, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389 vim_free(pat);
3390 if (regmatch.regprog == NULL)
3391 goto fpip_end;
3392 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003393 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
3394 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395 {
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003396 incl_regmatch.regprog = vim_regcomp(inc_opt,
3397 magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 if (incl_regmatch.regprog == NULL)
3399 goto fpip_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003400 incl_regmatch.rm_ic = FALSE; // don't ignore case in incl. pat.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 }
3402 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
3403 {
3404 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003405 ? p_def : curbuf->b_p_def,
3406 magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 if (def_regmatch.regprog == NULL)
3408 goto fpip_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003409 def_regmatch.rm_ic = FALSE; // don't ignore case in define pat.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003411 files = lalloc_clear(max_path_depth * sizeof(SearchedFile), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412 if (files == NULL)
3413 goto fpip_end;
3414 old_files = max_path_depth;
3415 depth = depth_displayed = -1;
3416
3417 lnum = start_lnum;
3418 if (end_lnum > curbuf->b_ml.ml_line_count)
3419 end_lnum = curbuf->b_ml.ml_line_count;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003420 if (lnum > end_lnum) // do at least one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 lnum = end_lnum;
3422 line = ml_get(lnum);
3423
3424 for (;;)
3425 {
3426 if (incl_regmatch.regprog != NULL
3427 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
3428 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003429 char_u *p_fname = (curr_fname == curbuf->b_fname)
3430 ? curbuf->b_ffname : curr_fname;
3431
3432 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003433 // Use text from '\zs' to '\ze' (or end) of 'include'.
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003434 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02003435 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003436 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
3437 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003438 // Use text after match with 'include'.
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003439 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003440 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 already_searched = FALSE;
3442 if (new_fname != NULL)
3443 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003444 // Check whether we have already searched in this file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 for (i = 0;; i++)
3446 {
3447 if (i == depth + 1)
3448 i = old_files;
3449 if (i == max_path_depth)
3450 break;
Bram Moolenaar99499b12019-05-23 21:35:48 +02003451 if (fullpathcmp(new_fname, files[i].name, TRUE, TRUE)
3452 & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 {
3454 if (type != CHECK_PATH &&
3455 action == ACTION_SHOW_ALL && files[i].matched)
3456 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003457 msg_putchar('\n'); // cursor below last one
3458 if (!got_int) // don't display if 'q'
3459 // typed at "--more--"
3460 // message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 {
3462 msg_home_replace_hl(new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003463 msg_puts(_(" (includes previously listed match)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 prev_fname = NULL;
3465 }
3466 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01003467 VIM_CLEAR(new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 already_searched = TRUE;
3469 break;
3470 }
3471 }
3472 }
3473
3474 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
3475 || (new_fname == NULL && !already_searched)))
3476 {
3477 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003478 msg_putchar('\n'); // cursor below last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479 else
3480 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003481 gotocmdline(TRUE); // cursor at status line
Bram Moolenaar32526b32019-01-19 17:43:09 +01003482 msg_puts_title(_("--- Included files "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003484 msg_puts_title(_("not found "));
3485 msg_puts_title(_("in path ---\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 }
3487 did_show = TRUE;
3488 while (depth_displayed < depth && !got_int)
3489 {
3490 ++depth_displayed;
3491 for (i = 0; i < depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003492 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 msg_home_replace(files[depth_displayed].name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003494 msg_puts(" -->\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003496 if (!got_int) // don't display if 'q' typed
3497 // for "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 {
3499 for (i = 0; i <= depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003500 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 if (new_fname != NULL)
3502 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003503 // using "new_fname" is more reliable, e.g., when
3504 // 'includeexpr' is set.
Bram Moolenaar8820b482017-03-16 17:23:31 +01003505 msg_outtrans_attr(new_fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506 }
3507 else
3508 {
3509 /*
3510 * Isolate the file name.
3511 * Include the surrounding "" or <> if present.
3512 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003513 if (inc_opt != NULL
3514 && strstr((char *)inc_opt, "\\zs") != NULL)
3515 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003516 // pattern contains \zs, use the match
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003517 p = incl_regmatch.startp[0];
3518 i = (int)(incl_regmatch.endp[0]
3519 - incl_regmatch.startp[0]);
3520 }
3521 else
3522 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003523 // find the file name after the end of the match
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003524 for (p = incl_regmatch.endp[0];
3525 *p && !vim_isfilec(*p); p++)
3526 ;
3527 for (i = 0; vim_isfilec(p[i]); i++)
3528 ;
3529 }
3530
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531 if (i == 0)
3532 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003533 // Nothing found, use the rest of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003535 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003537 // Avoid checking before the start of the line, can
3538 // happen if \zs appears in the regexp.
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003539 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 {
3541 if (p[-1] == '"' || p[-1] == '<')
3542 {
3543 --p;
3544 ++i;
3545 }
3546 if (p[i] == '"' || p[i] == '>')
3547 ++i;
3548 }
3549 save_char = p[i];
3550 p[i] = NUL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01003551 msg_outtrans_attr(p, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 p[i] = save_char;
3553 }
3554
3555 if (new_fname == NULL && action == ACTION_SHOW_ALL)
3556 {
3557 if (already_searched)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003558 msg_puts(_(" (Already listed)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01003560 msg_puts(_(" NOT FOUND"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 }
3562 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003563 out_flush(); // output each line directly
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 }
3565
3566 if (new_fname != NULL)
3567 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003568 // Push the new file onto the file stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 if (depth + 1 == old_files)
3570 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003571 bigger = ALLOC_MULT(SearchedFile, max_path_depth * 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 if (bigger != NULL)
3573 {
3574 for (i = 0; i <= depth; i++)
3575 bigger[i] = files[i];
3576 for (i = depth + 1; i < old_files + max_path_depth; i++)
3577 {
3578 bigger[i].fp = NULL;
3579 bigger[i].name = NULL;
3580 bigger[i].lnum = 0;
3581 bigger[i].matched = FALSE;
3582 }
3583 for (i = old_files; i < max_path_depth; i++)
3584 bigger[i + max_path_depth] = files[i];
3585 old_files += max_path_depth;
3586 max_path_depth *= 2;
3587 vim_free(files);
3588 files = bigger;
3589 }
3590 }
3591 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
3592 == NULL)
3593 vim_free(new_fname);
3594 else
3595 {
3596 if (++depth == old_files)
3597 {
3598 /*
3599 * lalloc() for 'bigger' must have failed above. We
3600 * will forget one of our already visited files now.
3601 */
3602 vim_free(files[old_files].name);
3603 ++old_files;
3604 }
3605 files[depth].name = curr_fname = new_fname;
3606 files[depth].lnum = 0;
3607 files[depth].matched = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 if (action == ACTION_EXPAND)
3609 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003610 msg_hist_off = TRUE; // reset in msg_trunc_attr()
Bram Moolenaar555b2802005-05-19 21:08:39 +00003611 vim_snprintf((char*)IObuff, IOSIZE,
3612 _("Scanning included file: %s"),
3613 (char *)new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003614 msg_trunc_attr((char *)IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003616 else if (p_verbose >= 5)
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00003617 {
3618 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003619 smsg(_("Searching included file %s"),
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00003620 (char *)new_fname);
3621 verbose_leave();
3622 }
3623
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624 }
3625 }
3626 }
3627 else
3628 {
3629 /*
3630 * Check if the line is a define (type == FIND_DEFINE)
3631 */
3632 p = line;
3633search_line:
3634 define_matched = FALSE;
3635 if (def_regmatch.regprog != NULL
3636 && vim_regexec(&def_regmatch, line, (colnr_T)0))
3637 {
3638 /*
3639 * Pattern must be first identifier after 'define', so skip
3640 * to that position before checking for match of pattern. Also
3641 * don't let it match beyond the end of this identifier.
3642 */
3643 p = def_regmatch.endp[0];
3644 while (*p && !vim_iswordc(*p))
3645 p++;
3646 define_matched = TRUE;
3647 }
3648
3649 /*
3650 * Look for a match. Don't do this if we are looking for a
3651 * define and this line didn't match define_prog above.
3652 */
3653 if (def_regmatch.regprog == NULL || define_matched)
3654 {
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003655 if (define_matched || (compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003657 // compare the first "len" chars from "ptr"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 startp = skipwhite(p);
3659 if (p_ic)
3660 matched = !MB_STRNICMP(startp, ptr, len);
3661 else
3662 matched = !STRNCMP(startp, ptr, len);
3663 if (matched && define_matched && whole
3664 && vim_iswordc(startp[len]))
3665 matched = FALSE;
3666 }
3667 else if (regmatch.regprog != NULL
3668 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
3669 {
3670 matched = TRUE;
3671 startp = regmatch.startp[0];
3672 /*
3673 * Check if the line is not a comment line (unless we are
3674 * looking for a define). A line starting with "# define"
3675 * is not considered to be a comment line.
3676 */
3677 if (!define_matched && skip_comments)
3678 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 if ((*line != '#' ||
3680 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02003681 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 matched = FALSE;
3683
3684 /*
3685 * Also check for a "/ *" or "/ /" before the match.
3686 * Skips lines like "int backwards; / * normal index
3687 * * /" when looking for "normal".
3688 * Note: Doesn't skip "/ *" in comments.
3689 */
3690 p = skipwhite(line);
3691 if (matched
3692 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 for (p = line; *p && p < startp; ++p)
3694 {
3695 if (matched
3696 && p[0] == '/'
3697 && (p[1] == '*' || p[1] == '/'))
3698 {
3699 matched = FALSE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003700 // After "//" all text is comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 if (p[1] == '/')
3702 break;
3703 ++p;
3704 }
3705 else if (!matched && p[0] == '*' && p[1] == '/')
3706 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003707 // Can find match after "* /".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 matched = TRUE;
3709 ++p;
3710 }
3711 }
3712 }
3713 }
3714 }
3715 }
3716 if (matched)
3717 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 if (action == ACTION_EXPAND)
3719 {
Bram Moolenaard9eefe32019-04-06 14:22:21 +02003720 int cont_s_ipos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 int add_r;
3722 char_u *aux;
3723
3724 if (depth == -1 && lnum == curwin->w_cursor.lnum)
3725 break;
3726 found = TRUE;
3727 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003728 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003730 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 if (vim_iswordp(p))
3732 goto exit_matched;
3733 p = find_word_start(p);
3734 }
3735 p = find_word_end(p);
3736 i = (int)(p - aux);
3737
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003738 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003740 // IOSIZE > compl_length, so the STRNCPY works
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00003742
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003743 // Get the next line: when "depth" < 0 from the current
3744 // buffer, otherwise from the included file. Jump to
3745 // exit_matched when past the last line.
Bram Moolenaar89d40322006-08-29 15:30:07 +00003746 if (depth < 0)
3747 {
3748 if (lnum >= end_lnum)
3749 goto exit_matched;
3750 line = ml_get(++lnum);
3751 }
3752 else if (vim_fgets(line = file_line,
3753 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 goto exit_matched;
3755
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003756 // we read a line, set "already" to check this "line" later
3757 // if depth >= 0 we'll increase files[depth].lnum far
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01003758 // below -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 already = aux = p = skipwhite(line);
3760 p = find_word_start(p);
3761 p = find_word_end(p);
3762 if (p > aux)
3763 {
3764 if (*aux != ')' && IObuff[i-1] != TAB)
3765 {
3766 if (IObuff[i-1] != ' ')
3767 IObuff[i++] = ' ';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003768 // IObuf =~ "\(\k\|\i\).* ", thus i >= 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 if (p_js
3770 && (IObuff[i-2] == '.'
3771 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
3772 && (IObuff[i-2] == '?'
3773 || IObuff[i-2] == '!'))))
3774 IObuff[i++] = ' ';
3775 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003776 // copy as much as possible of the new word
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 if (p - aux >= IOSIZE - i)
3778 p = aux + IOSIZE - i - 1;
3779 STRNCPY(IObuff + i, aux, p - aux);
3780 i += (int)(p - aux);
Bram Moolenaard9eefe32019-04-06 14:22:21 +02003781 cont_s_ipos = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 }
3783 IObuff[i] = NUL;
3784 aux = IObuff;
3785
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003786 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787 goto exit_matched;
3788 }
3789
Bram Moolenaare8c3a142006-08-29 14:30:35 +00003790 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791 curr_fname == curbuf->b_fname ? NULL : curr_fname,
Bram Moolenaard9eefe32019-04-06 14:22:21 +02003792 dir, cont_s_ipos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 if (add_r == OK)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003794 // if dir was BACKWARD then honor it just once
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00003796 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 break;
3798 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003799 else if (action == ACTION_SHOW_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 {
3801 found = TRUE;
3802 if (!did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003803 gotocmdline(TRUE); // cursor at status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 if (curr_fname != prev_fname)
3805 {
3806 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003807 msg_putchar('\n'); // cursor below last one
3808 if (!got_int) // don't display if 'q' typed
3809 // at "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 msg_home_replace_hl(curr_fname);
3811 prev_fname = curr_fname;
3812 }
3813 did_show = TRUE;
3814 if (!got_int)
3815 show_pat_in_path(line, type, TRUE, action,
3816 (depth == -1) ? NULL : files[depth].fp,
3817 (depth == -1) ? &lnum : &files[depth].lnum,
3818 match_count++);
3819
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003820 // Set matched flag for this file and all the ones that
3821 // include it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 for (i = 0; i <= depth; ++i)
3823 files[i].matched = TRUE;
3824 }
3825 else if (--count <= 0)
3826 {
3827 found = TRUE;
3828 if (depth == -1 && lnum == curwin->w_cursor.lnum
Bram Moolenaar4033c552017-09-16 20:54:51 +02003829#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 && g_do_tagpreview == 0
3831#endif
3832 )
Bram Moolenaarac78dd42022-01-02 19:25:26 +00003833 emsg(_(e_match_is_on_current_line));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 else if (action == ACTION_SHOW)
3835 {
3836 show_pat_in_path(line, type, did_show, action,
3837 (depth == -1) ? NULL : files[depth].fp,
3838 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
3839 did_show = TRUE;
3840 }
3841 else
3842 {
3843#ifdef FEAT_GUI
3844 need_mouse_correct = TRUE;
3845#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02003846#if defined(FEAT_QUICKFIX)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003847 // ":psearch" uses the preview window
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848 if (g_do_tagpreview != 0)
3849 {
3850 curwin_save = curwin;
Bram Moolenaar576a4a62019-08-18 15:25:17 +02003851 prepare_tagpreview(TRUE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852 }
3853#endif
3854 if (action == ACTION_SPLIT)
3855 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003858 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 }
3860 if (depth == -1)
3861 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003862 // match in current file
Bram Moolenaar4033c552017-09-16 20:54:51 +02003863#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 if (g_do_tagpreview != 0)
3865 {
Bram Moolenaar92bb83e2021-02-03 23:04:46 +01003866 if (!win_valid(curwin_save))
3867 break;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003868 if (!GETFILE_SUCCESS(getfile(
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02003869 curwin_save->w_buffer->b_fnum, NULL,
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003870 NULL, TRUE, lnum, FALSE)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003871 break; // failed to jump to file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 }
3873 else
3874#endif
3875 setpcmark();
3876 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02003877 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 }
3879 else
3880 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003881 if (!GETFILE_SUCCESS(getfile(
3882 0, files[depth].name, NULL, TRUE,
3883 files[depth].lnum, FALSE)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003884 break; // failed to jump to file
3885 // autocommands may have changed the lnum, we don't
3886 // want that here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887 curwin->w_cursor.lnum = files[depth].lnum;
3888 }
3889 }
3890 if (action != ACTION_SHOW)
3891 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00003892 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 curwin->w_set_curswant = TRUE;
3894 }
3895
Bram Moolenaar4033c552017-09-16 20:54:51 +02003896#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003898 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003900 // Return cursor to where we were
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 validate_cursor();
3902 redraw_later(VALID);
3903 win_enter(curwin_save, TRUE);
3904 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003905# ifdef FEAT_PROP_POPUP
Bram Moolenaar1b6d9c42019-08-05 21:52:04 +02003906 else if (WIN_IS_POPUP(curwin))
3907 // can't keep focus in popup window
3908 win_enter(firstwin, TRUE);
3909# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910#endif
3911 break;
3912 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913exit_matched:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914 matched = FALSE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003915 // look for other matches in the rest of the line if we
3916 // are not at the end of it already
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917 if (def_regmatch.regprog == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003919 && !(compl_cont_status & CONT_SOL)
Bram Moolenaarfe81d452009-04-22 14:44:41 +00003920 && *startp != NUL
Bram Moolenaar1614a142019-10-06 22:00:13 +02003921 && *(p = startp + mb_ptr2len(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 goto search_line;
3923 }
3924 line_breakcheck();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 if (action == ACTION_EXPAND)
Bram Moolenaar472e8592016-10-15 17:06:47 +02003926 ins_compl_check_keys(30, FALSE);
Bram Moolenaar7591bb32019-03-30 13:53:47 +01003927 if (got_int || ins_compl_interrupted())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928 break;
3929
3930 /*
3931 * Read the next line. When reading an included file and encountering
3932 * end-of-file, close the file and continue in the file that included
3933 * it.
3934 */
3935 while (depth >= 0 && !already
3936 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
3937 {
3938 fclose(files[depth].fp);
3939 --old_files;
3940 files[old_files].name = files[depth].name;
3941 files[old_files].matched = files[depth].matched;
3942 --depth;
3943 curr_fname = (depth == -1) ? curbuf->b_fname
3944 : files[depth].name;
3945 if (depth < depth_displayed)
3946 depth_displayed = depth;
3947 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003948 if (depth >= 0) // we could read the line
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02003949 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 files[depth].lnum++;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003951 // Remove any CR and LF from the line.
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02003952 i = (int)STRLEN(line);
3953 if (i > 0 && line[i - 1] == '\n')
3954 line[--i] = NUL;
3955 if (i > 0 && line[i - 1] == '\r')
3956 line[--i] = NUL;
3957 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958 else if (!already)
3959 {
3960 if (++lnum > end_lnum)
3961 break;
3962 line = ml_get(lnum);
3963 }
3964 already = NULL;
3965 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003966 // End of big for (;;) loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003968 // Close any files that are still open.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969 for (i = 0; i <= depth; i++)
3970 {
3971 fclose(files[i].fp);
3972 vim_free(files[i].name);
3973 }
3974 for (i = old_files; i < max_path_depth; i++)
3975 vim_free(files[i].name);
3976 vim_free(files);
3977
3978 if (type == CHECK_PATH)
3979 {
3980 if (!did_show)
3981 {
3982 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003983 msg(_("All included files were found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01003985 msg(_("No included files"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 }
3987 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003988 else if (!found && action != ACTION_EXPAND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 {
Bram Moolenaar7591bb32019-03-30 13:53:47 +01003990 if (got_int || ins_compl_interrupted())
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00003991 emsg(_(e_interrupted));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 else if (type == FIND_DEFINE)
Bram Moolenaarac78dd42022-01-02 19:25:26 +00003993 emsg(_(e_couldnt_find_definition));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 else
Bram Moolenaarac78dd42022-01-02 19:25:26 +00003995 emsg(_(e_couldnt_find_pattern));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 }
3997 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
3998 msg_end();
3999
4000fpip_end:
4001 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02004002 vim_regfree(regmatch.regprog);
4003 vim_regfree(incl_regmatch.regprog);
4004 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005}
4006
4007 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004008show_pat_in_path(
4009 char_u *line,
4010 int type,
4011 int did_show,
4012 int action,
4013 FILE *fp,
4014 linenr_T *lnum,
4015 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004016{
4017 char_u *p;
4018
4019 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004020 msg_putchar('\n'); // cursor below last one
Bram Moolenaar91170f82006-05-05 21:15:17 +00004021 else if (!msg_silent)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004022 gotocmdline(TRUE); // cursor at status line
4023 if (got_int) // 'q' typed at "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024 return;
4025 for (;;)
4026 {
4027 p = line + STRLEN(line) - 1;
4028 if (fp != NULL)
4029 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004030 // We used fgets(), so get rid of newline at end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 if (p >= line && *p == '\n')
4032 --p;
4033 if (p >= line && *p == '\r')
4034 --p;
4035 *(p + 1) = NUL;
4036 }
4037 if (action == ACTION_SHOW_ALL)
4038 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004039 sprintf((char *)IObuff, "%3ld: ", count); // show match nr
Bram Moolenaar32526b32019-01-19 17:43:09 +01004040 msg_puts((char *)IObuff);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004041 sprintf((char *)IObuff, "%4ld", *lnum); // show line nr
4042 // Highlight line numbers
Bram Moolenaar32526b32019-01-19 17:43:09 +01004043 msg_puts_attr((char *)IObuff, HL_ATTR(HLF_N));
4044 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004046 msg_prt_line(line, FALSE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004047 out_flush(); // show one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004049 // Definition continues until line that doesn't end with '\'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
4051 break;
4052
4053 if (fp != NULL)
4054 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004055 if (vim_fgets(line, LSIZE, fp)) // end of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 break;
4057 ++*lnum;
4058 }
4059 else
4060 {
4061 if (++*lnum > curbuf->b_ml.ml_line_count)
4062 break;
4063 line = ml_get(*lnum);
4064 }
4065 msg_putchar('\n');
4066 }
4067}
4068#endif
4069
4070#ifdef FEAT_VIMINFO
Bram Moolenaar6bd1d772019-10-09 22:01:25 +02004071/*
4072 * Return the last used search pattern at "idx".
4073 */
Bram Moolenaarc3328162019-07-23 22:15:25 +02004074 spat_T *
4075get_spat(int idx)
4076{
4077 return &spats[idx];
4078}
4079
Bram Moolenaar6bd1d772019-10-09 22:01:25 +02004080/*
4081 * Return the last used search pattern index.
4082 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 int
Bram Moolenaarc3328162019-07-23 22:15:25 +02004084get_spat_last_idx(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085{
Bram Moolenaarc3328162019-07-23 22:15:25 +02004086 return last_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088#endif
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004089
4090#ifdef FEAT_EVAL
4091/*
4092 * "searchcount()" function
4093 */
4094 void
4095f_searchcount(typval_T *argvars, typval_T *rettv)
4096{
4097 pos_T pos = curwin->w_cursor;
4098 char_u *pattern = NULL;
4099 int maxcount = SEARCH_STAT_DEF_MAX_COUNT;
4100 long timeout = SEARCH_STAT_DEF_TIMEOUT;
Bram Moolenaar4140c4f2020-09-05 23:16:00 +02004101 int recompute = TRUE;
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004102 searchstat_T stat;
4103
4104 if (rettv_dict_alloc(rettv) == FAIL)
4105 return;
4106
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02004107 if (in_vim9script() && check_for_opt_dict_arg(argvars, 0) == FAIL)
4108 return;
4109
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004110 if (shortmess(SHM_SEARCHCOUNT)) // 'shortmess' contains 'S' flag
4111 recompute = TRUE;
4112
4113 if (argvars[0].v_type != VAR_UNKNOWN)
4114 {
Bram Moolenaar14681622020-06-03 22:57:39 +02004115 dict_T *dict;
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004116 dictitem_T *di;
4117 listitem_T *li;
4118 int error = FALSE;
4119
Bram Moolenaar14681622020-06-03 22:57:39 +02004120 if (argvars[0].v_type != VAR_DICT || argvars[0].vval.v_dict == NULL)
4121 {
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00004122 emsg(_(e_dictionary_required));
Bram Moolenaar14681622020-06-03 22:57:39 +02004123 return;
4124 }
4125 dict = argvars[0].vval.v_dict;
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004126 di = dict_find(dict, (char_u *)"timeout", -1);
4127 if (di != NULL)
4128 {
4129 timeout = (long)tv_get_number_chk(&di->di_tv, &error);
4130 if (error)
4131 return;
4132 }
4133 di = dict_find(dict, (char_u *)"maxcount", -1);
4134 if (di != NULL)
4135 {
4136 maxcount = (int)tv_get_number_chk(&di->di_tv, &error);
4137 if (error)
4138 return;
4139 }
Bram Moolenaar597aaac2020-09-05 21:21:16 +02004140 recompute = dict_get_bool(dict, (char_u *)"recompute", recompute);
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004141 di = dict_find(dict, (char_u *)"pattern", -1);
4142 if (di != NULL)
4143 {
4144 pattern = tv_get_string_chk(&di->di_tv);
4145 if (pattern == NULL)
4146 return;
4147 }
4148 di = dict_find(dict, (char_u *)"pos", -1);
4149 if (di != NULL)
4150 {
4151 if (di->di_tv.v_type != VAR_LIST)
4152 {
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00004153 semsg(_(e_invalid_argument_str), "pos");
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004154 return;
4155 }
4156 if (list_len(di->di_tv.vval.v_list) != 3)
4157 {
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00004158 semsg(_(e_invalid_argument_str), "List format should be [lnum, col, off]");
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004159 return;
4160 }
4161 li = list_find(di->di_tv.vval.v_list, 0L);
4162 if (li != NULL)
4163 {
4164 pos.lnum = tv_get_number_chk(&li->li_tv, &error);
4165 if (error)
4166 return;
4167 }
4168 li = list_find(di->di_tv.vval.v_list, 1L);
4169 if (li != NULL)
4170 {
4171 pos.col = tv_get_number_chk(&li->li_tv, &error) - 1;
4172 if (error)
4173 return;
4174 }
4175 li = list_find(di->di_tv.vval.v_list, 2L);
4176 if (li != NULL)
4177 {
4178 pos.coladd = tv_get_number_chk(&li->li_tv, &error);
4179 if (error)
4180 return;
4181 }
4182 }
4183 }
4184
4185 save_last_search_pattern();
4186 if (pattern != NULL)
4187 {
4188 if (*pattern == NUL)
4189 goto the_end;
Bram Moolenaar109aece2020-06-01 19:08:54 +02004190 vim_free(spats[last_idx].pat);
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004191 spats[last_idx].pat = vim_strsave(pattern);
4192 }
4193 if (spats[last_idx].pat == NULL || *spats[last_idx].pat == NUL)
4194 goto the_end; // the previous pattern was never defined
4195
4196 update_search_stat(0, &pos, &pos, &stat, recompute, maxcount, timeout);
4197
4198 dict_add_number(rettv->vval.v_dict, "current", stat.cur);
4199 dict_add_number(rettv->vval.v_dict, "total", stat.cnt);
4200 dict_add_number(rettv->vval.v_dict, "exact_match", stat.exact_match);
4201 dict_add_number(rettv->vval.v_dict, "incomplete", stat.incomplete);
4202 dict_add_number(rettv->vval.v_dict, "maxcount", stat.last_maxcount);
4203
4204the_end:
4205 restore_last_search_pattern();
4206}
Bram Moolenaar635414d2020-09-11 22:25:15 +02004207
4208/*
4209 * Fuzzy string matching
4210 *
4211 * Ported from the lib_fts library authored by Forrest Smith.
4212 * https://github.com/forrestthewoods/lib_fts/tree/master/code
4213 *
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004214 * The following blog describes the fuzzy matching algorithm:
Bram Moolenaar635414d2020-09-11 22:25:15 +02004215 * https://www.forrestthewoods.com/blog/reverse_engineering_sublime_texts_fuzzy_match/
4216 *
4217 * Each matching string is assigned a score. The following factors are checked:
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004218 * - Matched letter
4219 * - Unmatched letter
4220 * - Consecutively matched letters
4221 * - Proximity to start
4222 * - Letter following a separator (space, underscore)
4223 * - Uppercase letter following lowercase (aka CamelCase)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004224 *
4225 * Matched letters are good. Unmatched letters are bad. Matching near the start
4226 * is good. Matching the first letter in the middle of a phrase is good.
4227 * Matching the uppercase letters in camel case entries is good.
4228 *
4229 * The score assigned for each factor is explained below.
4230 * File paths are different from file names. File extensions may be ignorable.
4231 * Single words care about consecutive matches but not separators or camel
4232 * case.
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004233 * Score starts at 100
Bram Moolenaar635414d2020-09-11 22:25:15 +02004234 * Matched letter: +0 points
4235 * Unmatched letter: -1 point
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004236 * Consecutive match bonus: +15 points
4237 * First letter bonus: +15 points
4238 * Separator bonus: +30 points
4239 * Camel case bonus: +30 points
4240 * Unmatched leading letter: -5 points (max: -15)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004241 *
4242 * There is some nuance to this. Scores don’t have an intrinsic meaning. The
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004243 * score range isn’t 0 to 100. It’s roughly [50, 150]. Longer words have a
Bram Moolenaar635414d2020-09-11 22:25:15 +02004244 * lower minimum score due to unmatched letter penalty. Longer search patterns
4245 * have a higher maximum score due to match bonuses.
4246 *
4247 * Separator and camel case bonus is worth a LOT. Consecutive matches are worth
4248 * quite a bit.
4249 *
4250 * There is a penalty if you DON’T match the first three letters. Which
4251 * effectively rewards matching near the start. However there’s no difference
4252 * in matching between the middle and end.
4253 *
4254 * There is not an explicit bonus for an exact match. Unmatched letters receive
4255 * a penalty. So shorter strings and closer matches are worth more.
4256 */
4257typedef struct
4258{
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004259 int idx; // used for stable sort
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004260 listitem_T *item;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004261 int score;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004262 list_T *lmatchpos;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004263} fuzzyItem_T;
4264
Bram Moolenaare9f9f162020-10-20 19:01:30 +02004265// bonus for adjacent matches; this is higher than SEPARATOR_BONUS so that
4266// matching a whole word is preferred.
4267#define SEQUENTIAL_BONUS 40
Bram Moolenaardcdd42a2020-10-29 18:58:01 +01004268// bonus if match occurs after a path separator
4269#define PATH_SEPARATOR_BONUS 30
4270// bonus if match occurs after a word separator
4271#define WORD_SEPARATOR_BONUS 25
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004272// bonus if match is uppercase and prev is lower
4273#define CAMEL_BONUS 30
4274// bonus if the first letter is matched
4275#define FIRST_LETTER_BONUS 15
4276// penalty applied for every letter in str before the first match
4277#define LEADING_LETTER_PENALTY -5
4278// maximum penalty for leading letters
4279#define MAX_LEADING_LETTER_PENALTY -15
4280// penalty for every letter that doesn't match
4281#define UNMATCHED_LETTER_PENALTY -1
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004282// penalty for gap in matching positions (-2 * k)
4283#define GAP_PENALTY -2
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004284// Score for a string that doesn't fuzzy match the pattern
4285#define SCORE_NONE -9999
4286
4287#define FUZZY_MATCH_RECURSION_LIMIT 10
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004288
4289/*
4290 * Compute a score for a fuzzy matched string. The matching character locations
4291 * are in 'matches'.
4292 */
4293 static int
4294fuzzy_match_compute_score(
4295 char_u *str,
4296 int strSz,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004297 int_u *matches,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004298 int numMatches)
4299{
4300 int score;
4301 int penalty;
4302 int unmatched;
4303 int i;
4304 char_u *p = str;
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004305 int_u sidx = 0;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004306
4307 // Initialize score
4308 score = 100;
4309
4310 // Apply leading letter penalty
4311 penalty = LEADING_LETTER_PENALTY * matches[0];
4312 if (penalty < MAX_LEADING_LETTER_PENALTY)
4313 penalty = MAX_LEADING_LETTER_PENALTY;
4314 score += penalty;
4315
4316 // Apply unmatched penalty
4317 unmatched = strSz - numMatches;
4318 score += UNMATCHED_LETTER_PENALTY * unmatched;
4319
4320 // Apply ordering bonuses
4321 for (i = 0; i < numMatches; ++i)
4322 {
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004323 int_u currIdx = matches[i];
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004324
4325 if (i > 0)
4326 {
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004327 int_u prevIdx = matches[i - 1];
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004328
4329 // Sequential
4330 if (currIdx == (prevIdx + 1))
4331 score += SEQUENTIAL_BONUS;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004332 else
4333 score += GAP_PENALTY * (currIdx - prevIdx);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004334 }
4335
4336 // Check for bonuses based on neighbor character value
4337 if (currIdx > 0)
4338 {
4339 // Camel case
Bram Moolenaarc53e9c52020-09-22 22:08:32 +02004340 int neighbor = ' ';
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004341 int curr;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004342
4343 if (has_mbyte)
4344 {
4345 while (sidx < currIdx)
4346 {
4347 neighbor = (*mb_ptr2char)(p);
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004348 MB_PTR_ADV(p);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004349 sidx++;
4350 }
4351 curr = (*mb_ptr2char)(p);
4352 }
4353 else
4354 {
4355 neighbor = str[currIdx - 1];
4356 curr = str[currIdx];
4357 }
4358
4359 if (vim_islower(neighbor) && vim_isupper(curr))
4360 score += CAMEL_BONUS;
4361
Bram Moolenaardcdd42a2020-10-29 18:58:01 +01004362 // Bonus if the match follows a separator character
4363 if (neighbor == '/' || neighbor == '\\')
4364 score += PATH_SEPARATOR_BONUS;
4365 else if (neighbor == ' ' || neighbor == '_')
4366 score += WORD_SEPARATOR_BONUS;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004367 }
4368 else
4369 {
4370 // First letter
4371 score += FIRST_LETTER_BONUS;
4372 }
4373 }
4374 return score;
4375}
4376
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004377/*
4378 * Perform a recursive search for fuzzy matching 'fuzpat' in 'str'.
4379 * Return the number of matching characters.
4380 */
Bram Moolenaar635414d2020-09-11 22:25:15 +02004381 static int
4382fuzzy_match_recursive(
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004383 char_u *fuzpat,
4384 char_u *str,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004385 int_u strIdx,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004386 int *outScore,
4387 char_u *strBegin,
4388 int strLen,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004389 int_u *srcMatches,
4390 int_u *matches,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004391 int maxMatches,
4392 int nextMatch,
4393 int *recursionCount)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004394{
4395 // Recursion params
4396 int recursiveMatch = FALSE;
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004397 int_u bestRecursiveMatches[MAX_FUZZY_MATCHES];
Bram Moolenaar635414d2020-09-11 22:25:15 +02004398 int bestRecursiveScore = 0;
4399 int first_match;
4400 int matched;
4401
4402 // Count recursions
4403 ++*recursionCount;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004404 if (*recursionCount >= FUZZY_MATCH_RECURSION_LIMIT)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004405 return 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004406
4407 // Detect end of strings
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004408 if (*fuzpat == NUL || *str == NUL)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004409 return 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004410
4411 // Loop through fuzpat and str looking for a match
4412 first_match = TRUE;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004413 while (*fuzpat != NUL && *str != NUL)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004414 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004415 int c1;
4416 int c2;
4417
4418 c1 = PTR2CHAR(fuzpat);
4419 c2 = PTR2CHAR(str);
4420
Bram Moolenaar635414d2020-09-11 22:25:15 +02004421 // Found match
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004422 if (vim_tolower(c1) == vim_tolower(c2))
Bram Moolenaar635414d2020-09-11 22:25:15 +02004423 {
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004424 int_u recursiveMatches[MAX_FUZZY_MATCHES];
Bram Moolenaar635414d2020-09-11 22:25:15 +02004425 int recursiveScore = 0;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004426 char_u *next_char;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004427
4428 // Supplied matches buffer was too short
4429 if (nextMatch >= maxMatches)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004430 return 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004431
4432 // "Copy-on-Write" srcMatches into matches
4433 if (first_match && srcMatches)
4434 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004435 memcpy(matches, srcMatches, nextMatch * sizeof(srcMatches[0]));
Bram Moolenaar635414d2020-09-11 22:25:15 +02004436 first_match = FALSE;
4437 }
4438
4439 // Recursive call that "skips" this match
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004440 if (has_mbyte)
4441 next_char = str + (*mb_ptr2len)(str);
4442 else
4443 next_char = str + 1;
4444 if (fuzzy_match_recursive(fuzpat, next_char, strIdx + 1,
4445 &recursiveScore, strBegin, strLen, matches,
4446 recursiveMatches,
K.Takataeeec2542021-06-02 13:28:16 +02004447 ARRAY_LENGTH(recursiveMatches),
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004448 nextMatch, recursionCount))
Bram Moolenaar635414d2020-09-11 22:25:15 +02004449 {
4450 // Pick best recursive score
4451 if (!recursiveMatch || recursiveScore > bestRecursiveScore)
4452 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004453 memcpy(bestRecursiveMatches, recursiveMatches,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004454 MAX_FUZZY_MATCHES * sizeof(recursiveMatches[0]));
Bram Moolenaar635414d2020-09-11 22:25:15 +02004455 bestRecursiveScore = recursiveScore;
4456 }
4457 recursiveMatch = TRUE;
4458 }
4459
4460 // Advance
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004461 matches[nextMatch++] = strIdx;
4462 if (has_mbyte)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004463 MB_PTR_ADV(fuzpat);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004464 else
4465 ++fuzpat;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004466 }
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004467 if (has_mbyte)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004468 MB_PTR_ADV(str);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004469 else
4470 ++str;
4471 strIdx++;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004472 }
4473
4474 // Determine if full fuzpat was matched
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004475 matched = *fuzpat == NUL ? TRUE : FALSE;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004476
4477 // Calculate score
4478 if (matched)
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004479 *outScore = fuzzy_match_compute_score(strBegin, strLen, matches,
4480 nextMatch);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004481
4482 // Return best result
4483 if (recursiveMatch && (!matched || bestRecursiveScore > *outScore))
4484 {
4485 // Recursive score is better than "this"
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004486 memcpy(matches, bestRecursiveMatches, maxMatches * sizeof(matches[0]));
Bram Moolenaar635414d2020-09-11 22:25:15 +02004487 *outScore = bestRecursiveScore;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004488 return nextMatch;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004489 }
4490 else if (matched)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004491 return nextMatch; // "this" score is better than recursive
Bram Moolenaar635414d2020-09-11 22:25:15 +02004492
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004493 return 0; // no match
Bram Moolenaar635414d2020-09-11 22:25:15 +02004494}
4495
4496/*
4497 * fuzzy_match()
4498 *
4499 * Performs exhaustive search via recursion to find all possible matches and
4500 * match with highest score.
4501 * Scores values have no intrinsic meaning. Possible score range is not
4502 * normalized and varies with pattern.
4503 * Recursion is limited internally (default=10) to prevent degenerate cases
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004504 * (pat_arg="aaaaaa" str="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa").
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004505 * Uses char_u for match indices. Therefore patterns are limited to
4506 * MAX_FUZZY_MATCHES characters.
Bram Moolenaar635414d2020-09-11 22:25:15 +02004507 *
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004508 * Returns TRUE if 'pat_arg' matches 'str'. Also returns the match score in
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004509 * 'outScore' and the matching character positions in 'matches'.
Bram Moolenaar635414d2020-09-11 22:25:15 +02004510 */
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004511 int
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004512fuzzy_match(
4513 char_u *str,
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004514 char_u *pat_arg,
4515 int matchseq,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004516 int *outScore,
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004517 int_u *matches,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004518 int maxMatches)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004519{
Bram Moolenaar635414d2020-09-11 22:25:15 +02004520 int recursionCount = 0;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004521 int len = MB_CHARLEN(str);
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004522 char_u *save_pat;
4523 char_u *pat;
4524 char_u *p;
4525 int complete = FALSE;
4526 int score = 0;
4527 int numMatches = 0;
4528 int matchCount;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004529
4530 *outScore = 0;
4531
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004532 save_pat = vim_strsave(pat_arg);
4533 if (save_pat == NULL)
4534 return FALSE;
4535 pat = save_pat;
4536 p = pat;
4537
4538 // Try matching each word in 'pat_arg' in 'str'
4539 while (TRUE)
4540 {
4541 if (matchseq)
4542 complete = TRUE;
4543 else
4544 {
4545 // Extract one word from the pattern (separated by space)
4546 p = skipwhite(p);
4547 if (*p == NUL)
4548 break;
4549 pat = p;
4550 while (*p != NUL && !VIM_ISWHITE(PTR2CHAR(p)))
4551 {
4552 if (has_mbyte)
4553 MB_PTR_ADV(p);
4554 else
4555 ++p;
4556 }
4557 if (*p == NUL) // processed all the words
4558 complete = TRUE;
4559 *p = NUL;
4560 }
4561
4562 score = 0;
4563 recursionCount = 0;
4564 matchCount = fuzzy_match_recursive(pat, str, 0, &score, str, len, NULL,
4565 matches + numMatches, maxMatches - numMatches,
4566 0, &recursionCount);
4567 if (matchCount == 0)
4568 {
4569 numMatches = 0;
4570 break;
4571 }
4572
4573 // Accumulate the match score and the number of matches
4574 *outScore += score;
4575 numMatches += matchCount;
4576
4577 if (complete)
4578 break;
4579
4580 // try matching the next word
4581 ++p;
4582 }
4583
4584 vim_free(save_pat);
4585 return numMatches != 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004586}
4587
4588/*
4589 * Sort the fuzzy matches in the descending order of the match score.
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004590 * For items with same score, retain the order using the index (stable sort)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004591 */
4592 static int
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004593fuzzy_match_item_compare(const void *s1, const void *s2)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004594{
4595 int v1 = ((fuzzyItem_T *)s1)->score;
4596 int v2 = ((fuzzyItem_T *)s2)->score;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004597 int idx1 = ((fuzzyItem_T *)s1)->idx;
4598 int idx2 = ((fuzzyItem_T *)s2)->idx;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004599
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004600 return v1 == v2 ? (idx1 - idx2) : v1 > v2 ? -1 : 1;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004601}
4602
4603/*
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004604 * Fuzzy search the string 'str' in a list of 'items' and return the matching
4605 * strings in 'fmatchlist'.
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004606 * If 'matchseq' is TRUE, then for multi-word search strings, match all the
4607 * words in sequence.
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004608 * If 'items' is a list of strings, then search for 'str' in the list.
4609 * If 'items' is a list of dicts, then either use 'key' to lookup the string
4610 * for each item or use 'item_cb' Funcref function to get the string.
4611 * If 'retmatchpos' is TRUE, then return a list of positions where 'str'
4612 * matches for each item.
Bram Moolenaar635414d2020-09-11 22:25:15 +02004613 */
4614 static void
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004615fuzzy_match_in_list(
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004616 list_T *items,
4617 char_u *str,
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004618 int matchseq,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004619 char_u *key,
4620 callback_T *item_cb,
4621 int retmatchpos,
4622 list_T *fmatchlist)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004623{
4624 long len;
4625 fuzzyItem_T *ptrs;
4626 listitem_T *li;
4627 long i = 0;
4628 int found_match = FALSE;
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004629 int_u matches[MAX_FUZZY_MATCHES];
Bram Moolenaar635414d2020-09-11 22:25:15 +02004630
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004631 len = list_len(items);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004632 if (len == 0)
4633 return;
4634
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004635 ptrs = ALLOC_CLEAR_MULT(fuzzyItem_T, len);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004636 if (ptrs == NULL)
4637 return;
4638
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004639 // For all the string items in items, get the fuzzy matching score
4640 FOR_ALL_LIST_ITEMS(items, li)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004641 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004642 int score;
4643 char_u *itemstr;
4644 typval_T rettv;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004645
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004646 ptrs[i].idx = i;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004647 ptrs[i].item = li;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004648 ptrs[i].score = SCORE_NONE;
4649 itemstr = NULL;
4650 rettv.v_type = VAR_UNKNOWN;
4651 if (li->li_tv.v_type == VAR_STRING) // list of strings
4652 itemstr = li->li_tv.vval.v_string;
4653 else if (li->li_tv.v_type == VAR_DICT &&
4654 (key != NULL || item_cb->cb_name != NULL))
4655 {
4656 // For a dict, either use the specified key to lookup the string or
4657 // use the specified callback function to get the string.
4658 if (key != NULL)
4659 itemstr = dict_get_string(li->li_tv.vval.v_dict, key, FALSE);
4660 else
Bram Moolenaar635414d2020-09-11 22:25:15 +02004661 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004662 typval_T argv[2];
4663
4664 // Invoke the supplied callback (if any) to get the dict item
4665 li->li_tv.vval.v_dict->dv_refcount++;
4666 argv[0].v_type = VAR_DICT;
4667 argv[0].vval.v_dict = li->li_tv.vval.v_dict;
4668 argv[1].v_type = VAR_UNKNOWN;
4669 if (call_callback(item_cb, -1, &rettv, 1, argv) != FAIL)
4670 {
4671 if (rettv.v_type == VAR_STRING)
4672 itemstr = rettv.vval.v_string;
4673 }
4674 dict_unref(li->li_tv.vval.v_dict);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004675 }
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004676 }
4677
4678 if (itemstr != NULL
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004679 && fuzzy_match(itemstr, str, matchseq, &score, matches,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004680 sizeof(matches) / sizeof(matches[0])))
4681 {
4682 // Copy the list of matching positions in itemstr to a list, if
4683 // 'retmatchpos' is set.
4684 if (retmatchpos)
4685 {
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004686 int j = 0;
4687 char_u *p;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004688
4689 ptrs[i].lmatchpos = list_alloc();
4690 if (ptrs[i].lmatchpos == NULL)
4691 goto done;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004692
4693 p = str;
4694 while (*p != NUL)
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004695 {
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004696 if (!VIM_ISWHITE(PTR2CHAR(p)))
4697 {
4698 if (list_append_number(ptrs[i].lmatchpos,
4699 matches[j]) == FAIL)
4700 goto done;
4701 j++;
4702 }
4703 if (has_mbyte)
4704 MB_PTR_ADV(p);
4705 else
4706 ++p;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004707 }
4708 }
4709 ptrs[i].score = score;
4710 found_match = TRUE;
4711 }
Bram Moolenaar635414d2020-09-11 22:25:15 +02004712 ++i;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004713 clear_tv(&rettv);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004714 }
4715
4716 if (found_match)
4717 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004718 list_T *l;
4719
Bram Moolenaar635414d2020-09-11 22:25:15 +02004720 // Sort the list by the descending order of the match score
4721 qsort((void *)ptrs, (size_t)len, sizeof(fuzzyItem_T),
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004722 fuzzy_match_item_compare);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004723
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004724 // For matchfuzzy(), return a list of matched strings.
4725 // ['str1', 'str2', 'str3']
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004726 // For matchfuzzypos(), return a list with three items.
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004727 // The first item is a list of matched strings. The second item
4728 // is a list of lists where each list item is a list of matched
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004729 // character positions. The third item is a list of matching scores.
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004730 // [['str1', 'str2', 'str3'], [[1, 3], [1, 3], [1, 3]]]
4731 if (retmatchpos)
4732 {
4733 li = list_find(fmatchlist, 0);
4734 if (li == NULL || li->li_tv.vval.v_list == NULL)
4735 goto done;
4736 l = li->li_tv.vval.v_list;
4737 }
4738 else
4739 l = fmatchlist;
4740
4741 // Copy the matching strings with a valid score to the return list
Bram Moolenaar635414d2020-09-11 22:25:15 +02004742 for (i = 0; i < len; i++)
4743 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004744 if (ptrs[i].score == SCORE_NONE)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004745 break;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004746 list_append_tv(l, &ptrs[i].item->li_tv);
4747 }
4748
4749 // next copy the list of matching positions
4750 if (retmatchpos)
4751 {
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004752 li = list_find(fmatchlist, -2);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004753 if (li == NULL || li->li_tv.vval.v_list == NULL)
4754 goto done;
4755 l = li->li_tv.vval.v_list;
4756
4757 for (i = 0; i < len; i++)
4758 {
4759 if (ptrs[i].score == SCORE_NONE)
4760 break;
4761 if (ptrs[i].lmatchpos != NULL &&
4762 list_append_list(l, ptrs[i].lmatchpos) == FAIL)
4763 goto done;
4764 }
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004765
4766 // copy the matching scores
4767 li = list_find(fmatchlist, -1);
4768 if (li == NULL || li->li_tv.vval.v_list == NULL)
4769 goto done;
4770 l = li->li_tv.vval.v_list;
4771 for (i = 0; i < len; i++)
4772 {
4773 if (ptrs[i].score == SCORE_NONE)
4774 break;
4775 if (list_append_number(l, ptrs[i].score) == FAIL)
4776 goto done;
4777 }
Bram Moolenaar635414d2020-09-11 22:25:15 +02004778 }
4779 }
4780
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004781done:
Bram Moolenaar635414d2020-09-11 22:25:15 +02004782 vim_free(ptrs);
4783}
4784
4785/*
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004786 * Do fuzzy matching. Returns the list of matched strings in 'rettv'.
4787 * If 'retmatchpos' is TRUE, also returns the matching character positions.
4788 */
4789 static void
4790do_fuzzymatch(typval_T *argvars, typval_T *rettv, int retmatchpos)
4791{
4792 callback_T cb;
4793 char_u *key = NULL;
4794 int ret;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004795 int matchseq = FALSE;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004796
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02004797 if (in_vim9script()
4798 && (check_for_list_arg(argvars, 0) == FAIL
4799 || check_for_string_arg(argvars, 1) == FAIL
4800 || check_for_opt_dict_arg(argvars, 2) == FAIL))
4801 return;
4802
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004803 CLEAR_POINTER(&cb);
4804
4805 // validate and get the arguments
4806 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
4807 {
Bram Moolenaar3a846e62022-01-01 16:21:00 +00004808 semsg(_(e_argument_of_str_must_be_list),
4809 retmatchpos ? "matchfuzzypos()" : "matchfuzzy()");
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004810 return;
4811 }
4812 if (argvars[1].v_type != VAR_STRING
4813 || argvars[1].vval.v_string == NULL)
4814 {
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00004815 semsg(_(e_invalid_argument_str), tv_get_string(&argvars[1]));
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004816 return;
4817 }
4818
4819 if (argvars[2].v_type != VAR_UNKNOWN)
4820 {
4821 dict_T *d;
4822 dictitem_T *di;
4823
4824 if (argvars[2].v_type != VAR_DICT || argvars[2].vval.v_dict == NULL)
4825 {
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00004826 emsg(_(e_dictionary_required));
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004827 return;
4828 }
4829
4830 // To search a dict, either a callback function or a key can be
4831 // specified.
4832 d = argvars[2].vval.v_dict;
4833 if ((di = dict_find(d, (char_u *)"key", -1)) != NULL)
4834 {
4835 if (di->di_tv.v_type != VAR_STRING
4836 || di->di_tv.vval.v_string == NULL
4837 || *di->di_tv.vval.v_string == NUL)
4838 {
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00004839 semsg(_(e_invalid_argument_str), tv_get_string(&di->di_tv));
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004840 return;
4841 }
4842 key = tv_get_string(&di->di_tv);
4843 }
4844 else if ((di = dict_find(d, (char_u *)"text_cb", -1)) != NULL)
4845 {
4846 cb = get_callback(&di->di_tv);
4847 if (cb.cb_name == NULL)
4848 {
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00004849 semsg(_(e_invalid_value_for_argument_str), "text_cb");
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004850 return;
4851 }
4852 }
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02004853 if (dict_find(d, (char_u *)"matchseq", -1) != NULL)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004854 matchseq = TRUE;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004855 }
4856
4857 // get the fuzzy matches
4858 ret = rettv_list_alloc(rettv);
4859 if (ret != OK)
4860 goto done;
4861 if (retmatchpos)
4862 {
4863 list_T *l;
4864
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004865 // For matchfuzzypos(), a list with three items are returned. First
4866 // item is a list of matching strings, the second item is a list of
4867 // lists with matching positions within each string and the third item
4868 // is the list of scores of the matches.
4869 l = list_alloc();
4870 if (l == NULL)
4871 goto done;
4872 if (list_append_list(rettv->vval.v_list, l) == FAIL)
4873 goto done;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004874 l = list_alloc();
4875 if (l == NULL)
4876 goto done;
4877 if (list_append_list(rettv->vval.v_list, l) == FAIL)
4878 goto done;
4879 l = list_alloc();
4880 if (l == NULL)
4881 goto done;
4882 if (list_append_list(rettv->vval.v_list, l) == FAIL)
4883 goto done;
4884 }
4885
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004886 fuzzy_match_in_list(argvars[0].vval.v_list, tv_get_string(&argvars[1]),
4887 matchseq, key, &cb, retmatchpos, rettv->vval.v_list);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004888
4889done:
4890 free_callback(&cb);
4891}
4892
4893/*
Bram Moolenaar635414d2020-09-11 22:25:15 +02004894 * "matchfuzzy()" function
4895 */
4896 void
4897f_matchfuzzy(typval_T *argvars, typval_T *rettv)
4898{
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004899 do_fuzzymatch(argvars, rettv, FALSE);
4900}
4901
4902/*
4903 * "matchfuzzypos()" function
4904 */
4905 void
4906f_matchfuzzypos(typval_T *argvars, typval_T *rettv)
4907{
4908 do_fuzzymatch(argvars, rettv, TRUE);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004909}
4910
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004911#endif