blob: 37ccc37e9c0436abb5d5920b6f1254979b1e3613 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 * search.c: code for normal mode searching commands
11 */
12
13#include "vim.h"
14
Bram Moolenaar071d4272004-06-13 20:20:40 +000015#ifdef FEAT_EVAL
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010016static void set_vv_searchforward(void);
17static int first_submatch(regmmatch_T *rp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010019static int check_linecomment(char_u *line);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020#ifdef FEAT_FIND_ID
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010021static void show_pat_in_path(char_u *, int,
22 int, int, FILE *, linenr_T *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +000023#endif
Bram Moolenaare8f5ec02020-06-01 17:28:35 +020024
25typedef struct searchstat
26{
27 int cur; // current position of found words
28 int cnt; // total count of found words
29 int exact_match; // TRUE if matched exactly on specified position
30 int incomplete; // 0: search was fully completed
31 // 1: recomputing was timed out
32 // 2: max count exceeded
33 int last_maxcount; // the max count of the last search
34} searchstat_T;
35
36static 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);
37static void update_search_stat(int dirc, pos_T *pos, pos_T *cursor_pos, searchstat_T *stat, int recompute, int maxcount, long timeout);
38
Bram Moolenaarea6561a2020-06-01 21:32:45 +020039#define SEARCH_STAT_DEF_TIMEOUT 40L
Bram Moolenaare8f5ec02020-06-01 17:28:35 +020040#define SEARCH_STAT_DEF_MAX_COUNT 99
41#define SEARCH_STAT_BUF_LEN 12
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
Bram Moolenaar071d4272004-06-13 20:20:40 +000043/*
44 * This file contains various searching-related routines. These fall into
45 * three groups:
46 * 1. string searches (for /, ?, n, and N)
47 * 2. character searches within a single line (for f, F, t, T, etc)
48 * 3. "other" kinds of searches like the '%' command, and 'word' searches.
49 */
50
51/*
52 * String searches
53 *
54 * The string search functions are divided into two levels:
55 * lowest: searchit(); uses an pos_T for starting position and found match.
56 * Highest: do_search(); uses curwin->w_cursor; calls searchit().
57 *
58 * The last search pattern is remembered for repeating the same search.
59 * This pattern is shared between the :g, :s, ? and / commands.
60 * This is in search_regcomp().
61 *
62 * The actual string matching is done using a heavily modified version of
63 * Henry Spencer's regular expression library. See regexp.c.
64 */
65
Bram Moolenaar071d4272004-06-13 20:20:40 +000066/*
67 * Two search patterns are remembered: One for the :substitute command and
68 * one for other searches. last_idx points to the one that was used the last
69 * time.
70 */
Bram Moolenaarc3328162019-07-23 22:15:25 +020071static spat_T spats[2] =
Bram Moolenaar071d4272004-06-13 20:20:40 +000072{
Bram Moolenaar63d9e732019-12-05 21:10:38 +010073 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}}, // last used search pat
74 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}} // last used substitute pat
Bram Moolenaar071d4272004-06-13 20:20:40 +000075};
76
Bram Moolenaar63d9e732019-12-05 21:10:38 +010077static int last_idx = 0; // index in spats[] for RE_LAST
Bram Moolenaar071d4272004-06-13 20:20:40 +000078
Bram Moolenaar63d9e732019-12-05 21:10:38 +010079static char_u lastc[2] = {NUL, NUL}; // last character searched for
80static int lastcdir = FORWARD; // last direction of character search
81static int last_t_cmd = TRUE; // last search t_cmd
Bram Moolenaardbd24b52015-08-11 14:26:19 +020082static char_u lastc_bytes[MB_MAXBYTES + 1];
Bram Moolenaar63d9e732019-12-05 21:10:38 +010083static int lastc_bytelen = 1; // >1 for multi-byte char
Bram Moolenaardbd24b52015-08-11 14:26:19 +020084
Bram Moolenaar63d9e732019-12-05 21:10:38 +010085// copy of spats[], for keeping the search patterns while executing autocmds
Bram Moolenaarc3328162019-07-23 22:15:25 +020086static spat_T saved_spats[2];
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 Moolenaar63d9e732019-12-05 21:10:38 +010092static char_u *mr_pattern = NULL; // pattern used by search_regcomp()
Bram Moolenaar071d4272004-06-13 20:20:40 +000093#ifdef FEAT_RIGHTLEFT
Bram Moolenaar63d9e732019-12-05 21:10:38 +010094static int mr_pattern_alloced = FALSE; // mr_pattern was allocated
Bram Moolenaar071d4272004-06-13 20:20:40 +000095#endif
96
97#ifdef FEAT_FIND_ID
98/*
99 * Type used by find_pattern_in_path() to remember which included files have
100 * been searched already.
101 */
102typedef struct SearchedFile
103{
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100104 FILE *fp; // File pointer
105 char_u *name; // Full name of file
106 linenr_T lnum; // Line we were up to in file
107 int matched; // Found a match in this file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108} SearchedFile;
109#endif
110
111/*
112 * translate search pattern for vim_regcomp()
113 *
114 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd)
115 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command)
116 * pat_save == RE_BOTH: save pat in both patterns (:global command)
117 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL
Bram Moolenaarb8017e72007-05-10 18:59:07 +0000118 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119 * pat_use == RE_LAST: use last used pattern if "pat" is NULL
120 * options & SEARCH_HIS: put search string in history
121 * options & SEARCH_KEEP: keep previous search pattern
122 *
123 * returns FAIL if failed, OK otherwise.
124 */
125 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100126search_regcomp(
127 char_u *pat,
128 int pat_save,
129 int pat_use,
130 int options,
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100131 regmmatch_T *regmatch) // return: pattern and ignore-case flag
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132{
133 int magic;
134 int i;
135
136 rc_did_emsg = FALSE;
Bram Moolenaarf4e20992020-12-21 19:59:08 +0100137 magic = magic_isset();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138
139 /*
140 * If no pattern given, use a previously defined pattern.
141 */
142 if (pat == NULL || *pat == NUL)
143 {
144 if (pat_use == RE_LAST)
145 i = last_idx;
146 else
147 i = pat_use;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100148 if (spats[i].pat == NULL) // pattern was never defined
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149 {
150 if (pat_use == RE_SUBST)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100151 emsg(_(e_nopresub));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100153 emsg(_(e_noprevre));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154 rc_did_emsg = TRUE;
155 return FAIL;
156 }
157 pat = spats[i].pat;
158 magic = spats[i].magic;
159 no_smartcase = spats[i].no_scs;
160 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100161 else if (options & SEARCH_HIS) // put new pattern in history
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163
164#ifdef FEAT_RIGHTLEFT
165 if (mr_pattern_alloced)
166 {
167 vim_free(mr_pattern);
168 mr_pattern_alloced = FALSE;
169 }
170
171 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
172 {
173 char_u *rev_pattern;
174
175 rev_pattern = reverse_text(pat);
176 if (rev_pattern == NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100177 mr_pattern = pat; // out of memory, keep normal pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178 else
179 {
180 mr_pattern = rev_pattern;
181 mr_pattern_alloced = TRUE;
182 }
183 }
184 else
185#endif
186 mr_pattern = pat;
187
188 /*
189 * Save the currently used pattern in the appropriate place,
190 * unless the pattern should not be remembered.
191 */
Bram Moolenaare1004402020-10-24 20:49:43 +0200192 if (!(options & SEARCH_KEEP)
193 && (cmdmod.cmod_flags & CMOD_KEEPPATTERNS) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100195 // search or global command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 if (pat_save == RE_SEARCH || pat_save == RE_BOTH)
197 save_re_pat(RE_SEARCH, pat, magic);
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100198 // substitute or global command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199 if (pat_save == RE_SUBST || pat_save == RE_BOTH)
200 save_re_pat(RE_SUBST, pat, magic);
201 }
202
203 regmatch->rmm_ic = ignorecase(pat);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +0000204 regmatch->rmm_maxcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
206 if (regmatch->regprog == NULL)
207 return FAIL;
208 return OK;
209}
210
211/*
212 * Get search pattern used by search_regcomp().
213 */
214 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100215get_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216{
217 return mr_pattern;
218}
219
Bram Moolenaarabc97732007-08-08 20:49:37 +0000220#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221/*
222 * Reverse text into allocated memory.
223 * Returns the allocated string, NULL when out of memory.
224 */
Bram Moolenaarabc97732007-08-08 20:49:37 +0000225 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100226reverse_text(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227{
228 unsigned len;
229 unsigned s_i, rev_i;
230 char_u *rev;
231
232 /*
233 * Reverse the pattern.
234 */
235 len = (unsigned)STRLEN(s);
236 rev = alloc(len + 1);
237 if (rev != NULL)
238 {
239 rev_i = len;
240 for (s_i = 0; s_i < len; ++s_i)
241 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242 if (has_mbyte)
243 {
244 int mb_len;
245
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000246 mb_len = (*mb_ptr2len)(s + s_i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247 rev_i -= mb_len;
248 mch_memmove(rev + rev_i, s + s_i, mb_len);
249 s_i += mb_len - 1;
250 }
251 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252 rev[--rev_i] = s[s_i];
253
254 }
255 rev[len] = NUL;
256 }
257 return rev;
258}
259#endif
260
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +0100261 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100262save_re_pat(int idx, char_u *pat, int magic)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263{
264 if (spats[idx].pat != pat)
265 {
266 vim_free(spats[idx].pat);
267 spats[idx].pat = vim_strsave(pat);
268 spats[idx].magic = magic;
269 spats[idx].no_scs = no_smartcase;
270 last_idx = idx;
271#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100272 // If 'hlsearch' set and search pat changed: need redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 if (p_hls)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000274 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200275 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276#endif
277 }
278}
279
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280/*
281 * Save the search patterns, so they can be restored later.
282 * Used before/after executing autocommands and user functions.
283 */
284static int save_level = 0;
285
286 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100287save_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288{
289 if (save_level++ == 0)
290 {
291 saved_spats[0] = spats[0];
292 if (spats[0].pat != NULL)
293 saved_spats[0].pat = vim_strsave(spats[0].pat);
294 saved_spats[1] = spats[1];
295 if (spats[1].pat != NULL)
296 saved_spats[1].pat = vim_strsave(spats[1].pat);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100297#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100298 saved_spats_last_idx = last_idx;
299 saved_spats_no_hlsearch = no_hlsearch;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100300#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301 }
302}
303
304 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100305restore_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306{
307 if (--save_level == 0)
308 {
309 vim_free(spats[0].pat);
310 spats[0] = saved_spats[0];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100311#if defined(FEAT_EVAL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000312 set_vv_searchforward();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100313#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314 vim_free(spats[1].pat);
315 spats[1] = saved_spats[1];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100316#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100317 last_idx = saved_spats_last_idx;
318 set_no_hlsearch(saved_spats_no_hlsearch);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100319#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320 }
321}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000323#if defined(EXITFREE) || defined(PROTO)
324 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100325free_search_patterns(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000326{
327 vim_free(spats[0].pat);
328 vim_free(spats[1].pat);
Bram Moolenaarf2427622009-04-22 16:45:21 +0000329
330# ifdef FEAT_RIGHTLEFT
331 if (mr_pattern_alloced)
332 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200333 vim_free(mr_pattern);
334 mr_pattern_alloced = FALSE;
335 mr_pattern = NULL;
Bram Moolenaarf2427622009-04-22 16:45:21 +0000336 }
337# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000338}
339#endif
340
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100341#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100342// copy of spats[RE_SEARCH], for keeping the search patterns while incremental
343// searching
Bram Moolenaarc3328162019-07-23 22:15:25 +0200344static spat_T saved_last_search_spat;
Bram Moolenaared8bc782018-12-01 21:08:21 +0100345static int did_save_last_search_spat = 0;
346static int saved_last_idx = 0;
347static int saved_no_hlsearch = 0;
348
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100349/*
350 * Save and restore the search pattern for incremental highlight search
351 * feature.
352 *
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100353 * It's similar to but different from save_search_patterns() and
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100354 * restore_search_patterns(), because the search pattern must be restored when
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100355 * canceling incremental searching even if it's called inside user functions.
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100356 */
357 void
358save_last_search_pattern(void)
359{
Bram Moolenaar442a8532020-06-04 20:56:09 +0200360 if (++did_save_last_search_spat != 1)
361 // nested call, nothing to do
362 return;
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100363
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100364 saved_last_search_spat = spats[RE_SEARCH];
365 if (spats[RE_SEARCH].pat != NULL)
366 saved_last_search_spat.pat = vim_strsave(spats[RE_SEARCH].pat);
367 saved_last_idx = last_idx;
368 saved_no_hlsearch = no_hlsearch;
369}
370
371 void
372restore_last_search_pattern(void)
373{
Bram Moolenaar442a8532020-06-04 20:56:09 +0200374 if (--did_save_last_search_spat > 0)
375 // nested call, nothing to do
376 return;
377 if (did_save_last_search_spat != 0)
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100378 {
Bram Moolenaar442a8532020-06-04 20:56:09 +0200379 iemsg("restore_last_search_pattern() called more often than save_last_search_pattern()");
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100380 return;
381 }
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100382
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100383 vim_free(spats[RE_SEARCH].pat);
384 spats[RE_SEARCH] = saved_last_search_spat;
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100385 saved_last_search_spat.pat = NULL;
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100386# if defined(FEAT_EVAL)
387 set_vv_searchforward();
388# endif
389 last_idx = saved_last_idx;
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200390 set_no_hlsearch(saved_no_hlsearch);
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100391}
Bram Moolenaard0480092017-11-16 22:20:39 +0100392
393 char_u *
394last_search_pattern(void)
395{
396 return spats[RE_SEARCH].pat;
397}
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100398#endif
399
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400/*
401 * Return TRUE when case should be ignored for search pattern "pat".
402 * Uses the 'ignorecase' and 'smartcase' options.
403 */
404 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100405ignorecase(char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406{
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200407 return ignorecase_opt(pat, p_ic, p_scs);
408}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200410/*
411 * As ignorecase() put pass the "ic" and "scs" flags.
412 */
413 int
414ignorecase_opt(char_u *pat, int ic_in, int scs)
415{
416 int ic = ic_in;
417
418 if (ic && !no_smartcase && scs
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200419 && !(ctrl_x_mode_not_default() && curbuf->b_p_inf))
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200420 ic = !pat_has_uppercase(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 no_smartcase = FALSE;
422
423 return ic;
424}
425
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200426/*
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200427 * Return TRUE if pattern "pat" has an uppercase character.
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200428 */
429 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100430pat_has_uppercase(char_u *pat)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200431{
432 char_u *p = pat;
433
434 while (*p != NUL)
435 {
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200436 int l;
437
438 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
439 {
440 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
441 return TRUE;
442 p += l;
443 }
Bram Moolenaar264b74f2019-01-24 17:18:42 +0100444 else if (*p == '\\')
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200445 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100446 if (p[1] == '_' && p[2] != NUL) // skip "\_X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200447 p += 3;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100448 else if (p[1] == '%' && p[2] != NUL) // skip "\%X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200449 p += 3;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100450 else if (p[1] != NUL) // skip "\X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200451 p += 2;
452 else
453 p += 1;
454 }
455 else if (MB_ISUPPER(*p))
456 return TRUE;
457 else
458 ++p;
459 }
460 return FALSE;
461}
462
Bram Moolenaar113e1072019-01-20 15:30:40 +0100463#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100465last_csearch(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200466{
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200467 return lastc_bytes;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200468}
469
470 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100471last_csearch_forward(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200472{
473 return lastcdir == FORWARD;
474}
475
476 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100477last_csearch_until(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200478{
479 return last_t_cmd == TRUE;
480}
481
482 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100483set_last_csearch(int c, char_u *s UNUSED, int len UNUSED)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200484{
485 *lastc = c;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200486 lastc_bytelen = len;
487 if (len)
488 memcpy(lastc_bytes, s, len);
489 else
Bram Moolenaara80faa82020-04-12 19:37:17 +0200490 CLEAR_FIELD(lastc_bytes);
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200491}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100492#endif
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200493
494 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100495set_csearch_direction(int cdir)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200496{
497 lastcdir = cdir;
498}
499
500 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100501set_csearch_until(int t_cmd)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200502{
503 last_t_cmd = t_cmd;
504}
505
506 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100507last_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508{
509 return spats[last_idx].pat;
510}
511
512/*
513 * Reset search direction to forward. For "gd" and "gD" commands.
514 */
515 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100516reset_search_dir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517{
518 spats[0].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000519#if defined(FEAT_EVAL)
520 set_vv_searchforward();
521#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522}
523
524#if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
525/*
526 * Set the last search pattern. For ":let @/ =" and viminfo.
527 * Also set the saved search pattern, so that this works in an autocommand.
528 */
529 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100530set_last_search_pat(
531 char_u *s,
532 int idx,
533 int magic,
534 int setlast)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535{
536 vim_free(spats[idx].pat);
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100537 // An empty string means that nothing should be matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 if (*s == NUL)
539 spats[idx].pat = NULL;
540 else
541 spats[idx].pat = vim_strsave(s);
542 spats[idx].magic = magic;
543 spats[idx].no_scs = FALSE;
544 spats[idx].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000545#if defined(FEAT_EVAL)
546 set_vv_searchforward();
547#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 spats[idx].off.line = FALSE;
549 spats[idx].off.end = FALSE;
550 spats[idx].off.off = 0;
551 if (setlast)
552 last_idx = idx;
553 if (save_level)
554 {
555 vim_free(saved_spats[idx].pat);
556 saved_spats[idx] = spats[0];
557 if (spats[idx].pat == NULL)
558 saved_spats[idx].pat = NULL;
559 else
560 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
Bram Moolenaar975880b2019-03-03 14:42:11 +0100561# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100562 saved_spats_last_idx = last_idx;
Bram Moolenaar975880b2019-03-03 14:42:11 +0100563# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 }
565# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100566 // If 'hlsearch' set and search pat changed: need redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 if (p_hls && idx == last_idx && !no_hlsearch)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000568 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569# endif
570}
571#endif
572
573#ifdef FEAT_SEARCH_EXTRA
574/*
575 * Get a regexp program for the last used search pattern.
576 * This is used for highlighting all matches in a window.
577 * Values returned in regmatch->regprog and regmatch->rmm_ic.
578 */
579 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100580last_pat_prog(regmmatch_T *regmatch)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581{
582 if (spats[last_idx].pat == NULL)
583 {
584 regmatch->regprog = NULL;
585 return;
586 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100587 ++emsg_off; // So it doesn't beep if bad expr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
589 --emsg_off;
590}
591#endif
592
593/*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100594 * Lowest level search function.
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100595 * Search for 'count'th occurrence of pattern "pat" in direction "dir".
596 * Start at position "pos" and return the found position in "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 *
598 * if (options & SEARCH_MSG) == 0 don't give any messages
599 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
600 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
601 * if (options & SEARCH_HIS) put search pattern in history
602 * if (options & SEARCH_END) return position at end of match
603 * if (options & SEARCH_START) accept match at pos itself
604 * if (options & SEARCH_KEEP) keep previous search pattern
605 * if (options & SEARCH_FOLD) match only once in a closed fold
606 * if (options & SEARCH_PEEK) check for typed char, cancel search
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100607 * if (options & SEARCH_COL) start at pos->col instead of zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 *
609 * Return FAIL (zero) for failure, non-zero for success.
610 * When FEAT_EVAL is defined, returns the index of the first matching
611 * subpattern plus one; one if there was none.
612 */
613 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100614searchit(
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200615 win_T *win, // window to search in; can be NULL for a
616 // buffer without a window!
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100617 buf_T *buf,
618 pos_T *pos,
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100619 pos_T *end_pos, // set to end of the match, unless NULL
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100620 int dir,
621 char_u *pat,
622 long count,
623 int options,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200624 int pat_use, // which pattern to use when "pat" is empty
625 searchit_arg_T *extra_arg) // optional extra arguments, can be NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626{
627 int found;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100628 linenr_T lnum; // no init to shut up Apollo cc
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100629 colnr_T col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 regmmatch_T regmatch;
631 char_u *ptr;
632 colnr_T matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 lpos_T endpos;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000634 lpos_T matchpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635 int loop;
636 pos_T start_pos;
637 int at_first_line;
638 int extra_col;
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200639 int start_char_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 int match_ok;
641 long nmatched;
642 int submatch = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100643 int first_match = TRUE;
Bram Moolenaar53989552019-12-23 22:59:18 +0100644 int called_emsg_before = called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645#ifdef FEAT_SEARCH_EXTRA
646 int break_loop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647#endif
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200648 linenr_T stop_lnum = 0; // stop after this line number when != 0
649#ifdef FEAT_RELTIME
650 proftime_T *tm = NULL; // timeout limit or NULL
651 int *timed_out = NULL; // set when timed out or NULL
652#endif
653
654 if (extra_arg != NULL)
655 {
656 stop_lnum = extra_arg->sa_stop_lnum;
657#ifdef FEAT_RELTIME
658 tm = extra_arg->sa_tm;
659 timed_out = &extra_arg->sa_timed_out;
660#endif
661 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662
663 if (search_regcomp(pat, RE_SEARCH, pat_use,
664 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
665 {
666 if ((options & SEARCH_MSG) && !rc_did_emsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100667 semsg(_("E383: Invalid search string: %s"), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 return FAIL;
669 }
670
Bram Moolenaar280f1262006-01-30 00:14:18 +0000671 /*
672 * find the string
673 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100674 do // loop for count
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100676 // When not accepting a match at the start position set "extra_col" to
677 // a non-zero value. Don't do that when starting at MAXCOL, since
678 // MAXCOL + 1 is zero.
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200679 if (pos->col == MAXCOL)
680 start_char_len = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100681 // Watch out for the "col" being MAXCOL - 2, used in a closed fold.
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200682 else if (has_mbyte
683 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
684 && pos->col < MAXCOL - 2)
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100685 {
Bram Moolenaar82846a02018-02-09 18:09:54 +0100686 ptr = ml_get_buf(buf, pos->lnum, FALSE);
Bram Moolenaar8846ac52018-02-09 19:24:01 +0100687 if ((int)STRLEN(ptr) <= pos->col)
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200688 start_char_len = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100689 else
Bram Moolenaar82846a02018-02-09 18:09:54 +0100690 start_char_len = (*mb_ptr2len)(ptr + pos->col);
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100691 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100692 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200693 start_char_len = 1;
694 if (dir == FORWARD)
695 {
696 if (options & SEARCH_START)
697 extra_col = 0;
698 else
699 extra_col = start_char_len;
700 }
701 else
702 {
703 if (options & SEARCH_START)
704 extra_col = start_char_len;
705 else
706 extra_col = 0;
707 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100708
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100709 start_pos = *pos; // remember start pos for detecting no match
710 found = 0; // default: not found
711 at_first_line = TRUE; // default: start in first line
712 if (pos->lnum == 0) // correct lnum for when starting in line 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 {
714 pos->lnum = 1;
715 pos->col = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100716 at_first_line = FALSE; // not in first line now
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 }
718
719 /*
720 * Start searching in current line, unless searching backwards and
721 * we're in column 0.
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000722 * If we are searching backwards, in column 0, and not including the
723 * current position, gain some efficiency by skipping back a line.
724 * Otherwise begin the search in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 */
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000726 if (dir == BACKWARD && start_pos.col == 0
727 && (options & SEARCH_START) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 {
729 lnum = pos->lnum - 1;
730 at_first_line = FALSE;
731 }
732 else
733 lnum = pos->lnum;
734
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100735 for (loop = 0; loop <= 1; ++loop) // loop twice if 'wrapscan' set
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 {
737 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
738 lnum += dir, at_first_line = FALSE)
739 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100740 // Stop after checking "stop_lnum", if it's set.
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000741 if (stop_lnum != 0 && (dir == FORWARD
742 ? lnum > stop_lnum : lnum < stop_lnum))
743 break;
Bram Moolenaar76929292008-01-06 19:07:36 +0000744#ifdef FEAT_RELTIME
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100745 // Stop after passing the "tm" time limit.
Bram Moolenaar76929292008-01-06 19:07:36 +0000746 if (tm != NULL && profile_passed_limit(tm))
747 break;
748#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000749
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000751 * Look for a match somewhere in line "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100753 col = at_first_line && (options & SEARCH_COL) ? pos->col
754 : (colnr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 nmatched = vim_regexec_multi(&regmatch, win, buf,
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100756 lnum, col,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000757#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200758 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000759#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200760 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000761#endif
762 );
Bram Moolenaar795aaa12020-10-02 20:36:01 +0200763 // vim_regexec_multi() may clear "regprog"
764 if (regmatch.regprog == NULL)
765 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100766 // Abort searching on an error (e.g., out of stack).
Bram Moolenaar53989552019-12-23 22:59:18 +0100767 if (called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200768#ifdef FEAT_RELTIME
769 || (timed_out != NULL && *timed_out)
770#endif
771 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 break;
773 if (nmatched > 0)
774 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100775 // match may actually be in another line when using \zs
Bram Moolenaar677ee682005-01-27 14:41:15 +0000776 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777 endpos = regmatch.endpos[0];
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000778#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 submatch = first_submatch(&regmatch);
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000780#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100781 // "lnum" may be past end of buffer for "\n\zs".
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000782 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
783 ptr = (char_u *)"";
784 else
785 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786
787 /*
788 * Forward search in the first line: match should be after
789 * the start position. If not, continue at the end of the
790 * match (this is vi compatible) or on the next char.
791 */
792 if (dir == FORWARD && at_first_line)
793 {
794 match_ok = TRUE;
795 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000796 * When the match starts in a next line it's certainly
797 * past the start position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 * When match lands on a NUL the cursor will be put
799 * one back afterwards, compare with that position,
800 * otherwise "/$" will get stuck on end of line.
801 */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000802 while (matchpos.lnum == 0
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100803 && ((options & SEARCH_END) && first_match
Bram Moolenaar677ee682005-01-27 14:41:15 +0000804 ? (nmatched == 1
805 && (int)endpos.col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806 < (int)start_pos.col + extra_col)
Bram Moolenaar677ee682005-01-27 14:41:15 +0000807 : ((int)matchpos.col
808 - (ptr[matchpos.col] == NUL)
809 < (int)start_pos.col + extra_col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 {
811 /*
812 * If vi-compatible searching, continue at the end
813 * of the match, otherwise continue one position
814 * forward.
815 */
816 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
817 {
818 if (nmatched > 1)
819 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100820 // end is in next line, thus no match in
821 // this line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 match_ok = FALSE;
823 break;
824 }
825 matchcol = endpos.col;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100826 // for empty match: advance one char
Bram Moolenaar677ee682005-01-27 14:41:15 +0000827 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 && ptr[matchcol] != NUL)
829 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 if (has_mbyte)
831 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000832 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 ++matchcol;
835 }
836 }
837 else
838 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000839 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 if (ptr[matchcol] != NUL)
841 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000843 matchcol += (*mb_ptr2len)(ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 + matchcol);
845 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 ++matchcol;
847 }
848 }
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200849 if (matchcol == 0 && (options & SEARCH_START))
Bram Moolenaardb333a52013-03-19 15:27:48 +0100850 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851 if (ptr[matchcol] == NUL
852 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000853 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000854 matchcol,
855#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200856 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000857#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200858 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000859#endif
860 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861 {
862 match_ok = FALSE;
863 break;
864 }
Bram Moolenaar795aaa12020-10-02 20:36:01 +0200865 // vim_regexec_multi() may clear "regprog"
866 if (regmatch.regprog == NULL)
867 break;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000868 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 endpos = regmatch.endpos[0];
870# ifdef FEAT_EVAL
871 submatch = first_submatch(&regmatch);
872# endif
873
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100874 // Need to get the line pointer again, a
875 // multi-line search may have made it invalid.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000876 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 }
878 if (!match_ok)
879 continue;
880 }
881 if (dir == BACKWARD)
882 {
883 /*
884 * Now, if there are multiple matches on this line,
885 * we have to get the last one. Or the last one before
886 * the cursor, if we're on that line.
887 * When putting the new cursor at the end, compare
888 * relative to the end of the match.
889 */
890 match_ok = FALSE;
891 for (;;)
892 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100893 // Remember a position that is before the start
894 // position, we use it if it's the last match in
895 // the line. Always accept a position after
896 // wrapping around.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000897 if (loop
898 || ((options & SEARCH_END)
899 ? (lnum + regmatch.endpos[0].lnum
900 < start_pos.lnum
901 || (lnum + regmatch.endpos[0].lnum
902 == start_pos.lnum
903 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200904 < (int)start_pos.col
905 + extra_col))
Bram Moolenaar677ee682005-01-27 14:41:15 +0000906 : (lnum + regmatch.startpos[0].lnum
907 < start_pos.lnum
908 || (lnum + regmatch.startpos[0].lnum
909 == start_pos.lnum
910 && (int)regmatch.startpos[0].col
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200911 < (int)start_pos.col
912 + extra_col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000915 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 endpos = regmatch.endpos[0];
917# ifdef FEAT_EVAL
918 submatch = first_submatch(&regmatch);
919# endif
920 }
921 else
922 break;
923
924 /*
925 * We found a valid match, now check if there is
926 * another one after it.
927 * If vi-compatible searching, continue at the end
928 * of the match, otherwise continue one position
929 * forward.
930 */
931 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
932 {
933 if (nmatched > 1)
934 break;
935 matchcol = endpos.col;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100936 // for empty match: advance one char
Bram Moolenaar677ee682005-01-27 14:41:15 +0000937 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 && ptr[matchcol] != NUL)
939 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 if (has_mbyte)
941 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000942 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 ++matchcol;
945 }
946 }
947 else
948 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100949 // Stop when the match is in a next line.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000950 if (matchpos.lnum > 0)
951 break;
952 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 if (ptr[matchcol] != NUL)
954 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 if (has_mbyte)
956 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000957 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 ++matchcol;
960 }
961 }
962 if (ptr[matchcol] == NUL
963 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000964 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000965 matchcol,
966#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200967 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000968#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200969 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000970#endif
971 )) == 0)
Bram Moolenaar9d322762018-02-09 16:04:25 +0100972 {
973#ifdef FEAT_RELTIME
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100974 // If the search timed out, we did find a match
975 // but it might be the wrong one, so that's not
976 // OK.
Bram Moolenaar9d322762018-02-09 16:04:25 +0100977 if (timed_out != NULL && *timed_out)
978 match_ok = FALSE;
979#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 break;
Bram Moolenaar9d322762018-02-09 16:04:25 +0100981 }
Bram Moolenaar795aaa12020-10-02 20:36:01 +0200982 // vim_regexec_multi() may clear "regprog"
983 if (regmatch.regprog == NULL)
984 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100986 // Need to get the line pointer again, a
987 // multi-line search may have made it invalid.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000988 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 }
990
991 /*
992 * If there is only a match after the cursor, skip
993 * this match.
994 */
995 if (!match_ok)
996 continue;
997 }
998
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100999 // With the SEARCH_END option move to the last character
1000 // of the match. Don't do it for an empty match, end
1001 // should be same as start then.
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +02001002 if ((options & SEARCH_END) && !(options & SEARCH_NOOF)
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001003 && !(matchpos.lnum == endpos.lnum
1004 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001006 // For a match in the first column, set the position
1007 // on the NUL in the previous line.
Bram Moolenaar677ee682005-01-27 14:41:15 +00001008 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001009 pos->col = endpos.col;
1010 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001011 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001012 if (pos->lnum > 1) // just in case
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001013 {
1014 --pos->lnum;
1015 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
1016 pos->lnum, FALSE));
1017 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001018 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001019 else
1020 {
1021 --pos->col;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001022 if (has_mbyte
1023 && pos->lnum <= buf->b_ml.ml_line_count)
1024 {
1025 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1026 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
1027 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001028 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001029 if (end_pos != NULL)
1030 {
1031 end_pos->lnum = lnum + matchpos.lnum;
1032 end_pos->col = matchpos.col;
1033 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 }
1035 else
1036 {
Bram Moolenaar677ee682005-01-27 14:41:15 +00001037 pos->lnum = lnum + matchpos.lnum;
1038 pos->col = matchpos.col;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001039 if (end_pos != NULL)
1040 {
1041 end_pos->lnum = lnum + endpos.lnum;
1042 end_pos->col = endpos.col;
1043 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 pos->coladd = 0;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001046 if (end_pos != NULL)
1047 end_pos->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 found = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +01001049 first_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001051 // Set variables used for 'incsearch' highlighting.
Bram Moolenaar677ee682005-01-27 14:41:15 +00001052 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053 search_match_endcol = endpos.col;
1054 break;
1055 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001056 line_breakcheck(); // stop if ctrl-C typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 if (got_int)
1058 break;
1059
1060#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001061 // Cancel searching if a character was typed. Used for
1062 // 'incsearch'. Don't check too often, that would slowdown
1063 // searching too much.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 if ((options & SEARCH_PEEK)
1065 && ((lnum - pos->lnum) & 0x3f) == 0
1066 && char_avail())
1067 {
1068 break_loop = TRUE;
1069 break;
1070 }
1071#endif
1072
1073 if (loop && lnum == start_pos.lnum)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001074 break; // if second loop, stop where started
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 }
1076 at_first_line = FALSE;
1077
Bram Moolenaar795aaa12020-10-02 20:36:01 +02001078 // vim_regexec_multi() may clear "regprog"
1079 if (regmatch.regprog == NULL)
1080 break;
1081
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001083 * Stop the search if wrapscan isn't set, "stop_lnum" is
1084 * specified, after an interrupt, after a match and after looping
1085 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 */
Bram Moolenaar53989552019-12-23 22:59:18 +01001087 if (!p_ws || stop_lnum != 0 || got_int
1088 || called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001089#ifdef FEAT_RELTIME
1090 || (timed_out != NULL && *timed_out)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001091#endif
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001092#ifdef FEAT_SEARCH_EXTRA
1093 || break_loop
1094#endif
1095 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 break;
1097
1098 /*
1099 * If 'wrapscan' is set we continue at the other end of the file.
1100 * If 'shortmess' does not contain 's', we give a message.
1101 * This message is also remembered in keep_msg for when the screen
1102 * is redrawn. The keep_msg is cleared whenever another message is
1103 * written.
1104 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001105 if (dir == BACKWARD) // start second loop at the other end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00001109 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
1110 give_warning((char_u *)_(dir == BACKWARD
1111 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001112 if (extra_arg != NULL)
1113 extra_arg->sa_wrapped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 }
Bram Moolenaar53989552019-12-23 22:59:18 +01001115 if (got_int || called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001116#ifdef FEAT_RELTIME
1117 || (timed_out != NULL && *timed_out)
1118#endif
Bram Moolenaar78a15312009-05-15 19:33:18 +00001119#ifdef FEAT_SEARCH_EXTRA
1120 || break_loop
1121#endif
1122 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123 break;
1124 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001125 while (--count > 0 && found); // stop after count matches or no match
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126
Bram Moolenaar473de612013-06-08 18:19:48 +02001127 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001129 if (!found) // did not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 {
1131 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001132 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 else if ((options & SEARCH_MSG) == SEARCH_MSG)
1134 {
1135 if (p_ws)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001136 semsg(_(e_patnotf2), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137 else if (lnum == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001138 semsg(_("E384: search hit TOP without match for: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 mr_pattern);
1140 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001141 semsg(_("E385: search hit BOTTOM without match for: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 mr_pattern);
1143 }
1144 return FAIL;
1145 }
1146
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001147 // A pattern like "\n\zs" may go past the last line.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001148 if (pos->lnum > buf->b_ml.ml_line_count)
1149 {
1150 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001151 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001152 if (pos->col > 0)
1153 --pos->col;
1154 }
1155
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 return submatch + 1;
1157}
1158
1159#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001160 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001161set_search_direction(int cdir)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001162{
1163 spats[0].off.dir = cdir;
1164}
1165
1166 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001167set_vv_searchforward(void)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001168{
1169 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1170}
1171
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172/*
1173 * Return the number of the first subpat that matched.
Bram Moolenaarad4d8a12015-12-28 19:20:36 +01001174 * Return zero if none of them matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 */
1176 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001177first_submatch(regmmatch_T *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178{
1179 int submatch;
1180
1181 for (submatch = 1; ; ++submatch)
1182 {
1183 if (rp->startpos[submatch].lnum >= 0)
1184 break;
1185 if (submatch == 9)
1186 {
1187 submatch = 0;
1188 break;
1189 }
1190 }
1191 return submatch;
1192}
1193#endif
1194
1195/*
1196 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001197 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 * If 'dirc' is 0: use previous dir.
1199 * If 'pat' is NULL or empty : use previous string.
1200 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1201 * If 'options & SEARCH_ECHO': echo the search command and handle options
1202 * If 'options & SEARCH_MSG' : may give error message
1203 * If 'options & SEARCH_OPT' : interpret optional flags
1204 * If 'options & SEARCH_HIS' : put search pattern in history
1205 * If 'options & SEARCH_NOOF': don't add offset to position
1206 * If 'options & SEARCH_MARK': set previous context mark
1207 * If 'options & SEARCH_KEEP': keep previous search pattern
1208 * If 'options & SEARCH_START': accept match at curpos itself
1209 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1210 *
1211 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1212 * makes the movement linewise without moving the match position.
1213 *
Bram Moolenaarb6c27352015-03-05 19:57:49 +01001214 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 */
1216 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001217do_search(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001218 oparg_T *oap, // can be NULL
1219 int dirc, // '/' or '?'
Bram Moolenaarc036e872020-02-21 21:30:52 +01001220 int search_delim, // the delimiter for the search, e.g. '%' in s%regex%replacement%
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001221 char_u *pat,
1222 long count,
1223 int options,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001224 searchit_arg_T *sia) // optional arguments or NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001226 pos_T pos; // position of the last match
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 char_u *searchstr;
Bram Moolenaarc3328162019-07-23 22:15:25 +02001228 soffset_T old_off;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001229 int retval; // Return value
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 char_u *p;
1231 long c;
1232 char_u *dircp;
1233 char_u *strcopy = NULL;
1234 char_u *ps;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001235 char_u *msgbuf = NULL;
1236 size_t len;
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001237 int has_offset = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238
1239 /*
1240 * A line offset is not remembered, this is vi compatible.
1241 */
1242 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1243 {
1244 spats[0].off.line = FALSE;
1245 spats[0].off.off = 0;
1246 }
1247
1248 /*
1249 * Save the values for when (options & SEARCH_KEEP) is used.
1250 * (there is no "if ()" around this because gcc wants them initialized)
1251 */
1252 old_off = spats[0].off;
1253
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001254 pos = curwin->w_cursor; // start searching at the cursor position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255
1256 /*
1257 * Find out the direction of the search.
1258 */
1259 if (dirc == 0)
1260 dirc = spats[0].off.dir;
1261 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001262 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001264#if defined(FEAT_EVAL)
1265 set_vv_searchforward();
1266#endif
1267 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 if (options & SEARCH_REV)
1269 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001270#ifdef MSWIN
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001271 // There is a bug in the Visual C++ 2.2 compiler which means that
1272 // dirc always ends up being '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 dirc = (dirc == '/') ? '?' : '/';
1274#else
1275 if (dirc == '/')
1276 dirc = '?';
1277 else
1278 dirc = '/';
1279#endif
1280 }
1281
1282#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001283 // If the cursor is in a closed fold, don't find another match in the same
1284 // fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 if (dirc == '/')
1286 {
1287 if (hasFolding(pos.lnum, NULL, &pos.lnum))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001288 pos.col = MAXCOL - 2; // avoid overflow when adding 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 }
1290 else
1291 {
1292 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1293 pos.col = 0;
1294 }
1295#endif
1296
1297#ifdef FEAT_SEARCH_EXTRA
1298 /*
1299 * Turn 'hlsearch' highlighting back on.
1300 */
1301 if (no_hlsearch && !(options & SEARCH_KEEP))
1302 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001303 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02001304 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 }
1306#endif
1307
1308 /*
1309 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1310 */
1311 for (;;)
1312 {
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001313 int show_top_bot_msg = FALSE;
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02001314
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 searchstr = pat;
1316 dircp = NULL;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001317 // use previous pattern
Bram Moolenaarc036e872020-02-21 21:30:52 +01001318 if (pat == NULL || *pat == NUL || *pat == search_delim)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001320 if (spats[RE_SEARCH].pat == NULL) // no previous pattern
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 {
Bram Moolenaarea683da2016-09-09 21:41:34 +02001322 searchstr = spats[RE_SUBST].pat;
1323 if (searchstr == NULL)
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001324 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001325 emsg(_(e_noprevre));
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001326 retval = 0;
1327 goto end_do_search;
1328 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001330 else
1331 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001332 // make search_regcomp() use spats[RE_SEARCH].pat
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001333 searchstr = (char_u *)"";
1334 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 }
1336
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001337 if (pat != NULL && *pat != NUL) // look for (new) offset
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 {
1339 /*
1340 * Find end of regular expression.
1341 * If there is a matching '/' or '?', toss it.
1342 */
1343 ps = strcopy;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01001344 p = skip_regexp_ex(pat, search_delim, magic_isset(),
Bram Moolenaard93a7fc2021-01-04 12:42:13 +01001345 &strcopy, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 if (strcopy != ps)
1347 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001348 // made a copy of "pat" to change "\?" to "?"
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001349 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 pat = strcopy;
1351 searchstr = strcopy;
1352 }
Bram Moolenaarc036e872020-02-21 21:30:52 +01001353 if (*p == search_delim)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001355 dircp = p; // remember where we put the NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 *p++ = NUL;
1357 }
1358 spats[0].off.line = FALSE;
1359 spats[0].off.end = FALSE;
1360 spats[0].off.off = 0;
1361 /*
1362 * Check for a line offset or a character offset.
1363 * For get_address (echo off) we don't check for a character
1364 * offset, because it is meaningless and the 's' could be a
1365 * substitute command.
1366 */
1367 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1368 spats[0].off.line = TRUE;
1369 else if ((options & SEARCH_OPT) &&
1370 (*p == 'e' || *p == 's' || *p == 'b'))
1371 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001372 if (*p == 'e') // end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 spats[0].off.end = SEARCH_END;
1374 ++p;
1375 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001376 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') // got an offset
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001378 // 'nr' or '+nr' or '-nr'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1380 spats[0].off.off = atol((char *)p);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001381 else if (*p == '-') // single '-'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 spats[0].off.off = -1;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001383 else // single '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 spats[0].off.off = 1;
1385 ++p;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001386 while (VIM_ISDIGIT(*p)) // skip number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 ++p;
1388 }
1389
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001390 // compute length of search command for get_address()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 searchcmdlen += (int)(p - pat);
1392
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001393 pat = p; // put pat after search command
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 }
1395
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001396 if ((options & SEARCH_ECHO) && messaging() &&
1397 !msg_silent &&
1398 (!cmd_silent || !shortmess(SHM_SEARCHCOUNT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 char_u *trunc;
Bram Moolenaar984f0312019-05-24 13:11:47 +02001401 char_u off_buf[40];
Bram Moolenaard33a7642019-05-24 17:56:14 +02001402 size_t off_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001404 // Compute msg_row early.
1405 msg_start();
1406
Bram Moolenaar984f0312019-05-24 13:11:47 +02001407 // Get the offset, so we know how long it is.
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001408 if (!cmd_silent &&
1409 (spats[0].off.line || spats[0].off.end || spats[0].off.off))
Bram Moolenaar984f0312019-05-24 13:11:47 +02001410 {
1411 p = off_buf;
1412 *p++ = dirc;
1413 if (spats[0].off.end)
1414 *p++ = 'e';
1415 else if (!spats[0].off.line)
1416 *p++ = 's';
1417 if (spats[0].off.off > 0 || spats[0].off.line)
1418 *p++ = '+';
1419 *p = NUL;
1420 if (spats[0].off.off != 0 || spats[0].off.line)
1421 sprintf((char *)p, "%ld", spats[0].off.off);
1422 off_len = STRLEN(off_buf);
1423 }
1424
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 if (*searchstr == NUL)
Bram Moolenaar2fb8f682018-12-01 13:14:45 +01001426 p = spats[0].pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 else
1428 p = searchstr;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001429
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001430 if (!shortmess(SHM_SEARCHCOUNT) || cmd_silent)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001431 {
1432 // Reserve enough space for the search pattern + offset +
Bram Moolenaar984f0312019-05-24 13:11:47 +02001433 // search stat. Use all the space available, so that the
1434 // search state is right aligned. If there is not enough space
1435 // msg_strtrunc() will shorten in the middle.
Bram Moolenaar19e8ac72019-09-03 22:23:38 +02001436 if (msg_scrolled != 0 && !cmd_silent)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001437 // Use all the columns.
1438 len = (int)(Rows - msg_row) * Columns - 1;
1439 else
1440 // Use up to 'showcmd' column.
1441 len = (int)(Rows - msg_row - 1) * Columns + sc_col - 1;
Bram Moolenaar984f0312019-05-24 13:11:47 +02001442 if (len < STRLEN(p) + off_len + SEARCH_STAT_BUF_LEN + 3)
1443 len = STRLEN(p) + off_len + SEARCH_STAT_BUF_LEN + 3;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001444 }
1445 else
1446 // Reserve enough space for the search pattern + offset.
Bram Moolenaar984f0312019-05-24 13:11:47 +02001447 len = STRLEN(p) + off_len + 3;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001448
Bram Moolenaar880e4d92020-04-11 21:31:28 +02001449 vim_free(msgbuf);
Bram Moolenaar51e14382019-05-25 20:21:28 +02001450 msgbuf = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 if (msgbuf != NULL)
1452 {
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001453 vim_memset(msgbuf, ' ', len);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001454 msgbuf[len - 1] = NUL;
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001455 // do not fill the msgbuf buffer, if cmd_silent is set, leave it
1456 // empty for the search_stat feature.
1457 if (!cmd_silent)
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001458 {
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001459 msgbuf[0] = dirc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001461 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1462 {
1463 // Use a space to draw the composing char on.
1464 msgbuf[1] = ' ';
1465 mch_memmove(msgbuf + 2, p, STRLEN(p));
1466 }
1467 else
1468 mch_memmove(msgbuf + 1, p, STRLEN(p));
1469 if (off_len > 0)
1470 mch_memmove(msgbuf + STRLEN(p) + 1, off_buf, off_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001472 trunc = msg_strtrunc(msgbuf, TRUE);
1473 if (trunc != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 {
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001475 vim_free(msgbuf);
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001476 msgbuf = trunc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001479 #ifdef FEAT_RIGHTLEFT
1480 // The search pattern could be shown on the right in rightleft
1481 // mode, but the 'ruler' and 'showcmd' area use it too, thus
1482 // it would be blanked out again very soon. Show it on the
1483 // left, but do reverse the text.
1484 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1485 {
1486 char_u *r;
1487 size_t pat_len;
1488
1489 r = reverse_text(msgbuf);
1490 if (r != NULL)
1491 {
1492 vim_free(msgbuf);
1493 msgbuf = r;
1494 // move reversed text to beginning of buffer
1495 while (*r != NUL && *r == ' ')
1496 r++;
1497 pat_len = msgbuf + STRLEN(msgbuf) - r;
1498 mch_memmove(msgbuf, r, pat_len);
1499 // overwrite old text
1500 if ((size_t)(r - msgbuf) >= pat_len)
1501 vim_memset(r, ' ', pat_len);
1502 else
1503 vim_memset(msgbuf + pat_len, ' ', r - msgbuf);
1504 }
1505 }
1506 #endif
1507 msg_outtrans(msgbuf);
1508 msg_clr_eos();
1509 msg_check();
1510
1511 gotocmdline(FALSE);
1512 out_flush();
1513 msg_nowait = TRUE; // don't wait for this message
1514 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 }
1516 }
1517
1518 /*
1519 * If there is a character offset, subtract it from the current
1520 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001521 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 * This is not done for a line offset, because then we would not be vi
1523 * compatible.
1524 */
Bram Moolenaared203462004-06-16 11:19:22 +00001525 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 {
1527 if (spats[0].off.off > 0)
1528 {
1529 for (c = spats[0].off.off; c; --c)
1530 if (decl(&pos) == -1)
1531 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001532 if (c) // at start of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001534 pos.lnum = 0; // allow lnum == 0 here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535 pos.col = MAXCOL;
1536 }
1537 }
1538 else
1539 {
1540 for (c = spats[0].off.off; c; ++c)
1541 if (incl(&pos) == -1)
1542 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001543 if (c) // at end of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 {
1545 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1546 pos.col = 0;
1547 }
1548 }
1549 }
1550
Bram Moolenaar14184a32019-02-16 15:10:30 +01001551 c = searchit(curwin, curbuf, &pos, NULL,
1552 dirc == '/' ? FORWARD : BACKWARD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 searchstr, count, spats[0].off.end + (options &
1554 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1555 + SEARCH_MSG + SEARCH_START
1556 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001557 RE_LAST, sia);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558
1559 if (dircp != NULL)
Bram Moolenaarc036e872020-02-21 21:30:52 +01001560 *dircp = search_delim; // restore second '/' or '?' for normal_cmd()
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001561
1562 if (!shortmess(SHM_SEARCH)
1563 && ((dirc == '/' && LT_POS(pos, curwin->w_cursor))
1564 || (dirc == '?' && LT_POS(curwin->w_cursor, pos))))
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02001565 show_top_bot_msg = TRUE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001566
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 if (c == FAIL)
1568 {
1569 retval = 0;
1570 goto end_do_search;
1571 }
1572 if (spats[0].off.end && oap != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001573 oap->inclusive = TRUE; // 'e' includes last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001575 retval = 1; // pattern found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576
1577 /*
1578 * Add character and/or line offset
1579 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001580 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 {
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001582 pos_T org_pos = pos;
1583
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001584 if (spats[0].off.line) // Add the offset to the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 {
1586 c = pos.lnum + spats[0].off.off;
1587 if (c < 1)
1588 pos.lnum = 1;
1589 else if (c > curbuf->b_ml.ml_line_count)
1590 pos.lnum = curbuf->b_ml.ml_line_count;
1591 else
1592 pos.lnum = c;
1593 pos.col = 0;
1594
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001595 retval = 2; // pattern found, line offset added
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001597 else if (pos.col < MAXCOL - 2) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001599 // to the right, check for end of file
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001600 c = spats[0].off.off;
1601 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001603 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 if (incl(&pos) == -1)
1605 break;
1606 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001607 // to the left, check for start of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608 else
1609 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001610 while (c++ < 0)
1611 if (decl(&pos) == -1)
1612 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 }
1614 }
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001615 if (!EQUAL_POS(pos, org_pos))
1616 has_offset = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 }
1618
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001619 // Show [1/15] if 'S' is not in 'shortmess'.
1620 if ((options & SEARCH_ECHO)
1621 && messaging()
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001622 && !msg_silent
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001623 && c != FAIL
1624 && !shortmess(SHM_SEARCHCOUNT)
1625 && msgbuf != NULL)
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02001626 cmdline_search_stat(dirc, &pos, &curwin->w_cursor,
1627 show_top_bot_msg, msgbuf,
1628 (count != 1 || has_offset
Bram Moolenaar6cb07262020-05-29 22:49:43 +02001629#ifdef FEAT_FOLDING
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02001630 || (!(fdo_flags & FDO_SEARCH)
1631 && hasFolding(curwin->w_cursor.lnum,
1632 NULL, NULL))
Bram Moolenaar6cb07262020-05-29 22:49:43 +02001633#endif
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02001634 ),
1635 SEARCH_STAT_DEF_MAX_COUNT,
1636 SEARCH_STAT_DEF_TIMEOUT);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001637
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 /*
1639 * The search command can be followed by a ';' to do another search.
1640 * For example: "/pat/;/foo/+3;?bar"
1641 * This is like doing another search command, except:
1642 * - The remembered direction '/' or '?' is from the first search.
1643 * - When an error happens the cursor isn't moved at all.
1644 * Don't do this when called by get_address() (it handles ';' itself).
1645 */
1646 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1647 break;
1648
1649 dirc = *++pat;
Bram Moolenaarc036e872020-02-21 21:30:52 +01001650 search_delim = dirc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651 if (dirc != '?' && dirc != '/')
1652 {
1653 retval = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001654 emsg(_("E386: Expected '?' or '/' after ';'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 goto end_do_search;
1656 }
1657 ++pat;
1658 }
1659
1660 if (options & SEARCH_MARK)
1661 setpcmark();
1662 curwin->w_cursor = pos;
1663 curwin->w_set_curswant = TRUE;
1664
1665end_do_search:
Bram Moolenaare1004402020-10-24 20:49:43 +02001666 if ((options & SEARCH_KEEP) || (cmdmod.cmod_flags & CMOD_KEEPPATTERNS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 spats[0].off = old_off;
1668 vim_free(strcopy);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001669 vim_free(msgbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670
1671 return retval;
1672}
1673
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674/*
1675 * search_for_exact_line(buf, pos, dir, pat)
1676 *
1677 * Search for a line starting with the given pattern (ignoring leading
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001678 * white-space), starting from pos and going in direction "dir". "pos" will
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 * contain the position of the match found. Blank lines match only if
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001680 * ADDING is set. If p_ic is set then the pattern must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 * Return OK for success, or FAIL if no line found.
1682 */
1683 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001684search_for_exact_line(
1685 buf_T *buf,
1686 pos_T *pos,
1687 int dir,
1688 char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689{
1690 linenr_T start = 0;
1691 char_u *ptr;
1692 char_u *p;
1693
1694 if (buf->b_ml.ml_line_count == 0)
1695 return FAIL;
1696 for (;;)
1697 {
1698 pos->lnum += dir;
1699 if (pos->lnum < 1)
1700 {
1701 if (p_ws)
1702 {
1703 pos->lnum = buf->b_ml.ml_line_count;
1704 if (!shortmess(SHM_SEARCH))
1705 give_warning((char_u *)_(top_bot_msg), TRUE);
1706 }
1707 else
1708 {
1709 pos->lnum = 1;
1710 break;
1711 }
1712 }
1713 else if (pos->lnum > buf->b_ml.ml_line_count)
1714 {
1715 if (p_ws)
1716 {
1717 pos->lnum = 1;
1718 if (!shortmess(SHM_SEARCH))
1719 give_warning((char_u *)_(bot_top_msg), TRUE);
1720 }
1721 else
1722 {
1723 pos->lnum = 1;
1724 break;
1725 }
1726 }
1727 if (pos->lnum == start)
1728 break;
1729 if (start == 0)
1730 start = pos->lnum;
1731 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1732 p = skipwhite(ptr);
1733 pos->col = (colnr_T) (p - ptr);
1734
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001735 // when adding lines the matching line may be empty but it is not
1736 // ignored because we are interested in the next line -- Acevedo
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001737 if ((compl_cont_status & CONT_ADDING)
1738 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 {
1740 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1741 return OK;
1742 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001743 else if (*p != NUL) // ignore empty lines
1744 { // expanding lines or words
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001745 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1746 : STRNCMP(p, pat, compl_length)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 return OK;
1748 }
1749 }
1750 return FAIL;
1751}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752
1753/*
1754 * Character Searches
1755 */
1756
1757/*
1758 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1759 * position of the character, otherwise move to just before the char.
1760 * Do this "cap->count1" times.
1761 * Return FAIL or OK.
1762 */
1763 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001764searchc(cmdarg_T *cap, int t_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001766 int c = cap->nchar; // char to search for
1767 int dir = cap->arg; // TRUE for searching forward
1768 long count = cap->count1; // repeat count
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 int col;
1770 char_u *p;
1771 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001772 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001774 if (c != NUL) // normal search: remember args for repeat
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001776 if (!KeyStuffed) // don't remember when redoing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001778 *lastc = c;
1779 set_csearch_direction(dir);
1780 set_csearch_until(t_cmd);
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001781 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 if (cap->ncharC1 != 0)
1783 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001784 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1,
1785 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 if (cap->ncharC2 != 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001787 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2,
1788 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 }
1791 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001792 else // repeat previous search
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 {
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001794 if (*lastc == NUL && lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 return FAIL;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001796 if (dir) // repeat in opposite direction
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 dir = -lastcdir;
1798 else
1799 dir = lastcdir;
1800 t_cmd = last_t_cmd;
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001801 c = *lastc;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001802 // For multi-byte re-use last lastc_bytes[] and lastc_bytelen.
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001803
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001804 // Force a move of at least one char, so ";" and "," will move the
1805 // cursor, even if the cursor is right in front of char we are looking
1806 // at.
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001807 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001808 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 }
1810
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001811 if (dir == BACKWARD)
1812 cap->oap->inclusive = FALSE;
1813 else
1814 cap->oap->inclusive = TRUE;
1815
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 p = ml_get_curline();
1817 col = curwin->w_cursor.col;
1818 len = (int)STRLEN(p);
1819
1820 while (count--)
1821 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 if (has_mbyte)
1823 {
1824 for (;;)
1825 {
1826 if (dir > 0)
1827 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001828 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 if (col >= len)
1830 return FAIL;
1831 }
1832 else
1833 {
1834 if (col == 0)
1835 return FAIL;
1836 col -= (*mb_head_off)(p, p + col - 1) + 1;
1837 }
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001838 if (lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001840 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 break;
1842 }
Bram Moolenaar66727e12017-03-01 22:17:05 +01001843 else if (STRNCMP(p + col, lastc_bytes, lastc_bytelen) == 0
Bram Moolenaarb129a442016-12-01 17:25:20 +01001844 && stop)
Bram Moolenaar66727e12017-03-01 22:17:05 +01001845 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001846 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 }
1848 }
1849 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 {
1851 for (;;)
1852 {
1853 if ((col += dir) < 0 || col >= len)
1854 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001855 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001857 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 }
1859 }
1860 }
1861
1862 if (t_cmd)
1863 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001864 // backup to before the character (possibly double-byte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 col -= dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 if (has_mbyte)
1867 {
1868 if (dir < 0)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001869 // Landed on the search char which is lastc_bytelen long
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001870 col += lastc_bytelen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001872 // To previous char, which may be multi-byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 col -= (*mb_head_off)(p, p + col);
1874 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 }
1876 curwin->w_cursor.col = col;
1877
1878 return OK;
1879}
1880
1881/*
1882 * "Other" Searches
1883 */
1884
1885/*
1886 * findmatch - find the matching paren or brace
1887 *
1888 * Improvement over vi: Braces inside quotes are ignored.
1889 */
1890 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001891findmatch(oparg_T *oap, int initc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892{
1893 return findmatchlimit(oap, initc, 0, 0);
1894}
1895
1896/*
1897 * Return TRUE if the character before "linep[col]" equals "ch".
1898 * Return FALSE if "col" is zero.
1899 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1900 * is NULL.
1901 * Handles multibyte string correctly.
1902 */
1903 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001904check_prevcol(
1905 char_u *linep,
1906 int col,
1907 int ch,
1908 int *prevcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909{
1910 --col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 if (col > 0 && has_mbyte)
1912 col -= (*mb_head_off)(linep, linep + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 if (prevcol)
1914 *prevcol = col;
1915 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1916}
1917
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001918/*
1919 * Raw string start is found at linep[startpos.col - 1].
1920 * Return TRUE if the matching end can be found between startpos and endpos.
1921 */
1922 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001923find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos)
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001924{
1925 char_u *p;
1926 char_u *delim_copy;
1927 size_t delim_len;
1928 linenr_T lnum;
1929 int found = FALSE;
1930
1931 for (p = linep + startpos->col + 1; *p && *p != '('; ++p)
1932 ;
1933 delim_len = (p - linep) - startpos->col - 1;
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001934 delim_copy = vim_strnsave(linep + startpos->col + 1, delim_len);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001935 if (delim_copy == NULL)
1936 return FALSE;
1937 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum)
1938 {
1939 char_u *line = ml_get(lnum);
1940
1941 for (p = line + (lnum == startpos->lnum
1942 ? startpos->col + 1 : 0); *p; ++p)
1943 {
1944 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col)
1945 break;
Bram Moolenaar282f9c62020-08-04 21:46:18 +02001946 if (*p == ')' && STRNCMP(delim_copy, p + 1, delim_len) == 0
1947 && p[delim_len + 1] == '"')
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001948 {
1949 found = TRUE;
1950 break;
1951 }
1952 }
1953 if (found)
1954 break;
1955 }
1956 vim_free(delim_copy);
1957 return found;
1958}
1959
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960/*
Bram Moolenaar556ae8e2019-11-21 22:27:22 +01001961 * Check matchpairs option for "*initc".
1962 * If there is a match set "*initc" to the matching character and "*findc" to
1963 * the opposite character. Set "*backwards" to the direction.
1964 * When "switchit" is TRUE swap the direction.
1965 */
1966 static void
1967find_mps_values(
1968 int *initc,
1969 int *findc,
1970 int *backwards,
1971 int switchit)
1972{
1973 char_u *ptr;
1974
1975 ptr = curbuf->b_p_mps;
1976 while (*ptr != NUL)
1977 {
1978 if (has_mbyte)
1979 {
1980 char_u *prev;
1981
1982 if (mb_ptr2char(ptr) == *initc)
1983 {
1984 if (switchit)
1985 {
1986 *findc = *initc;
1987 *initc = mb_ptr2char(ptr + mb_ptr2len(ptr) + 1);
1988 *backwards = TRUE;
1989 }
1990 else
1991 {
1992 *findc = mb_ptr2char(ptr + mb_ptr2len(ptr) + 1);
1993 *backwards = FALSE;
1994 }
1995 return;
1996 }
1997 prev = ptr;
1998 ptr += mb_ptr2len(ptr) + 1;
1999 if (mb_ptr2char(ptr) == *initc)
2000 {
2001 if (switchit)
2002 {
2003 *findc = *initc;
2004 *initc = mb_ptr2char(prev);
2005 *backwards = FALSE;
2006 }
2007 else
2008 {
2009 *findc = mb_ptr2char(prev);
2010 *backwards = TRUE;
2011 }
2012 return;
2013 }
2014 ptr += mb_ptr2len(ptr);
2015 }
2016 else
2017 {
2018 if (*ptr == *initc)
2019 {
2020 if (switchit)
2021 {
2022 *backwards = TRUE;
2023 *findc = *initc;
2024 *initc = ptr[2];
2025 }
2026 else
2027 {
2028 *backwards = FALSE;
2029 *findc = ptr[2];
2030 }
2031 return;
2032 }
2033 ptr += 2;
2034 if (*ptr == *initc)
2035 {
2036 if (switchit)
2037 {
2038 *backwards = FALSE;
2039 *findc = *initc;
2040 *initc = ptr[-2];
2041 }
2042 else
2043 {
2044 *backwards = TRUE;
2045 *findc = ptr[-2];
2046 }
2047 return;
2048 }
2049 ++ptr;
2050 }
2051 if (*ptr == ',')
2052 ++ptr;
2053 }
2054}
2055
2056/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 * findmatchlimit -- find the matching paren or brace, if it exists within
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002058 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling
2059 * off the edge of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 *
2061 * "initc" is the character to find a match for. NUL means to find the
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002062 * character at or after the cursor. Special values:
2063 * '*' look for C-style comment / *
2064 * '/' look for C-style comment / *, ignoring comment-end
2065 * '#' look for preprocessor directives
2066 * 'R' look for raw string start: R"delim(text)delim" (only backwards)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 *
2068 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
2069 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
2070 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
2071 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002072 *
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002073 * "oap" is only used to set oap->motion_type for a linewise motion, it can be
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002074 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 */
2076
2077 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002078findmatchlimit(
2079 oparg_T *oap,
2080 int initc,
2081 int flags,
2082 int maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002084 static pos_T pos; // current search position
2085 int findc = 0; // matching brace
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 int c;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002087 int count = 0; // cumulative number of braces
2088 int backwards = FALSE; // init for gcc
2089 int raw_string = FALSE; // search for raw string
2090 int inquote = FALSE; // TRUE when inside quotes
2091 char_u *linep; // pointer to current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 char_u *ptr;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002093 int do_quotes; // check for quotes in current line
2094 int at_start; // do_quotes value at start position
2095 int hash_dir = 0; // Direction searched for # things
2096 int comment_dir = 0; // Direction searched for comments
2097 pos_T match_pos; // Where last slash-star was found
2098 int start_in_quotes; // start position is in quotes
2099 int traveled = 0; // how far we've searched so far
2100 int ignore_cend = FALSE; // ignore comment end
2101 int cpo_match; // vi compatible matching
2102 int cpo_bsl; // don't recognize backslashes
2103 int match_escaped = 0; // search for escaped match
2104 int dir; // Direction to search
2105 int comment_col = MAXCOL; // start of / / comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002106#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002107 int lispcomm = FALSE; // inside of Lisp-style comment
2108 int lisp = curbuf->b_p_lisp; // engage Lisp-specific hacks ;)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002109#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110
2111 pos = curwin->w_cursor;
Bram Moolenaarc56c4592013-08-14 17:45:29 +02002112 pos.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 linep = ml_get(pos.lnum);
2114
2115 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
2116 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
2117
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002118 // Direction to search when initc is '/', '*' or '#'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 if (flags & FM_BACKWARD)
2120 dir = BACKWARD;
2121 else if (flags & FM_FORWARD)
2122 dir = FORWARD;
2123 else
2124 dir = 0;
2125
2126 /*
2127 * if initc given, look in the table for the matching character
2128 * '/' and '*' are special cases: look for start or end of comment.
2129 * When '/' is used, we ignore running backwards into an star-slash, for
2130 * "[*" command, we just want to find any comment.
2131 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002132 if (initc == '/' || initc == '*' || initc == 'R')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 {
2134 comment_dir = dir;
2135 if (initc == '/')
2136 ignore_cend = TRUE;
2137 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002138 raw_string = (initc == 'R');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 initc = NUL;
2140 }
2141 else if (initc != '#' && initc != NUL)
2142 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002143 find_mps_values(&initc, &findc, &backwards, TRUE);
2144 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 return NULL;
2146 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147 else
2148 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002149 /*
2150 * Either initc is '#', or no initc was given and we need to look
2151 * under the cursor.
2152 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153 if (initc == '#')
2154 {
2155 hash_dir = dir;
2156 }
2157 else
2158 {
2159 /*
2160 * initc was not given, must look for something to match under
2161 * or near the cursor.
2162 * Only check for special things when 'cpo' doesn't have '%'.
2163 */
2164 if (!cpo_match)
2165 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002166 // Are we before or at #if, #else etc.?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 ptr = skipwhite(linep);
2168 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
2169 {
2170 ptr = skipwhite(ptr + 1);
2171 if ( STRNCMP(ptr, "if", 2) == 0
2172 || STRNCMP(ptr, "endif", 5) == 0
2173 || STRNCMP(ptr, "el", 2) == 0)
2174 hash_dir = 1;
2175 }
2176
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002177 // Are we on a comment?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 else if (linep[pos.col] == '/')
2179 {
2180 if (linep[pos.col + 1] == '*')
2181 {
2182 comment_dir = FORWARD;
2183 backwards = FALSE;
2184 pos.col++;
2185 }
2186 else if (pos.col > 0 && linep[pos.col - 1] == '*')
2187 {
2188 comment_dir = BACKWARD;
2189 backwards = TRUE;
2190 pos.col--;
2191 }
2192 }
2193 else if (linep[pos.col] == '*')
2194 {
2195 if (linep[pos.col + 1] == '/')
2196 {
2197 comment_dir = BACKWARD;
2198 backwards = TRUE;
2199 }
2200 else if (pos.col > 0 && linep[pos.col - 1] == '/')
2201 {
2202 comment_dir = FORWARD;
2203 backwards = FALSE;
2204 }
2205 }
2206 }
2207
2208 /*
2209 * If we are not on a comment or the # at the start of a line, then
2210 * look for brace anywhere on this line after the cursor.
2211 */
2212 if (!hash_dir && !comment_dir)
2213 {
2214 /*
2215 * Find the brace under or after the cursor.
2216 * If beyond the end of the line, use the last character in
2217 * the line.
2218 */
2219 if (linep[pos.col] == NUL && pos.col)
2220 --pos.col;
2221 for (;;)
2222 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002223 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 if (initc == NUL)
2225 break;
2226
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002227 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 if (findc)
2229 break;
Bram Moolenaar1614a142019-10-06 22:00:13 +02002230 pos.col += mb_ptr2len(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 }
2232 if (!findc)
2233 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002234 // no brace in the line, maybe use " #if" then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 if (!cpo_match && *skipwhite(linep) == '#')
2236 hash_dir = 1;
2237 else
2238 return NULL;
2239 }
2240 else if (!cpo_bsl)
2241 {
2242 int col, bslcnt = 0;
2243
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002244 // Set "match_escaped" if there are an odd number of
2245 // backslashes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2247 bslcnt++;
2248 match_escaped = (bslcnt & 1);
2249 }
2250 }
2251 }
2252 if (hash_dir)
2253 {
2254 /*
2255 * Look for matching #if, #else, #elif, or #endif
2256 */
2257 if (oap != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002258 oap->motion_type = MLINE; // Linewise for this case only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 if (initc != '#')
2260 {
2261 ptr = skipwhite(skipwhite(linep) + 1);
2262 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
2263 hash_dir = 1;
2264 else if (STRNCMP(ptr, "endif", 5) == 0)
2265 hash_dir = -1;
2266 else
2267 return NULL;
2268 }
2269 pos.col = 0;
2270 while (!got_int)
2271 {
2272 if (hash_dir > 0)
2273 {
2274 if (pos.lnum == curbuf->b_ml.ml_line_count)
2275 break;
2276 }
2277 else if (pos.lnum == 1)
2278 break;
2279 pos.lnum += hash_dir;
2280 linep = ml_get(pos.lnum);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002281 line_breakcheck(); // check for CTRL-C typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 ptr = skipwhite(linep);
2283 if (*ptr != '#')
2284 continue;
2285 pos.col = (colnr_T) (ptr - linep);
2286 ptr = skipwhite(ptr + 1);
2287 if (hash_dir > 0)
2288 {
2289 if (STRNCMP(ptr, "if", 2) == 0)
2290 count++;
2291 else if (STRNCMP(ptr, "el", 2) == 0)
2292 {
2293 if (count == 0)
2294 return &pos;
2295 }
2296 else if (STRNCMP(ptr, "endif", 5) == 0)
2297 {
2298 if (count == 0)
2299 return &pos;
2300 count--;
2301 }
2302 }
2303 else
2304 {
2305 if (STRNCMP(ptr, "if", 2) == 0)
2306 {
2307 if (count == 0)
2308 return &pos;
2309 count--;
2310 }
2311 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
2312 {
2313 if (count == 0)
2314 return &pos;
2315 }
2316 else if (STRNCMP(ptr, "endif", 5) == 0)
2317 count++;
2318 }
2319 }
2320 return NULL;
2321 }
2322 }
2323
2324#ifdef FEAT_RIGHTLEFT
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002325 // This is just guessing: when 'rightleft' is set, search for a matching
2326 // paren/brace in the other direction.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
2328 backwards = !backwards;
2329#endif
2330
2331 do_quotes = -1;
2332 start_in_quotes = MAYBE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002333 CLEAR_POS(&match_pos);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002334
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002335 // backward search: Check if this line contains a single-line comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002336 if ((backwards && comment_dir)
2337#ifdef FEAT_LISP
2338 || lisp
2339#endif
2340 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002342#ifdef FEAT_LISP
2343 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002344 lispcomm = TRUE; // find match inside this comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002345#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 while (!got_int)
2347 {
2348 /*
2349 * Go to the next position, forward or backward. We could use
2350 * inc() and dec() here, but that is much slower
2351 */
2352 if (backwards)
2353 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002354#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002355 // char to match is inside of comment, don't search outside
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002356 if (lispcomm && pos.col < (colnr_T)comment_col)
2357 break;
2358#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002359 if (pos.col == 0) // at start of line, go to prev. one
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002361 if (pos.lnum == 1) // start of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 break;
2363 --pos.lnum;
2364
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002365 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 break;
2367
2368 linep = ml_get(pos.lnum);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002369 pos.col = (colnr_T)STRLEN(linep); // pos.col on trailing NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 do_quotes = -1;
2371 line_breakcheck();
2372
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002373 // Check if this line contains a single-line comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002374 if (comment_dir
2375#ifdef FEAT_LISP
2376 || lisp
2377#endif
2378 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002380#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002381 // skip comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002382 if (lisp && comment_col != MAXCOL)
2383 pos.col = comment_col;
2384#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 }
2386 else
2387 {
2388 --pos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 if (has_mbyte)
2390 pos.col -= (*mb_head_off)(linep, linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 }
2392 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002393 else // forward search
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002395 if (linep[pos.col] == NUL
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002396 // at end of line, go to next one
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002397#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002398 // don't search for match in comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002399 || (lisp && comment_col != MAXCOL
2400 && pos.col == (colnr_T)comment_col)
2401#endif
2402 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002404 if (pos.lnum == curbuf->b_ml.ml_line_count // end of file
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002405#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002406 // line is exhausted and comment with it,
2407 // don't search for match in code
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002408 || lispcomm
2409#endif
2410 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 break;
2412 ++pos.lnum;
2413
2414 if (maxtravel && traveled++ > maxtravel)
2415 break;
2416
2417 linep = ml_get(pos.lnum);
2418 pos.col = 0;
2419 do_quotes = -1;
2420 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002421#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002422 if (lisp) // find comment pos in new line
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002423 comment_col = check_linecomment(linep);
2424#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 }
2426 else
2427 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002429 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 ++pos.col;
2432 }
2433 }
2434
2435 /*
2436 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2437 */
2438 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2439 (linep[0] == '{' || linep[0] == '}'))
2440 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002441 if (linep[0] == findc && count == 0) // match!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 return &pos;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002443 break; // out of scope
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 }
2445
2446 if (comment_dir)
2447 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002448 // Note: comments do not nest, and we ignore quotes in them
2449 // TODO: ignore comment brackets inside strings
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 if (comment_dir == FORWARD)
2451 {
2452 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2453 {
2454 pos.col++;
2455 return &pos;
2456 }
2457 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002458 else // Searching backwards
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 {
2460 /*
2461 * A comment may contain / * or / /, it may also start or end
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002462 * with / * /. Ignore a / * after / / and after *.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463 */
2464 if (pos.col == 0)
2465 continue;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002466 else if (raw_string)
2467 {
2468 if (linep[pos.col - 1] == 'R'
2469 && linep[pos.col] == '"'
2470 && vim_strchr(linep + pos.col + 1, '(') != NULL)
2471 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002472 // Possible start of raw string. Now that we have the
2473 // delimiter we can check if it ends before where we
2474 // started searching, or before the previously found
2475 // raw string start.
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002476 if (!find_rawstring_end(linep, &pos,
2477 count > 0 ? &match_pos : &curwin->w_cursor))
2478 {
2479 count++;
2480 match_pos = pos;
2481 match_pos.col--;
2482 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002483 linep = ml_get(pos.lnum); // may have been released
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002484 }
2485 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 else if ( linep[pos.col - 1] == '/'
2487 && linep[pos.col] == '*'
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002488 && (pos.col == 1 || linep[pos.col - 2] != '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 && (int)pos.col < comment_col)
2490 {
2491 count++;
2492 match_pos = pos;
2493 match_pos.col--;
2494 }
2495 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2496 {
2497 if (count > 0)
2498 pos = match_pos;
2499 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2500 && (int)pos.col <= comment_col)
2501 pos.col -= 2;
2502 else if (ignore_cend)
2503 continue;
2504 else
2505 return NULL;
2506 return &pos;
2507 }
2508 }
2509 continue;
2510 }
2511
2512 /*
2513 * If smart matching ('cpoptions' does not contain '%'), braces inside
2514 * of quotes are ignored, but only if there is an even number of
2515 * quotes in the line.
2516 */
2517 if (cpo_match)
2518 do_quotes = 0;
2519 else if (do_quotes == -1)
2520 {
2521 /*
2522 * Count the number of quotes in the line, skipping \" and '"'.
2523 * Watch out for "\\".
2524 */
2525 at_start = do_quotes;
2526 for (ptr = linep; *ptr; ++ptr)
2527 {
2528 if (ptr == linep + pos.col + backwards)
2529 at_start = (do_quotes & 1);
2530 if (*ptr == '"'
2531 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2532 ++do_quotes;
2533 if (*ptr == '\\' && ptr[1] != NUL)
2534 ++ptr;
2535 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002536 do_quotes &= 1; // result is 1 with even number of quotes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537
2538 /*
2539 * If we find an uneven count, check current line and previous
2540 * one for a '\' at the end.
2541 */
2542 if (!do_quotes)
2543 {
2544 inquote = FALSE;
2545 if (ptr[-1] == '\\')
2546 {
2547 do_quotes = 1;
2548 if (start_in_quotes == MAYBE)
2549 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002550 // Do we need to use at_start here?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 inquote = TRUE;
2552 start_in_quotes = TRUE;
2553 }
2554 else if (backwards)
2555 inquote = TRUE;
2556 }
2557 if (pos.lnum > 1)
2558 {
2559 ptr = ml_get(pos.lnum - 1);
2560 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2561 {
2562 do_quotes = 1;
2563 if (start_in_quotes == MAYBE)
2564 {
2565 inquote = at_start;
2566 if (inquote)
2567 start_in_quotes = TRUE;
2568 }
2569 else if (!backwards)
2570 inquote = TRUE;
2571 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002572
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002573 // ml_get() only keeps one line, need to get linep again
Bram Moolenaaraec11792007-07-10 11:09:36 +00002574 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 }
2576 }
2577 }
2578 if (start_in_quotes == MAYBE)
2579 start_in_quotes = FALSE;
2580
2581 /*
2582 * If 'smartmatch' is set:
2583 * Things inside quotes are ignored by setting 'inquote'. If we
2584 * find a quote without a preceding '\' invert 'inquote'. At the
2585 * end of a line not ending in '\' we reset 'inquote'.
2586 *
2587 * In lines with an uneven number of quotes (without preceding '\')
2588 * we do not know which part to ignore. Therefore we only set
2589 * inquote if the number of quotes in a line is even, unless this
2590 * line or the previous one ends in a '\'. Complicated, isn't it?
2591 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002592 c = PTR2CHAR(linep + pos.col);
2593 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 {
2595 case NUL:
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002596 // at end of line without trailing backslash, reset inquote
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2598 {
2599 inquote = FALSE;
2600 start_in_quotes = FALSE;
2601 }
2602 break;
2603
2604 case '"':
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002605 // a quote that is preceded with an odd number of backslashes is
2606 // ignored
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 if (do_quotes)
2608 {
2609 int col;
2610
2611 for (col = pos.col - 1; col >= 0; --col)
2612 if (linep[col] != '\\')
2613 break;
2614 if ((((int)pos.col - 1 - col) & 1) == 0)
2615 {
2616 inquote = !inquote;
2617 start_in_quotes = FALSE;
2618 }
2619 }
2620 break;
2621
2622 /*
2623 * If smart matching ('cpoptions' does not contain '%'):
2624 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2625 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2626 * skipped, there is never a brace in them.
2627 * Ignore this when finding matches for `'.
2628 */
2629 case '\'':
2630 if (!cpo_match && initc != '\'' && findc != '\'')
2631 {
2632 if (backwards)
2633 {
2634 if (pos.col > 1)
2635 {
2636 if (linep[pos.col - 2] == '\'')
2637 {
2638 pos.col -= 2;
2639 break;
2640 }
2641 else if (linep[pos.col - 2] == '\\' &&
2642 pos.col > 2 && linep[pos.col - 3] == '\'')
2643 {
2644 pos.col -= 3;
2645 break;
2646 }
2647 }
2648 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002649 else if (linep[pos.col + 1]) // forward search
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650 {
2651 if (linep[pos.col + 1] == '\\' &&
2652 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2653 {
2654 pos.col += 3;
2655 break;
2656 }
2657 else if (linep[pos.col + 2] == '\'')
2658 {
2659 pos.col += 2;
2660 break;
2661 }
2662 }
2663 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002664 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665
2666 default:
2667#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002668 /*
2669 * For Lisp skip over backslashed (), {} and [].
2670 * (actually, we skip #\( et al)
2671 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 if (curbuf->b_p_lisp
2673 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002674 && pos.col > 1
2675 && check_prevcol(linep, pos.col, '\\', NULL)
2676 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 break;
2678#endif
2679
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002680 // Check for match outside of quotes, and inside of
2681 // quotes when the start is also inside of quotes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 if ((!inquote || start_in_quotes == TRUE)
2683 && (c == initc || c == findc))
2684 {
2685 int col, bslcnt = 0;
2686
2687 if (!cpo_bsl)
2688 {
2689 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2690 bslcnt++;
2691 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002692 // Only accept a match when 'M' is in 'cpo' or when escaping
2693 // is what we expect.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2695 {
2696 if (c == initc)
2697 count++;
2698 else
2699 {
2700 if (count == 0)
2701 return &pos;
2702 count--;
2703 }
2704 }
2705 }
2706 }
2707 }
2708
2709 if (comment_dir == BACKWARD && count > 0)
2710 {
2711 pos = match_pos;
2712 return &pos;
2713 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002714 return (pos_T *)NULL; // never found it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715}
2716
2717/*
2718 * Check if line[] contains a / / comment.
2719 * Return MAXCOL if not, otherwise return the column.
2720 * TODO: skip strings.
2721 */
2722 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002723check_linecomment(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724{
2725 char_u *p;
2726
2727 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002728#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002729 // skip Lispish one-line comments
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002730 if (curbuf->b_p_lisp)
2731 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002732 if (vim_strchr(p, ';') != NULL) // there may be comments
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002733 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002734 int in_str = FALSE; // inside of string
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002735
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002736 p = line; // scan from start
Bram Moolenaar520470a2005-06-16 21:59:56 +00002737 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002738 {
2739 if (*p == '"')
2740 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002741 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002742 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002743 if (*(p - 1) != '\\') // skip escaped quote
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002744 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002745 }
2746 else if (p == line || ((p - line) >= 2
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002747 // skip #\" form
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002748 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002749 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002750 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002751 else if (!in_str && ((p - line) < 2
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002752 || (*(p - 1) != '\\' && *(p - 2) != '#')))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002753 break; // found!
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002754 ++p;
2755 }
2756 }
2757 else
2758 p = NULL;
2759 }
2760 else
2761#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 while ((p = vim_strchr(p, '/')) != NULL)
2763 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002764 // accept a double /, unless it's preceded with * and followed by *,
2765 // because * / / * is an end and start of a C comment
Bram Moolenaar78d4aba2008-01-01 14:43:35 +00002766 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767 break;
2768 ++p;
2769 }
2770
2771 if (p == NULL)
2772 return MAXCOL;
2773 return (int)(p - line);
2774}
2775
2776/*
2777 * Move cursor briefly to character matching the one under the cursor.
2778 * Used for Insert mode and "r" command.
2779 * Show the match only if it is visible on the screen.
2780 * If there isn't a match, then beep.
2781 */
2782 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002783showmatch(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002784 int c) // char to show match for
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785{
2786 pos_T *lpos, save_cursor;
2787 pos_T mpos;
2788 colnr_T vcol;
2789 long save_so;
2790 long save_siso;
2791#ifdef CURSOR_SHAPE
2792 int save_state;
2793#endif
2794 colnr_T save_dollar_vcol;
2795 char_u *p;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002796 long *so = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so;
2797 long *siso = curwin->w_p_siso >= 0 ? &curwin->w_p_siso : &p_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798
2799 /*
2800 * Only show match for chars in the 'matchpairs' option.
2801 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002802 // 'matchpairs' is "x:y,x:y"
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002803 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 {
2805#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002806 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002807 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002808#endif
Bram Moolenaar1614a142019-10-06 22:00:13 +02002809 p += mb_ptr2len(p) + 1;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002810 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811#ifdef FEAT_RIGHTLEFT
2812 && !(curwin->w_p_rl ^ p_ri)
2813#endif
2814 )
2815 break;
Bram Moolenaar1614a142019-10-06 22:00:13 +02002816 p += mb_ptr2len(p);
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002817 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818 return;
2819 }
Bram Moolenaar5b8cabf2021-04-02 18:55:57 +02002820 if (*p == NUL)
2821 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002823 if ((lpos = findmatch(NULL, NUL)) == NULL) // no match, so beep
Bram Moolenaar165bc692015-07-21 17:53:25 +02002824 vim_beep(BO_MATCH);
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002825 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826 {
2827 if (!curwin->w_p_wrap)
2828 getvcol(curwin, lpos, NULL, &vcol, NULL);
2829 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
Bram Moolenaar02631462017-09-22 15:20:32 +02002830 && vcol < curwin->w_leftcol + curwin->w_width))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002832 mpos = *lpos; // save the pos, update_screen() may change it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 save_cursor = curwin->w_cursor;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002834 save_so = *so;
2835 save_siso = *siso;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002836 // Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2837 // stop displaying the "$".
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002838 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2839 dollar_vcol = -1;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002840 ++curwin->w_virtcol; // do display ')' just before "$"
2841 update_screen(VALID); // show the new char first
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842
2843 save_dollar_vcol = dollar_vcol;
2844#ifdef CURSOR_SHAPE
2845 save_state = State;
2846 State = SHOWMATCH;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002847 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002849 curwin->w_cursor = mpos; // move to matching char
2850 *so = 0; // don't use 'scrolloff' here
2851 *siso = 0; // don't use 'sidescrolloff' here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 showruler(FALSE);
2853 setcursor();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002854 cursor_on(); // make sure that the cursor is shown
Bram Moolenaara338adc2018-01-31 20:51:47 +01002855 out_flush_cursor(TRUE, FALSE);
2856
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002857 // Restore dollar_vcol(), because setcursor() may call curs_rows()
2858 // which resets it if the matching position is in a previous line
2859 // and has a higher column number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 dollar_vcol = save_dollar_vcol;
2861
2862 /*
2863 * brief pause, unless 'm' is present in 'cpo' and a character is
2864 * available.
2865 */
2866 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
Bram Moolenaareda1da02019-11-17 17:06:33 +01002867 ui_delay(p_mat * 100L + 8, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 else if (!char_avail())
Bram Moolenaareda1da02019-11-17 17:06:33 +01002869 ui_delay(p_mat * 100L + 9, FALSE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002870 curwin->w_cursor = save_cursor; // restore cursor position
Bram Moolenaar375e3392019-01-31 18:26:10 +01002871 *so = save_so;
2872 *siso = save_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873#ifdef CURSOR_SHAPE
2874 State = save_state;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002875 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876#endif
2877 }
2878 }
2879}
2880
2881/*
Bram Moolenaar453c1922019-10-26 14:42:09 +02002882 * Check if the pattern is zero-width.
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002883 * If move is TRUE, check from the beginning of the buffer, else from position
2884 * "cur".
2885 * "direction" is FORWARD or BACKWARD.
2886 * Returns TRUE, FALSE or -1 for failure.
2887 */
2888 static int
2889is_zero_width(char_u *pattern, int move, pos_T *cur, int direction)
2890{
2891 regmmatch_T regmatch;
2892 int nmatched = 0;
2893 int result = -1;
2894 pos_T pos;
Bram Moolenaar53989552019-12-23 22:59:18 +01002895 int called_emsg_before = called_emsg;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002896 int flag = 0;
2897
2898 if (pattern == NULL)
2899 pattern = spats[last_idx].pat;
2900
2901 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
2902 SEARCH_KEEP, &regmatch) == FAIL)
2903 return -1;
2904
2905 // init startcol correctly
2906 regmatch.startpos[0].col = -1;
2907 // move to match
2908 if (move)
2909 {
2910 CLEAR_POS(&pos);
2911 }
2912 else
2913 {
2914 pos = *cur;
2915 // accept a match at the cursor position
2916 flag = SEARCH_START;
2917 }
2918
2919 if (searchit(curwin, curbuf, &pos, NULL, direction, pattern, 1,
2920 SEARCH_KEEP + flag, RE_SEARCH, NULL) != FAIL)
2921 {
2922 // Zero-width pattern should match somewhere, then we can check if
2923 // start and end are in the same position.
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002924 do
2925 {
2926 regmatch.startpos[0].col++;
2927 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
2928 pos.lnum, regmatch.startpos[0].col, NULL, NULL);
2929 if (nmatched != 0)
2930 break;
Bram Moolenaar795aaa12020-10-02 20:36:01 +02002931 } while (regmatch.regprog != NULL
2932 && direction == FORWARD ? regmatch.startpos[0].col < pos.col
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002933 : regmatch.startpos[0].col > pos.col);
2934
Bram Moolenaar53989552019-12-23 22:59:18 +01002935 if (called_emsg == called_emsg_before)
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002936 {
2937 result = (nmatched != 0
2938 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
2939 && regmatch.startpos[0].col == regmatch.endpos[0].col);
2940 }
2941 }
2942
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002943 vim_regfree(regmatch.regprog);
2944 return result;
2945}
2946
Bram Moolenaardde0efe2012-08-23 15:53:05 +02002947
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002948/*
2949 * Find next search match under cursor, cursor at end.
2950 * Used while an operator is pending, and in Visual mode.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002951 */
2952 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002953current_search(
2954 long count,
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002955 int forward) // TRUE for forward, FALSE for backward
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002956{
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002957 pos_T start_pos; // start position of the pattern match
2958 pos_T end_pos; // end position of the pattern match
2959 pos_T orig_pos; // position of the cursor at beginning
2960 pos_T pos; // position after the pattern
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002961 int i;
2962 int dir;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002963 int result; // result of various function calls
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002964 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002965 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02002966 pos_T save_VIsual = VIsual;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002967 int zero_width;
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02002968 int skip_first_backward;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002969
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002970 // Correct cursor when 'selection' is exclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002971 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002972 dec_cursor();
2973
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02002974 // When searching forward and the cursor is at the start of the Visual
2975 // area, skip the first search backward, otherwise it doesn't move.
2976 skip_first_backward = forward && VIsual_active
2977 && LT_POS(curwin->w_cursor, VIsual);
2978
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002979 orig_pos = pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002980 if (VIsual_active)
2981 {
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002982 if (forward)
2983 incl(&pos);
2984 else
2985 decl(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002986 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002987
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002988 // Is the pattern is zero-width?, this time, don't care about the direction
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002989 zero_width = is_zero_width(spats[last_idx].pat, TRUE, &curwin->w_cursor,
Bram Moolenaar22ab5472017-09-26 12:28:45 +02002990 FORWARD);
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02002991 if (zero_width == -1)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002992 return FAIL; // pattern not found
Bram Moolenaarba6ba362012-08-08 15:27:57 +02002993
Bram Moolenaarba6ba362012-08-08 15:27:57 +02002994 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002995 * The trick is to first search backwards and then search forward again,
2996 * so that a match at the current cursor position will be correctly
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02002997 * captured. When "forward" is false do it the other way around.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02002998 */
2999 for (i = 0; i < 2; i++)
3000 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003001 if (forward)
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003002 {
3003 if (i == 0 && skip_first_backward)
3004 continue;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003005 dir = i;
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003006 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003007 else
3008 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02003009
3010 flags = 0;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02003011 if (!dir && !zero_width)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02003012 flags = SEARCH_END;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003013 end_pos = pos;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02003014
Bram Moolenaar82cf7f62019-11-02 23:22:47 +01003015 // wrapping should not occur in the first round
3016 if (i == 0)
3017 p_ws = FALSE;
3018
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003019 result = searchit(curwin, curbuf, &pos, &end_pos,
3020 (dir ? FORWARD : BACKWARD),
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003021 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02003022 SEARCH_KEEP | flags, RE_SEARCH, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003023
Bram Moolenaar82cf7f62019-11-02 23:22:47 +01003024 p_ws = old_p_ws;
3025
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003026 // First search may fail, but then start searching from the
3027 // beginning of the file (cursor might be on the search match)
3028 // except when Visual mode is active, so that extending the visual
3029 // selection works.
3030 if (i == 1 && !result) // not found, abort
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003031 {
3032 curwin->w_cursor = orig_pos;
3033 if (VIsual_active)
3034 VIsual = save_VIsual;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003035 return FAIL;
3036 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003037 else if (i == 0 && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003038 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003039 if (forward)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003040 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003041 // try again from start of buffer
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003042 CLEAR_POS(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003043 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003044 else
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003045 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003046 // try again from end of buffer
3047 // searching backwards, so set pos to last line and col
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003048 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02003049 pos.col = (colnr_T)STRLEN(
3050 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003051 }
3052 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003053 }
3054
3055 start_pos = pos;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003056
3057 if (!VIsual_active)
3058 VIsual = start_pos;
3059
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003060 // put the cursor after the match
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003061 curwin->w_cursor = end_pos;
Bram Moolenaar453c1922019-10-26 14:42:09 +02003062 if (LT_POS(VIsual, end_pos) && forward)
Bram Moolenaarc07b7f72020-10-11 20:44:15 +02003063 {
3064 if (skip_first_backward)
3065 // put the cursor on the start of the match
3066 curwin->w_cursor = pos;
3067 else
3068 // put the cursor on last character of match
3069 dec_cursor();
3070 }
Bram Moolenaar28f224b2020-10-10 16:45:25 +02003071 else if (VIsual_active && LT_POS(curwin->w_cursor, VIsual) && forward)
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02003072 curwin->w_cursor = pos; // put the cursor on the start of the match
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003073 VIsual_active = TRUE;
3074 VIsual_mode = 'v';
3075
Bram Moolenaarb7633612019-02-10 21:48:25 +01003076 if (*p_sel == 'e')
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003077 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003078 // Correction for exclusive selection depends on the direction.
Bram Moolenaarb7633612019-02-10 21:48:25 +01003079 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor))
3080 inc_cursor();
3081 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual))
3082 inc(&VIsual);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003083 }
3084
3085#ifdef FEAT_FOLDING
3086 if (fdo_flags & FDO_SEARCH && KeyTyped)
3087 foldOpenCursor();
3088#endif
3089
3090 may_start_select('c');
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003091 setmouse();
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003092#ifdef FEAT_CLIPBOARD
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003093 // Make sure the clipboard gets updated. Needed because start and
3094 // end are still the same, and the selection needs to be owned
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02003095 clip_star.vmode = NUL;
3096#endif
3097 redraw_curbuf_later(INVERTED);
3098 showmode();
3099
3100 return OK;
3101}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02003102
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
3104 || defined(PROTO)
3105/*
3106 * return TRUE if line 'lnum' is empty or has white chars only.
3107 */
3108 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003109linewhite(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110{
3111 char_u *p;
3112
3113 p = skipwhite(ml_get(lnum));
3114 return (*p == NUL);
3115}
3116#endif
3117
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003118/*
3119 * Add the search count "[3/19]" to "msgbuf".
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003120 * See update_search_stat() for other arguments.
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003121 */
3122 static void
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003123cmdline_search_stat(
3124 int dirc,
3125 pos_T *pos,
3126 pos_T *cursor_pos,
3127 int show_top_bot_msg,
3128 char_u *msgbuf,
3129 int recompute,
3130 int maxcount,
3131 long timeout)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003132{
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003133 searchstat_T stat;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003134
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003135 update_search_stat(dirc, pos, cursor_pos, &stat, recompute, maxcount,
3136 timeout);
3137 if (stat.cur > 0)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003138 {
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003139 char t[SEARCH_STAT_BUF_LEN];
Bram Moolenaare2ad8262019-05-24 13:22:22 +02003140 size_t len;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003141
3142#ifdef FEAT_RIGHTLEFT
3143 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
3144 {
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003145 if (stat.incomplete == 1)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02003146 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[?/??]");
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003147 else if (stat.cnt > maxcount && stat.cur > maxcount)
3148 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>%d/>%d]",
3149 maxcount, maxcount);
3150 else if (stat.cnt > maxcount)
3151 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>%d/%d]",
3152 maxcount, stat.cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003153 else
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003154 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/%d]",
3155 stat.cnt, stat.cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003156 }
3157 else
3158#endif
3159 {
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003160 if (stat.incomplete == 1)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02003161 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[?/??]");
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003162 else if (stat.cnt > maxcount && stat.cur > maxcount)
3163 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>%d/>%d]",
3164 maxcount, maxcount);
3165 else if (stat.cnt > maxcount)
3166 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/>%d]",
3167 stat.cur, maxcount);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003168 else
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003169 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/%d]",
3170 stat.cur, stat.cnt);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003171 }
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02003172
3173 len = STRLEN(t);
Bram Moolenaardc6855a2019-05-18 19:26:29 +02003174 if (show_top_bot_msg && len + 2 < SEARCH_STAT_BUF_LEN)
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02003175 {
Bram Moolenaar16b58ae2019-09-06 20:40:21 +02003176 mch_memmove(t + 2, t, len);
3177 t[0] = 'W';
3178 t[1] = ' ';
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02003179 len += 2;
3180 }
3181
3182 mch_memmove(msgbuf + STRLEN(msgbuf) - len, t, len);
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003183 if (dirc == '?' && stat.cur == maxcount + 1)
3184 stat.cur = -1;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003185
Bram Moolenaar984f0312019-05-24 13:11:47 +02003186 // keep the message even after redraw, but don't put in history
3187 msg_hist_off = TRUE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003188 give_warning(msgbuf, FALSE);
Bram Moolenaar984f0312019-05-24 13:11:47 +02003189 msg_hist_off = FALSE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003190 }
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003191}
3192
3193/*
3194 * Add the search count information to "stat".
3195 * "stat" must not be NULL.
3196 * When "recompute" is TRUE always recompute the numbers.
3197 * dirc == 0: don't find the next/previous match (only set the result to "stat")
3198 * dirc == '/': find the next match
3199 * dirc == '?': find the previous match
3200 */
3201 static void
3202update_search_stat(
3203 int dirc,
3204 pos_T *pos,
3205 pos_T *cursor_pos,
3206 searchstat_T *stat,
3207 int recompute,
3208 int maxcount,
Bram Moolenaarf9ca08e2020-06-01 18:56:03 +02003209 long timeout UNUSED)
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003210{
3211 int save_ws = p_ws;
3212 int wraparound = FALSE;
3213 pos_T p = (*pos);
Bram Moolenaar14681622020-06-03 22:57:39 +02003214 static pos_T lastpos = {0, 0, 0};
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003215 static int cur = 0;
3216 static int cnt = 0;
3217 static int exact_match = FALSE;
3218 static int incomplete = 0;
3219 static int last_maxcount = SEARCH_STAT_DEF_MAX_COUNT;
3220 static int chgtick = 0;
3221 static char_u *lastpat = NULL;
3222 static buf_T *lbuf = NULL;
3223#ifdef FEAT_RELTIME
3224 proftime_T start;
3225#endif
3226
3227 vim_memset(stat, 0, sizeof(searchstat_T));
3228
3229 if (dirc == 0 && !recompute && !EMPTY_POS(lastpos))
3230 {
3231 stat->cur = cur;
3232 stat->cnt = cnt;
3233 stat->exact_match = exact_match;
3234 stat->incomplete = incomplete;
3235 stat->last_maxcount = last_maxcount;
3236 return;
3237 }
3238 last_maxcount = maxcount;
3239
3240 wraparound = ((dirc == '?' && LT_POS(lastpos, p))
3241 || (dirc == '/' && LT_POS(p, lastpos)));
3242
3243 // If anything relevant changed the count has to be recomputed.
3244 // MB_STRNICMP ignores case, but we should not ignore case.
3245 // Unfortunately, there is no MB_STRNICMP function.
3246 // XXX: above comment should be "no MB_STRCMP function" ?
3247 if (!(chgtick == CHANGEDTICK(curbuf)
3248 && MB_STRNICMP(lastpat, spats[last_idx].pat, STRLEN(lastpat)) == 0
3249 && STRLEN(lastpat) == STRLEN(spats[last_idx].pat)
3250 && EQUAL_POS(lastpos, *cursor_pos)
3251 && lbuf == curbuf) || wraparound || cur < 0
3252 || (maxcount > 0 && cur > maxcount) || recompute)
3253 {
3254 cur = 0;
3255 cnt = 0;
3256 exact_match = FALSE;
3257 incomplete = 0;
3258 CLEAR_POS(&lastpos);
3259 lbuf = curbuf;
3260 }
3261
3262 if (EQUAL_POS(lastpos, *cursor_pos) && !wraparound
3263 && (dirc == 0 || dirc == '/' ? cur < cnt : cur > 0))
3264 cur += dirc == 0 ? 0 : dirc == '/' ? 1 : -1;
3265 else
3266 {
3267 int done_search = FALSE;
3268 pos_T endpos = {0, 0, 0};
3269
3270 p_ws = FALSE;
3271#ifdef FEAT_RELTIME
3272 if (timeout > 0)
3273 profile_setlimit(timeout, &start);
3274#endif
3275 while (!got_int && searchit(curwin, curbuf, &lastpos, &endpos,
3276 FORWARD, NULL, 1, SEARCH_KEEP, RE_LAST, NULL) != FAIL)
3277 {
3278 done_search = TRUE;
3279#ifdef FEAT_RELTIME
3280 // Stop after passing the time limit.
3281 if (timeout > 0 && profile_passed_limit(&start))
3282 {
3283 incomplete = 1;
3284 break;
3285 }
3286#endif
3287 cnt++;
3288 if (LTOREQ_POS(lastpos, p))
3289 {
3290 cur = cnt;
Bram Moolenaar57f75a52020-06-02 22:06:21 +02003291 if (LT_POS(p, endpos))
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02003292 exact_match = TRUE;
3293 }
3294 fast_breakcheck();
3295 if (maxcount > 0 && cnt > maxcount)
3296 {
3297 incomplete = 2; // max count exceeded
3298 break;
3299 }
3300 }
3301 if (got_int)
3302 cur = -1; // abort
3303 if (done_search)
3304 {
3305 vim_free(lastpat);
3306 lastpat = vim_strsave(spats[last_idx].pat);
3307 chgtick = CHANGEDTICK(curbuf);
3308 lbuf = curbuf;
3309 lastpos = p;
3310 }
3311 }
3312 stat->cur = cur;
3313 stat->cnt = cnt;
3314 stat->exact_match = exact_match;
3315 stat->incomplete = incomplete;
3316 stat->last_maxcount = last_maxcount;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02003317 p_ws = save_ws;
3318}
3319
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320#if defined(FEAT_FIND_ID) || defined(PROTO)
3321/*
3322 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01003323 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003326find_pattern_in_path(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003327 char_u *ptr, // pointer to search pattern
3328 int dir UNUSED, // direction of expansion
3329 int len, // length of search pattern
3330 int whole, // match whole words only
3331 int skip_comments, // don't match inside comments
3332 int type, // Type of search; are we looking for a type?
3333 // a macro?
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003334 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003335 int action, // What to do when we find it
3336 linenr_T start_lnum, // first line to start searching
3337 linenr_T end_lnum) // last line for searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003339 SearchedFile *files; // Stack of included files
3340 SearchedFile *bigger; // When we need more space
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341 int max_path_depth = 50;
3342 long match_count = 1;
3343
3344 char_u *pat;
3345 char_u *new_fname;
3346 char_u *curr_fname = curbuf->b_fname;
3347 char_u *prev_fname = NULL;
3348 linenr_T lnum;
3349 int depth;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003350 int depth_displayed; // For type==CHECK_PATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 int old_files;
3352 int already_searched;
3353 char_u *file_line;
3354 char_u *line;
3355 char_u *p;
3356 char_u save_char;
3357 int define_matched;
3358 regmatch_T regmatch;
3359 regmatch_T incl_regmatch;
3360 regmatch_T def_regmatch;
3361 int matched = FALSE;
3362 int did_show = FALSE;
3363 int found = FALSE;
3364 int i;
3365 char_u *already = NULL;
3366 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003367 char_u *inc_opt = NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02003368#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369 win_T *curwin_save = NULL;
3370#endif
3371
3372 regmatch.regprog = NULL;
3373 incl_regmatch.regprog = NULL;
3374 def_regmatch.regprog = NULL;
3375
3376 file_line = alloc(LSIZE);
3377 if (file_line == NULL)
3378 return;
3379
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 if (type != CHECK_PATH && type != FIND_DEFINE
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003381 // when CONT_SOL is set compare "ptr" with the beginning of the line
3382 // is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003383 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 {
3385 pat = alloc(len + 5);
3386 if (pat == NULL)
3387 goto fpip_end;
3388 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003389 // ignore case according to p_ic, p_scs and pat
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390 regmatch.rm_ic = ignorecase(pat);
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003391 regmatch.regprog = vim_regcomp(pat, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 vim_free(pat);
3393 if (regmatch.regprog == NULL)
3394 goto fpip_end;
3395 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003396 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
3397 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 {
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003399 incl_regmatch.regprog = vim_regcomp(inc_opt,
3400 magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 if (incl_regmatch.regprog == NULL)
3402 goto fpip_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003403 incl_regmatch.rm_ic = FALSE; // don't ignore case in incl. pat.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404 }
3405 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
3406 {
3407 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003408 ? p_def : curbuf->b_p_def,
3409 magic_isset() ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 if (def_regmatch.regprog == NULL)
3411 goto fpip_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003412 def_regmatch.rm_ic = FALSE; // don't ignore case in define pat.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003414 files = lalloc_clear(max_path_depth * sizeof(SearchedFile), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 if (files == NULL)
3416 goto fpip_end;
3417 old_files = max_path_depth;
3418 depth = depth_displayed = -1;
3419
3420 lnum = start_lnum;
3421 if (end_lnum > curbuf->b_ml.ml_line_count)
3422 end_lnum = curbuf->b_ml.ml_line_count;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003423 if (lnum > end_lnum) // do at least one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 lnum = end_lnum;
3425 line = ml_get(lnum);
3426
3427 for (;;)
3428 {
3429 if (incl_regmatch.regprog != NULL
3430 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
3431 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003432 char_u *p_fname = (curr_fname == curbuf->b_fname)
3433 ? curbuf->b_ffname : curr_fname;
3434
3435 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003436 // Use text from '\zs' to '\ze' (or end) of 'include'.
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003437 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02003438 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003439 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
3440 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003441 // Use text after match with 'include'.
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003442 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003443 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 already_searched = FALSE;
3445 if (new_fname != NULL)
3446 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003447 // Check whether we have already searched in this file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 for (i = 0;; i++)
3449 {
3450 if (i == depth + 1)
3451 i = old_files;
3452 if (i == max_path_depth)
3453 break;
Bram Moolenaar99499b12019-05-23 21:35:48 +02003454 if (fullpathcmp(new_fname, files[i].name, TRUE, TRUE)
3455 & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 {
3457 if (type != CHECK_PATH &&
3458 action == ACTION_SHOW_ALL && files[i].matched)
3459 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003460 msg_putchar('\n'); // cursor below last one
3461 if (!got_int) // don't display if 'q'
3462 // typed at "--more--"
3463 // message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 {
3465 msg_home_replace_hl(new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003466 msg_puts(_(" (includes previously listed match)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467 prev_fname = NULL;
3468 }
3469 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01003470 VIM_CLEAR(new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 already_searched = TRUE;
3472 break;
3473 }
3474 }
3475 }
3476
3477 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
3478 || (new_fname == NULL && !already_searched)))
3479 {
3480 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003481 msg_putchar('\n'); // cursor below last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 else
3483 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003484 gotocmdline(TRUE); // cursor at status line
Bram Moolenaar32526b32019-01-19 17:43:09 +01003485 msg_puts_title(_("--- Included files "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003487 msg_puts_title(_("not found "));
3488 msg_puts_title(_("in path ---\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 }
3490 did_show = TRUE;
3491 while (depth_displayed < depth && !got_int)
3492 {
3493 ++depth_displayed;
3494 for (i = 0; i < depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003495 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496 msg_home_replace(files[depth_displayed].name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003497 msg_puts(" -->\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003499 if (!got_int) // don't display if 'q' typed
3500 // for "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 {
3502 for (i = 0; i <= depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003503 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 if (new_fname != NULL)
3505 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003506 // using "new_fname" is more reliable, e.g., when
3507 // 'includeexpr' is set.
Bram Moolenaar8820b482017-03-16 17:23:31 +01003508 msg_outtrans_attr(new_fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 }
3510 else
3511 {
3512 /*
3513 * Isolate the file name.
3514 * Include the surrounding "" or <> if present.
3515 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003516 if (inc_opt != NULL
3517 && strstr((char *)inc_opt, "\\zs") != NULL)
3518 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003519 // pattern contains \zs, use the match
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003520 p = incl_regmatch.startp[0];
3521 i = (int)(incl_regmatch.endp[0]
3522 - incl_regmatch.startp[0]);
3523 }
3524 else
3525 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003526 // find the file name after the end of the match
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003527 for (p = incl_regmatch.endp[0];
3528 *p && !vim_isfilec(*p); p++)
3529 ;
3530 for (i = 0; vim_isfilec(p[i]); i++)
3531 ;
3532 }
3533
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 if (i == 0)
3535 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003536 // Nothing found, use the rest of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003538 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003540 // Avoid checking before the start of the line, can
3541 // happen if \zs appears in the regexp.
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02003542 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003543 {
3544 if (p[-1] == '"' || p[-1] == '<')
3545 {
3546 --p;
3547 ++i;
3548 }
3549 if (p[i] == '"' || p[i] == '>')
3550 ++i;
3551 }
3552 save_char = p[i];
3553 p[i] = NUL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01003554 msg_outtrans_attr(p, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 p[i] = save_char;
3556 }
3557
3558 if (new_fname == NULL && action == ACTION_SHOW_ALL)
3559 {
3560 if (already_searched)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003561 msg_puts(_(" (Already listed)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01003563 msg_puts(_(" NOT FOUND"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 }
3565 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003566 out_flush(); // output each line directly
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 }
3568
3569 if (new_fname != NULL)
3570 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003571 // Push the new file onto the file stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 if (depth + 1 == old_files)
3573 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003574 bigger = ALLOC_MULT(SearchedFile, max_path_depth * 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575 if (bigger != NULL)
3576 {
3577 for (i = 0; i <= depth; i++)
3578 bigger[i] = files[i];
3579 for (i = depth + 1; i < old_files + max_path_depth; i++)
3580 {
3581 bigger[i].fp = NULL;
3582 bigger[i].name = NULL;
3583 bigger[i].lnum = 0;
3584 bigger[i].matched = FALSE;
3585 }
3586 for (i = old_files; i < max_path_depth; i++)
3587 bigger[i + max_path_depth] = files[i];
3588 old_files += max_path_depth;
3589 max_path_depth *= 2;
3590 vim_free(files);
3591 files = bigger;
3592 }
3593 }
3594 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
3595 == NULL)
3596 vim_free(new_fname);
3597 else
3598 {
3599 if (++depth == old_files)
3600 {
3601 /*
3602 * lalloc() for 'bigger' must have failed above. We
3603 * will forget one of our already visited files now.
3604 */
3605 vim_free(files[old_files].name);
3606 ++old_files;
3607 }
3608 files[depth].name = curr_fname = new_fname;
3609 files[depth].lnum = 0;
3610 files[depth].matched = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611 if (action == ACTION_EXPAND)
3612 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003613 msg_hist_off = TRUE; // reset in msg_trunc_attr()
Bram Moolenaar555b2802005-05-19 21:08:39 +00003614 vim_snprintf((char*)IObuff, IOSIZE,
3615 _("Scanning included file: %s"),
3616 (char *)new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01003617 msg_trunc_attr((char *)IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003619 else if (p_verbose >= 5)
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00003620 {
3621 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003622 smsg(_("Searching included file %s"),
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00003623 (char *)new_fname);
3624 verbose_leave();
3625 }
3626
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 }
3628 }
3629 }
3630 else
3631 {
3632 /*
3633 * Check if the line is a define (type == FIND_DEFINE)
3634 */
3635 p = line;
3636search_line:
3637 define_matched = FALSE;
3638 if (def_regmatch.regprog != NULL
3639 && vim_regexec(&def_regmatch, line, (colnr_T)0))
3640 {
3641 /*
3642 * Pattern must be first identifier after 'define', so skip
3643 * to that position before checking for match of pattern. Also
3644 * don't let it match beyond the end of this identifier.
3645 */
3646 p = def_regmatch.endp[0];
3647 while (*p && !vim_iswordc(*p))
3648 p++;
3649 define_matched = TRUE;
3650 }
3651
3652 /*
3653 * Look for a match. Don't do this if we are looking for a
3654 * define and this line didn't match define_prog above.
3655 */
3656 if (def_regmatch.regprog == NULL || define_matched)
3657 {
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003658 if (define_matched || (compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003660 // compare the first "len" chars from "ptr"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 startp = skipwhite(p);
3662 if (p_ic)
3663 matched = !MB_STRNICMP(startp, ptr, len);
3664 else
3665 matched = !STRNCMP(startp, ptr, len);
3666 if (matched && define_matched && whole
3667 && vim_iswordc(startp[len]))
3668 matched = FALSE;
3669 }
3670 else if (regmatch.regprog != NULL
3671 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
3672 {
3673 matched = TRUE;
3674 startp = regmatch.startp[0];
3675 /*
3676 * Check if the line is not a comment line (unless we are
3677 * looking for a define). A line starting with "# define"
3678 * is not considered to be a comment line.
3679 */
3680 if (!define_matched && skip_comments)
3681 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 if ((*line != '#' ||
3683 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02003684 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 matched = FALSE;
3686
3687 /*
3688 * Also check for a "/ *" or "/ /" before the match.
3689 * Skips lines like "int backwards; / * normal index
3690 * * /" when looking for "normal".
3691 * Note: Doesn't skip "/ *" in comments.
3692 */
3693 p = skipwhite(line);
3694 if (matched
3695 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 for (p = line; *p && p < startp; ++p)
3697 {
3698 if (matched
3699 && p[0] == '/'
3700 && (p[1] == '*' || p[1] == '/'))
3701 {
3702 matched = FALSE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003703 // After "//" all text is comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 if (p[1] == '/')
3705 break;
3706 ++p;
3707 }
3708 else if (!matched && p[0] == '*' && p[1] == '/')
3709 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003710 // Can find match after "* /".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 matched = TRUE;
3712 ++p;
3713 }
3714 }
3715 }
3716 }
3717 }
3718 }
3719 if (matched)
3720 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 if (action == ACTION_EXPAND)
3722 {
Bram Moolenaard9eefe32019-04-06 14:22:21 +02003723 int cont_s_ipos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724 int add_r;
3725 char_u *aux;
3726
3727 if (depth == -1 && lnum == curwin->w_cursor.lnum)
3728 break;
3729 found = TRUE;
3730 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003731 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003733 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 if (vim_iswordp(p))
3735 goto exit_matched;
3736 p = find_word_start(p);
3737 }
3738 p = find_word_end(p);
3739 i = (int)(p - aux);
3740
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003741 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003743 // IOSIZE > compl_length, so the STRNCPY works
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00003745
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003746 // Get the next line: when "depth" < 0 from the current
3747 // buffer, otherwise from the included file. Jump to
3748 // exit_matched when past the last line.
Bram Moolenaar89d40322006-08-29 15:30:07 +00003749 if (depth < 0)
3750 {
3751 if (lnum >= end_lnum)
3752 goto exit_matched;
3753 line = ml_get(++lnum);
3754 }
3755 else if (vim_fgets(line = file_line,
3756 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 goto exit_matched;
3758
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003759 // we read a line, set "already" to check this "line" later
3760 // if depth >= 0 we'll increase files[depth].lnum far
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01003761 // below -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 already = aux = p = skipwhite(line);
3763 p = find_word_start(p);
3764 p = find_word_end(p);
3765 if (p > aux)
3766 {
3767 if (*aux != ')' && IObuff[i-1] != TAB)
3768 {
3769 if (IObuff[i-1] != ' ')
3770 IObuff[i++] = ' ';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003771 // IObuf =~ "\(\k\|\i\).* ", thus i >= 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 if (p_js
3773 && (IObuff[i-2] == '.'
3774 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
3775 && (IObuff[i-2] == '?'
3776 || IObuff[i-2] == '!'))))
3777 IObuff[i++] = ' ';
3778 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003779 // copy as much as possible of the new word
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 if (p - aux >= IOSIZE - i)
3781 p = aux + IOSIZE - i - 1;
3782 STRNCPY(IObuff + i, aux, p - aux);
3783 i += (int)(p - aux);
Bram Moolenaard9eefe32019-04-06 14:22:21 +02003784 cont_s_ipos = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 }
3786 IObuff[i] = NUL;
3787 aux = IObuff;
3788
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003789 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 goto exit_matched;
3791 }
3792
Bram Moolenaare8c3a142006-08-29 14:30:35 +00003793 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 curr_fname == curbuf->b_fname ? NULL : curr_fname,
Bram Moolenaard9eefe32019-04-06 14:22:21 +02003795 dir, cont_s_ipos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796 if (add_r == OK)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003797 // if dir was BACKWARD then honor it just once
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00003799 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 break;
3801 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003802 else if (action == ACTION_SHOW_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803 {
3804 found = TRUE;
3805 if (!did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003806 gotocmdline(TRUE); // cursor at status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003807 if (curr_fname != prev_fname)
3808 {
3809 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003810 msg_putchar('\n'); // cursor below last one
3811 if (!got_int) // don't display if 'q' typed
3812 // at "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 msg_home_replace_hl(curr_fname);
3814 prev_fname = curr_fname;
3815 }
3816 did_show = TRUE;
3817 if (!got_int)
3818 show_pat_in_path(line, type, TRUE, action,
3819 (depth == -1) ? NULL : files[depth].fp,
3820 (depth == -1) ? &lnum : &files[depth].lnum,
3821 match_count++);
3822
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003823 // Set matched flag for this file and all the ones that
3824 // include it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 for (i = 0; i <= depth; ++i)
3826 files[i].matched = TRUE;
3827 }
3828 else if (--count <= 0)
3829 {
3830 found = TRUE;
3831 if (depth == -1 && lnum == curwin->w_cursor.lnum
Bram Moolenaar4033c552017-09-16 20:54:51 +02003832#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 && g_do_tagpreview == 0
3834#endif
3835 )
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003836 emsg(_("E387: Match is on current line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 else if (action == ACTION_SHOW)
3838 {
3839 show_pat_in_path(line, type, did_show, action,
3840 (depth == -1) ? NULL : files[depth].fp,
3841 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
3842 did_show = TRUE;
3843 }
3844 else
3845 {
3846#ifdef FEAT_GUI
3847 need_mouse_correct = TRUE;
3848#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02003849#if defined(FEAT_QUICKFIX)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003850 // ":psearch" uses the preview window
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 if (g_do_tagpreview != 0)
3852 {
3853 curwin_save = curwin;
Bram Moolenaar576a4a62019-08-18 15:25:17 +02003854 prepare_tagpreview(TRUE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003855 }
3856#endif
3857 if (action == ACTION_SPLIT)
3858 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003861 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862 }
3863 if (depth == -1)
3864 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003865 // match in current file
Bram Moolenaar4033c552017-09-16 20:54:51 +02003866#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 if (g_do_tagpreview != 0)
3868 {
Bram Moolenaar92bb83e2021-02-03 23:04:46 +01003869 if (!win_valid(curwin_save))
3870 break;
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003871 if (!GETFILE_SUCCESS(getfile(
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02003872 curwin_save->w_buffer->b_fnum, NULL,
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003873 NULL, TRUE, lnum, FALSE)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003874 break; // failed to jump to file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 }
3876 else
3877#endif
3878 setpcmark();
3879 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02003880 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 }
3882 else
3883 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02003884 if (!GETFILE_SUCCESS(getfile(
3885 0, files[depth].name, NULL, TRUE,
3886 files[depth].lnum, FALSE)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003887 break; // failed to jump to file
3888 // autocommands may have changed the lnum, we don't
3889 // want that here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 curwin->w_cursor.lnum = files[depth].lnum;
3891 }
3892 }
3893 if (action != ACTION_SHOW)
3894 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00003895 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 curwin->w_set_curswant = TRUE;
3897 }
3898
Bram Moolenaar4033c552017-09-16 20:54:51 +02003899#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003901 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003903 // Return cursor to where we were
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904 validate_cursor();
3905 redraw_later(VALID);
3906 win_enter(curwin_save, TRUE);
3907 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003908# ifdef FEAT_PROP_POPUP
Bram Moolenaar1b6d9c42019-08-05 21:52:04 +02003909 else if (WIN_IS_POPUP(curwin))
3910 // can't keep focus in popup window
3911 win_enter(firstwin, TRUE);
3912# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913#endif
3914 break;
3915 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916exit_matched:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917 matched = FALSE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003918 // look for other matches in the rest of the line if we
3919 // are not at the end of it already
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 if (def_regmatch.regprog == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003922 && !(compl_cont_status & CONT_SOL)
Bram Moolenaarfe81d452009-04-22 14:44:41 +00003923 && *startp != NUL
Bram Moolenaar1614a142019-10-06 22:00:13 +02003924 && *(p = startp + mb_ptr2len(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 goto search_line;
3926 }
3927 line_breakcheck();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928 if (action == ACTION_EXPAND)
Bram Moolenaar472e8592016-10-15 17:06:47 +02003929 ins_compl_check_keys(30, FALSE);
Bram Moolenaar7591bb32019-03-30 13:53:47 +01003930 if (got_int || ins_compl_interrupted())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931 break;
3932
3933 /*
3934 * Read the next line. When reading an included file and encountering
3935 * end-of-file, close the file and continue in the file that included
3936 * it.
3937 */
3938 while (depth >= 0 && !already
3939 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
3940 {
3941 fclose(files[depth].fp);
3942 --old_files;
3943 files[old_files].name = files[depth].name;
3944 files[old_files].matched = files[depth].matched;
3945 --depth;
3946 curr_fname = (depth == -1) ? curbuf->b_fname
3947 : files[depth].name;
3948 if (depth < depth_displayed)
3949 depth_displayed = depth;
3950 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003951 if (depth >= 0) // we could read the line
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02003952 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 files[depth].lnum++;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003954 // Remove any CR and LF from the line.
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02003955 i = (int)STRLEN(line);
3956 if (i > 0 && line[i - 1] == '\n')
3957 line[--i] = NUL;
3958 if (i > 0 && line[i - 1] == '\r')
3959 line[--i] = NUL;
3960 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 else if (!already)
3962 {
3963 if (++lnum > end_lnum)
3964 break;
3965 line = ml_get(lnum);
3966 }
3967 already = NULL;
3968 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003969 // End of big for (;;) loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003971 // Close any files that are still open.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 for (i = 0; i <= depth; i++)
3973 {
3974 fclose(files[i].fp);
3975 vim_free(files[i].name);
3976 }
3977 for (i = old_files; i < max_path_depth; i++)
3978 vim_free(files[i].name);
3979 vim_free(files);
3980
3981 if (type == CHECK_PATH)
3982 {
3983 if (!did_show)
3984 {
3985 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003986 msg(_("All included files were found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01003988 msg(_("No included files"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 }
3990 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003991 else if (!found && action != ACTION_EXPAND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 {
Bram Moolenaar7591bb32019-03-30 13:53:47 +01003993 if (got_int || ins_compl_interrupted())
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003994 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 else if (type == FIND_DEFINE)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003996 emsg(_("E388: Couldn't find definition"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003998 emsg(_("E389: Couldn't find pattern"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 }
4000 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
4001 msg_end();
4002
4003fpip_end:
4004 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02004005 vim_regfree(regmatch.regprog);
4006 vim_regfree(incl_regmatch.regprog);
4007 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008}
4009
4010 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004011show_pat_in_path(
4012 char_u *line,
4013 int type,
4014 int did_show,
4015 int action,
4016 FILE *fp,
4017 linenr_T *lnum,
4018 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019{
4020 char_u *p;
4021
4022 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004023 msg_putchar('\n'); // cursor below last one
Bram Moolenaar91170f82006-05-05 21:15:17 +00004024 else if (!msg_silent)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004025 gotocmdline(TRUE); // cursor at status line
4026 if (got_int) // 'q' typed at "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027 return;
4028 for (;;)
4029 {
4030 p = line + STRLEN(line) - 1;
4031 if (fp != NULL)
4032 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004033 // We used fgets(), so get rid of newline at end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 if (p >= line && *p == '\n')
4035 --p;
4036 if (p >= line && *p == '\r')
4037 --p;
4038 *(p + 1) = NUL;
4039 }
4040 if (action == ACTION_SHOW_ALL)
4041 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004042 sprintf((char *)IObuff, "%3ld: ", count); // show match nr
Bram Moolenaar32526b32019-01-19 17:43:09 +01004043 msg_puts((char *)IObuff);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004044 sprintf((char *)IObuff, "%4ld", *lnum); // show line nr
4045 // Highlight line numbers
Bram Moolenaar32526b32019-01-19 17:43:09 +01004046 msg_puts_attr((char *)IObuff, HL_ATTR(HLF_N));
4047 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004049 msg_prt_line(line, FALSE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004050 out_flush(); // show one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004052 // Definition continues until line that doesn't end with '\'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
4054 break;
4055
4056 if (fp != NULL)
4057 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004058 if (vim_fgets(line, LSIZE, fp)) // end of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 break;
4060 ++*lnum;
4061 }
4062 else
4063 {
4064 if (++*lnum > curbuf->b_ml.ml_line_count)
4065 break;
4066 line = ml_get(*lnum);
4067 }
4068 msg_putchar('\n');
4069 }
4070}
4071#endif
4072
4073#ifdef FEAT_VIMINFO
Bram Moolenaar6bd1d772019-10-09 22:01:25 +02004074/*
4075 * Return the last used search pattern at "idx".
4076 */
Bram Moolenaarc3328162019-07-23 22:15:25 +02004077 spat_T *
4078get_spat(int idx)
4079{
4080 return &spats[idx];
4081}
4082
Bram Moolenaar6bd1d772019-10-09 22:01:25 +02004083/*
4084 * Return the last used search pattern index.
4085 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 int
Bram Moolenaarc3328162019-07-23 22:15:25 +02004087get_spat_last_idx(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088{
Bram Moolenaarc3328162019-07-23 22:15:25 +02004089 return last_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091#endif
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004092
4093#ifdef FEAT_EVAL
4094/*
4095 * "searchcount()" function
4096 */
4097 void
4098f_searchcount(typval_T *argvars, typval_T *rettv)
4099{
4100 pos_T pos = curwin->w_cursor;
4101 char_u *pattern = NULL;
4102 int maxcount = SEARCH_STAT_DEF_MAX_COUNT;
4103 long timeout = SEARCH_STAT_DEF_TIMEOUT;
Bram Moolenaar4140c4f2020-09-05 23:16:00 +02004104 int recompute = TRUE;
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004105 searchstat_T stat;
4106
4107 if (rettv_dict_alloc(rettv) == FAIL)
4108 return;
4109
4110 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 {
4122 emsg(_(e_dictreq));
4123 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 {
4153 semsg(_(e_invarg2), "pos");
4154 return;
4155 }
4156 if (list_len(di->di_tv.vval.v_list) != 3)
4157 {
4158 semsg(_(e_invarg2), "List format should be [lnum, col, off]");
4159 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
4288// Maximum number of characters that can be fuzzy matched
4289#define MAXMATCHES 256
4290
4291typedef int_u matchidx_T;
4292
4293/*
4294 * Compute a score for a fuzzy matched string. The matching character locations
4295 * are in 'matches'.
4296 */
4297 static int
4298fuzzy_match_compute_score(
4299 char_u *str,
4300 int strSz,
4301 matchidx_T *matches,
4302 int numMatches)
4303{
4304 int score;
4305 int penalty;
4306 int unmatched;
4307 int i;
4308 char_u *p = str;
4309 matchidx_T sidx = 0;
4310
4311 // Initialize score
4312 score = 100;
4313
4314 // Apply leading letter penalty
4315 penalty = LEADING_LETTER_PENALTY * matches[0];
4316 if (penalty < MAX_LEADING_LETTER_PENALTY)
4317 penalty = MAX_LEADING_LETTER_PENALTY;
4318 score += penalty;
4319
4320 // Apply unmatched penalty
4321 unmatched = strSz - numMatches;
4322 score += UNMATCHED_LETTER_PENALTY * unmatched;
4323
4324 // Apply ordering bonuses
4325 for (i = 0; i < numMatches; ++i)
4326 {
4327 matchidx_T currIdx = matches[i];
4328
4329 if (i > 0)
4330 {
4331 matchidx_T prevIdx = matches[i - 1];
4332
4333 // Sequential
4334 if (currIdx == (prevIdx + 1))
4335 score += SEQUENTIAL_BONUS;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004336 else
4337 score += GAP_PENALTY * (currIdx - prevIdx);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004338 }
4339
4340 // Check for bonuses based on neighbor character value
4341 if (currIdx > 0)
4342 {
4343 // Camel case
Bram Moolenaarc53e9c52020-09-22 22:08:32 +02004344 int neighbor = ' ';
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004345 int curr;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004346
4347 if (has_mbyte)
4348 {
4349 while (sidx < currIdx)
4350 {
4351 neighbor = (*mb_ptr2char)(p);
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004352 MB_PTR_ADV(p);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004353 sidx++;
4354 }
4355 curr = (*mb_ptr2char)(p);
4356 }
4357 else
4358 {
4359 neighbor = str[currIdx - 1];
4360 curr = str[currIdx];
4361 }
4362
4363 if (vim_islower(neighbor) && vim_isupper(curr))
4364 score += CAMEL_BONUS;
4365
Bram Moolenaardcdd42a2020-10-29 18:58:01 +01004366 // Bonus if the match follows a separator character
4367 if (neighbor == '/' || neighbor == '\\')
4368 score += PATH_SEPARATOR_BONUS;
4369 else if (neighbor == ' ' || neighbor == '_')
4370 score += WORD_SEPARATOR_BONUS;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004371 }
4372 else
4373 {
4374 // First letter
4375 score += FIRST_LETTER_BONUS;
4376 }
4377 }
4378 return score;
4379}
4380
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004381/*
4382 * Perform a recursive search for fuzzy matching 'fuzpat' in 'str'.
4383 * Return the number of matching characters.
4384 */
Bram Moolenaar635414d2020-09-11 22:25:15 +02004385 static int
4386fuzzy_match_recursive(
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004387 char_u *fuzpat,
4388 char_u *str,
4389 matchidx_T strIdx,
4390 int *outScore,
4391 char_u *strBegin,
4392 int strLen,
4393 matchidx_T *srcMatches,
4394 matchidx_T *matches,
4395 int maxMatches,
4396 int nextMatch,
4397 int *recursionCount)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004398{
4399 // Recursion params
4400 int recursiveMatch = FALSE;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004401 matchidx_T bestRecursiveMatches[MAXMATCHES];
Bram Moolenaar635414d2020-09-11 22:25:15 +02004402 int bestRecursiveScore = 0;
4403 int first_match;
4404 int matched;
4405
4406 // Count recursions
4407 ++*recursionCount;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004408 if (*recursionCount >= FUZZY_MATCH_RECURSION_LIMIT)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004409 return 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004410
4411 // Detect end of strings
4412 if (*fuzpat == '\0' || *str == '\0')
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004413 return 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004414
4415 // Loop through fuzpat and str looking for a match
4416 first_match = TRUE;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004417 while (*fuzpat != NUL && *str != NUL)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004418 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004419 int c1;
4420 int c2;
4421
4422 c1 = PTR2CHAR(fuzpat);
4423 c2 = PTR2CHAR(str);
4424
Bram Moolenaar635414d2020-09-11 22:25:15 +02004425 // Found match
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004426 if (vim_tolower(c1) == vim_tolower(c2))
Bram Moolenaar635414d2020-09-11 22:25:15 +02004427 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004428 matchidx_T recursiveMatches[MAXMATCHES];
Bram Moolenaar635414d2020-09-11 22:25:15 +02004429 int recursiveScore = 0;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004430 char_u *next_char;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004431
4432 // Supplied matches buffer was too short
4433 if (nextMatch >= maxMatches)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004434 return 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004435
4436 // "Copy-on-Write" srcMatches into matches
4437 if (first_match && srcMatches)
4438 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004439 memcpy(matches, srcMatches, nextMatch * sizeof(srcMatches[0]));
Bram Moolenaar635414d2020-09-11 22:25:15 +02004440 first_match = FALSE;
4441 }
4442
4443 // Recursive call that "skips" this match
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004444 if (has_mbyte)
4445 next_char = str + (*mb_ptr2len)(str);
4446 else
4447 next_char = str + 1;
4448 if (fuzzy_match_recursive(fuzpat, next_char, strIdx + 1,
4449 &recursiveScore, strBegin, strLen, matches,
4450 recursiveMatches,
4451 sizeof(recursiveMatches)/sizeof(recursiveMatches[0]),
4452 nextMatch, recursionCount))
Bram Moolenaar635414d2020-09-11 22:25:15 +02004453 {
4454 // Pick best recursive score
4455 if (!recursiveMatch || recursiveScore > bestRecursiveScore)
4456 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004457 memcpy(bestRecursiveMatches, recursiveMatches,
4458 MAXMATCHES * sizeof(recursiveMatches[0]));
Bram Moolenaar635414d2020-09-11 22:25:15 +02004459 bestRecursiveScore = recursiveScore;
4460 }
4461 recursiveMatch = TRUE;
4462 }
4463
4464 // Advance
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004465 matches[nextMatch++] = strIdx;
4466 if (has_mbyte)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004467 MB_PTR_ADV(fuzpat);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004468 else
4469 ++fuzpat;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004470 }
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004471 if (has_mbyte)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004472 MB_PTR_ADV(str);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004473 else
4474 ++str;
4475 strIdx++;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004476 }
4477
4478 // Determine if full fuzpat was matched
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004479 matched = *fuzpat == NUL ? TRUE : FALSE;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004480
4481 // Calculate score
4482 if (matched)
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004483 *outScore = fuzzy_match_compute_score(strBegin, strLen, matches,
4484 nextMatch);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004485
4486 // Return best result
4487 if (recursiveMatch && (!matched || bestRecursiveScore > *outScore))
4488 {
4489 // Recursive score is better than "this"
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004490 memcpy(matches, bestRecursiveMatches, maxMatches * sizeof(matches[0]));
Bram Moolenaar635414d2020-09-11 22:25:15 +02004491 *outScore = bestRecursiveScore;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004492 return nextMatch;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004493 }
4494 else if (matched)
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004495 return nextMatch; // "this" score is better than recursive
Bram Moolenaar635414d2020-09-11 22:25:15 +02004496
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004497 return 0; // no match
Bram Moolenaar635414d2020-09-11 22:25:15 +02004498}
4499
4500/*
4501 * fuzzy_match()
4502 *
4503 * Performs exhaustive search via recursion to find all possible matches and
4504 * match with highest score.
4505 * Scores values have no intrinsic meaning. Possible score range is not
4506 * normalized and varies with pattern.
4507 * Recursion is limited internally (default=10) to prevent degenerate cases
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004508 * (pat_arg="aaaaaa" str="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa").
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004509 * Uses char_u for match indices. Therefore patterns are limited to MAXMATCHES
Bram Moolenaar635414d2020-09-11 22:25:15 +02004510 * characters.
4511 *
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004512 * Returns TRUE if 'pat_arg' matches 'str'. Also returns the match score in
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004513 * 'outScore' and the matching character positions in 'matches'.
Bram Moolenaar635414d2020-09-11 22:25:15 +02004514 */
4515 static int
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004516fuzzy_match(
4517 char_u *str,
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004518 char_u *pat_arg,
4519 int matchseq,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004520 int *outScore,
4521 matchidx_T *matches,
4522 int maxMatches)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004523{
Bram Moolenaar635414d2020-09-11 22:25:15 +02004524 int recursionCount = 0;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004525 int len = MB_CHARLEN(str);
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004526 char_u *save_pat;
4527 char_u *pat;
4528 char_u *p;
4529 int complete = FALSE;
4530 int score = 0;
4531 int numMatches = 0;
4532 int matchCount;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004533
4534 *outScore = 0;
4535
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004536 save_pat = vim_strsave(pat_arg);
4537 if (save_pat == NULL)
4538 return FALSE;
4539 pat = save_pat;
4540 p = pat;
4541
4542 // Try matching each word in 'pat_arg' in 'str'
4543 while (TRUE)
4544 {
4545 if (matchseq)
4546 complete = TRUE;
4547 else
4548 {
4549 // Extract one word from the pattern (separated by space)
4550 p = skipwhite(p);
4551 if (*p == NUL)
4552 break;
4553 pat = p;
4554 while (*p != NUL && !VIM_ISWHITE(PTR2CHAR(p)))
4555 {
4556 if (has_mbyte)
4557 MB_PTR_ADV(p);
4558 else
4559 ++p;
4560 }
4561 if (*p == NUL) // processed all the words
4562 complete = TRUE;
4563 *p = NUL;
4564 }
4565
4566 score = 0;
4567 recursionCount = 0;
4568 matchCount = fuzzy_match_recursive(pat, str, 0, &score, str, len, NULL,
4569 matches + numMatches, maxMatches - numMatches,
4570 0, &recursionCount);
4571 if (matchCount == 0)
4572 {
4573 numMatches = 0;
4574 break;
4575 }
4576
4577 // Accumulate the match score and the number of matches
4578 *outScore += score;
4579 numMatches += matchCount;
4580
4581 if (complete)
4582 break;
4583
4584 // try matching the next word
4585 ++p;
4586 }
4587
4588 vim_free(save_pat);
4589 return numMatches != 0;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004590}
4591
4592/*
4593 * Sort the fuzzy matches in the descending order of the match score.
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004594 * For items with same score, retain the order using the index (stable sort)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004595 */
4596 static int
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004597fuzzy_match_item_compare(const void *s1, const void *s2)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004598{
4599 int v1 = ((fuzzyItem_T *)s1)->score;
4600 int v2 = ((fuzzyItem_T *)s2)->score;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004601 int idx1 = ((fuzzyItem_T *)s1)->idx;
4602 int idx2 = ((fuzzyItem_T *)s2)->idx;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004603
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004604 return v1 == v2 ? (idx1 - idx2) : v1 > v2 ? -1 : 1;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004605}
4606
4607/*
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004608 * Fuzzy search the string 'str' in a list of 'items' and return the matching
4609 * strings in 'fmatchlist'.
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004610 * If 'matchseq' is TRUE, then for multi-word search strings, match all the
4611 * words in sequence.
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004612 * If 'items' is a list of strings, then search for 'str' in the list.
4613 * If 'items' is a list of dicts, then either use 'key' to lookup the string
4614 * for each item or use 'item_cb' Funcref function to get the string.
4615 * If 'retmatchpos' is TRUE, then return a list of positions where 'str'
4616 * matches for each item.
Bram Moolenaar635414d2020-09-11 22:25:15 +02004617 */
4618 static void
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004619fuzzy_match_in_list(
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004620 list_T *items,
4621 char_u *str,
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004622 int matchseq,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004623 char_u *key,
4624 callback_T *item_cb,
4625 int retmatchpos,
4626 list_T *fmatchlist)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004627{
4628 long len;
4629 fuzzyItem_T *ptrs;
4630 listitem_T *li;
4631 long i = 0;
4632 int found_match = FALSE;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004633 matchidx_T matches[MAXMATCHES];
Bram Moolenaar635414d2020-09-11 22:25:15 +02004634
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004635 len = list_len(items);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004636 if (len == 0)
4637 return;
4638
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004639 ptrs = ALLOC_CLEAR_MULT(fuzzyItem_T, len);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004640 if (ptrs == NULL)
4641 return;
4642
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004643 // For all the string items in items, get the fuzzy matching score
4644 FOR_ALL_LIST_ITEMS(items, li)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004645 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004646 int score;
4647 char_u *itemstr;
4648 typval_T rettv;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004649
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004650 ptrs[i].idx = i;
Bram Moolenaar635414d2020-09-11 22:25:15 +02004651 ptrs[i].item = li;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004652 ptrs[i].score = SCORE_NONE;
4653 itemstr = NULL;
4654 rettv.v_type = VAR_UNKNOWN;
4655 if (li->li_tv.v_type == VAR_STRING) // list of strings
4656 itemstr = li->li_tv.vval.v_string;
4657 else if (li->li_tv.v_type == VAR_DICT &&
4658 (key != NULL || item_cb->cb_name != NULL))
4659 {
4660 // For a dict, either use the specified key to lookup the string or
4661 // use the specified callback function to get the string.
4662 if (key != NULL)
4663 itemstr = dict_get_string(li->li_tv.vval.v_dict, key, FALSE);
4664 else
Bram Moolenaar635414d2020-09-11 22:25:15 +02004665 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004666 typval_T argv[2];
4667
4668 // Invoke the supplied callback (if any) to get the dict item
4669 li->li_tv.vval.v_dict->dv_refcount++;
4670 argv[0].v_type = VAR_DICT;
4671 argv[0].vval.v_dict = li->li_tv.vval.v_dict;
4672 argv[1].v_type = VAR_UNKNOWN;
4673 if (call_callback(item_cb, -1, &rettv, 1, argv) != FAIL)
4674 {
4675 if (rettv.v_type == VAR_STRING)
4676 itemstr = rettv.vval.v_string;
4677 }
4678 dict_unref(li->li_tv.vval.v_dict);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004679 }
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004680 }
4681
4682 if (itemstr != NULL
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004683 && fuzzy_match(itemstr, str, matchseq, &score, matches,
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004684 sizeof(matches) / sizeof(matches[0])))
4685 {
4686 // Copy the list of matching positions in itemstr to a list, if
4687 // 'retmatchpos' is set.
4688 if (retmatchpos)
4689 {
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004690 int j = 0;
4691 char_u *p;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004692
4693 ptrs[i].lmatchpos = list_alloc();
4694 if (ptrs[i].lmatchpos == NULL)
4695 goto done;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004696
4697 p = str;
4698 while (*p != NUL)
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004699 {
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004700 if (!VIM_ISWHITE(PTR2CHAR(p)))
4701 {
4702 if (list_append_number(ptrs[i].lmatchpos,
4703 matches[j]) == FAIL)
4704 goto done;
4705 j++;
4706 }
4707 if (has_mbyte)
4708 MB_PTR_ADV(p);
4709 else
4710 ++p;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004711 }
4712 }
4713 ptrs[i].score = score;
4714 found_match = TRUE;
4715 }
Bram Moolenaar635414d2020-09-11 22:25:15 +02004716 ++i;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004717 clear_tv(&rettv);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004718 }
4719
4720 if (found_match)
4721 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004722 list_T *l;
4723
Bram Moolenaar635414d2020-09-11 22:25:15 +02004724 // Sort the list by the descending order of the match score
4725 qsort((void *)ptrs, (size_t)len, sizeof(fuzzyItem_T),
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004726 fuzzy_match_item_compare);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004727
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004728 // For matchfuzzy(), return a list of matched strings.
4729 // ['str1', 'str2', 'str3']
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004730 // For matchfuzzypos(), return a list with three items.
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004731 // The first item is a list of matched strings. The second item
4732 // is a list of lists where each list item is a list of matched
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004733 // character positions. The third item is a list of matching scores.
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004734 // [['str1', 'str2', 'str3'], [[1, 3], [1, 3], [1, 3]]]
4735 if (retmatchpos)
4736 {
4737 li = list_find(fmatchlist, 0);
4738 if (li == NULL || li->li_tv.vval.v_list == NULL)
4739 goto done;
4740 l = li->li_tv.vval.v_list;
4741 }
4742 else
4743 l = fmatchlist;
4744
4745 // Copy the matching strings with a valid score to the return list
Bram Moolenaar635414d2020-09-11 22:25:15 +02004746 for (i = 0; i < len; i++)
4747 {
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004748 if (ptrs[i].score == SCORE_NONE)
Bram Moolenaar635414d2020-09-11 22:25:15 +02004749 break;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004750 list_append_tv(l, &ptrs[i].item->li_tv);
4751 }
4752
4753 // next copy the list of matching positions
4754 if (retmatchpos)
4755 {
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004756 li = list_find(fmatchlist, -2);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004757 if (li == NULL || li->li_tv.vval.v_list == NULL)
4758 goto done;
4759 l = li->li_tv.vval.v_list;
4760
4761 for (i = 0; i < len; i++)
4762 {
4763 if (ptrs[i].score == SCORE_NONE)
4764 break;
4765 if (ptrs[i].lmatchpos != NULL &&
4766 list_append_list(l, ptrs[i].lmatchpos) == FAIL)
4767 goto done;
4768 }
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004769
4770 // copy the matching scores
4771 li = list_find(fmatchlist, -1);
4772 if (li == NULL || li->li_tv.vval.v_list == NULL)
4773 goto done;
4774 l = li->li_tv.vval.v_list;
4775 for (i = 0; i < len; i++)
4776 {
4777 if (ptrs[i].score == SCORE_NONE)
4778 break;
4779 if (list_append_number(l, ptrs[i].score) == FAIL)
4780 goto done;
4781 }
Bram Moolenaar635414d2020-09-11 22:25:15 +02004782 }
4783 }
4784
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004785done:
Bram Moolenaar635414d2020-09-11 22:25:15 +02004786 vim_free(ptrs);
4787}
4788
4789/*
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004790 * Do fuzzy matching. Returns the list of matched strings in 'rettv'.
4791 * If 'retmatchpos' is TRUE, also returns the matching character positions.
4792 */
4793 static void
4794do_fuzzymatch(typval_T *argvars, typval_T *rettv, int retmatchpos)
4795{
4796 callback_T cb;
4797 char_u *key = NULL;
4798 int ret;
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004799 int matchseq = FALSE;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004800
4801 CLEAR_POINTER(&cb);
4802
4803 // validate and get the arguments
4804 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
4805 {
4806 semsg(_(e_listarg), retmatchpos ? "matchfuzzypos()" : "matchfuzzy()");
4807 return;
4808 }
4809 if (argvars[1].v_type != VAR_STRING
4810 || argvars[1].vval.v_string == NULL)
4811 {
4812 semsg(_(e_invarg2), tv_get_string(&argvars[1]));
4813 return;
4814 }
4815
4816 if (argvars[2].v_type != VAR_UNKNOWN)
4817 {
4818 dict_T *d;
4819 dictitem_T *di;
4820
4821 if (argvars[2].v_type != VAR_DICT || argvars[2].vval.v_dict == NULL)
4822 {
4823 emsg(_(e_dictreq));
4824 return;
4825 }
4826
4827 // To search a dict, either a callback function or a key can be
4828 // specified.
4829 d = argvars[2].vval.v_dict;
4830 if ((di = dict_find(d, (char_u *)"key", -1)) != NULL)
4831 {
4832 if (di->di_tv.v_type != VAR_STRING
4833 || di->di_tv.vval.v_string == NULL
4834 || *di->di_tv.vval.v_string == NUL)
4835 {
4836 semsg(_(e_invarg2), tv_get_string(&di->di_tv));
4837 return;
4838 }
4839 key = tv_get_string(&di->di_tv);
4840 }
4841 else if ((di = dict_find(d, (char_u *)"text_cb", -1)) != NULL)
4842 {
4843 cb = get_callback(&di->di_tv);
4844 if (cb.cb_name == NULL)
4845 {
4846 semsg(_(e_invargval), "text_cb");
4847 return;
4848 }
4849 }
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004850 if ((di = dict_find(d, (char_u *)"matchseq", -1)) != NULL)
4851 matchseq = TRUE;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004852 }
4853
4854 // get the fuzzy matches
4855 ret = rettv_list_alloc(rettv);
4856 if (ret != OK)
4857 goto done;
4858 if (retmatchpos)
4859 {
4860 list_T *l;
4861
Bram Moolenaar9d19e4f2021-01-02 18:31:32 +01004862 // For matchfuzzypos(), a list with three items are returned. First
4863 // item is a list of matching strings, the second item is a list of
4864 // lists with matching positions within each string and the third item
4865 // is the list of scores of the matches.
4866 l = list_alloc();
4867 if (l == NULL)
4868 goto done;
4869 if (list_append_list(rettv->vval.v_list, l) == FAIL)
4870 goto done;
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004871 l = list_alloc();
4872 if (l == NULL)
4873 goto done;
4874 if (list_append_list(rettv->vval.v_list, l) == FAIL)
4875 goto done;
4876 l = list_alloc();
4877 if (l == NULL)
4878 goto done;
4879 if (list_append_list(rettv->vval.v_list, l) == FAIL)
4880 goto done;
4881 }
4882
Bram Moolenaar8ded5b62020-10-23 16:50:30 +02004883 fuzzy_match_in_list(argvars[0].vval.v_list, tv_get_string(&argvars[1]),
4884 matchseq, key, &cb, retmatchpos, rettv->vval.v_list);
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004885
4886done:
4887 free_callback(&cb);
4888}
4889
4890/*
Bram Moolenaar635414d2020-09-11 22:25:15 +02004891 * "matchfuzzy()" function
4892 */
4893 void
4894f_matchfuzzy(typval_T *argvars, typval_T *rettv)
4895{
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +02004896 do_fuzzymatch(argvars, rettv, FALSE);
4897}
4898
4899/*
4900 * "matchfuzzypos()" function
4901 */
4902 void
4903f_matchfuzzypos(typval_T *argvars, typval_T *rettv)
4904{
4905 do_fuzzymatch(argvars, rettv, TRUE);
Bram Moolenaar635414d2020-09-11 22:25:15 +02004906}
4907
Bram Moolenaare8f5ec02020-06-01 17:28:35 +02004908#endif