blob: e3265c25c6034bde401b5b20215f3100bc64b825 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 * search.c: code for normal mode searching commands
11 */
12
13#include "vim.h"
14
Bram Moolenaar071d4272004-06-13 20:20:40 +000015#ifdef FEAT_EVAL
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010016static void set_vv_searchforward(void);
17static int first_submatch(regmmatch_T *rp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010019static int check_linecomment(char_u *line);
20static int cls(void);
21static int skip_chars(int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022#ifdef FEAT_FIND_ID
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010023static void show_pat_in_path(char_u *, int,
24 int, int, FILE *, linenr_T *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +000025#endif
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +020026static void search_stat(int dirc, pos_T *pos, int show_top_bot_msg, char_u *msgbuf, int recompute);
Bram Moolenaar071d4272004-06-13 20:20:40 +000027
Bram Moolenaar071d4272004-06-13 20:20:40 +000028/*
29 * This file contains various searching-related routines. These fall into
30 * three groups:
31 * 1. string searches (for /, ?, n, and N)
32 * 2. character searches within a single line (for f, F, t, T, etc)
33 * 3. "other" kinds of searches like the '%' command, and 'word' searches.
34 */
35
36/*
37 * String searches
38 *
39 * The string search functions are divided into two levels:
40 * lowest: searchit(); uses an pos_T for starting position and found match.
41 * Highest: do_search(); uses curwin->w_cursor; calls searchit().
42 *
43 * The last search pattern is remembered for repeating the same search.
44 * This pattern is shared between the :g, :s, ? and / commands.
45 * This is in search_regcomp().
46 *
47 * The actual string matching is done using a heavily modified version of
48 * Henry Spencer's regular expression library. See regexp.c.
49 */
50
Bram Moolenaar071d4272004-06-13 20:20:40 +000051/*
52 * Two search patterns are remembered: One for the :substitute command and
53 * one for other searches. last_idx points to the one that was used the last
54 * time.
55 */
Bram Moolenaarc3328162019-07-23 22:15:25 +020056static spat_T spats[2] =
Bram Moolenaar071d4272004-06-13 20:20:40 +000057{
Bram Moolenaar63d9e732019-12-05 21:10:38 +010058 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}}, // last used search pat
59 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}} // last used substitute pat
Bram Moolenaar071d4272004-06-13 20:20:40 +000060};
61
Bram Moolenaar63d9e732019-12-05 21:10:38 +010062static int last_idx = 0; // index in spats[] for RE_LAST
Bram Moolenaar071d4272004-06-13 20:20:40 +000063
Bram Moolenaar63d9e732019-12-05 21:10:38 +010064static char_u lastc[2] = {NUL, NUL}; // last character searched for
65static int lastcdir = FORWARD; // last direction of character search
66static int last_t_cmd = TRUE; // last search t_cmd
Bram Moolenaardbd24b52015-08-11 14:26:19 +020067static char_u lastc_bytes[MB_MAXBYTES + 1];
Bram Moolenaar63d9e732019-12-05 21:10:38 +010068static int lastc_bytelen = 1; // >1 for multi-byte char
Bram Moolenaardbd24b52015-08-11 14:26:19 +020069
Bram Moolenaar63d9e732019-12-05 21:10:38 +010070// copy of spats[], for keeping the search patterns while executing autocmds
Bram Moolenaarc3328162019-07-23 22:15:25 +020071static spat_T saved_spats[2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000072# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +010073static int saved_spats_last_idx = 0;
74static int saved_spats_no_hlsearch = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000075# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000076
Bram Moolenaar63d9e732019-12-05 21:10:38 +010077static char_u *mr_pattern = NULL; // pattern used by search_regcomp()
Bram Moolenaar071d4272004-06-13 20:20:40 +000078#ifdef FEAT_RIGHTLEFT
Bram Moolenaar63d9e732019-12-05 21:10:38 +010079static int mr_pattern_alloced = FALSE; // mr_pattern was allocated
Bram Moolenaar071d4272004-06-13 20:20:40 +000080#endif
81
82#ifdef FEAT_FIND_ID
83/*
84 * Type used by find_pattern_in_path() to remember which included files have
85 * been searched already.
86 */
87typedef struct SearchedFile
88{
Bram Moolenaar63d9e732019-12-05 21:10:38 +010089 FILE *fp; // File pointer
90 char_u *name; // Full name of file
91 linenr_T lnum; // Line we were up to in file
92 int matched; // Found a match in this file
Bram Moolenaar071d4272004-06-13 20:20:40 +000093} SearchedFile;
94#endif
95
96/*
97 * translate search pattern for vim_regcomp()
98 *
99 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd)
100 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command)
101 * pat_save == RE_BOTH: save pat in both patterns (:global command)
102 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL
Bram Moolenaarb8017e72007-05-10 18:59:07 +0000103 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104 * pat_use == RE_LAST: use last used pattern if "pat" is NULL
105 * options & SEARCH_HIS: put search string in history
106 * options & SEARCH_KEEP: keep previous search pattern
107 *
108 * returns FAIL if failed, OK otherwise.
109 */
110 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100111search_regcomp(
112 char_u *pat,
113 int pat_save,
114 int pat_use,
115 int options,
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100116 regmmatch_T *regmatch) // return: pattern and ignore-case flag
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117{
118 int magic;
119 int i;
120
121 rc_did_emsg = FALSE;
122 magic = p_magic;
123
124 /*
125 * If no pattern given, use a previously defined pattern.
126 */
127 if (pat == NULL || *pat == NUL)
128 {
129 if (pat_use == RE_LAST)
130 i = last_idx;
131 else
132 i = pat_use;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100133 if (spats[i].pat == NULL) // pattern was never defined
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134 {
135 if (pat_use == RE_SUBST)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100136 emsg(_(e_nopresub));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100138 emsg(_(e_noprevre));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139 rc_did_emsg = TRUE;
140 return FAIL;
141 }
142 pat = spats[i].pat;
143 magic = spats[i].magic;
144 no_smartcase = spats[i].no_scs;
145 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100146 else if (options & SEARCH_HIS) // put new pattern in history
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148
149#ifdef FEAT_RIGHTLEFT
150 if (mr_pattern_alloced)
151 {
152 vim_free(mr_pattern);
153 mr_pattern_alloced = FALSE;
154 }
155
156 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
157 {
158 char_u *rev_pattern;
159
160 rev_pattern = reverse_text(pat);
161 if (rev_pattern == NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100162 mr_pattern = pat; // out of memory, keep normal pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163 else
164 {
165 mr_pattern = rev_pattern;
166 mr_pattern_alloced = TRUE;
167 }
168 }
169 else
170#endif
171 mr_pattern = pat;
172
173 /*
174 * Save the currently used pattern in the appropriate place,
175 * unless the pattern should not be remembered.
176 */
Bram Moolenaar14177b72014-01-14 15:53:51 +0100177 if (!(options & SEARCH_KEEP) && !cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100179 // search or global command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180 if (pat_save == RE_SEARCH || pat_save == RE_BOTH)
181 save_re_pat(RE_SEARCH, pat, magic);
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100182 // substitute or global command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183 if (pat_save == RE_SUBST || pat_save == RE_BOTH)
184 save_re_pat(RE_SUBST, pat, magic);
185 }
186
187 regmatch->rmm_ic = ignorecase(pat);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +0000188 regmatch->rmm_maxcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
190 if (regmatch->regprog == NULL)
191 return FAIL;
192 return OK;
193}
194
195/*
196 * Get search pattern used by search_regcomp().
197 */
198 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100199get_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200{
201 return mr_pattern;
202}
203
Bram Moolenaarabc97732007-08-08 20:49:37 +0000204#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205/*
206 * Reverse text into allocated memory.
207 * Returns the allocated string, NULL when out of memory.
208 */
Bram Moolenaarabc97732007-08-08 20:49:37 +0000209 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100210reverse_text(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211{
212 unsigned len;
213 unsigned s_i, rev_i;
214 char_u *rev;
215
216 /*
217 * Reverse the pattern.
218 */
219 len = (unsigned)STRLEN(s);
220 rev = alloc(len + 1);
221 if (rev != NULL)
222 {
223 rev_i = len;
224 for (s_i = 0; s_i < len; ++s_i)
225 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 if (has_mbyte)
227 {
228 int mb_len;
229
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000230 mb_len = (*mb_ptr2len)(s + s_i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 rev_i -= mb_len;
232 mch_memmove(rev + rev_i, s + s_i, mb_len);
233 s_i += mb_len - 1;
234 }
235 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236 rev[--rev_i] = s[s_i];
237
238 }
239 rev[len] = NUL;
240 }
241 return rev;
242}
243#endif
244
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +0100245 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100246save_re_pat(int idx, char_u *pat, int magic)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247{
248 if (spats[idx].pat != pat)
249 {
250 vim_free(spats[idx].pat);
251 spats[idx].pat = vim_strsave(pat);
252 spats[idx].magic = magic;
253 spats[idx].no_scs = no_smartcase;
254 last_idx = idx;
255#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100256 // If 'hlsearch' set and search pat changed: need redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 if (p_hls)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000258 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200259 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260#endif
261 }
262}
263
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264/*
265 * Save the search patterns, so they can be restored later.
266 * Used before/after executing autocommands and user functions.
267 */
268static int save_level = 0;
269
270 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100271save_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272{
273 if (save_level++ == 0)
274 {
275 saved_spats[0] = spats[0];
276 if (spats[0].pat != NULL)
277 saved_spats[0].pat = vim_strsave(spats[0].pat);
278 saved_spats[1] = spats[1];
279 if (spats[1].pat != NULL)
280 saved_spats[1].pat = vim_strsave(spats[1].pat);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100281#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100282 saved_spats_last_idx = last_idx;
283 saved_spats_no_hlsearch = no_hlsearch;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100284#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285 }
286}
287
288 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100289restore_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290{
291 if (--save_level == 0)
292 {
293 vim_free(spats[0].pat);
294 spats[0] = saved_spats[0];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100295#if defined(FEAT_EVAL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000296 set_vv_searchforward();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100297#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 vim_free(spats[1].pat);
299 spats[1] = saved_spats[1];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100300#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100301 last_idx = saved_spats_last_idx;
302 set_no_hlsearch(saved_spats_no_hlsearch);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100303#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304 }
305}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000307#if defined(EXITFREE) || defined(PROTO)
308 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100309free_search_patterns(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000310{
311 vim_free(spats[0].pat);
312 vim_free(spats[1].pat);
Bram Moolenaarf2427622009-04-22 16:45:21 +0000313
314# ifdef FEAT_RIGHTLEFT
315 if (mr_pattern_alloced)
316 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200317 vim_free(mr_pattern);
318 mr_pattern_alloced = FALSE;
319 mr_pattern = NULL;
Bram Moolenaarf2427622009-04-22 16:45:21 +0000320 }
321# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000322}
323#endif
324
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100325#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100326// copy of spats[RE_SEARCH], for keeping the search patterns while incremental
327// searching
Bram Moolenaarc3328162019-07-23 22:15:25 +0200328static spat_T saved_last_search_spat;
Bram Moolenaared8bc782018-12-01 21:08:21 +0100329static int did_save_last_search_spat = 0;
330static int saved_last_idx = 0;
331static int saved_no_hlsearch = 0;
332
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100333/*
334 * Save and restore the search pattern for incremental highlight search
335 * feature.
336 *
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100337 * It's similar to but different from save_search_patterns() and
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100338 * restore_search_patterns(), because the search pattern must be restored when
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100339 * canceling incremental searching even if it's called inside user functions.
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100340 */
341 void
342save_last_search_pattern(void)
343{
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100344 if (did_save_last_search_spat != 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100345 iemsg("did_save_last_search_spat is not zero");
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100346 else
347 ++did_save_last_search_spat;
348
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100349 saved_last_search_spat = spats[RE_SEARCH];
350 if (spats[RE_SEARCH].pat != NULL)
351 saved_last_search_spat.pat = vim_strsave(spats[RE_SEARCH].pat);
352 saved_last_idx = last_idx;
353 saved_no_hlsearch = no_hlsearch;
354}
355
356 void
357restore_last_search_pattern(void)
358{
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100359 if (did_save_last_search_spat != 1)
360 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100361 iemsg("did_save_last_search_spat is not one");
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100362 return;
363 }
364 --did_save_last_search_spat;
365
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100366 vim_free(spats[RE_SEARCH].pat);
367 spats[RE_SEARCH] = saved_last_search_spat;
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100368 saved_last_search_spat.pat = NULL;
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100369# if defined(FEAT_EVAL)
370 set_vv_searchforward();
371# endif
372 last_idx = saved_last_idx;
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200373 set_no_hlsearch(saved_no_hlsearch);
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100374}
Bram Moolenaard0480092017-11-16 22:20:39 +0100375
376 char_u *
377last_search_pattern(void)
378{
379 return spats[RE_SEARCH].pat;
380}
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100381#endif
382
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383/*
384 * Return TRUE when case should be ignored for search pattern "pat".
385 * Uses the 'ignorecase' and 'smartcase' options.
386 */
387 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100388ignorecase(char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389{
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200390 return ignorecase_opt(pat, p_ic, p_scs);
391}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200393/*
394 * As ignorecase() put pass the "ic" and "scs" flags.
395 */
396 int
397ignorecase_opt(char_u *pat, int ic_in, int scs)
398{
399 int ic = ic_in;
400
401 if (ic && !no_smartcase && scs
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200402 && !(ctrl_x_mode_not_default() && curbuf->b_p_inf))
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200403 ic = !pat_has_uppercase(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404 no_smartcase = FALSE;
405
406 return ic;
407}
408
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200409/*
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200410 * Return TRUE if pattern "pat" has an uppercase character.
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200411 */
412 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100413pat_has_uppercase(char_u *pat)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200414{
415 char_u *p = pat;
416
417 while (*p != NUL)
418 {
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200419 int l;
420
421 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
422 {
423 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
424 return TRUE;
425 p += l;
426 }
Bram Moolenaar264b74f2019-01-24 17:18:42 +0100427 else if (*p == '\\')
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200428 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100429 if (p[1] == '_' && p[2] != NUL) // skip "\_X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200430 p += 3;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100431 else if (p[1] == '%' && p[2] != NUL) // skip "\%X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200432 p += 3;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100433 else if (p[1] != NUL) // skip "\X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200434 p += 2;
435 else
436 p += 1;
437 }
438 else if (MB_ISUPPER(*p))
439 return TRUE;
440 else
441 ++p;
442 }
443 return FALSE;
444}
445
Bram Moolenaar113e1072019-01-20 15:30:40 +0100446#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100448last_csearch(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200449{
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200450 return lastc_bytes;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200451}
452
453 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100454last_csearch_forward(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200455{
456 return lastcdir == FORWARD;
457}
458
459 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100460last_csearch_until(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200461{
462 return last_t_cmd == TRUE;
463}
464
465 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100466set_last_csearch(int c, char_u *s UNUSED, int len UNUSED)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200467{
468 *lastc = c;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200469 lastc_bytelen = len;
470 if (len)
471 memcpy(lastc_bytes, s, len);
472 else
473 vim_memset(lastc_bytes, 0, sizeof(lastc_bytes));
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200474}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100475#endif
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200476
477 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100478set_csearch_direction(int cdir)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200479{
480 lastcdir = cdir;
481}
482
483 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100484set_csearch_until(int t_cmd)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200485{
486 last_t_cmd = t_cmd;
487}
488
489 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100490last_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491{
492 return spats[last_idx].pat;
493}
494
495/*
496 * Reset search direction to forward. For "gd" and "gD" commands.
497 */
498 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100499reset_search_dir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500{
501 spats[0].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000502#if defined(FEAT_EVAL)
503 set_vv_searchforward();
504#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505}
506
507#if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
508/*
509 * Set the last search pattern. For ":let @/ =" and viminfo.
510 * Also set the saved search pattern, so that this works in an autocommand.
511 */
512 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100513set_last_search_pat(
514 char_u *s,
515 int idx,
516 int magic,
517 int setlast)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518{
519 vim_free(spats[idx].pat);
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100520 // An empty string means that nothing should be matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 if (*s == NUL)
522 spats[idx].pat = NULL;
523 else
524 spats[idx].pat = vim_strsave(s);
525 spats[idx].magic = magic;
526 spats[idx].no_scs = FALSE;
527 spats[idx].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000528#if defined(FEAT_EVAL)
529 set_vv_searchforward();
530#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 spats[idx].off.line = FALSE;
532 spats[idx].off.end = FALSE;
533 spats[idx].off.off = 0;
534 if (setlast)
535 last_idx = idx;
536 if (save_level)
537 {
538 vim_free(saved_spats[idx].pat);
539 saved_spats[idx] = spats[0];
540 if (spats[idx].pat == NULL)
541 saved_spats[idx].pat = NULL;
542 else
543 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
Bram Moolenaar975880b2019-03-03 14:42:11 +0100544# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100545 saved_spats_last_idx = last_idx;
Bram Moolenaar975880b2019-03-03 14:42:11 +0100546# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547 }
548# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100549 // If 'hlsearch' set and search pat changed: need redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 if (p_hls && idx == last_idx && !no_hlsearch)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000551 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552# endif
553}
554#endif
555
556#ifdef FEAT_SEARCH_EXTRA
557/*
558 * Get a regexp program for the last used search pattern.
559 * This is used for highlighting all matches in a window.
560 * Values returned in regmatch->regprog and regmatch->rmm_ic.
561 */
562 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100563last_pat_prog(regmmatch_T *regmatch)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564{
565 if (spats[last_idx].pat == NULL)
566 {
567 regmatch->regprog = NULL;
568 return;
569 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100570 ++emsg_off; // So it doesn't beep if bad expr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
572 --emsg_off;
573}
574#endif
575
576/*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100577 * Lowest level search function.
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100578 * Search for 'count'th occurrence of pattern "pat" in direction "dir".
579 * Start at position "pos" and return the found position in "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 *
581 * if (options & SEARCH_MSG) == 0 don't give any messages
582 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
583 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
584 * if (options & SEARCH_HIS) put search pattern in history
585 * if (options & SEARCH_END) return position at end of match
586 * if (options & SEARCH_START) accept match at pos itself
587 * if (options & SEARCH_KEEP) keep previous search pattern
588 * if (options & SEARCH_FOLD) match only once in a closed fold
589 * if (options & SEARCH_PEEK) check for typed char, cancel search
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100590 * if (options & SEARCH_COL) start at pos->col instead of zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 *
592 * Return FAIL (zero) for failure, non-zero for success.
593 * When FEAT_EVAL is defined, returns the index of the first matching
594 * subpattern plus one; one if there was none.
595 */
596 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100597searchit(
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200598 win_T *win, // window to search in; can be NULL for a
599 // buffer without a window!
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100600 buf_T *buf,
601 pos_T *pos,
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100602 pos_T *end_pos, // set to end of the match, unless NULL
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100603 int dir,
604 char_u *pat,
605 long count,
606 int options,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200607 int pat_use, // which pattern to use when "pat" is empty
608 searchit_arg_T *extra_arg) // optional extra arguments, can be NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609{
610 int found;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100611 linenr_T lnum; // no init to shut up Apollo cc
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100612 colnr_T col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613 regmmatch_T regmatch;
614 char_u *ptr;
615 colnr_T matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 lpos_T endpos;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000617 lpos_T matchpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618 int loop;
619 pos_T start_pos;
620 int at_first_line;
621 int extra_col;
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200622 int start_char_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623 int match_ok;
624 long nmatched;
625 int submatch = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100626 int first_match = TRUE;
Bram Moolenaar53989552019-12-23 22:59:18 +0100627 int called_emsg_before = called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628#ifdef FEAT_SEARCH_EXTRA
629 int break_loop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630#endif
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200631 linenr_T stop_lnum = 0; // stop after this line number when != 0
632#ifdef FEAT_RELTIME
633 proftime_T *tm = NULL; // timeout limit or NULL
634 int *timed_out = NULL; // set when timed out or NULL
635#endif
636
637 if (extra_arg != NULL)
638 {
639 stop_lnum = extra_arg->sa_stop_lnum;
640#ifdef FEAT_RELTIME
641 tm = extra_arg->sa_tm;
642 timed_out = &extra_arg->sa_timed_out;
643#endif
644 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645
646 if (search_regcomp(pat, RE_SEARCH, pat_use,
647 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
648 {
649 if ((options & SEARCH_MSG) && !rc_did_emsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100650 semsg(_("E383: Invalid search string: %s"), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651 return FAIL;
652 }
653
Bram Moolenaar280f1262006-01-30 00:14:18 +0000654 /*
655 * find the string
656 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100657 do // loop for count
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100659 // When not accepting a match at the start position set "extra_col" to
660 // a non-zero value. Don't do that when starting at MAXCOL, since
661 // MAXCOL + 1 is zero.
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200662 if (pos->col == MAXCOL)
663 start_char_len = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100664 // Watch out for the "col" being MAXCOL - 2, used in a closed fold.
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200665 else if (has_mbyte
666 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
667 && pos->col < MAXCOL - 2)
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100668 {
Bram Moolenaar82846a02018-02-09 18:09:54 +0100669 ptr = ml_get_buf(buf, pos->lnum, FALSE);
Bram Moolenaar8846ac52018-02-09 19:24:01 +0100670 if ((int)STRLEN(ptr) <= pos->col)
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200671 start_char_len = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100672 else
Bram Moolenaar82846a02018-02-09 18:09:54 +0100673 start_char_len = (*mb_ptr2len)(ptr + pos->col);
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100674 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100675 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200676 start_char_len = 1;
677 if (dir == FORWARD)
678 {
679 if (options & SEARCH_START)
680 extra_col = 0;
681 else
682 extra_col = start_char_len;
683 }
684 else
685 {
686 if (options & SEARCH_START)
687 extra_col = start_char_len;
688 else
689 extra_col = 0;
690 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100691
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100692 start_pos = *pos; // remember start pos for detecting no match
693 found = 0; // default: not found
694 at_first_line = TRUE; // default: start in first line
695 if (pos->lnum == 0) // correct lnum for when starting in line 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 {
697 pos->lnum = 1;
698 pos->col = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100699 at_first_line = FALSE; // not in first line now
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 }
701
702 /*
703 * Start searching in current line, unless searching backwards and
704 * we're in column 0.
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000705 * If we are searching backwards, in column 0, and not including the
706 * current position, gain some efficiency by skipping back a line.
707 * Otherwise begin the search in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 */
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000709 if (dir == BACKWARD && start_pos.col == 0
710 && (options & SEARCH_START) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 {
712 lnum = pos->lnum - 1;
713 at_first_line = FALSE;
714 }
715 else
716 lnum = pos->lnum;
717
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100718 for (loop = 0; loop <= 1; ++loop) // loop twice if 'wrapscan' set
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 {
720 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
721 lnum += dir, at_first_line = FALSE)
722 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100723 // Stop after checking "stop_lnum", if it's set.
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000724 if (stop_lnum != 0 && (dir == FORWARD
725 ? lnum > stop_lnum : lnum < stop_lnum))
726 break;
Bram Moolenaar76929292008-01-06 19:07:36 +0000727#ifdef FEAT_RELTIME
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100728 // Stop after passing the "tm" time limit.
Bram Moolenaar76929292008-01-06 19:07:36 +0000729 if (tm != NULL && profile_passed_limit(tm))
730 break;
731#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000732
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000734 * Look for a match somewhere in line "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100736 col = at_first_line && (options & SEARCH_COL) ? pos->col
737 : (colnr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 nmatched = vim_regexec_multi(&regmatch, win, buf,
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100739 lnum, col,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000740#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200741 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000742#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200743 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000744#endif
745 );
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100746 // Abort searching on an error (e.g., out of stack).
Bram Moolenaar53989552019-12-23 22:59:18 +0100747 if (called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200748#ifdef FEAT_RELTIME
749 || (timed_out != NULL && *timed_out)
750#endif
751 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 break;
753 if (nmatched > 0)
754 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100755 // match may actually be in another line when using \zs
Bram Moolenaar677ee682005-01-27 14:41:15 +0000756 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 endpos = regmatch.endpos[0];
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000758#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 submatch = first_submatch(&regmatch);
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000760#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100761 // "lnum" may be past end of buffer for "\n\zs".
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000762 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
763 ptr = (char_u *)"";
764 else
765 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766
767 /*
768 * Forward search in the first line: match should be after
769 * the start position. If not, continue at the end of the
770 * match (this is vi compatible) or on the next char.
771 */
772 if (dir == FORWARD && at_first_line)
773 {
774 match_ok = TRUE;
775 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000776 * When the match starts in a next line it's certainly
777 * past the start position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 * When match lands on a NUL the cursor will be put
779 * one back afterwards, compare with that position,
780 * otherwise "/$" will get stuck on end of line.
781 */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000782 while (matchpos.lnum == 0
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100783 && ((options & SEARCH_END) && first_match
Bram Moolenaar677ee682005-01-27 14:41:15 +0000784 ? (nmatched == 1
785 && (int)endpos.col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 < (int)start_pos.col + extra_col)
Bram Moolenaar677ee682005-01-27 14:41:15 +0000787 : ((int)matchpos.col
788 - (ptr[matchpos.col] == NUL)
789 < (int)start_pos.col + extra_col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 {
791 /*
792 * If vi-compatible searching, continue at the end
793 * of the match, otherwise continue one position
794 * forward.
795 */
796 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
797 {
798 if (nmatched > 1)
799 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100800 // end is in next line, thus no match in
801 // this line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 match_ok = FALSE;
803 break;
804 }
805 matchcol = endpos.col;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100806 // for empty match: advance one char
Bram Moolenaar677ee682005-01-27 14:41:15 +0000807 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 && ptr[matchcol] != NUL)
809 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 if (has_mbyte)
811 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000812 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 ++matchcol;
815 }
816 }
817 else
818 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000819 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 if (ptr[matchcol] != NUL)
821 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000823 matchcol += (*mb_ptr2len)(ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 + matchcol);
825 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 ++matchcol;
827 }
828 }
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200829 if (matchcol == 0 && (options & SEARCH_START))
Bram Moolenaardb333a52013-03-19 15:27:48 +0100830 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 if (ptr[matchcol] == NUL
832 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000833 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000834 matchcol,
835#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200836 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000837#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200838 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000839#endif
840 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 {
842 match_ok = FALSE;
843 break;
844 }
Bram Moolenaar677ee682005-01-27 14:41:15 +0000845 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 endpos = regmatch.endpos[0];
847# ifdef FEAT_EVAL
848 submatch = first_submatch(&regmatch);
849# endif
850
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100851 // Need to get the line pointer again, a
852 // multi-line search may have made it invalid.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000853 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 }
855 if (!match_ok)
856 continue;
857 }
858 if (dir == BACKWARD)
859 {
860 /*
861 * Now, if there are multiple matches on this line,
862 * we have to get the last one. Or the last one before
863 * the cursor, if we're on that line.
864 * When putting the new cursor at the end, compare
865 * relative to the end of the match.
866 */
867 match_ok = FALSE;
868 for (;;)
869 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100870 // Remember a position that is before the start
871 // position, we use it if it's the last match in
872 // the line. Always accept a position after
873 // wrapping around.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000874 if (loop
875 || ((options & SEARCH_END)
876 ? (lnum + regmatch.endpos[0].lnum
877 < start_pos.lnum
878 || (lnum + regmatch.endpos[0].lnum
879 == start_pos.lnum
880 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200881 < (int)start_pos.col
882 + extra_col))
Bram Moolenaar677ee682005-01-27 14:41:15 +0000883 : (lnum + regmatch.startpos[0].lnum
884 < start_pos.lnum
885 || (lnum + regmatch.startpos[0].lnum
886 == start_pos.lnum
887 && (int)regmatch.startpos[0].col
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200888 < (int)start_pos.col
889 + extra_col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000892 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 endpos = regmatch.endpos[0];
894# ifdef FEAT_EVAL
895 submatch = first_submatch(&regmatch);
896# endif
897 }
898 else
899 break;
900
901 /*
902 * We found a valid match, now check if there is
903 * another one after it.
904 * If vi-compatible searching, continue at the end
905 * of the match, otherwise continue one position
906 * forward.
907 */
908 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
909 {
910 if (nmatched > 1)
911 break;
912 matchcol = endpos.col;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100913 // for empty match: advance one char
Bram Moolenaar677ee682005-01-27 14:41:15 +0000914 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 && ptr[matchcol] != NUL)
916 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 if (has_mbyte)
918 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000919 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 ++matchcol;
922 }
923 }
924 else
925 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100926 // Stop when the match is in a next line.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000927 if (matchpos.lnum > 0)
928 break;
929 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 if (ptr[matchcol] != NUL)
931 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 if (has_mbyte)
933 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000934 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 ++matchcol;
937 }
938 }
939 if (ptr[matchcol] == NUL
940 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000941 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000942 matchcol,
943#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200944 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000945#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200946 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000947#endif
948 )) == 0)
Bram Moolenaar9d322762018-02-09 16:04:25 +0100949 {
950#ifdef FEAT_RELTIME
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100951 // If the search timed out, we did find a match
952 // but it might be the wrong one, so that's not
953 // OK.
Bram Moolenaar9d322762018-02-09 16:04:25 +0100954 if (timed_out != NULL && *timed_out)
955 match_ok = FALSE;
956#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 break;
Bram Moolenaar9d322762018-02-09 16:04:25 +0100958 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100960 // Need to get the line pointer again, a
961 // multi-line search may have made it invalid.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000962 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 }
964
965 /*
966 * If there is only a match after the cursor, skip
967 * this match.
968 */
969 if (!match_ok)
970 continue;
971 }
972
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100973 // With the SEARCH_END option move to the last character
974 // of the match. Don't do it for an empty match, end
975 // should be same as start then.
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200976 if ((options & SEARCH_END) && !(options & SEARCH_NOOF)
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000977 && !(matchpos.lnum == endpos.lnum
978 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100980 // For a match in the first column, set the position
981 // on the NUL in the previous line.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000982 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000983 pos->col = endpos.col;
984 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000985 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100986 if (pos->lnum > 1) // just in case
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000987 {
988 --pos->lnum;
989 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
990 pos->lnum, FALSE));
991 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000992 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000993 else
994 {
995 --pos->col;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000996 if (has_mbyte
997 && pos->lnum <= buf->b_ml.ml_line_count)
998 {
999 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1000 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
1001 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001002 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001003 if (end_pos != NULL)
1004 {
1005 end_pos->lnum = lnum + matchpos.lnum;
1006 end_pos->col = matchpos.col;
1007 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 }
1009 else
1010 {
Bram Moolenaar677ee682005-01-27 14:41:15 +00001011 pos->lnum = lnum + matchpos.lnum;
1012 pos->col = matchpos.col;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001013 if (end_pos != NULL)
1014 {
1015 end_pos->lnum = lnum + endpos.lnum;
1016 end_pos->col = endpos.col;
1017 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019 pos->coladd = 0;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001020 if (end_pos != NULL)
1021 end_pos->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 found = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +01001023 first_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001025 // Set variables used for 'incsearch' highlighting.
Bram Moolenaar677ee682005-01-27 14:41:15 +00001026 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 search_match_endcol = endpos.col;
1028 break;
1029 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001030 line_breakcheck(); // stop if ctrl-C typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 if (got_int)
1032 break;
1033
1034#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001035 // Cancel searching if a character was typed. Used for
1036 // 'incsearch'. Don't check too often, that would slowdown
1037 // searching too much.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 if ((options & SEARCH_PEEK)
1039 && ((lnum - pos->lnum) & 0x3f) == 0
1040 && char_avail())
1041 {
1042 break_loop = TRUE;
1043 break;
1044 }
1045#endif
1046
1047 if (loop && lnum == start_pos.lnum)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001048 break; // if second loop, stop where started
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049 }
1050 at_first_line = FALSE;
1051
1052 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001053 * Stop the search if wrapscan isn't set, "stop_lnum" is
1054 * specified, after an interrupt, after a match and after looping
1055 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 */
Bram Moolenaar53989552019-12-23 22:59:18 +01001057 if (!p_ws || stop_lnum != 0 || got_int
1058 || called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001059#ifdef FEAT_RELTIME
1060 || (timed_out != NULL && *timed_out)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001061#endif
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001062#ifdef FEAT_SEARCH_EXTRA
1063 || break_loop
1064#endif
1065 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 break;
1067
1068 /*
1069 * If 'wrapscan' is set we continue at the other end of the file.
1070 * If 'shortmess' does not contain 's', we give a message.
1071 * This message is also remembered in keep_msg for when the screen
1072 * is redrawn. The keep_msg is cleared whenever another message is
1073 * written.
1074 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001075 if (dir == BACKWARD) // start second loop at the other end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00001079 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
1080 give_warning((char_u *)_(dir == BACKWARD
1081 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001082 if (extra_arg != NULL)
1083 extra_arg->sa_wrapped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 }
Bram Moolenaar53989552019-12-23 22:59:18 +01001085 if (got_int || called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001086#ifdef FEAT_RELTIME
1087 || (timed_out != NULL && *timed_out)
1088#endif
Bram Moolenaar78a15312009-05-15 19:33:18 +00001089#ifdef FEAT_SEARCH_EXTRA
1090 || break_loop
1091#endif
1092 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 break;
1094 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001095 while (--count > 0 && found); // stop after count matches or no match
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096
Bram Moolenaar473de612013-06-08 18:19:48 +02001097 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001099 if (!found) // did not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100 {
1101 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001102 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 else if ((options & SEARCH_MSG) == SEARCH_MSG)
1104 {
1105 if (p_ws)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001106 semsg(_(e_patnotf2), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107 else if (lnum == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001108 semsg(_("E384: search hit TOP without match for: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 mr_pattern);
1110 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001111 semsg(_("E385: search hit BOTTOM without match for: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112 mr_pattern);
1113 }
1114 return FAIL;
1115 }
1116
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001117 // A pattern like "\n\zs" may go past the last line.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001118 if (pos->lnum > buf->b_ml.ml_line_count)
1119 {
1120 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001121 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001122 if (pos->col > 0)
1123 --pos->col;
1124 }
1125
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 return submatch + 1;
1127}
1128
1129#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001130 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001131set_search_direction(int cdir)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001132{
1133 spats[0].off.dir = cdir;
1134}
1135
1136 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001137set_vv_searchforward(void)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001138{
1139 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1140}
1141
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142/*
1143 * Return the number of the first subpat that matched.
Bram Moolenaarad4d8a12015-12-28 19:20:36 +01001144 * Return zero if none of them matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 */
1146 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001147first_submatch(regmmatch_T *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148{
1149 int submatch;
1150
1151 for (submatch = 1; ; ++submatch)
1152 {
1153 if (rp->startpos[submatch].lnum >= 0)
1154 break;
1155 if (submatch == 9)
1156 {
1157 submatch = 0;
1158 break;
1159 }
1160 }
1161 return submatch;
1162}
1163#endif
1164
1165/*
1166 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001167 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 * If 'dirc' is 0: use previous dir.
1169 * If 'pat' is NULL or empty : use previous string.
1170 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1171 * If 'options & SEARCH_ECHO': echo the search command and handle options
1172 * If 'options & SEARCH_MSG' : may give error message
1173 * If 'options & SEARCH_OPT' : interpret optional flags
1174 * If 'options & SEARCH_HIS' : put search pattern in history
1175 * If 'options & SEARCH_NOOF': don't add offset to position
1176 * If 'options & SEARCH_MARK': set previous context mark
1177 * If 'options & SEARCH_KEEP': keep previous search pattern
1178 * If 'options & SEARCH_START': accept match at curpos itself
1179 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1180 *
1181 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1182 * makes the movement linewise without moving the match position.
1183 *
Bram Moolenaarb6c27352015-03-05 19:57:49 +01001184 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 */
1186 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001187do_search(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001188 oparg_T *oap, // can be NULL
1189 int dirc, // '/' or '?'
Bram Moolenaarc036e872020-02-21 21:30:52 +01001190 int search_delim, // the delimiter for the search, e.g. '%' in s%regex%replacement%
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001191 char_u *pat,
1192 long count,
1193 int options,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001194 searchit_arg_T *sia) // optional arguments or NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001196 pos_T pos; // position of the last match
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197 char_u *searchstr;
Bram Moolenaarc3328162019-07-23 22:15:25 +02001198 soffset_T old_off;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001199 int retval; // Return value
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 char_u *p;
1201 long c;
1202 char_u *dircp;
1203 char_u *strcopy = NULL;
1204 char_u *ps;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001205 char_u *msgbuf = NULL;
1206 size_t len;
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001207 int has_offset = FALSE;
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02001208#define SEARCH_STAT_BUF_LEN 12
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209
1210 /*
1211 * A line offset is not remembered, this is vi compatible.
1212 */
1213 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1214 {
1215 spats[0].off.line = FALSE;
1216 spats[0].off.off = 0;
1217 }
1218
1219 /*
1220 * Save the values for when (options & SEARCH_KEEP) is used.
1221 * (there is no "if ()" around this because gcc wants them initialized)
1222 */
1223 old_off = spats[0].off;
1224
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001225 pos = curwin->w_cursor; // start searching at the cursor position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226
1227 /*
1228 * Find out the direction of the search.
1229 */
1230 if (dirc == 0)
1231 dirc = spats[0].off.dir;
1232 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001233 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001235#if defined(FEAT_EVAL)
1236 set_vv_searchforward();
1237#endif
1238 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 if (options & SEARCH_REV)
1240 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001241#ifdef MSWIN
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001242 // There is a bug in the Visual C++ 2.2 compiler which means that
1243 // dirc always ends up being '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 dirc = (dirc == '/') ? '?' : '/';
1245#else
1246 if (dirc == '/')
1247 dirc = '?';
1248 else
1249 dirc = '/';
1250#endif
1251 }
1252
1253#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001254 // If the cursor is in a closed fold, don't find another match in the same
1255 // fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 if (dirc == '/')
1257 {
1258 if (hasFolding(pos.lnum, NULL, &pos.lnum))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001259 pos.col = MAXCOL - 2; // avoid overflow when adding 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 }
1261 else
1262 {
1263 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1264 pos.col = 0;
1265 }
1266#endif
1267
1268#ifdef FEAT_SEARCH_EXTRA
1269 /*
1270 * Turn 'hlsearch' highlighting back on.
1271 */
1272 if (no_hlsearch && !(options & SEARCH_KEEP))
1273 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001274 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02001275 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 }
1277#endif
1278
1279 /*
1280 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1281 */
1282 for (;;)
1283 {
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001284 int show_top_bot_msg = FALSE;
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02001285
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 searchstr = pat;
1287 dircp = NULL;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001288 // use previous pattern
Bram Moolenaarc036e872020-02-21 21:30:52 +01001289 if (pat == NULL || *pat == NUL || *pat == search_delim)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001291 if (spats[RE_SEARCH].pat == NULL) // no previous pattern
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292 {
Bram Moolenaarea683da2016-09-09 21:41:34 +02001293 searchstr = spats[RE_SUBST].pat;
1294 if (searchstr == NULL)
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001295 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001296 emsg(_(e_noprevre));
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001297 retval = 0;
1298 goto end_do_search;
1299 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001301 else
1302 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001303 // make search_regcomp() use spats[RE_SEARCH].pat
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001304 searchstr = (char_u *)"";
1305 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 }
1307
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001308 if (pat != NULL && *pat != NUL) // look for (new) offset
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 {
1310 /*
1311 * Find end of regular expression.
1312 * If there is a matching '/' or '?', toss it.
1313 */
1314 ps = strcopy;
Bram Moolenaare8c4abb2020-04-02 21:13:25 +02001315 p = skip_regexp_ex(pat, search_delim, (int)p_magic, &strcopy, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 if (strcopy != ps)
1317 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001318 // made a copy of "pat" to change "\?" to "?"
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001319 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 pat = strcopy;
1321 searchstr = strcopy;
1322 }
Bram Moolenaarc036e872020-02-21 21:30:52 +01001323 if (*p == search_delim)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001325 dircp = p; // remember where we put the NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 *p++ = NUL;
1327 }
1328 spats[0].off.line = FALSE;
1329 spats[0].off.end = FALSE;
1330 spats[0].off.off = 0;
1331 /*
1332 * Check for a line offset or a character offset.
1333 * For get_address (echo off) we don't check for a character
1334 * offset, because it is meaningless and the 's' could be a
1335 * substitute command.
1336 */
1337 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1338 spats[0].off.line = TRUE;
1339 else if ((options & SEARCH_OPT) &&
1340 (*p == 'e' || *p == 's' || *p == 'b'))
1341 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001342 if (*p == 'e') // end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 spats[0].off.end = SEARCH_END;
1344 ++p;
1345 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001346 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') // got an offset
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001348 // 'nr' or '+nr' or '-nr'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1350 spats[0].off.off = atol((char *)p);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001351 else if (*p == '-') // single '-'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 spats[0].off.off = -1;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001353 else // single '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 spats[0].off.off = 1;
1355 ++p;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001356 while (VIM_ISDIGIT(*p)) // skip number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 ++p;
1358 }
1359
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001360 // compute length of search command for get_address()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 searchcmdlen += (int)(p - pat);
1362
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001363 pat = p; // put pat after search command
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 }
1365
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001366 if ((options & SEARCH_ECHO) && messaging() &&
1367 !msg_silent &&
1368 (!cmd_silent || !shortmess(SHM_SEARCHCOUNT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 char_u *trunc;
Bram Moolenaar984f0312019-05-24 13:11:47 +02001371 char_u off_buf[40];
Bram Moolenaard33a7642019-05-24 17:56:14 +02001372 size_t off_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001374 // Compute msg_row early.
1375 msg_start();
1376
Bram Moolenaar984f0312019-05-24 13:11:47 +02001377 // Get the offset, so we know how long it is.
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001378 if (!cmd_silent &&
1379 (spats[0].off.line || spats[0].off.end || spats[0].off.off))
Bram Moolenaar984f0312019-05-24 13:11:47 +02001380 {
1381 p = off_buf;
1382 *p++ = dirc;
1383 if (spats[0].off.end)
1384 *p++ = 'e';
1385 else if (!spats[0].off.line)
1386 *p++ = 's';
1387 if (spats[0].off.off > 0 || spats[0].off.line)
1388 *p++ = '+';
1389 *p = NUL;
1390 if (spats[0].off.off != 0 || spats[0].off.line)
1391 sprintf((char *)p, "%ld", spats[0].off.off);
1392 off_len = STRLEN(off_buf);
1393 }
1394
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 if (*searchstr == NUL)
Bram Moolenaar2fb8f682018-12-01 13:14:45 +01001396 p = spats[0].pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 else
1398 p = searchstr;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001399
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001400 if (!shortmess(SHM_SEARCHCOUNT) || cmd_silent)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001401 {
1402 // Reserve enough space for the search pattern + offset +
Bram Moolenaar984f0312019-05-24 13:11:47 +02001403 // search stat. Use all the space available, so that the
1404 // search state is right aligned. If there is not enough space
1405 // msg_strtrunc() will shorten in the middle.
Bram Moolenaar19e8ac72019-09-03 22:23:38 +02001406 if (msg_scrolled != 0 && !cmd_silent)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001407 // Use all the columns.
1408 len = (int)(Rows - msg_row) * Columns - 1;
1409 else
1410 // Use up to 'showcmd' column.
1411 len = (int)(Rows - msg_row - 1) * Columns + sc_col - 1;
Bram Moolenaar984f0312019-05-24 13:11:47 +02001412 if (len < STRLEN(p) + off_len + SEARCH_STAT_BUF_LEN + 3)
1413 len = STRLEN(p) + off_len + SEARCH_STAT_BUF_LEN + 3;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001414 }
1415 else
1416 // Reserve enough space for the search pattern + offset.
Bram Moolenaar984f0312019-05-24 13:11:47 +02001417 len = STRLEN(p) + off_len + 3;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001418
Bram Moolenaar880e4d92020-04-11 21:31:28 +02001419 vim_free(msgbuf);
Bram Moolenaar51e14382019-05-25 20:21:28 +02001420 msgbuf = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 if (msgbuf != NULL)
1422 {
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001423 vim_memset(msgbuf, ' ', len);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001424 msgbuf[len - 1] = NUL;
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001425 // do not fill the msgbuf buffer, if cmd_silent is set, leave it
1426 // empty for the search_stat feature.
1427 if (!cmd_silent)
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001428 {
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001429 msgbuf[0] = dirc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001431 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1432 {
1433 // Use a space to draw the composing char on.
1434 msgbuf[1] = ' ';
1435 mch_memmove(msgbuf + 2, p, STRLEN(p));
1436 }
1437 else
1438 mch_memmove(msgbuf + 1, p, STRLEN(p));
1439 if (off_len > 0)
1440 mch_memmove(msgbuf + STRLEN(p) + 1, off_buf, off_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001442 trunc = msg_strtrunc(msgbuf, TRUE);
1443 if (trunc != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 {
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001445 vim_free(msgbuf);
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001446 msgbuf = trunc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001449 #ifdef FEAT_RIGHTLEFT
1450 // The search pattern could be shown on the right in rightleft
1451 // mode, but the 'ruler' and 'showcmd' area use it too, thus
1452 // it would be blanked out again very soon. Show it on the
1453 // left, but do reverse the text.
1454 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1455 {
1456 char_u *r;
1457 size_t pat_len;
1458
1459 r = reverse_text(msgbuf);
1460 if (r != NULL)
1461 {
1462 vim_free(msgbuf);
1463 msgbuf = r;
1464 // move reversed text to beginning of buffer
1465 while (*r != NUL && *r == ' ')
1466 r++;
1467 pat_len = msgbuf + STRLEN(msgbuf) - r;
1468 mch_memmove(msgbuf, r, pat_len);
1469 // overwrite old text
1470 if ((size_t)(r - msgbuf) >= pat_len)
1471 vim_memset(r, ' ', pat_len);
1472 else
1473 vim_memset(msgbuf + pat_len, ' ', r - msgbuf);
1474 }
1475 }
1476 #endif
1477 msg_outtrans(msgbuf);
1478 msg_clr_eos();
1479 msg_check();
1480
1481 gotocmdline(FALSE);
1482 out_flush();
1483 msg_nowait = TRUE; // don't wait for this message
1484 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 }
1486 }
1487
1488 /*
1489 * If there is a character offset, subtract it from the current
1490 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001491 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 * This is not done for a line offset, because then we would not be vi
1493 * compatible.
1494 */
Bram Moolenaared203462004-06-16 11:19:22 +00001495 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 {
1497 if (spats[0].off.off > 0)
1498 {
1499 for (c = spats[0].off.off; c; --c)
1500 if (decl(&pos) == -1)
1501 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001502 if (c) // at start of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001504 pos.lnum = 0; // allow lnum == 0 here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 pos.col = MAXCOL;
1506 }
1507 }
1508 else
1509 {
1510 for (c = spats[0].off.off; c; ++c)
1511 if (incl(&pos) == -1)
1512 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001513 if (c) // at end of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 {
1515 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1516 pos.col = 0;
1517 }
1518 }
1519 }
1520
Bram Moolenaar14184a32019-02-16 15:10:30 +01001521 c = searchit(curwin, curbuf, &pos, NULL,
1522 dirc == '/' ? FORWARD : BACKWARD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 searchstr, count, spats[0].off.end + (options &
1524 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1525 + SEARCH_MSG + SEARCH_START
1526 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001527 RE_LAST, sia);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528
1529 if (dircp != NULL)
Bram Moolenaarc036e872020-02-21 21:30:52 +01001530 *dircp = search_delim; // restore second '/' or '?' for normal_cmd()
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001531
1532 if (!shortmess(SHM_SEARCH)
1533 && ((dirc == '/' && LT_POS(pos, curwin->w_cursor))
1534 || (dirc == '?' && LT_POS(curwin->w_cursor, pos))))
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02001535 show_top_bot_msg = TRUE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001536
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 if (c == FAIL)
1538 {
1539 retval = 0;
1540 goto end_do_search;
1541 }
1542 if (spats[0].off.end && oap != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001543 oap->inclusive = TRUE; // 'e' includes last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001545 retval = 1; // pattern found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546
1547 /*
1548 * Add character and/or line offset
1549 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001550 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 {
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001552 pos_T org_pos = pos;
1553
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001554 if (spats[0].off.line) // Add the offset to the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 {
1556 c = pos.lnum + spats[0].off.off;
1557 if (c < 1)
1558 pos.lnum = 1;
1559 else if (c > curbuf->b_ml.ml_line_count)
1560 pos.lnum = curbuf->b_ml.ml_line_count;
1561 else
1562 pos.lnum = c;
1563 pos.col = 0;
1564
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001565 retval = 2; // pattern found, line offset added
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001567 else if (pos.col < MAXCOL - 2) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001569 // to the right, check for end of file
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001570 c = spats[0].off.off;
1571 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001573 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 if (incl(&pos) == -1)
1575 break;
1576 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001577 // to the left, check for start of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 else
1579 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001580 while (c++ < 0)
1581 if (decl(&pos) == -1)
1582 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 }
1584 }
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001585 if (!EQUAL_POS(pos, org_pos))
1586 has_offset = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 }
1588
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001589 // Show [1/15] if 'S' is not in 'shortmess'.
1590 if ((options & SEARCH_ECHO)
1591 && messaging()
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001592 && !msg_silent
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001593 && c != FAIL
1594 && !shortmess(SHM_SEARCHCOUNT)
1595 && msgbuf != NULL)
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001596 search_stat(dirc, &pos, show_top_bot_msg, msgbuf,
1597 (count != 1 || has_offset));
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001598
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 /*
1600 * The search command can be followed by a ';' to do another search.
1601 * For example: "/pat/;/foo/+3;?bar"
1602 * This is like doing another search command, except:
1603 * - The remembered direction '/' or '?' is from the first search.
1604 * - When an error happens the cursor isn't moved at all.
1605 * Don't do this when called by get_address() (it handles ';' itself).
1606 */
1607 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1608 break;
1609
1610 dirc = *++pat;
Bram Moolenaarc036e872020-02-21 21:30:52 +01001611 search_delim = dirc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 if (dirc != '?' && dirc != '/')
1613 {
1614 retval = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001615 emsg(_("E386: Expected '?' or '/' after ';'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 goto end_do_search;
1617 }
1618 ++pat;
1619 }
1620
1621 if (options & SEARCH_MARK)
1622 setpcmark();
1623 curwin->w_cursor = pos;
1624 curwin->w_set_curswant = TRUE;
1625
1626end_do_search:
Bram Moolenaarac8400d2014-01-14 21:31:34 +01001627 if ((options & SEARCH_KEEP) || cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 spats[0].off = old_off;
1629 vim_free(strcopy);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001630 vim_free(msgbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631
1632 return retval;
1633}
1634
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635/*
1636 * search_for_exact_line(buf, pos, dir, pat)
1637 *
1638 * Search for a line starting with the given pattern (ignoring leading
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001639 * white-space), starting from pos and going in direction "dir". "pos" will
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640 * contain the position of the match found. Blank lines match only if
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001641 * ADDING is set. If p_ic is set then the pattern must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 * Return OK for success, or FAIL if no line found.
1643 */
1644 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001645search_for_exact_line(
1646 buf_T *buf,
1647 pos_T *pos,
1648 int dir,
1649 char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650{
1651 linenr_T start = 0;
1652 char_u *ptr;
1653 char_u *p;
1654
1655 if (buf->b_ml.ml_line_count == 0)
1656 return FAIL;
1657 for (;;)
1658 {
1659 pos->lnum += dir;
1660 if (pos->lnum < 1)
1661 {
1662 if (p_ws)
1663 {
1664 pos->lnum = buf->b_ml.ml_line_count;
1665 if (!shortmess(SHM_SEARCH))
1666 give_warning((char_u *)_(top_bot_msg), TRUE);
1667 }
1668 else
1669 {
1670 pos->lnum = 1;
1671 break;
1672 }
1673 }
1674 else if (pos->lnum > buf->b_ml.ml_line_count)
1675 {
1676 if (p_ws)
1677 {
1678 pos->lnum = 1;
1679 if (!shortmess(SHM_SEARCH))
1680 give_warning((char_u *)_(bot_top_msg), TRUE);
1681 }
1682 else
1683 {
1684 pos->lnum = 1;
1685 break;
1686 }
1687 }
1688 if (pos->lnum == start)
1689 break;
1690 if (start == 0)
1691 start = pos->lnum;
1692 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1693 p = skipwhite(ptr);
1694 pos->col = (colnr_T) (p - ptr);
1695
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001696 // when adding lines the matching line may be empty but it is not
1697 // ignored because we are interested in the next line -- Acevedo
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001698 if ((compl_cont_status & CONT_ADDING)
1699 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 {
1701 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1702 return OK;
1703 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001704 else if (*p != NUL) // ignore empty lines
1705 { // expanding lines or words
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001706 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1707 : STRNCMP(p, pat, compl_length)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 return OK;
1709 }
1710 }
1711 return FAIL;
1712}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713
1714/*
1715 * Character Searches
1716 */
1717
1718/*
1719 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1720 * position of the character, otherwise move to just before the char.
1721 * Do this "cap->count1" times.
1722 * Return FAIL or OK.
1723 */
1724 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001725searchc(cmdarg_T *cap, int t_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001727 int c = cap->nchar; // char to search for
1728 int dir = cap->arg; // TRUE for searching forward
1729 long count = cap->count1; // repeat count
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 int col;
1731 char_u *p;
1732 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001733 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001735 if (c != NUL) // normal search: remember args for repeat
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001737 if (!KeyStuffed) // don't remember when redoing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001739 *lastc = c;
1740 set_csearch_direction(dir);
1741 set_csearch_until(t_cmd);
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001742 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 if (cap->ncharC1 != 0)
1744 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001745 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1,
1746 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 if (cap->ncharC2 != 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001748 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2,
1749 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 }
1752 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001753 else // repeat previous search
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 {
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001755 if (*lastc == NUL && lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 return FAIL;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001757 if (dir) // repeat in opposite direction
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 dir = -lastcdir;
1759 else
1760 dir = lastcdir;
1761 t_cmd = last_t_cmd;
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001762 c = *lastc;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001763 // For multi-byte re-use last lastc_bytes[] and lastc_bytelen.
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001764
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001765 // Force a move of at least one char, so ";" and "," will move the
1766 // cursor, even if the cursor is right in front of char we are looking
1767 // at.
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001768 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001769 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 }
1771
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001772 if (dir == BACKWARD)
1773 cap->oap->inclusive = FALSE;
1774 else
1775 cap->oap->inclusive = TRUE;
1776
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 p = ml_get_curline();
1778 col = curwin->w_cursor.col;
1779 len = (int)STRLEN(p);
1780
1781 while (count--)
1782 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 if (has_mbyte)
1784 {
1785 for (;;)
1786 {
1787 if (dir > 0)
1788 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001789 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 if (col >= len)
1791 return FAIL;
1792 }
1793 else
1794 {
1795 if (col == 0)
1796 return FAIL;
1797 col -= (*mb_head_off)(p, p + col - 1) + 1;
1798 }
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001799 if (lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001801 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 break;
1803 }
Bram Moolenaar66727e12017-03-01 22:17:05 +01001804 else if (STRNCMP(p + col, lastc_bytes, lastc_bytelen) == 0
Bram Moolenaarb129a442016-12-01 17:25:20 +01001805 && stop)
Bram Moolenaar66727e12017-03-01 22:17:05 +01001806 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001807 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808 }
1809 }
1810 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 {
1812 for (;;)
1813 {
1814 if ((col += dir) < 0 || col >= len)
1815 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001816 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001818 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 }
1820 }
1821 }
1822
1823 if (t_cmd)
1824 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001825 // backup to before the character (possibly double-byte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 col -= dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 if (has_mbyte)
1828 {
1829 if (dir < 0)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001830 // Landed on the search char which is lastc_bytelen long
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001831 col += lastc_bytelen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001833 // To previous char, which may be multi-byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 col -= (*mb_head_off)(p, p + col);
1835 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 }
1837 curwin->w_cursor.col = col;
1838
1839 return OK;
1840}
1841
1842/*
1843 * "Other" Searches
1844 */
1845
1846/*
1847 * findmatch - find the matching paren or brace
1848 *
1849 * Improvement over vi: Braces inside quotes are ignored.
1850 */
1851 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001852findmatch(oparg_T *oap, int initc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853{
1854 return findmatchlimit(oap, initc, 0, 0);
1855}
1856
1857/*
1858 * Return TRUE if the character before "linep[col]" equals "ch".
1859 * Return FALSE if "col" is zero.
1860 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1861 * is NULL.
1862 * Handles multibyte string correctly.
1863 */
1864 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001865check_prevcol(
1866 char_u *linep,
1867 int col,
1868 int ch,
1869 int *prevcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870{
1871 --col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 if (col > 0 && has_mbyte)
1873 col -= (*mb_head_off)(linep, linep + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 if (prevcol)
1875 *prevcol = col;
1876 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1877}
1878
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001879/*
1880 * Raw string start is found at linep[startpos.col - 1].
1881 * Return TRUE if the matching end can be found between startpos and endpos.
1882 */
1883 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001884find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos)
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001885{
1886 char_u *p;
1887 char_u *delim_copy;
1888 size_t delim_len;
1889 linenr_T lnum;
1890 int found = FALSE;
1891
1892 for (p = linep + startpos->col + 1; *p && *p != '('; ++p)
1893 ;
1894 delim_len = (p - linep) - startpos->col - 1;
Bram Moolenaar6ed535d2015-08-26 23:01:21 +02001895 delim_copy = vim_strnsave(linep + startpos->col + 1, (int)delim_len);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001896 if (delim_copy == NULL)
1897 return FALSE;
1898 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum)
1899 {
1900 char_u *line = ml_get(lnum);
1901
1902 for (p = line + (lnum == startpos->lnum
1903 ? startpos->col + 1 : 0); *p; ++p)
1904 {
1905 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col)
1906 break;
1907 if (*p == ')' && p[delim_len + 1] == '"'
1908 && STRNCMP(delim_copy, p + 1, delim_len) == 0)
1909 {
1910 found = TRUE;
1911 break;
1912 }
1913 }
1914 if (found)
1915 break;
1916 }
1917 vim_free(delim_copy);
1918 return found;
1919}
1920
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921/*
Bram Moolenaar556ae8e2019-11-21 22:27:22 +01001922 * Check matchpairs option for "*initc".
1923 * If there is a match set "*initc" to the matching character and "*findc" to
1924 * the opposite character. Set "*backwards" to the direction.
1925 * When "switchit" is TRUE swap the direction.
1926 */
1927 static void
1928find_mps_values(
1929 int *initc,
1930 int *findc,
1931 int *backwards,
1932 int switchit)
1933{
1934 char_u *ptr;
1935
1936 ptr = curbuf->b_p_mps;
1937 while (*ptr != NUL)
1938 {
1939 if (has_mbyte)
1940 {
1941 char_u *prev;
1942
1943 if (mb_ptr2char(ptr) == *initc)
1944 {
1945 if (switchit)
1946 {
1947 *findc = *initc;
1948 *initc = mb_ptr2char(ptr + mb_ptr2len(ptr) + 1);
1949 *backwards = TRUE;
1950 }
1951 else
1952 {
1953 *findc = mb_ptr2char(ptr + mb_ptr2len(ptr) + 1);
1954 *backwards = FALSE;
1955 }
1956 return;
1957 }
1958 prev = ptr;
1959 ptr += mb_ptr2len(ptr) + 1;
1960 if (mb_ptr2char(ptr) == *initc)
1961 {
1962 if (switchit)
1963 {
1964 *findc = *initc;
1965 *initc = mb_ptr2char(prev);
1966 *backwards = FALSE;
1967 }
1968 else
1969 {
1970 *findc = mb_ptr2char(prev);
1971 *backwards = TRUE;
1972 }
1973 return;
1974 }
1975 ptr += mb_ptr2len(ptr);
1976 }
1977 else
1978 {
1979 if (*ptr == *initc)
1980 {
1981 if (switchit)
1982 {
1983 *backwards = TRUE;
1984 *findc = *initc;
1985 *initc = ptr[2];
1986 }
1987 else
1988 {
1989 *backwards = FALSE;
1990 *findc = ptr[2];
1991 }
1992 return;
1993 }
1994 ptr += 2;
1995 if (*ptr == *initc)
1996 {
1997 if (switchit)
1998 {
1999 *backwards = FALSE;
2000 *findc = *initc;
2001 *initc = ptr[-2];
2002 }
2003 else
2004 {
2005 *backwards = TRUE;
2006 *findc = ptr[-2];
2007 }
2008 return;
2009 }
2010 ++ptr;
2011 }
2012 if (*ptr == ',')
2013 ++ptr;
2014 }
2015}
2016
2017/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 * findmatchlimit -- find the matching paren or brace, if it exists within
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002019 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling
2020 * off the edge of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 *
2022 * "initc" is the character to find a match for. NUL means to find the
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002023 * character at or after the cursor. Special values:
2024 * '*' look for C-style comment / *
2025 * '/' look for C-style comment / *, ignoring comment-end
2026 * '#' look for preprocessor directives
2027 * 'R' look for raw string start: R"delim(text)delim" (only backwards)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 *
2029 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
2030 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
2031 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
2032 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002033 *
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002034 * "oap" is only used to set oap->motion_type for a linewise motion, it can be
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002035 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 */
2037
2038 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002039findmatchlimit(
2040 oparg_T *oap,
2041 int initc,
2042 int flags,
2043 int maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002045 static pos_T pos; // current search position
2046 int findc = 0; // matching brace
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 int c;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002048 int count = 0; // cumulative number of braces
2049 int backwards = FALSE; // init for gcc
2050 int raw_string = FALSE; // search for raw string
2051 int inquote = FALSE; // TRUE when inside quotes
2052 char_u *linep; // pointer to current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 char_u *ptr;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002054 int do_quotes; // check for quotes in current line
2055 int at_start; // do_quotes value at start position
2056 int hash_dir = 0; // Direction searched for # things
2057 int comment_dir = 0; // Direction searched for comments
2058 pos_T match_pos; // Where last slash-star was found
2059 int start_in_quotes; // start position is in quotes
2060 int traveled = 0; // how far we've searched so far
2061 int ignore_cend = FALSE; // ignore comment end
2062 int cpo_match; // vi compatible matching
2063 int cpo_bsl; // don't recognize backslashes
2064 int match_escaped = 0; // search for escaped match
2065 int dir; // Direction to search
2066 int comment_col = MAXCOL; // start of / / comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002067#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002068 int lispcomm = FALSE; // inside of Lisp-style comment
2069 int lisp = curbuf->b_p_lisp; // engage Lisp-specific hacks ;)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002070#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071
2072 pos = curwin->w_cursor;
Bram Moolenaarc56c4592013-08-14 17:45:29 +02002073 pos.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 linep = ml_get(pos.lnum);
2075
2076 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
2077 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
2078
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002079 // Direction to search when initc is '/', '*' or '#'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 if (flags & FM_BACKWARD)
2081 dir = BACKWARD;
2082 else if (flags & FM_FORWARD)
2083 dir = FORWARD;
2084 else
2085 dir = 0;
2086
2087 /*
2088 * if initc given, look in the table for the matching character
2089 * '/' and '*' are special cases: look for start or end of comment.
2090 * When '/' is used, we ignore running backwards into an star-slash, for
2091 * "[*" command, we just want to find any comment.
2092 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002093 if (initc == '/' || initc == '*' || initc == 'R')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 {
2095 comment_dir = dir;
2096 if (initc == '/')
2097 ignore_cend = TRUE;
2098 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002099 raw_string = (initc == 'R');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 initc = NUL;
2101 }
2102 else if (initc != '#' && initc != NUL)
2103 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002104 find_mps_values(&initc, &findc, &backwards, TRUE);
2105 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106 return NULL;
2107 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 else
2109 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002110 /*
2111 * Either initc is '#', or no initc was given and we need to look
2112 * under the cursor.
2113 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 if (initc == '#')
2115 {
2116 hash_dir = dir;
2117 }
2118 else
2119 {
2120 /*
2121 * initc was not given, must look for something to match under
2122 * or near the cursor.
2123 * Only check for special things when 'cpo' doesn't have '%'.
2124 */
2125 if (!cpo_match)
2126 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002127 // Are we before or at #if, #else etc.?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 ptr = skipwhite(linep);
2129 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
2130 {
2131 ptr = skipwhite(ptr + 1);
2132 if ( STRNCMP(ptr, "if", 2) == 0
2133 || STRNCMP(ptr, "endif", 5) == 0
2134 || STRNCMP(ptr, "el", 2) == 0)
2135 hash_dir = 1;
2136 }
2137
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002138 // Are we on a comment?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 else if (linep[pos.col] == '/')
2140 {
2141 if (linep[pos.col + 1] == '*')
2142 {
2143 comment_dir = FORWARD;
2144 backwards = FALSE;
2145 pos.col++;
2146 }
2147 else if (pos.col > 0 && linep[pos.col - 1] == '*')
2148 {
2149 comment_dir = BACKWARD;
2150 backwards = TRUE;
2151 pos.col--;
2152 }
2153 }
2154 else if (linep[pos.col] == '*')
2155 {
2156 if (linep[pos.col + 1] == '/')
2157 {
2158 comment_dir = BACKWARD;
2159 backwards = TRUE;
2160 }
2161 else if (pos.col > 0 && linep[pos.col - 1] == '/')
2162 {
2163 comment_dir = FORWARD;
2164 backwards = FALSE;
2165 }
2166 }
2167 }
2168
2169 /*
2170 * If we are not on a comment or the # at the start of a line, then
2171 * look for brace anywhere on this line after the cursor.
2172 */
2173 if (!hash_dir && !comment_dir)
2174 {
2175 /*
2176 * Find the brace under or after the cursor.
2177 * If beyond the end of the line, use the last character in
2178 * the line.
2179 */
2180 if (linep[pos.col] == NUL && pos.col)
2181 --pos.col;
2182 for (;;)
2183 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002184 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 if (initc == NUL)
2186 break;
2187
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002188 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189 if (findc)
2190 break;
Bram Moolenaar1614a142019-10-06 22:00:13 +02002191 pos.col += mb_ptr2len(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 }
2193 if (!findc)
2194 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002195 // no brace in the line, maybe use " #if" then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 if (!cpo_match && *skipwhite(linep) == '#')
2197 hash_dir = 1;
2198 else
2199 return NULL;
2200 }
2201 else if (!cpo_bsl)
2202 {
2203 int col, bslcnt = 0;
2204
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002205 // Set "match_escaped" if there are an odd number of
2206 // backslashes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2208 bslcnt++;
2209 match_escaped = (bslcnt & 1);
2210 }
2211 }
2212 }
2213 if (hash_dir)
2214 {
2215 /*
2216 * Look for matching #if, #else, #elif, or #endif
2217 */
2218 if (oap != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002219 oap->motion_type = MLINE; // Linewise for this case only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 if (initc != '#')
2221 {
2222 ptr = skipwhite(skipwhite(linep) + 1);
2223 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
2224 hash_dir = 1;
2225 else if (STRNCMP(ptr, "endif", 5) == 0)
2226 hash_dir = -1;
2227 else
2228 return NULL;
2229 }
2230 pos.col = 0;
2231 while (!got_int)
2232 {
2233 if (hash_dir > 0)
2234 {
2235 if (pos.lnum == curbuf->b_ml.ml_line_count)
2236 break;
2237 }
2238 else if (pos.lnum == 1)
2239 break;
2240 pos.lnum += hash_dir;
2241 linep = ml_get(pos.lnum);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002242 line_breakcheck(); // check for CTRL-C typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 ptr = skipwhite(linep);
2244 if (*ptr != '#')
2245 continue;
2246 pos.col = (colnr_T) (ptr - linep);
2247 ptr = skipwhite(ptr + 1);
2248 if (hash_dir > 0)
2249 {
2250 if (STRNCMP(ptr, "if", 2) == 0)
2251 count++;
2252 else if (STRNCMP(ptr, "el", 2) == 0)
2253 {
2254 if (count == 0)
2255 return &pos;
2256 }
2257 else if (STRNCMP(ptr, "endif", 5) == 0)
2258 {
2259 if (count == 0)
2260 return &pos;
2261 count--;
2262 }
2263 }
2264 else
2265 {
2266 if (STRNCMP(ptr, "if", 2) == 0)
2267 {
2268 if (count == 0)
2269 return &pos;
2270 count--;
2271 }
2272 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
2273 {
2274 if (count == 0)
2275 return &pos;
2276 }
2277 else if (STRNCMP(ptr, "endif", 5) == 0)
2278 count++;
2279 }
2280 }
2281 return NULL;
2282 }
2283 }
2284
2285#ifdef FEAT_RIGHTLEFT
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002286 // This is just guessing: when 'rightleft' is set, search for a matching
2287 // paren/brace in the other direction.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
2289 backwards = !backwards;
2290#endif
2291
2292 do_quotes = -1;
2293 start_in_quotes = MAYBE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002294 CLEAR_POS(&match_pos);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002295
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002296 // backward search: Check if this line contains a single-line comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002297 if ((backwards && comment_dir)
2298#ifdef FEAT_LISP
2299 || lisp
2300#endif
2301 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002303#ifdef FEAT_LISP
2304 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002305 lispcomm = TRUE; // find match inside this comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002306#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 while (!got_int)
2308 {
2309 /*
2310 * Go to the next position, forward or backward. We could use
2311 * inc() and dec() here, but that is much slower
2312 */
2313 if (backwards)
2314 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002315#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002316 // char to match is inside of comment, don't search outside
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002317 if (lispcomm && pos.col < (colnr_T)comment_col)
2318 break;
2319#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002320 if (pos.col == 0) // at start of line, go to prev. one
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002322 if (pos.lnum == 1) // start of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 break;
2324 --pos.lnum;
2325
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002326 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 break;
2328
2329 linep = ml_get(pos.lnum);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002330 pos.col = (colnr_T)STRLEN(linep); // pos.col on trailing NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 do_quotes = -1;
2332 line_breakcheck();
2333
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002334 // Check if this line contains a single-line comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002335 if (comment_dir
2336#ifdef FEAT_LISP
2337 || lisp
2338#endif
2339 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002341#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002342 // skip comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002343 if (lisp && comment_col != MAXCOL)
2344 pos.col = comment_col;
2345#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 }
2347 else
2348 {
2349 --pos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 if (has_mbyte)
2351 pos.col -= (*mb_head_off)(linep, linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 }
2353 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002354 else // forward search
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002356 if (linep[pos.col] == NUL
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002357 // at end of line, go to next one
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002358#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002359 // don't search for match in comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002360 || (lisp && comment_col != MAXCOL
2361 && pos.col == (colnr_T)comment_col)
2362#endif
2363 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002365 if (pos.lnum == curbuf->b_ml.ml_line_count // end of file
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002366#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002367 // line is exhausted and comment with it,
2368 // don't search for match in code
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002369 || lispcomm
2370#endif
2371 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372 break;
2373 ++pos.lnum;
2374
2375 if (maxtravel && traveled++ > maxtravel)
2376 break;
2377
2378 linep = ml_get(pos.lnum);
2379 pos.col = 0;
2380 do_quotes = -1;
2381 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002382#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002383 if (lisp) // find comment pos in new line
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002384 comment_col = check_linecomment(linep);
2385#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 }
2387 else
2388 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002390 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 ++pos.col;
2393 }
2394 }
2395
2396 /*
2397 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2398 */
2399 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2400 (linep[0] == '{' || linep[0] == '}'))
2401 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002402 if (linep[0] == findc && count == 0) // match!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 return &pos;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002404 break; // out of scope
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 }
2406
2407 if (comment_dir)
2408 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002409 // Note: comments do not nest, and we ignore quotes in them
2410 // TODO: ignore comment brackets inside strings
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 if (comment_dir == FORWARD)
2412 {
2413 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2414 {
2415 pos.col++;
2416 return &pos;
2417 }
2418 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002419 else // Searching backwards
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 {
2421 /*
2422 * A comment may contain / * or / /, it may also start or end
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002423 * with / * /. Ignore a / * after / / and after *.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 */
2425 if (pos.col == 0)
2426 continue;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002427 else if (raw_string)
2428 {
2429 if (linep[pos.col - 1] == 'R'
2430 && linep[pos.col] == '"'
2431 && vim_strchr(linep + pos.col + 1, '(') != NULL)
2432 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002433 // Possible start of raw string. Now that we have the
2434 // delimiter we can check if it ends before where we
2435 // started searching, or before the previously found
2436 // raw string start.
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002437 if (!find_rawstring_end(linep, &pos,
2438 count > 0 ? &match_pos : &curwin->w_cursor))
2439 {
2440 count++;
2441 match_pos = pos;
2442 match_pos.col--;
2443 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002444 linep = ml_get(pos.lnum); // may have been released
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002445 }
2446 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 else if ( linep[pos.col - 1] == '/'
2448 && linep[pos.col] == '*'
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002449 && (pos.col == 1 || linep[pos.col - 2] != '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 && (int)pos.col < comment_col)
2451 {
2452 count++;
2453 match_pos = pos;
2454 match_pos.col--;
2455 }
2456 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2457 {
2458 if (count > 0)
2459 pos = match_pos;
2460 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2461 && (int)pos.col <= comment_col)
2462 pos.col -= 2;
2463 else if (ignore_cend)
2464 continue;
2465 else
2466 return NULL;
2467 return &pos;
2468 }
2469 }
2470 continue;
2471 }
2472
2473 /*
2474 * If smart matching ('cpoptions' does not contain '%'), braces inside
2475 * of quotes are ignored, but only if there is an even number of
2476 * quotes in the line.
2477 */
2478 if (cpo_match)
2479 do_quotes = 0;
2480 else if (do_quotes == -1)
2481 {
2482 /*
2483 * Count the number of quotes in the line, skipping \" and '"'.
2484 * Watch out for "\\".
2485 */
2486 at_start = do_quotes;
2487 for (ptr = linep; *ptr; ++ptr)
2488 {
2489 if (ptr == linep + pos.col + backwards)
2490 at_start = (do_quotes & 1);
2491 if (*ptr == '"'
2492 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2493 ++do_quotes;
2494 if (*ptr == '\\' && ptr[1] != NUL)
2495 ++ptr;
2496 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002497 do_quotes &= 1; // result is 1 with even number of quotes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498
2499 /*
2500 * If we find an uneven count, check current line and previous
2501 * one for a '\' at the end.
2502 */
2503 if (!do_quotes)
2504 {
2505 inquote = FALSE;
2506 if (ptr[-1] == '\\')
2507 {
2508 do_quotes = 1;
2509 if (start_in_quotes == MAYBE)
2510 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002511 // Do we need to use at_start here?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 inquote = TRUE;
2513 start_in_quotes = TRUE;
2514 }
2515 else if (backwards)
2516 inquote = TRUE;
2517 }
2518 if (pos.lnum > 1)
2519 {
2520 ptr = ml_get(pos.lnum - 1);
2521 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2522 {
2523 do_quotes = 1;
2524 if (start_in_quotes == MAYBE)
2525 {
2526 inquote = at_start;
2527 if (inquote)
2528 start_in_quotes = TRUE;
2529 }
2530 else if (!backwards)
2531 inquote = TRUE;
2532 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002533
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002534 // ml_get() only keeps one line, need to get linep again
Bram Moolenaaraec11792007-07-10 11:09:36 +00002535 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 }
2537 }
2538 }
2539 if (start_in_quotes == MAYBE)
2540 start_in_quotes = FALSE;
2541
2542 /*
2543 * If 'smartmatch' is set:
2544 * Things inside quotes are ignored by setting 'inquote'. If we
2545 * find a quote without a preceding '\' invert 'inquote'. At the
2546 * end of a line not ending in '\' we reset 'inquote'.
2547 *
2548 * In lines with an uneven number of quotes (without preceding '\')
2549 * we do not know which part to ignore. Therefore we only set
2550 * inquote if the number of quotes in a line is even, unless this
2551 * line or the previous one ends in a '\'. Complicated, isn't it?
2552 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002553 c = PTR2CHAR(linep + pos.col);
2554 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 {
2556 case NUL:
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002557 // at end of line without trailing backslash, reset inquote
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2559 {
2560 inquote = FALSE;
2561 start_in_quotes = FALSE;
2562 }
2563 break;
2564
2565 case '"':
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002566 // a quote that is preceded with an odd number of backslashes is
2567 // ignored
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 if (do_quotes)
2569 {
2570 int col;
2571
2572 for (col = pos.col - 1; col >= 0; --col)
2573 if (linep[col] != '\\')
2574 break;
2575 if ((((int)pos.col - 1 - col) & 1) == 0)
2576 {
2577 inquote = !inquote;
2578 start_in_quotes = FALSE;
2579 }
2580 }
2581 break;
2582
2583 /*
2584 * If smart matching ('cpoptions' does not contain '%'):
2585 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2586 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2587 * skipped, there is never a brace in them.
2588 * Ignore this when finding matches for `'.
2589 */
2590 case '\'':
2591 if (!cpo_match && initc != '\'' && findc != '\'')
2592 {
2593 if (backwards)
2594 {
2595 if (pos.col > 1)
2596 {
2597 if (linep[pos.col - 2] == '\'')
2598 {
2599 pos.col -= 2;
2600 break;
2601 }
2602 else if (linep[pos.col - 2] == '\\' &&
2603 pos.col > 2 && linep[pos.col - 3] == '\'')
2604 {
2605 pos.col -= 3;
2606 break;
2607 }
2608 }
2609 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002610 else if (linep[pos.col + 1]) // forward search
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 {
2612 if (linep[pos.col + 1] == '\\' &&
2613 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2614 {
2615 pos.col += 3;
2616 break;
2617 }
2618 else if (linep[pos.col + 2] == '\'')
2619 {
2620 pos.col += 2;
2621 break;
2622 }
2623 }
2624 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002625 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626
2627 default:
2628#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002629 /*
2630 * For Lisp skip over backslashed (), {} and [].
2631 * (actually, we skip #\( et al)
2632 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 if (curbuf->b_p_lisp
2634 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002635 && pos.col > 1
2636 && check_prevcol(linep, pos.col, '\\', NULL)
2637 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 break;
2639#endif
2640
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002641 // Check for match outside of quotes, and inside of
2642 // quotes when the start is also inside of quotes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 if ((!inquote || start_in_quotes == TRUE)
2644 && (c == initc || c == findc))
2645 {
2646 int col, bslcnt = 0;
2647
2648 if (!cpo_bsl)
2649 {
2650 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2651 bslcnt++;
2652 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002653 // Only accept a match when 'M' is in 'cpo' or when escaping
2654 // is what we expect.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2656 {
2657 if (c == initc)
2658 count++;
2659 else
2660 {
2661 if (count == 0)
2662 return &pos;
2663 count--;
2664 }
2665 }
2666 }
2667 }
2668 }
2669
2670 if (comment_dir == BACKWARD && count > 0)
2671 {
2672 pos = match_pos;
2673 return &pos;
2674 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002675 return (pos_T *)NULL; // never found it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676}
2677
2678/*
2679 * Check if line[] contains a / / comment.
2680 * Return MAXCOL if not, otherwise return the column.
2681 * TODO: skip strings.
2682 */
2683 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002684check_linecomment(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685{
2686 char_u *p;
2687
2688 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002689#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002690 // skip Lispish one-line comments
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002691 if (curbuf->b_p_lisp)
2692 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002693 if (vim_strchr(p, ';') != NULL) // there may be comments
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002694 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002695 int in_str = FALSE; // inside of string
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002696
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002697 p = line; // scan from start
Bram Moolenaar520470a2005-06-16 21:59:56 +00002698 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002699 {
2700 if (*p == '"')
2701 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002702 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002703 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002704 if (*(p - 1) != '\\') // skip escaped quote
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002705 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002706 }
2707 else if (p == line || ((p - line) >= 2
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002708 // skip #\" form
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002709 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002710 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002711 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002712 else if (!in_str && ((p - line) < 2
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002713 || (*(p - 1) != '\\' && *(p - 2) != '#')))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002714 break; // found!
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002715 ++p;
2716 }
2717 }
2718 else
2719 p = NULL;
2720 }
2721 else
2722#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 while ((p = vim_strchr(p, '/')) != NULL)
2724 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002725 // accept a double /, unless it's preceded with * and followed by *,
2726 // because * / / * is an end and start of a C comment
Bram Moolenaar78d4aba2008-01-01 14:43:35 +00002727 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728 break;
2729 ++p;
2730 }
2731
2732 if (p == NULL)
2733 return MAXCOL;
2734 return (int)(p - line);
2735}
2736
2737/*
2738 * Move cursor briefly to character matching the one under the cursor.
2739 * Used for Insert mode and "r" command.
2740 * Show the match only if it is visible on the screen.
2741 * If there isn't a match, then beep.
2742 */
2743 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002744showmatch(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002745 int c) // char to show match for
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746{
2747 pos_T *lpos, save_cursor;
2748 pos_T mpos;
2749 colnr_T vcol;
2750 long save_so;
2751 long save_siso;
2752#ifdef CURSOR_SHAPE
2753 int save_state;
2754#endif
2755 colnr_T save_dollar_vcol;
2756 char_u *p;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002757 long *so = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so;
2758 long *siso = curwin->w_p_siso >= 0 ? &curwin->w_p_siso : &p_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759
2760 /*
2761 * Only show match for chars in the 'matchpairs' option.
2762 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002763 // 'matchpairs' is "x:y,x:y"
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002764 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 {
2766#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002767 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002768 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002769#endif
Bram Moolenaar1614a142019-10-06 22:00:13 +02002770 p += mb_ptr2len(p) + 1;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002771 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772#ifdef FEAT_RIGHTLEFT
2773 && !(curwin->w_p_rl ^ p_ri)
2774#endif
2775 )
2776 break;
Bram Moolenaar1614a142019-10-06 22:00:13 +02002777 p += mb_ptr2len(p);
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002778 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 return;
2780 }
2781
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002782 if ((lpos = findmatch(NULL, NUL)) == NULL) // no match, so beep
Bram Moolenaar165bc692015-07-21 17:53:25 +02002783 vim_beep(BO_MATCH);
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002784 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 {
2786 if (!curwin->w_p_wrap)
2787 getvcol(curwin, lpos, NULL, &vcol, NULL);
2788 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
Bram Moolenaar02631462017-09-22 15:20:32 +02002789 && vcol < curwin->w_leftcol + curwin->w_width))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002791 mpos = *lpos; // save the pos, update_screen() may change it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 save_cursor = curwin->w_cursor;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002793 save_so = *so;
2794 save_siso = *siso;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002795 // Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2796 // stop displaying the "$".
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002797 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2798 dollar_vcol = -1;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002799 ++curwin->w_virtcol; // do display ')' just before "$"
2800 update_screen(VALID); // show the new char first
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801
2802 save_dollar_vcol = dollar_vcol;
2803#ifdef CURSOR_SHAPE
2804 save_state = State;
2805 State = SHOWMATCH;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002806 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002808 curwin->w_cursor = mpos; // move to matching char
2809 *so = 0; // don't use 'scrolloff' here
2810 *siso = 0; // don't use 'sidescrolloff' here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811 showruler(FALSE);
2812 setcursor();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002813 cursor_on(); // make sure that the cursor is shown
Bram Moolenaara338adc2018-01-31 20:51:47 +01002814 out_flush_cursor(TRUE, FALSE);
2815
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002816 // Restore dollar_vcol(), because setcursor() may call curs_rows()
2817 // which resets it if the matching position is in a previous line
2818 // and has a higher column number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 dollar_vcol = save_dollar_vcol;
2820
2821 /*
2822 * brief pause, unless 'm' is present in 'cpo' and a character is
2823 * available.
2824 */
2825 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
Bram Moolenaareda1da02019-11-17 17:06:33 +01002826 ui_delay(p_mat * 100L + 8, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 else if (!char_avail())
Bram Moolenaareda1da02019-11-17 17:06:33 +01002828 ui_delay(p_mat * 100L + 9, FALSE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002829 curwin->w_cursor = save_cursor; // restore cursor position
Bram Moolenaar375e3392019-01-31 18:26:10 +01002830 *so = save_so;
2831 *siso = save_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832#ifdef CURSOR_SHAPE
2833 State = save_state;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002834 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835#endif
2836 }
2837 }
2838}
2839
2840/*
Bram Moolenaar85160712018-06-19 18:27:41 +02002841 * Find the start of the next sentence, searching in the direction specified
2842 * by the "dir" argument. The cursor is positioned on the start of the next
2843 * sentence when found. If the next sentence is found, return OK. Return FAIL
2844 * otherwise. See ":h sentence" for the precise definition of a "sentence"
2845 * text object.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 */
2847 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002848findsent(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849{
2850 pos_T pos, tpos;
2851 int c;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002852 int (*func)(pos_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 int startlnum;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002854 int noskip = FALSE; // do not skip blanks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 int cpo_J;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002856 int found_dot;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857
2858 pos = curwin->w_cursor;
2859 if (dir == FORWARD)
2860 func = incl;
2861 else
2862 func = decl;
2863
2864 while (count--)
2865 {
2866 /*
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002867 * if on an empty line, skip up to a non-empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 */
2869 if (gchar_pos(&pos) == NUL)
2870 {
2871 do
2872 if ((*func)(&pos) == -1)
2873 break;
2874 while (gchar_pos(&pos) == NUL);
2875 if (dir == FORWARD)
2876 goto found;
2877 }
2878 /*
2879 * if on the start of a paragraph or a section and searching forward,
2880 * go to the next line
2881 */
2882 else if (dir == FORWARD && pos.col == 0 &&
2883 startPS(pos.lnum, NUL, FALSE))
2884 {
2885 if (pos.lnum == curbuf->b_ml.ml_line_count)
2886 return FAIL;
2887 ++pos.lnum;
2888 goto found;
2889 }
2890 else if (dir == BACKWARD)
2891 decl(&pos);
2892
Bram Moolenaar85160712018-06-19 18:27:41 +02002893 // go back to the previous non-white non-punctuation character
Bram Moolenaardef9e822004-12-31 20:58:58 +00002894 found_dot = FALSE;
Bram Moolenaar85160712018-06-19 18:27:41 +02002895 while (c = gchar_pos(&pos), VIM_ISWHITE(c)
2896 || vim_strchr((char_u *)".!?)]\"'", c) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 {
Bram Moolenaar85160712018-06-19 18:27:41 +02002898 tpos = pos;
2899 if (decl(&tpos) == -1 || (LINEEMPTY(tpos.lnum) && dir == FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 break;
Bram Moolenaar85160712018-06-19 18:27:41 +02002901
2902 if (found_dot)
2903 break;
2904 if (vim_strchr((char_u *) ".!?", c) != NULL)
2905 found_dot = TRUE;
2906
2907 if (vim_strchr((char_u *) ")]\"'", c) != NULL
2908 && vim_strchr((char_u *) ".!?)]\"'", gchar_pos(&tpos)) == NULL)
2909 break;
2910
2911 decl(&pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 }
2913
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002914 // remember the line where the search started
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 startlnum = pos.lnum;
2916 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL;
2917
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002918 for (;;) // find end of sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919 {
2920 c = gchar_pos(&pos);
2921 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE)))
2922 {
2923 if (dir == BACKWARD && pos.lnum != startlnum)
2924 ++pos.lnum;
2925 break;
2926 }
2927 if (c == '.' || c == '!' || c == '?')
2928 {
2929 tpos = pos;
2930 do
2931 if ((c = inc(&tpos)) == -1)
2932 break;
2933 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos))
2934 != NULL);
2935 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL
2936 || (cpo_J && (c == ' ' && inc(&tpos) >= 0
2937 && gchar_pos(&tpos) == ' ')))
2938 {
2939 pos = tpos;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002940 if (gchar_pos(&pos) == NUL) // skip NUL at EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 inc(&pos);
2942 break;
2943 }
2944 }
2945 if ((*func)(&pos) == -1)
2946 {
2947 if (count)
2948 return FAIL;
2949 noskip = TRUE;
2950 break;
2951 }
2952 }
2953found:
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002954 // skip white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t'))
2956 if (incl(&pos) == -1)
2957 break;
2958 }
2959
2960 setpcmark();
2961 curwin->w_cursor = pos;
2962 return OK;
2963}
2964
2965/*
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002966 * Find the next paragraph or section in direction 'dir'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 * Paragraphs are currently supposed to be separated by empty lines.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002968 * If 'what' is NUL we go to the next paragraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 * If 'what' is '{' or '}' we go to the next section.
2970 * If 'both' is TRUE also stop at '}'.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002971 * Return TRUE if the next paragraph or section was found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972 */
2973 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002974findpar(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002975 int *pincl, // Return: TRUE if last char is to be included
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002976 int dir,
2977 long count,
2978 int what,
2979 int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980{
2981 linenr_T curr;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002982 int did_skip; // TRUE after separating lines have been skipped
2983 int first; // TRUE on first line
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002984 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002986 linenr_T fold_first; // first line of a closed fold
2987 linenr_T fold_last; // last line of a closed fold
2988 int fold_skipped; // TRUE if a closed fold was skipped this
2989 // iteration
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990#endif
2991
2992 curr = curwin->w_cursor.lnum;
2993
2994 while (count--)
2995 {
2996 did_skip = FALSE;
2997 for (first = TRUE; ; first = FALSE)
2998 {
2999 if (*ml_get(curr) != NUL)
3000 did_skip = TRUE;
3001
3002#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003003 // skip folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004 fold_skipped = FALSE;
3005 if (first && hasFolding(curr, &fold_first, &fold_last))
3006 {
3007 curr = ((dir > 0) ? fold_last : fold_first) + dir;
3008 fold_skipped = TRUE;
3009 }
3010#endif
3011
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003012 // POSIX has its own ideas of what a paragraph boundary is and it
3013 // doesn't match historical Vi: It also stops at a "{" in the
3014 // first column and at an empty line.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003015 if (!first && did_skip && (startPS(curr, what, both)
3016 || (posix && what == NUL && *ml_get(curr) == '{')))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 break;
3018
3019#ifdef FEAT_FOLDING
3020 if (fold_skipped)
3021 curr -= dir;
3022#endif
3023 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count)
3024 {
3025 if (count)
3026 return FALSE;
3027 curr -= dir;
3028 break;
3029 }
3030 }
3031 }
3032 setpcmark();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003033 if (both && *ml_get(curr) == '}') // include line with '}'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034 ++curr;
3035 curwin->w_cursor.lnum = curr;
3036 if (curr == curbuf->b_ml.ml_line_count && what != '}')
3037 {
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02003038 char_u *line = ml_get(curr);
3039
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003040 // Put the cursor on the last character in the last line and make the
3041 // motion inclusive.
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02003042 if ((curwin->w_cursor.col = (colnr_T)STRLEN(line)) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 {
3044 --curwin->w_cursor.col;
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02003045 curwin->w_cursor.col -=
3046 (*mb_head_off)(line, line + curwin->w_cursor.col);
Bram Moolenaar92d640f2005-09-05 22:11:52 +00003047 *pincl = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 }
3049 }
3050 else
3051 curwin->w_cursor.col = 0;
3052 return TRUE;
3053}
3054
3055/*
3056 * check if the string 's' is a nroff macro that is in option 'opt'
3057 */
3058 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003059inmacro(char_u *opt, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060{
3061 char_u *macro;
3062
3063 for (macro = opt; macro[0]; ++macro)
3064 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003065 // Accept two characters in the option being equal to two characters
3066 // in the line. A space in the option matches with a space in the
3067 // line or the line having ended.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 if ( (macro[0] == s[0]
3069 || (macro[0] == ' '
3070 && (s[0] == NUL || s[0] == ' ')))
3071 && (macro[1] == s[1]
3072 || ((macro[1] == NUL || macro[1] == ' ')
3073 && (s[0] == NUL || s[1] == NUL || s[1] == ' '))))
3074 break;
3075 ++macro;
3076 if (macro[0] == NUL)
3077 break;
3078 }
3079 return (macro[0] != NUL);
3080}
3081
3082/*
3083 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph.
3084 * If 'para' is '{' or '}' only check for sections.
3085 * If 'both' is TRUE also stop at '}'
3086 */
3087 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003088startPS(linenr_T lnum, int para, int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089{
3090 char_u *s;
3091
3092 s = ml_get(lnum);
3093 if (*s == para || *s == '\f' || (both && *s == '}'))
3094 return TRUE;
3095 if (*s == '.' && (inmacro(p_sections, s + 1) ||
3096 (!para && inmacro(p_para, s + 1))))
3097 return TRUE;
3098 return FALSE;
3099}
3100
3101/*
3102 * The following routines do the word searches performed by the 'w', 'W',
3103 * 'b', 'B', 'e', and 'E' commands.
3104 */
3105
3106/*
3107 * To perform these searches, characters are placed into one of three
3108 * classes, and transitions between classes determine word boundaries.
3109 *
3110 * The classes are:
3111 *
3112 * 0 - white space
3113 * 1 - punctuation
3114 * 2 or higher - keyword characters (letters, digits and underscore)
3115 */
3116
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003117static int cls_bigword; // TRUE for "W", "B" or "E"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118
3119/*
3120 * cls() - returns the class of character at curwin->w_cursor
3121 *
3122 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars
3123 * from class 2 and higher are reported as class 1 since only white space
3124 * boundaries are of interest.
3125 */
3126 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003127cls(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128{
3129 int c;
3130
3131 c = gchar_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 if (c == ' ' || c == '\t' || c == NUL)
3133 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 if (enc_dbcs != 0 && c > 0xFF)
3135 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003136 // If cls_bigword, report multi-byte chars as class 1.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137 if (enc_dbcs == DBCS_KOR && cls_bigword)
3138 return 1;
3139
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003140 // process code leading/trailing bytes
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 return dbcs_class(((unsigned)c >> 8), (c & 0xFF));
3142 }
3143 if (enc_utf8)
3144 {
3145 c = utf_class(c);
3146 if (c != 0 && cls_bigword)
3147 return 1;
3148 return c;
3149 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003151 // If cls_bigword is TRUE, report all non-blanks as class 1.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 if (cls_bigword)
3153 return 1;
3154
3155 if (vim_iswordc(c))
3156 return 2;
3157 return 1;
3158}
3159
3160
3161/*
3162 * fwd_word(count, type, eol) - move forward one word
3163 *
3164 * Returns FAIL if the cursor was already at the end of the file.
3165 * If eol is TRUE, last word stops at end of line (for operators).
3166 */
3167 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003168fwd_word(
3169 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003170 int bigword, // "W", "E" or "B"
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003171 int eol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003173 int sclass; // starting class
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174 int i;
3175 int last_line;
3176
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178 cls_bigword = bigword;
3179 while (--count >= 0)
3180 {
3181#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003182 // When inside a range of folded lines, move to the last char of the
3183 // last line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3185 coladvance((colnr_T)MAXCOL);
3186#endif
3187 sclass = cls();
3188
3189 /*
3190 * We always move at least one character, unless on the last
3191 * character in the buffer.
3192 */
3193 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count);
3194 i = inc_cursor();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003195 if (i == -1 || (i >= 1 && last_line)) // started at last char in file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 return FAIL;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003197 if (i >= 1 && eol && count == 0) // started at last char in line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198 return OK;
3199
3200 /*
3201 * Go one char past end of current word (if any)
3202 */
3203 if (sclass != 0)
3204 while (cls() == sclass)
3205 {
3206 i = inc_cursor();
3207 if (i == -1 || (i >= 1 && eol && count == 0))
3208 return OK;
3209 }
3210
3211 /*
3212 * go to next non-white
3213 */
3214 while (cls() == 0)
3215 {
3216 /*
3217 * We'll stop if we land on a blank line
3218 */
3219 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL)
3220 break;
3221
3222 i = inc_cursor();
3223 if (i == -1 || (i >= 1 && eol && count == 0))
3224 return OK;
3225 }
3226 }
3227 return OK;
3228}
3229
3230/*
3231 * bck_word() - move backward 'count' words
3232 *
3233 * If stop is TRUE and we are already on the start of a word, move one less.
3234 *
3235 * Returns FAIL if top of the file was reached.
3236 */
3237 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003238bck_word(long count, int bigword, int stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003240 int sclass; // starting class
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 cls_bigword = bigword;
3244 while (--count >= 0)
3245 {
3246#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003247 // When inside a range of folded lines, move to the first char of the
3248 // first line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL))
3250 curwin->w_cursor.col = 0;
3251#endif
3252 sclass = cls();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003253 if (dec_cursor() == -1) // started at start of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254 return FAIL;
3255
3256 if (!stop || sclass == cls() || sclass == 0)
3257 {
3258 /*
3259 * Skip white space before the word.
3260 * Stop on an empty line.
3261 */
3262 while (cls() == 0)
3263 {
3264 if (curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003265 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 goto finished;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003267 if (dec_cursor() == -1) // hit start of file, stop here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268 return OK;
3269 }
3270
3271 /*
3272 * Move backward to start of this word.
3273 */
3274 if (skip_chars(cls(), BACKWARD))
3275 return OK;
3276 }
3277
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003278 inc_cursor(); // overshot - forward one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003279finished:
3280 stop = FALSE;
3281 }
3282 return OK;
3283}
3284
3285/*
3286 * end_word() - move to the end of the word
3287 *
3288 * There is an apparent bug in the 'e' motion of the real vi. At least on the
3289 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e'
3290 * motion crosses blank lines. When the real vi crosses a blank line in an
3291 * 'e' motion, the cursor is placed on the FIRST character of the next
3292 * non-blank line. The 'E' command, however, works correctly. Since this
3293 * appears to be a bug, I have not duplicated it here.
3294 *
3295 * Returns FAIL if end of the file was reached.
3296 *
3297 * If stop is TRUE and we are already on the end of a word, move one less.
3298 * If empty is TRUE stop on an empty line.
3299 */
3300 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003301end_word(
3302 long count,
3303 int bigword,
3304 int stop,
3305 int empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003307 int sclass; // starting class
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310 cls_bigword = bigword;
3311 while (--count >= 0)
3312 {
3313#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003314 // When inside a range of folded lines, move to the last char of the
3315 // last line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3317 coladvance((colnr_T)MAXCOL);
3318#endif
3319 sclass = cls();
3320 if (inc_cursor() == -1)
3321 return FAIL;
3322
3323 /*
3324 * If we're in the middle of a word, we just have to move to the end
3325 * of it.
3326 */
3327 if (cls() == sclass && sclass != 0)
3328 {
3329 /*
3330 * Move forward to end of the current word
3331 */
3332 if (skip_chars(sclass, FORWARD))
3333 return FAIL;
3334 }
3335 else if (!stop || sclass == 0)
3336 {
3337 /*
3338 * We were at the end of a word. Go to the end of the next word.
3339 * First skip white space, if 'empty' is TRUE, stop at empty line.
3340 */
3341 while (cls() == 0)
3342 {
3343 if (empty && curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003344 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 goto finished;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003346 if (inc_cursor() == -1) // hit end of file, stop here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 return FAIL;
3348 }
3349
3350 /*
3351 * Move forward to the end of this word.
3352 */
3353 if (skip_chars(cls(), FORWARD))
3354 return FAIL;
3355 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003356 dec_cursor(); // overshot - one char backward
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357finished:
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003358 stop = FALSE; // we move only one word less
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 }
3360 return OK;
3361}
3362
3363/*
3364 * Move back to the end of the word.
3365 *
3366 * Returns FAIL if start of the file was reached.
3367 */
3368 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003369bckend_word(
3370 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003371 int bigword, // TRUE for "B"
3372 int eol) // TRUE: stop at end of line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003374 int sclass; // starting class
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375 int i;
3376
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 cls_bigword = bigword;
3379 while (--count >= 0)
3380 {
3381 sclass = cls();
3382 if ((i = dec_cursor()) == -1)
3383 return FAIL;
3384 if (eol && i == 1)
3385 return OK;
3386
3387 /*
3388 * Move backward to before the start of this word.
3389 */
3390 if (sclass != 0)
3391 {
3392 while (cls() == sclass)
3393 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3394 return OK;
3395 }
3396
3397 /*
3398 * Move backward to end of the previous word
3399 */
3400 while (cls() == 0)
3401 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003402 if (curwin->w_cursor.col == 0 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 break;
3404 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3405 return OK;
3406 }
3407 }
3408 return OK;
3409}
3410
3411/*
3412 * Skip a row of characters of the same class.
3413 * Return TRUE when end-of-file reached, FALSE otherwise.
3414 */
3415 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003416skip_chars(int cclass, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417{
3418 while (cls() == cclass)
3419 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1)
3420 return TRUE;
3421 return FALSE;
3422}
3423
3424#ifdef FEAT_TEXTOBJ
3425/*
3426 * Go back to the start of the word or the start of white space
3427 */
3428 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003429back_in_line(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003431 int sclass; // starting class
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432
3433 sclass = cls();
3434 for (;;)
3435 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003436 if (curwin->w_cursor.col == 0) // stop at start of line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 break;
3438 dec_cursor();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003439 if (cls() != sclass) // stop at start of word
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 {
3441 inc_cursor();
3442 break;
3443 }
3444 }
3445}
3446
3447 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003448find_first_blank(pos_T *posp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449{
3450 int c;
3451
3452 while (decl(posp) != -1)
3453 {
3454 c = gchar_pos(posp);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003455 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 {
3457 incl(posp);
3458 break;
3459 }
3460 }
3461}
3462
3463/*
3464 * Skip count/2 sentences and count/2 separating white spaces.
3465 */
3466 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003467findsent_forward(
3468 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003469 int at_start_sent) // cursor is at start of sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470{
3471 while (count--)
3472 {
3473 findsent(FORWARD, 1L);
3474 if (at_start_sent)
3475 find_first_blank(&curwin->w_cursor);
3476 if (count == 0 || at_start_sent)
3477 decl(&curwin->w_cursor);
3478 at_start_sent = !at_start_sent;
3479 }
3480}
3481
3482/*
3483 * Find word under cursor, cursor at end.
3484 * Used while an operator is pending, and in Visual mode.
3485 */
3486 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003487current_word(
3488 oparg_T *oap,
3489 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003490 int include, // TRUE: include word and white space
3491 int bigword) // FALSE == word, TRUE == WORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492{
3493 pos_T start_pos;
3494 pos_T pos;
3495 int inclusive = TRUE;
3496 int include_white = FALSE;
3497
3498 cls_bigword = bigword;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003499 CLEAR_POS(&start_pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003501 // Correct cursor when 'selection' is exclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003502 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503 dec_cursor();
3504
3505 /*
3506 * When Visual mode is not active, or when the VIsual area is only one
3507 * character, select the word and/or white space under the cursor.
3508 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003509 if (!VIsual_active || EQUAL_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510 {
3511 /*
3512 * Go to start of current word or white space.
3513 */
3514 back_in_line();
3515 start_pos = curwin->w_cursor;
3516
3517 /*
3518 * If the start is on white space, and white space should be included
3519 * (" word"), or start is not on white space, and white space should
3520 * not be included ("word"), find end of word.
3521 */
3522 if ((cls() == 0) == include)
3523 {
3524 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3525 return FAIL;
3526 }
3527 else
3528 {
3529 /*
3530 * If the start is not on white space, and white space should be
3531 * included ("word "), or start is on white space and white
3532 * space should not be included (" "), find start of word.
3533 * If we end up in the first column of the next line (single char
3534 * word) back up to end of the line.
3535 */
3536 fwd_word(1L, bigword, TRUE);
3537 if (curwin->w_cursor.col == 0)
3538 decl(&curwin->w_cursor);
3539 else
3540 oneleft();
3541
3542 if (include)
3543 include_white = TRUE;
3544 }
3545
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546 if (VIsual_active)
3547 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003548 // should do something when inclusive == FALSE !
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549 VIsual = start_pos;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003550 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551 }
3552 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 {
3554 oap->start = start_pos;
3555 oap->motion_type = MCHAR;
3556 }
3557 --count;
3558 }
3559
3560 /*
3561 * When count is still > 0, extend with more objects.
3562 */
3563 while (count > 0)
3564 {
3565 inclusive = TRUE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003566 if (VIsual_active && LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 {
3568 /*
3569 * In Visual mode, with cursor at start: move cursor back.
3570 */
3571 if (decl(&curwin->w_cursor) == -1)
3572 return FAIL;
3573 if (include != (cls() != 0))
3574 {
3575 if (bck_word(1L, bigword, TRUE) == FAIL)
3576 return FAIL;
3577 }
3578 else
3579 {
3580 if (bckend_word(1L, bigword, TRUE) == FAIL)
3581 return FAIL;
3582 (void)incl(&curwin->w_cursor);
3583 }
3584 }
3585 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 {
3587 /*
3588 * Move cursor forward one word and/or white area.
3589 */
3590 if (incl(&curwin->w_cursor) == -1)
3591 return FAIL;
3592 if (include != (cls() == 0))
3593 {
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003594 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595 return FAIL;
3596 /*
3597 * If end is just past a new-line, we don't want to include
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003598 * the first character on the line.
3599 * Put cursor on last char of white.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 */
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003601 if (oneleft() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602 inclusive = FALSE;
3603 }
3604 else
3605 {
3606 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3607 return FAIL;
3608 }
3609 }
3610 --count;
3611 }
3612
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003613 if (include_white && (cls() != 0
3614 || (curwin->w_cursor.col == 0 && !inclusive)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615 {
3616 /*
3617 * If we don't include white space at the end, move the start
3618 * to include some white space there. This makes "daw" work
3619 * better on the last word in a sentence (and "2daw" on last-but-one
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003620 * word). Also when "2daw" deletes "word." at the end of the line
3621 * (cursor is at start of next line).
3622 * But don't delete white space at start of line (indent).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003624 pos = curwin->w_cursor; // save cursor position
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 curwin->w_cursor = start_pos;
3626 if (oneleft() == OK)
3627 {
3628 back_in_line();
3629 if (cls() == 0 && curwin->w_cursor.col > 0)
3630 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 if (VIsual_active)
3632 VIsual = curwin->w_cursor;
3633 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 oap->start = curwin->w_cursor;
3635 }
3636 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003637 curwin->w_cursor = pos; // put cursor back at end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 }
3639
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 if (VIsual_active)
3641 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003642 if (*p_sel == 'e' && inclusive && LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 inc_cursor();
3644 if (VIsual_mode == 'V')
3645 {
3646 VIsual_mode = 'v';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003647 redraw_cmdline = TRUE; // show mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 }
3649 }
3650 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 oap->inclusive = inclusive;
3652
3653 return OK;
3654}
3655
3656/*
3657 * Find sentence(s) under the cursor, cursor at end.
3658 * When Visual active, extend it by one or more sentences.
3659 */
3660 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003661current_sent(oparg_T *oap, long count, int include)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662{
3663 pos_T start_pos;
3664 pos_T pos;
3665 int start_blank;
3666 int c;
3667 int at_start_sent;
3668 long ncount;
3669
3670 start_pos = curwin->w_cursor;
3671 pos = start_pos;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003672 findsent(FORWARD, 1L); // Find start of next sentence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003675 * When the Visual area is bigger than one character: Extend it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003677 if (VIsual_active && !EQUAL_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 {
3679extend:
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003680 if (LT_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 {
3682 /*
3683 * Cursor at start of Visual area.
3684 * Find out where we are:
3685 * - in the white space before a sentence
3686 * - in a sentence or just after it
3687 * - at the start of a sentence
3688 */
3689 at_start_sent = TRUE;
3690 decl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003691 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692 {
3693 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003694 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 {
3696 at_start_sent = FALSE;
3697 break;
3698 }
3699 incl(&pos);
3700 }
3701 if (!at_start_sent)
3702 {
3703 findsent(BACKWARD, 1L);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003704 if (EQUAL_POS(curwin->w_cursor, start_pos))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003705 at_start_sent = TRUE; // exactly at start of sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003707 // inside a sentence, go to its end (start of next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 findsent(FORWARD, 1L);
3709 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003710 if (include) // "as" gets twice as much as "is"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 count *= 2;
3712 while (count--)
3713 {
3714 if (at_start_sent)
3715 find_first_blank(&curwin->w_cursor);
3716 c = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01003717 if (!at_start_sent || (!include && !VIM_ISWHITE(c)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 findsent(BACKWARD, 1L);
3719 at_start_sent = !at_start_sent;
3720 }
3721 }
3722 else
3723 {
3724 /*
3725 * Cursor at end of Visual area.
3726 * Find out where we are:
3727 * - just before a sentence
3728 * - just before or in the white space before a sentence
3729 * - in a sentence
3730 */
3731 incl(&pos);
3732 at_start_sent = TRUE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003733 // not just before a sentence
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003734 if (!EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735 {
3736 at_start_sent = FALSE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003737 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 {
3739 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003740 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 {
3742 at_start_sent = TRUE;
3743 break;
3744 }
3745 incl(&pos);
3746 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003747 if (at_start_sent) // in the sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 findsent(BACKWARD, 1L);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003749 else // in/before white before a sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 curwin->w_cursor = start_pos;
3751 }
3752
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003753 if (include) // "as" gets twice as much as "is"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 count *= 2;
3755 findsent_forward(count, at_start_sent);
3756 if (*p_sel == 'e')
3757 ++curwin->w_cursor.col;
3758 }
3759 return OK;
3760 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761
3762 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003763 * If the cursor started on a blank, check if it is just before the start
3764 * of the next sentence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003766 while (c = gchar_pos(&pos), VIM_ISWHITE(c)) // VIM_ISWHITE() is a macro
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 incl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003768 if (EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 {
3770 start_blank = TRUE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003771 find_first_blank(&start_pos); // go back to first blank
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 }
3773 else
3774 {
3775 start_blank = FALSE;
3776 findsent(BACKWARD, 1L);
3777 start_pos = curwin->w_cursor;
3778 }
3779 if (include)
3780 ncount = count * 2;
3781 else
3782 {
3783 ncount = count;
3784 if (start_blank)
3785 --ncount;
3786 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00003787 if (ncount > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788 findsent_forward(ncount, TRUE);
3789 else
3790 decl(&curwin->w_cursor);
3791
3792 if (include)
3793 {
3794 /*
3795 * If the blank in front of the sentence is included, exclude the
3796 * blanks at the end of the sentence, go back to the first blank.
3797 * If there are no trailing blanks, try to include leading blanks.
3798 */
3799 if (start_blank)
3800 {
3801 find_first_blank(&curwin->w_cursor);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003802 c = gchar_pos(&curwin->w_cursor); // VIM_ISWHITE() is a macro
Bram Moolenaar1c465442017-03-12 20:10:05 +01003803 if (VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 decl(&curwin->w_cursor);
3805 }
Bram Moolenaar1c465442017-03-12 20:10:05 +01003806 else if (c = gchar_cursor(), !VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003807 find_first_blank(&start_pos);
3808 }
3809
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 if (VIsual_active)
3811 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003812 // Avoid getting stuck with "is" on a single space before a sentence.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003813 if (EQUAL_POS(start_pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 goto extend;
3815 if (*p_sel == 'e')
3816 ++curwin->w_cursor.col;
3817 VIsual = start_pos;
3818 VIsual_mode = 'v';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003819 redraw_cmdline = TRUE; // show mode later
3820 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821 }
3822 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003824 // include a newline after the sentence, if there is one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 if (incl(&curwin->w_cursor) == -1)
3826 oap->inclusive = TRUE;
3827 else
3828 oap->inclusive = FALSE;
3829 oap->start = start_pos;
3830 oap->motion_type = MCHAR;
3831 }
3832 return OK;
3833}
3834
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003835/*
3836 * Find block under the cursor, cursor at end.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003837 * "what" and "other" are two matching parenthesis/brace/etc.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003838 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003840current_block(
3841 oparg_T *oap,
3842 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003843 int include, // TRUE == include white space
3844 int what, // '(', '{', etc.
3845 int other) // ')', '}', etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846{
3847 pos_T old_pos;
3848 pos_T *pos = NULL;
3849 pos_T start_pos;
3850 pos_T *end_pos;
3851 pos_T old_start, old_end;
3852 char_u *save_cpo;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003853 int sol = FALSE; // '{' at start of line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854
3855 old_pos = curwin->w_cursor;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003856 old_end = curwin->w_cursor; // remember where we started
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 old_start = old_end;
3858
3859 /*
3860 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive.
3861 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003862 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863 {
3864 setpcmark();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003865 if (what == '{') // ignore indent
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 while (inindent(1))
3867 if (inc_cursor() != 0)
3868 break;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003869 if (gchar_cursor() == what)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003870 // cursor on '(' or '{', move cursor just after it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871 ++curwin->w_cursor.col;
3872 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003873 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 {
3875 old_start = VIsual;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003876 curwin->w_cursor = VIsual; // cursor at low end of Visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877 }
3878 else
3879 old_end = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880
3881 /*
3882 * Search backwards for unclosed '(', '{', etc..
3883 * Put this position in start_pos.
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003884 * Ignore quotes here. Keep the "M" flag in 'cpo', as that is what the
3885 * user wants.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886 */
3887 save_cpo = p_cpo;
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003888 p_cpo = (char_u *)(vim_strchr(p_cpo, CPO_MATCHBSL) != NULL ? "%M" : "%");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889 while (count-- > 0)
3890 {
3891 if ((pos = findmatch(NULL, what)) == NULL)
3892 break;
3893 curwin->w_cursor = *pos;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003894 start_pos = *pos; // the findmatch for end_pos will overwrite *pos
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 }
3896 p_cpo = save_cpo;
3897
3898 /*
3899 * Search for matching ')', '}', etc.
3900 * Put this position in curwin->w_cursor.
3901 */
3902 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL)
3903 {
3904 curwin->w_cursor = old_pos;
3905 return FAIL;
3906 }
3907 curwin->w_cursor = *end_pos;
3908
3909 /*
3910 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE.
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003911 * If the ending '}', ')' or ']' is only preceded by indent, skip that
3912 * indent. But only if the resulting area is not smaller than what we
3913 * started with.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914 */
3915 while (!include)
3916 {
3917 incl(&start_pos);
3918 sol = (curwin->w_cursor.col == 0);
3919 decl(&curwin->w_cursor);
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003920 while (inindent(1))
3921 {
3922 sol = TRUE;
3923 if (decl(&curwin->w_cursor) != 0)
3924 break;
3925 }
3926
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 /*
3928 * In Visual mode, when the resulting area is not bigger than what we
3929 * started with, extend it to the next block, and then exclude again.
3930 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003931 if (!LT_POS(start_pos, old_start) && !LT_POS(old_end, curwin->w_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932 && VIsual_active)
3933 {
3934 curwin->w_cursor = old_start;
3935 decl(&curwin->w_cursor);
3936 if ((pos = findmatch(NULL, what)) == NULL)
3937 {
3938 curwin->w_cursor = old_pos;
3939 return FAIL;
3940 }
3941 start_pos = *pos;
3942 curwin->w_cursor = *pos;
3943 if ((end_pos = findmatch(NULL, other)) == NULL)
3944 {
3945 curwin->w_cursor = old_pos;
3946 return FAIL;
3947 }
3948 curwin->w_cursor = *end_pos;
3949 }
3950 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 break;
3952 }
3953
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 if (VIsual_active)
3955 {
3956 if (*p_sel == 'e')
Bram Moolenaar8667d662015-09-01 18:27:49 +02003957 inc(&curwin->w_cursor);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003958 if (sol && gchar_cursor() != NUL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003959 inc(&curwin->w_cursor); // include the line break
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 VIsual = start_pos;
3961 VIsual_mode = 'v';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003962 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963 showmode();
3964 }
3965 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 {
3967 oap->start = start_pos;
3968 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003969 oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 if (sol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 incl(&curwin->w_cursor);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003972 else if (LTOREQ_POS(start_pos, curwin->w_cursor))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003973 // Include the character under the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 oap->inclusive = TRUE;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003975 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003976 // End is before the start (no text in between <>, [], etc.): don't
3977 // operate on any text.
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003978 curwin->w_cursor = start_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 }
3980
3981 return OK;
3982}
3983
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003984/*
3985 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>".
3986 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>".
3987 */
3988 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003989in_html_tag(
3990 int end_tag)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003991{
3992 char_u *line = ml_get_curline();
3993 char_u *p;
3994 int c;
3995 int lc = NUL;
3996 pos_T pos;
3997
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003998 if (enc_dbcs)
3999 {
4000 char_u *lp = NULL;
4001
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004002 // We search forward until the cursor, because searching backwards is
4003 // very slow for DBCS encodings.
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004004 for (p = line; p < line + curwin->w_cursor.col; MB_PTR_ADV(p))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004005 if (*p == '>' || *p == '<')
4006 {
4007 lc = *p;
4008 lp = p;
4009 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004010 if (*p != '<') // check for '<' under cursor
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004011 {
4012 if (lc != '<')
4013 return FALSE;
4014 p = lp;
4015 }
4016 }
4017 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004018 {
4019 for (p = line + curwin->w_cursor.col; p > line; )
4020 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004021 if (*p == '<') // find '<' under/before cursor
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004022 break;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004023 MB_PTR_BACK(line, p);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004024 if (*p == '>') // find '>' before cursor
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004025 break;
4026 }
4027 if (*p != '<')
4028 return FALSE;
4029 }
4030
4031 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004032 pos.col = (colnr_T)(p - line);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004033
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004034 MB_PTR_ADV(p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004035 if (end_tag)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004036 // check that there is a '/' after the '<'
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004037 return *p == '/';
4038
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004039 // check that there is no '/' after the '<'
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004040 if (*p == '/')
4041 return FALSE;
4042
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004043 // check that the matching '>' is not preceded by '/'
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004044 for (;;)
4045 {
4046 if (inc(&pos) < 0)
4047 return FALSE;
4048 c = *ml_get_pos(&pos);
4049 if (c == '>')
4050 break;
4051 lc = c;
4052 }
4053 return lc != '/';
4054}
4055
4056/*
4057 * Find tag block under the cursor, cursor at end.
4058 */
4059 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004060current_tagblock(
4061 oparg_T *oap,
4062 long count_arg,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004063 int include) // TRUE == include white space
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004064{
4065 long count = count_arg;
4066 long n;
4067 pos_T old_pos;
4068 pos_T start_pos;
4069 pos_T end_pos;
4070 pos_T old_start, old_end;
4071 char_u *spat, *epat;
4072 char_u *p;
4073 char_u *cp;
4074 int len;
4075 int r;
4076 int do_include = include;
4077 int save_p_ws = p_ws;
4078 int retval = FAIL;
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004079 int is_inclusive = TRUE;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004080
4081 p_ws = FALSE;
4082
4083 old_pos = curwin->w_cursor;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004084 old_end = curwin->w_cursor; // remember where we started
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004085 old_start = old_end;
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00004086 if (!VIsual_active || *p_sel == 'e')
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004087 decl(&old_end); // old_end is inclusive
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004088
4089 /*
Bram Moolenaar45360022005-07-21 21:08:21 +00004090 * If we start on "<aaa>" select that block.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004091 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004092 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004093 {
4094 setpcmark();
4095
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004096 // ignore indent
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004097 while (inindent(1))
4098 if (inc_cursor() != 0)
4099 break;
4100
4101 if (in_html_tag(FALSE))
4102 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004103 // cursor on start tag, move to its '>'
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004104 while (*ml_get_cursor() != '>')
4105 if (inc_cursor() < 0)
4106 break;
4107 }
4108 else if (in_html_tag(TRUE))
4109 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004110 // cursor on end tag, move to just before it
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004111 while (*ml_get_cursor() != '<')
4112 if (dec_cursor() < 0)
4113 break;
4114 dec_cursor();
4115 old_end = curwin->w_cursor;
4116 }
4117 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004118 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004119 {
4120 old_start = VIsual;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004121 curwin->w_cursor = VIsual; // cursor at low end of Visual
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004122 }
4123 else
4124 old_end = VIsual;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004125
4126again:
4127 /*
4128 * Search backwards for unclosed "<aaa>".
4129 * Put this position in start_pos.
4130 */
4131 for (n = 0; n < count; ++n)
4132 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004133 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)",
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004134 (char_u *)"",
Bram Moolenaar48570482017-10-30 21:48:41 +01004135 (char_u *)"</[^>]*>", BACKWARD, NULL, 0,
Bram Moolenaar76929292008-01-06 19:07:36 +00004136 NULL, (linenr_T)0, 0L) <= 0)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004137 {
4138 curwin->w_cursor = old_pos;
4139 goto theend;
4140 }
4141 }
4142 start_pos = curwin->w_cursor;
4143
4144 /*
4145 * Search for matching "</aaa>". First isolate the "aaa".
4146 */
4147 inc_cursor();
4148 p = ml_get_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01004149 for (cp = p; *cp != NUL && *cp != '>' && !VIM_ISWHITE(*cp); MB_PTR_ADV(cp))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004150 ;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004151 len = (int)(cp - p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004152 if (len == 0)
4153 {
4154 curwin->w_cursor = old_pos;
4155 goto theend;
4156 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004157 spat = alloc(len + 31);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004158 epat = alloc(len + 9);
4159 if (spat == NULL || epat == NULL)
4160 {
4161 vim_free(spat);
4162 vim_free(epat);
4163 curwin->w_cursor = old_pos;
4164 goto theend;
4165 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004166 sprintf((char *)spat, "<%.*s\\>\\%%(\\s\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004167 sprintf((char *)epat, "</%.*s>\\c", len, p);
4168
Bram Moolenaar48570482017-10-30 21:48:41 +01004169 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, NULL,
Bram Moolenaar76929292008-01-06 19:07:36 +00004170 0, NULL, (linenr_T)0, 0L);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004171
4172 vim_free(spat);
4173 vim_free(epat);
4174
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004175 if (r < 1 || LT_POS(curwin->w_cursor, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004176 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004177 // Can't find other end or it's before the previous end. Could be a
4178 // HTML tag that doesn't have a matching end. Search backwards for
4179 // another starting tag.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004180 count = 1;
4181 curwin->w_cursor = start_pos;
4182 goto again;
4183 }
4184
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02004185 if (do_include)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004186 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004187 // Include up to the '>'.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004188 while (*ml_get_cursor() != '>')
4189 if (inc_cursor() < 0)
4190 break;
4191 }
4192 else
4193 {
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004194 char_u *c = ml_get_cursor();
4195
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004196 // Exclude the '<' of the end tag.
4197 // If the closing tag is on new line, do not decrement cursor, but
4198 // make operation exclusive, so that the linefeed will be selected
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004199 if (*c == '<' && !VIsual_active && curwin->w_cursor.col == 0)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004200 // do not decrement cursor
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004201 is_inclusive = FALSE;
4202 else if (*c == '<')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004203 dec_cursor();
4204 }
4205 end_pos = curwin->w_cursor;
4206
4207 if (!do_include)
4208 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004209 // Exclude the start tag.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004210 curwin->w_cursor = start_pos;
4211 while (inc_cursor() >= 0)
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004212 if (*ml_get_cursor() == '>')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004213 {
4214 inc_cursor();
4215 start_pos = curwin->w_cursor;
4216 break;
4217 }
4218 curwin->w_cursor = end_pos;
4219
Bram Moolenaarb476cb72018-08-16 21:37:50 +02004220 // If we are in Visual mode and now have the same text as before set
4221 // "do_include" and try again.
4222 if (VIsual_active && EQUAL_POS(start_pos, old_start)
4223 && EQUAL_POS(end_pos, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004224 {
4225 do_include = TRUE;
4226 curwin->w_cursor = old_start;
4227 count = count_arg;
4228 goto again;
4229 }
4230 }
4231
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004232 if (VIsual_active)
4233 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004234 // If the end is before the start there is no text between tags, select
4235 // the char under the cursor.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004236 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004237 curwin->w_cursor = start_pos;
4238 else if (*p_sel == 'e')
Bram Moolenaar8340dd92014-12-13 20:11:33 +01004239 inc_cursor();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004240 VIsual = start_pos;
4241 VIsual_mode = 'v';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004242 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004243 showmode();
4244 }
4245 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004246 {
4247 oap->start = start_pos;
4248 oap->motion_type = MCHAR;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004249 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004250 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004251 // End is before the start: there is no text between tags; operate
4252 // on an empty area.
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004253 curwin->w_cursor = start_pos;
4254 oap->inclusive = FALSE;
4255 }
4256 else
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004257 oap->inclusive = is_inclusive;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004258 }
4259 retval = OK;
4260
4261theend:
4262 p_ws = save_p_ws;
4263 return retval;
4264}
4265
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004267current_par(
4268 oparg_T *oap,
4269 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004270 int include, // TRUE == include white space
4271 int type) // 'p' for paragraph, 'S' for section
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272{
4273 linenr_T start_lnum;
4274 linenr_T end_lnum;
4275 int white_in_front;
4276 int dir;
4277 int start_is_white;
4278 int prev_start_is_white;
4279 int retval = OK;
4280 int do_white = FALSE;
4281 int t;
4282 int i;
4283
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004284 if (type == 'S') // not implemented yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285 return FAIL;
4286
4287 start_lnum = curwin->w_cursor.lnum;
4288
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 /*
4290 * When visual area is more than one line: extend it.
4291 */
4292 if (VIsual_active && start_lnum != VIsual.lnum)
4293 {
4294extend:
4295 if (start_lnum < VIsual.lnum)
4296 dir = BACKWARD;
4297 else
4298 dir = FORWARD;
4299 for (i = count; --i >= 0; )
4300 {
4301 if (start_lnum ==
4302 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
4303 {
4304 retval = FAIL;
4305 break;
4306 }
4307
4308 prev_start_is_white = -1;
4309 for (t = 0; t < 2; ++t)
4310 {
4311 start_lnum += dir;
4312 start_is_white = linewhite(start_lnum);
4313 if (prev_start_is_white == start_is_white)
4314 {
4315 start_lnum -= dir;
4316 break;
4317 }
4318 for (;;)
4319 {
4320 if (start_lnum == (dir == BACKWARD
4321 ? 1 : curbuf->b_ml.ml_line_count))
4322 break;
4323 if (start_is_white != linewhite(start_lnum + dir)
4324 || (!start_is_white
4325 && startPS(start_lnum + (dir > 0
4326 ? 1 : 0), 0, 0)))
4327 break;
4328 start_lnum += dir;
4329 }
4330 if (!include)
4331 break;
4332 if (start_lnum == (dir == BACKWARD
4333 ? 1 : curbuf->b_ml.ml_line_count))
4334 break;
4335 prev_start_is_white = start_is_white;
4336 }
4337 }
4338 curwin->w_cursor.lnum = start_lnum;
4339 curwin->w_cursor.col = 0;
4340 return retval;
4341 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342
4343 /*
4344 * First move back to the start_lnum of the paragraph or white lines
4345 */
4346 white_in_front = linewhite(start_lnum);
4347 while (start_lnum > 1)
4348 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004349 if (white_in_front) // stop at first white line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 {
4351 if (!linewhite(start_lnum - 1))
4352 break;
4353 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004354 else // stop at first non-white line of start of paragraph
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 {
4356 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
4357 break;
4358 }
4359 --start_lnum;
4360 }
4361
4362 /*
4363 * Move past the end of any white lines.
4364 */
4365 end_lnum = start_lnum;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004366 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
4367 ++end_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368
4369 --end_lnum;
4370 i = count;
4371 if (!include && white_in_front)
4372 --i;
4373 while (i--)
4374 {
4375 if (end_lnum == curbuf->b_ml.ml_line_count)
4376 return FAIL;
4377
4378 if (!include)
4379 do_white = linewhite(end_lnum + 1);
4380
4381 if (include || !do_white)
4382 {
4383 ++end_lnum;
4384 /*
4385 * skip to end of paragraph
4386 */
4387 while (end_lnum < curbuf->b_ml.ml_line_count
4388 && !linewhite(end_lnum + 1)
4389 && !startPS(end_lnum + 1, 0, 0))
4390 ++end_lnum;
4391 }
4392
4393 if (i == 0 && white_in_front && include)
4394 break;
4395
4396 /*
4397 * skip to end of white lines after paragraph
4398 */
4399 if (include || do_white)
4400 while (end_lnum < curbuf->b_ml.ml_line_count
4401 && linewhite(end_lnum + 1))
4402 ++end_lnum;
4403 }
4404
4405 /*
4406 * If there are no empty lines at the end, try to find some empty lines at
4407 * the start (unless that has been done already).
4408 */
4409 if (!white_in_front && !linewhite(end_lnum) && include)
4410 while (start_lnum > 1 && linewhite(start_lnum - 1))
4411 --start_lnum;
4412
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 if (VIsual_active)
4414 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004415 // Problem: when doing "Vipipip" nothing happens in a single white
4416 // line, we get stuck there. Trap this here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4418 goto extend;
Bram Moolenaar84b2a382017-02-17 11:40:00 +01004419 if (VIsual.lnum != start_lnum)
4420 {
4421 VIsual.lnum = start_lnum;
4422 VIsual.col = 0;
4423 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424 VIsual_mode = 'V';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004425 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426 showmode();
4427 }
4428 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429 {
4430 oap->start.lnum = start_lnum;
4431 oap->start.col = 0;
4432 oap->motion_type = MLINE;
4433 }
4434 curwin->w_cursor.lnum = end_lnum;
4435 curwin->w_cursor.col = 0;
4436
4437 return OK;
4438}
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004439
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004440/*
4441 * Search quote char from string line[col].
4442 * Quote character escaped by one of the characters in "escape" is not counted
4443 * as a quote.
4444 * Returns column number of "quotechar" or -1 when not found.
4445 */
4446 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004447find_next_quote(
4448 char_u *line,
4449 int col,
4450 int quotechar,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004451 char_u *escape) // escape characters, can be NULL
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004452{
4453 int c;
4454
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004455 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004456 {
4457 c = line[col];
4458 if (c == NUL)
4459 return -1;
4460 else if (escape != NULL && vim_strchr(escape, c))
4461 ++col;
4462 else if (c == quotechar)
4463 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004464 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004465 col += (*mb_ptr2len)(line + col);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004466 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004467 ++col;
4468 }
4469 return col;
4470}
4471
4472/*
4473 * Search backwards in "line" from column "col_start" to find "quotechar".
4474 * Quote character escaped by one of the characters in "escape" is not counted
4475 * as a quote.
4476 * Return the found column or zero.
4477 */
4478 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004479find_prev_quote(
4480 char_u *line,
4481 int col_start,
4482 int quotechar,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004483 char_u *escape) // escape characters, can be NULL
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004484{
4485 int n;
4486
4487 while (col_start > 0)
4488 {
4489 --col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004490 col_start -= (*mb_head_off)(line, line + col_start);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004491 n = 0;
4492 if (escape != NULL)
4493 while (col_start - n > 0 && vim_strchr(escape,
4494 line[col_start - n - 1]) != NULL)
4495 ++n;
4496 if (n & 1)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004497 col_start -= n; // uneven number of escape chars, skip it
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004498 else if (line[col_start] == quotechar)
4499 break;
4500 }
4501 return col_start;
4502}
4503
4504/*
4505 * Find quote under the cursor, cursor at end.
4506 * Returns TRUE if found, else FALSE.
4507 */
4508 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004509current_quote(
4510 oparg_T *oap,
4511 long count,
Bram Moolenaar94d9f4f2019-11-21 20:55:26 +01004512 int include, // TRUE == include quote char
4513 int quotechar) // Quote character
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004514{
4515 char_u *line = ml_get_curline();
4516 int col_end;
4517 int col_start = curwin->w_cursor.col;
4518 int inclusive = FALSE;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004519 int vis_empty = TRUE; // Visual selection <= 1 char
4520 int vis_bef_curs = FALSE; // Visual starts before cursor
Bram Moolenaar94d9f4f2019-11-21 20:55:26 +01004521 int did_exclusive_adj = FALSE; // adjusted pos for 'selection'
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004522 int inside_quotes = FALSE; // Looks like "i'" done before
4523 int selected_quote = FALSE; // Has quote inside selection
Bram Moolenaarab194812005-09-14 21:40:12 +00004524 int i;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004525 int restore_vis_bef = FALSE; // restore VIsual on abort
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004526
Bram Moolenaar94d9f4f2019-11-21 20:55:26 +01004527 // When 'selection' is "exclusive" move the cursor to where it would be
4528 // with 'selection' "inclusive", so that the logic is the same for both.
4529 // The cursor then is moved forward after adjusting the area.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004530 if (VIsual_active)
4531 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004532 // this only works within one line
Bram Moolenaar46522af2017-02-18 23:12:01 +01004533 if (VIsual.lnum != curwin->w_cursor.lnum)
4534 return FALSE;
4535
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004536 vis_bef_curs = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaar7170b292019-11-17 17:32:28 +01004537 vis_empty = EQUAL_POS(VIsual, curwin->w_cursor);
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004538 if (*p_sel == 'e')
4539 {
Bram Moolenaar94d9f4f2019-11-21 20:55:26 +01004540 if (vis_bef_curs)
4541 {
4542 dec_cursor();
4543 did_exclusive_adj = TRUE;
4544 }
4545 else if (!vis_empty)
4546 {
4547 dec(&VIsual);
4548 did_exclusive_adj = TRUE;
4549 }
4550 vis_empty = EQUAL_POS(VIsual, curwin->w_cursor);
Bram Moolenaar7170b292019-11-17 17:32:28 +01004551 if (!vis_bef_curs && !vis_empty)
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004552 {
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004553 // VIsual needs to be the start of Visual selection.
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004554 pos_T t = curwin->w_cursor;
4555
4556 curwin->w_cursor = VIsual;
4557 VIsual = t;
4558 vis_bef_curs = TRUE;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004559 restore_vis_bef = TRUE;
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004560 }
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004561 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004562 }
Bram Moolenaarab194812005-09-14 21:40:12 +00004563
4564 if (!vis_empty)
4565 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004566 // Check if the existing selection exactly spans the text inside
4567 // quotes.
Bram Moolenaarab194812005-09-14 21:40:12 +00004568 if (vis_bef_curs)
4569 {
4570 inside_quotes = VIsual.col > 0
4571 && line[VIsual.col - 1] == quotechar
4572 && line[curwin->w_cursor.col] != NUL
4573 && line[curwin->w_cursor.col + 1] == quotechar;
4574 i = VIsual.col;
4575 col_end = curwin->w_cursor.col;
4576 }
4577 else
4578 {
4579 inside_quotes = curwin->w_cursor.col > 0
4580 && line[curwin->w_cursor.col - 1] == quotechar
4581 && line[VIsual.col] != NUL
4582 && line[VIsual.col + 1] == quotechar;
4583 i = curwin->w_cursor.col;
4584 col_end = VIsual.col;
4585 }
4586
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004587 // Find out if we have a quote in the selection.
Bram Moolenaarab194812005-09-14 21:40:12 +00004588 while (i <= col_end)
4589 if (line[i++] == quotechar)
4590 {
4591 selected_quote = TRUE;
4592 break;
4593 }
4594 }
4595
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004596 if (!vis_empty && line[col_start] == quotechar)
4597 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004598 // Already selecting something and on a quote character. Find the
4599 // next quoted string.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004600 if (vis_bef_curs)
4601 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004602 // Assume we are on a closing quote: move to after the next
4603 // opening quote.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004604 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4605 if (col_start < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004606 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004607 col_end = find_next_quote(line, col_start + 1, quotechar,
4608 curbuf->b_p_qe);
4609 if (col_end < 0)
4610 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004611 // We were on a starting quote perhaps?
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004612 col_end = col_start;
4613 col_start = curwin->w_cursor.col;
4614 }
4615 }
4616 else
4617 {
4618 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4619 if (line[col_end] != quotechar)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004620 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004621 col_start = find_prev_quote(line, col_end, quotechar,
4622 curbuf->b_p_qe);
4623 if (line[col_start] != quotechar)
4624 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004625 // We were on an ending quote perhaps?
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004626 col_start = col_end;
4627 col_end = curwin->w_cursor.col;
4628 }
4629 }
4630 }
4631 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004632
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004633 if (line[col_start] == quotechar || !vis_empty)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004634 {
4635 int first_col = col_start;
4636
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004637 if (!vis_empty)
4638 {
4639 if (vis_bef_curs)
4640 first_col = find_next_quote(line, col_start, quotechar, NULL);
4641 else
4642 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4643 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004644
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004645 // The cursor is on a quote, we don't know if it's the opening or
4646 // closing quote. Search from the start of the line to find out.
4647 // Also do this when there is a Visual area, a' may leave the cursor
4648 // in between two strings.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004649 col_start = 0;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004650 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004651 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004652 // Find open quote character.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004653 col_start = find_next_quote(line, col_start, quotechar, NULL);
4654 if (col_start < 0 || col_start > first_col)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004655 goto abort_search;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004656 // Find close quote character.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004657 col_end = find_next_quote(line, col_start + 1, quotechar,
4658 curbuf->b_p_qe);
4659 if (col_end < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004660 goto abort_search;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004661 // If is cursor between start and end quote character, it is
4662 // target text object.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004663 if (col_start <= first_col && first_col <= col_end)
4664 break;
4665 col_start = col_end + 1;
4666 }
4667 }
4668 else
4669 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004670 // Search backward for a starting quote.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004671 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4672 if (line[col_start] != quotechar)
4673 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004674 // No quote before the cursor, look after the cursor.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004675 col_start = find_next_quote(line, col_start, quotechar, NULL);
4676 if (col_start < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004677 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004678 }
4679
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004680 // Find close quote character.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004681 col_end = find_next_quote(line, col_start + 1, quotechar,
4682 curbuf->b_p_qe);
4683 if (col_end < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004684 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004685 }
4686
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004687 // When "include" is TRUE, include spaces after closing quote or before
4688 // the starting quote.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004689 if (include)
4690 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004691 if (VIM_ISWHITE(line[col_end + 1]))
4692 while (VIM_ISWHITE(line[col_end + 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004693 ++col_end;
4694 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004695 while (col_start > 0 && VIM_ISWHITE(line[col_start - 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004696 --col_start;
4697 }
4698
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004699 // Set start position. After vi" another i" must include the ".
4700 // For v2i" include the quotes.
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004701 if (!include && count < 2 && (vis_empty || !inside_quotes))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004702 ++col_start;
4703 curwin->w_cursor.col = col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004704 if (VIsual_active)
4705 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004706 // Set the start of the Visual area when the Visual area was empty, we
4707 // were just inside quotes or the Visual area didn't start at a quote
4708 // and didn't include a quote.
Bram Moolenaarab194812005-09-14 21:40:12 +00004709 if (vis_empty
4710 || (vis_bef_curs
4711 && !selected_quote
4712 && (inside_quotes
4713 || (line[VIsual.col] != quotechar
4714 && (VIsual.col == 0
4715 || line[VIsual.col - 1] != quotechar)))))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004716 {
4717 VIsual = curwin->w_cursor;
4718 redraw_curbuf_later(INVERTED);
4719 }
4720 }
4721 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004722 {
4723 oap->start = curwin->w_cursor;
4724 oap->motion_type = MCHAR;
4725 }
4726
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004727 // Set end position.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004728 curwin->w_cursor.col = col_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004729 if ((include || count > 1 // After vi" another i" must include the ".
Bram Moolenaarab194812005-09-14 21:40:12 +00004730 || (!vis_empty && inside_quotes)
Bram Moolenaarab194812005-09-14 21:40:12 +00004731 ) && inc_cursor() == 2)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004732 inclusive = TRUE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004733 if (VIsual_active)
4734 {
4735 if (vis_empty || vis_bef_curs)
4736 {
Bram Moolenaar94d9f4f2019-11-21 20:55:26 +01004737 // decrement cursor when 'selection' is not exclusive
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004738 if (*p_sel != 'e')
4739 dec_cursor();
4740 }
4741 else
4742 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004743 // Cursor is at start of Visual area. Set the end of the Visual
4744 // area when it was just inside quotes or it didn't end at a
4745 // quote.
Bram Moolenaarab194812005-09-14 21:40:12 +00004746 if (inside_quotes
4747 || (!selected_quote
4748 && line[VIsual.col] != quotechar
4749 && (line[VIsual.col] == NUL
4750 || line[VIsual.col + 1] != quotechar)))
4751 {
4752 dec_cursor();
4753 VIsual = curwin->w_cursor;
4754 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004755 curwin->w_cursor.col = col_start;
4756 }
4757 if (VIsual_mode == 'V')
4758 {
4759 VIsual_mode = 'v';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004760 redraw_cmdline = TRUE; // show mode later
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004761 }
4762 }
4763 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004764 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004765 // Set inclusive and other oap's flags.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004766 oap->inclusive = inclusive;
4767 }
4768
4769 return OK;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004770
4771abort_search:
4772 if (VIsual_active && *p_sel == 'e')
4773 {
Bram Moolenaar94d9f4f2019-11-21 20:55:26 +01004774 if (did_exclusive_adj)
4775 inc_cursor();
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004776 if (restore_vis_bef)
4777 {
4778 pos_T t = curwin->w_cursor;
4779
4780 curwin->w_cursor = VIsual;
4781 VIsual = t;
4782 }
4783 }
4784 return FALSE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004785}
4786
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004787#endif // FEAT_TEXTOBJ
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004789/*
Bram Moolenaar453c1922019-10-26 14:42:09 +02004790 * Check if the pattern is zero-width.
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004791 * If move is TRUE, check from the beginning of the buffer, else from position
4792 * "cur".
4793 * "direction" is FORWARD or BACKWARD.
4794 * Returns TRUE, FALSE or -1 for failure.
4795 */
4796 static int
4797is_zero_width(char_u *pattern, int move, pos_T *cur, int direction)
4798{
4799 regmmatch_T regmatch;
4800 int nmatched = 0;
4801 int result = -1;
4802 pos_T pos;
Bram Moolenaar53989552019-12-23 22:59:18 +01004803 int called_emsg_before = called_emsg;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004804 int flag = 0;
4805
4806 if (pattern == NULL)
4807 pattern = spats[last_idx].pat;
4808
4809 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
4810 SEARCH_KEEP, &regmatch) == FAIL)
4811 return -1;
4812
4813 // init startcol correctly
4814 regmatch.startpos[0].col = -1;
4815 // move to match
4816 if (move)
4817 {
4818 CLEAR_POS(&pos);
4819 }
4820 else
4821 {
4822 pos = *cur;
4823 // accept a match at the cursor position
4824 flag = SEARCH_START;
4825 }
4826
4827 if (searchit(curwin, curbuf, &pos, NULL, direction, pattern, 1,
4828 SEARCH_KEEP + flag, RE_SEARCH, NULL) != FAIL)
4829 {
4830 // Zero-width pattern should match somewhere, then we can check if
4831 // start and end are in the same position.
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004832 do
4833 {
4834 regmatch.startpos[0].col++;
4835 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
4836 pos.lnum, regmatch.startpos[0].col, NULL, NULL);
4837 if (nmatched != 0)
4838 break;
4839 } while (direction == FORWARD ? regmatch.startpos[0].col < pos.col
4840 : regmatch.startpos[0].col > pos.col);
4841
Bram Moolenaar53989552019-12-23 22:59:18 +01004842 if (called_emsg == called_emsg_before)
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004843 {
4844 result = (nmatched != 0
4845 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
4846 && regmatch.startpos[0].col == regmatch.endpos[0].col);
4847 }
4848 }
4849
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004850 vim_regfree(regmatch.regprog);
4851 return result;
4852}
4853
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004854
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004855/*
4856 * Find next search match under cursor, cursor at end.
4857 * Used while an operator is pending, and in Visual mode.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004858 */
4859 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004860current_search(
4861 long count,
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004862 int forward) // TRUE for forward, FALSE for backward
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004863{
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004864 pos_T start_pos; // start position of the pattern match
4865 pos_T end_pos; // end position of the pattern match
4866 pos_T orig_pos; // position of the cursor at beginning
4867 pos_T pos; // position after the pattern
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004868 int i;
4869 int dir;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004870 int result; // result of various function calls
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004871 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004872 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02004873 pos_T save_VIsual = VIsual;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004874 int zero_width;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004875
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004876 // Correct cursor when 'selection' is exclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004877 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004878 dec_cursor();
4879
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004880 orig_pos = pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004881 if (VIsual_active)
4882 {
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004883 if (forward)
4884 incl(&pos);
4885 else
4886 decl(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004887 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004888
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004889 // Is the pattern is zero-width?, this time, don't care about the direction
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004890 zero_width = is_zero_width(spats[last_idx].pat, TRUE, &curwin->w_cursor,
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004891 FORWARD);
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004892 if (zero_width == -1)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004893 return FAIL; // pattern not found
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004894
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004895 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004896 * The trick is to first search backwards and then search forward again,
4897 * so that a match at the current cursor position will be correctly
4898 * captured.
4899 */
4900 for (i = 0; i < 2; i++)
4901 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004902 if (forward)
4903 dir = i;
4904 else
4905 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004906
4907 flags = 0;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004908 if (!dir && !zero_width)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004909 flags = SEARCH_END;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004910 end_pos = pos;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004911
Bram Moolenaar82cf7f62019-11-02 23:22:47 +01004912 // wrapping should not occur in the first round
4913 if (i == 0)
4914 p_ws = FALSE;
4915
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004916 result = searchit(curwin, curbuf, &pos, &end_pos,
4917 (dir ? FORWARD : BACKWARD),
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004918 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004919 SEARCH_KEEP | flags, RE_SEARCH, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004920
Bram Moolenaar82cf7f62019-11-02 23:22:47 +01004921 p_ws = old_p_ws;
4922
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004923 // First search may fail, but then start searching from the
4924 // beginning of the file (cursor might be on the search match)
4925 // except when Visual mode is active, so that extending the visual
4926 // selection works.
4927 if (i == 1 && !result) // not found, abort
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004928 {
4929 curwin->w_cursor = orig_pos;
4930 if (VIsual_active)
4931 VIsual = save_VIsual;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004932 return FAIL;
4933 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004934 else if (i == 0 && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004935 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004936 if (forward)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004937 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004938 // try again from start of buffer
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004939 CLEAR_POS(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004940 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004941 else
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004942 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004943 // try again from end of buffer
4944 // searching backwards, so set pos to last line and col
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004945 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02004946 pos.col = (colnr_T)STRLEN(
4947 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004948 }
4949 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004950 }
4951
4952 start_pos = pos;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004953
4954 if (!VIsual_active)
4955 VIsual = start_pos;
4956
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004957 // put cursor on last character of match
4958 curwin->w_cursor = end_pos;
Bram Moolenaar453c1922019-10-26 14:42:09 +02004959 if (LT_POS(VIsual, end_pos) && forward)
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004960 dec_cursor();
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004961 else if (VIsual_active && LT_POS(curwin->w_cursor, VIsual))
4962 curwin->w_cursor = pos; // put the cursor on the start of the match
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004963 VIsual_active = TRUE;
4964 VIsual_mode = 'v';
4965
Bram Moolenaarb7633612019-02-10 21:48:25 +01004966 if (*p_sel == 'e')
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004967 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004968 // Correction for exclusive selection depends on the direction.
Bram Moolenaarb7633612019-02-10 21:48:25 +01004969 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor))
4970 inc_cursor();
4971 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual))
4972 inc(&VIsual);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004973 }
4974
4975#ifdef FEAT_FOLDING
4976 if (fdo_flags & FDO_SEARCH && KeyTyped)
4977 foldOpenCursor();
4978#endif
4979
4980 may_start_select('c');
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004981 setmouse();
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004982#ifdef FEAT_CLIPBOARD
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004983 // Make sure the clipboard gets updated. Needed because start and
4984 // end are still the same, and the selection needs to be owned
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004985 clip_star.vmode = NUL;
4986#endif
4987 redraw_curbuf_later(INVERTED);
4988 showmode();
4989
4990 return OK;
4991}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004992
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4994 || defined(PROTO)
4995/*
4996 * return TRUE if line 'lnum' is empty or has white chars only.
4997 */
4998 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004999linewhite(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000{
5001 char_u *p;
5002
5003 p = skipwhite(ml_get(lnum));
5004 return (*p == NUL);
5005}
5006#endif
5007
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005008/*
5009 * Add the search count "[3/19]" to "msgbuf".
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02005010 * When "recompute" is TRUE always recompute the numbers.
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005011 */
5012 static void
5013search_stat(
5014 int dirc,
5015 pos_T *pos,
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02005016 int show_top_bot_msg,
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02005017 char_u *msgbuf,
5018 int recompute)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005019{
5020 int save_ws = p_ws;
5021 int wraparound = FALSE;
5022 pos_T p = (*pos);
5023 static pos_T lastpos = {0, 0, 0};
5024 static int cur = 0;
5025 static int cnt = 0;
5026 static int chgtick = 0;
5027 static char_u *lastpat = NULL;
5028 static buf_T *lbuf = NULL;
5029#ifdef FEAT_RELTIME
5030 proftime_T start;
5031#endif
5032#define OUT_OF_TIME 999
5033
5034 wraparound = ((dirc == '?' && LT_POS(lastpos, p))
5035 || (dirc == '/' && LT_POS(p, lastpos)));
5036
5037 // If anything relevant changed the count has to be recomputed.
5038 // MB_STRNICMP ignores case, but we should not ignore case.
5039 // Unfortunately, there is no MB_STRNICMP function.
5040 if (!(chgtick == CHANGEDTICK(curbuf)
5041 && MB_STRNICMP(lastpat, spats[last_idx].pat, STRLEN(lastpat)) == 0
5042 && STRLEN(lastpat) == STRLEN(spats[last_idx].pat)
5043 && EQUAL_POS(lastpos, curwin->w_cursor)
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02005044 && lbuf == curbuf) || wraparound || cur < 0 || cur > 99 || recompute)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005045 {
5046 cur = 0;
5047 cnt = 0;
5048 CLEAR_POS(&lastpos);
5049 lbuf = curbuf;
5050 }
5051
5052 if (EQUAL_POS(lastpos, curwin->w_cursor) && !wraparound
5053 && (dirc == '/' ? cur < cnt : cur > 0))
5054 cur += dirc == '/' ? 1 : -1;
5055 else
5056 {
5057 p_ws = FALSE;
5058#ifdef FEAT_RELTIME
5059 profile_setlimit(20L, &start);
5060#endif
5061 while (!got_int && searchit(curwin, curbuf, &lastpos, NULL,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02005062 FORWARD, NULL, 1, SEARCH_KEEP, RE_LAST, NULL) != FAIL)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005063 {
5064#ifdef FEAT_RELTIME
5065 // Stop after passing the time limit.
5066 if (profile_passed_limit(&start))
5067 {
5068 cnt = OUT_OF_TIME;
5069 cur = OUT_OF_TIME;
5070 break;
5071 }
5072#endif
5073 cnt++;
5074 if (LTOREQ_POS(lastpos, p))
5075 cur++;
5076 fast_breakcheck();
5077 if (cnt > 99)
5078 break;
5079 }
5080 if (got_int)
5081 cur = -1; // abort
5082 }
5083 if (cur > 0)
5084 {
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005085 char t[SEARCH_STAT_BUF_LEN] = "";
Bram Moolenaare2ad8262019-05-24 13:22:22 +02005086 size_t len;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005087
5088#ifdef FEAT_RIGHTLEFT
5089 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
5090 {
5091 if (cur == OUT_OF_TIME)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005092 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[?/??]");
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005093 else if (cnt > 99 && cur > 99)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005094 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>99/>99]");
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005095 else if (cnt > 99)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005096 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>99/%d]", cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005097 else
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005098 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/%d]", cnt, cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005099 }
5100 else
5101#endif
5102 {
5103 if (cur == OUT_OF_TIME)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005104 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[?/??]");
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005105 else if (cnt > 99 && cur > 99)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005106 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>99/>99]");
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005107 else if (cnt > 99)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005108 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/>99]", cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005109 else
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005110 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/%d]", cur, cnt);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005111 }
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02005112
5113 len = STRLEN(t);
Bram Moolenaardc6855a2019-05-18 19:26:29 +02005114 if (show_top_bot_msg && len + 2 < SEARCH_STAT_BUF_LEN)
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02005115 {
Bram Moolenaar16b58ae2019-09-06 20:40:21 +02005116 mch_memmove(t + 2, t, len);
5117 t[0] = 'W';
5118 t[1] = ' ';
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02005119 len += 2;
5120 }
5121
5122 mch_memmove(msgbuf + STRLEN(msgbuf) - len, t, len);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005123 if (dirc == '?' && cur == 100)
5124 cur = -1;
5125
5126 vim_free(lastpat);
5127 lastpat = vim_strsave(spats[last_idx].pat);
5128 chgtick = CHANGEDTICK(curbuf);
5129 lbuf = curbuf;
5130 lastpos = p;
5131
Bram Moolenaar984f0312019-05-24 13:11:47 +02005132 // keep the message even after redraw, but don't put in history
5133 msg_hist_off = TRUE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005134 give_warning(msgbuf, FALSE);
Bram Moolenaar984f0312019-05-24 13:11:47 +02005135 msg_hist_off = FALSE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005136 }
5137 p_ws = save_ws;
5138}
5139
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140#if defined(FEAT_FIND_ID) || defined(PROTO)
5141/*
5142 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01005143 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005146find_pattern_in_path(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005147 char_u *ptr, // pointer to search pattern
5148 int dir UNUSED, // direction of expansion
5149 int len, // length of search pattern
5150 int whole, // match whole words only
5151 int skip_comments, // don't match inside comments
5152 int type, // Type of search; are we looking for a type?
5153 // a macro?
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005154 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005155 int action, // What to do when we find it
5156 linenr_T start_lnum, // first line to start searching
5157 linenr_T end_lnum) // last line for searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005159 SearchedFile *files; // Stack of included files
5160 SearchedFile *bigger; // When we need more space
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 int max_path_depth = 50;
5162 long match_count = 1;
5163
5164 char_u *pat;
5165 char_u *new_fname;
5166 char_u *curr_fname = curbuf->b_fname;
5167 char_u *prev_fname = NULL;
5168 linenr_T lnum;
5169 int depth;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005170 int depth_displayed; // For type==CHECK_PATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 int old_files;
5172 int already_searched;
5173 char_u *file_line;
5174 char_u *line;
5175 char_u *p;
5176 char_u save_char;
5177 int define_matched;
5178 regmatch_T regmatch;
5179 regmatch_T incl_regmatch;
5180 regmatch_T def_regmatch;
5181 int matched = FALSE;
5182 int did_show = FALSE;
5183 int found = FALSE;
5184 int i;
5185 char_u *already = NULL;
5186 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005187 char_u *inc_opt = NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005188#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189 win_T *curwin_save = NULL;
5190#endif
5191
5192 regmatch.regprog = NULL;
5193 incl_regmatch.regprog = NULL;
5194 def_regmatch.regprog = NULL;
5195
5196 file_line = alloc(LSIZE);
5197 if (file_line == NULL)
5198 return;
5199
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200 if (type != CHECK_PATH && type != FIND_DEFINE
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005201 // when CONT_SOL is set compare "ptr" with the beginning of the line
5202 // is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005203 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 {
5205 pat = alloc(len + 5);
5206 if (pat == NULL)
5207 goto fpip_end;
5208 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005209 // ignore case according to p_ic, p_scs and pat
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 regmatch.rm_ic = ignorecase(pat);
5211 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
5212 vim_free(pat);
5213 if (regmatch.regprog == NULL)
5214 goto fpip_end;
5215 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005216 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
5217 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005219 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220 if (incl_regmatch.regprog == NULL)
5221 goto fpip_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005222 incl_regmatch.rm_ic = FALSE; // don't ignore case in incl. pat.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223 }
5224 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
5225 {
5226 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
5227 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
5228 if (def_regmatch.regprog == NULL)
5229 goto fpip_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005230 def_regmatch.rm_ic = FALSE; // don't ignore case in define pat.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005232 files = lalloc_clear(max_path_depth * sizeof(SearchedFile), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233 if (files == NULL)
5234 goto fpip_end;
5235 old_files = max_path_depth;
5236 depth = depth_displayed = -1;
5237
5238 lnum = start_lnum;
5239 if (end_lnum > curbuf->b_ml.ml_line_count)
5240 end_lnum = curbuf->b_ml.ml_line_count;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005241 if (lnum > end_lnum) // do at least one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 lnum = end_lnum;
5243 line = ml_get(lnum);
5244
5245 for (;;)
5246 {
5247 if (incl_regmatch.regprog != NULL
5248 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
5249 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005250 char_u *p_fname = (curr_fname == curbuf->b_fname)
5251 ? curbuf->b_ffname : curr_fname;
5252
5253 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005254 // Use text from '\zs' to '\ze' (or end) of 'include'.
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005255 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005256 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005257 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
5258 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005259 // Use text after match with 'include'.
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005260 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005261 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262 already_searched = FALSE;
5263 if (new_fname != NULL)
5264 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005265 // Check whether we have already searched in this file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 for (i = 0;; i++)
5267 {
5268 if (i == depth + 1)
5269 i = old_files;
5270 if (i == max_path_depth)
5271 break;
Bram Moolenaar99499b12019-05-23 21:35:48 +02005272 if (fullpathcmp(new_fname, files[i].name, TRUE, TRUE)
5273 & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 {
5275 if (type != CHECK_PATH &&
5276 action == ACTION_SHOW_ALL && files[i].matched)
5277 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005278 msg_putchar('\n'); // cursor below last one
5279 if (!got_int) // don't display if 'q'
5280 // typed at "--more--"
5281 // message
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282 {
5283 msg_home_replace_hl(new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01005284 msg_puts(_(" (includes previously listed match)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 prev_fname = NULL;
5286 }
5287 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01005288 VIM_CLEAR(new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289 already_searched = TRUE;
5290 break;
5291 }
5292 }
5293 }
5294
5295 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
5296 || (new_fname == NULL && !already_searched)))
5297 {
5298 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005299 msg_putchar('\n'); // cursor below last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 else
5301 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005302 gotocmdline(TRUE); // cursor at status line
Bram Moolenaar32526b32019-01-19 17:43:09 +01005303 msg_puts_title(_("--- Included files "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005305 msg_puts_title(_("not found "));
5306 msg_puts_title(_("in path ---\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 }
5308 did_show = TRUE;
5309 while (depth_displayed < depth && !got_int)
5310 {
5311 ++depth_displayed;
5312 for (i = 0; i < depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005313 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 msg_home_replace(files[depth_displayed].name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01005315 msg_puts(" -->\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005317 if (!got_int) // don't display if 'q' typed
5318 // for "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319 {
5320 for (i = 0; i <= depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005321 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 if (new_fname != NULL)
5323 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005324 // using "new_fname" is more reliable, e.g., when
5325 // 'includeexpr' is set.
Bram Moolenaar8820b482017-03-16 17:23:31 +01005326 msg_outtrans_attr(new_fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 }
5328 else
5329 {
5330 /*
5331 * Isolate the file name.
5332 * Include the surrounding "" or <> if present.
5333 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005334 if (inc_opt != NULL
5335 && strstr((char *)inc_opt, "\\zs") != NULL)
5336 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005337 // pattern contains \zs, use the match
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005338 p = incl_regmatch.startp[0];
5339 i = (int)(incl_regmatch.endp[0]
5340 - incl_regmatch.startp[0]);
5341 }
5342 else
5343 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005344 // find the file name after the end of the match
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005345 for (p = incl_regmatch.endp[0];
5346 *p && !vim_isfilec(*p); p++)
5347 ;
5348 for (i = 0; vim_isfilec(p[i]); i++)
5349 ;
5350 }
5351
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352 if (i == 0)
5353 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005354 // Nothing found, use the rest of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005355 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005356 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005358 // Avoid checking before the start of the line, can
5359 // happen if \zs appears in the regexp.
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005360 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361 {
5362 if (p[-1] == '"' || p[-1] == '<')
5363 {
5364 --p;
5365 ++i;
5366 }
5367 if (p[i] == '"' || p[i] == '>')
5368 ++i;
5369 }
5370 save_char = p[i];
5371 p[i] = NUL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01005372 msg_outtrans_attr(p, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373 p[i] = save_char;
5374 }
5375
5376 if (new_fname == NULL && action == ACTION_SHOW_ALL)
5377 {
5378 if (already_searched)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005379 msg_puts(_(" (Already listed)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005381 msg_puts(_(" NOT FOUND"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382 }
5383 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005384 out_flush(); // output each line directly
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385 }
5386
5387 if (new_fname != NULL)
5388 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005389 // Push the new file onto the file stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390 if (depth + 1 == old_files)
5391 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005392 bigger = ALLOC_MULT(SearchedFile, max_path_depth * 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393 if (bigger != NULL)
5394 {
5395 for (i = 0; i <= depth; i++)
5396 bigger[i] = files[i];
5397 for (i = depth + 1; i < old_files + max_path_depth; i++)
5398 {
5399 bigger[i].fp = NULL;
5400 bigger[i].name = NULL;
5401 bigger[i].lnum = 0;
5402 bigger[i].matched = FALSE;
5403 }
5404 for (i = old_files; i < max_path_depth; i++)
5405 bigger[i + max_path_depth] = files[i];
5406 old_files += max_path_depth;
5407 max_path_depth *= 2;
5408 vim_free(files);
5409 files = bigger;
5410 }
5411 }
5412 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
5413 == NULL)
5414 vim_free(new_fname);
5415 else
5416 {
5417 if (++depth == old_files)
5418 {
5419 /*
5420 * lalloc() for 'bigger' must have failed above. We
5421 * will forget one of our already visited files now.
5422 */
5423 vim_free(files[old_files].name);
5424 ++old_files;
5425 }
5426 files[depth].name = curr_fname = new_fname;
5427 files[depth].lnum = 0;
5428 files[depth].matched = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429 if (action == ACTION_EXPAND)
5430 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005431 msg_hist_off = TRUE; // reset in msg_trunc_attr()
Bram Moolenaar555b2802005-05-19 21:08:39 +00005432 vim_snprintf((char*)IObuff, IOSIZE,
5433 _("Scanning included file: %s"),
5434 (char *)new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01005435 msg_trunc_attr((char *)IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005437 else if (p_verbose >= 5)
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005438 {
5439 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005440 smsg(_("Searching included file %s"),
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005441 (char *)new_fname);
5442 verbose_leave();
5443 }
5444
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445 }
5446 }
5447 }
5448 else
5449 {
5450 /*
5451 * Check if the line is a define (type == FIND_DEFINE)
5452 */
5453 p = line;
5454search_line:
5455 define_matched = FALSE;
5456 if (def_regmatch.regprog != NULL
5457 && vim_regexec(&def_regmatch, line, (colnr_T)0))
5458 {
5459 /*
5460 * Pattern must be first identifier after 'define', so skip
5461 * to that position before checking for match of pattern. Also
5462 * don't let it match beyond the end of this identifier.
5463 */
5464 p = def_regmatch.endp[0];
5465 while (*p && !vim_iswordc(*p))
5466 p++;
5467 define_matched = TRUE;
5468 }
5469
5470 /*
5471 * Look for a match. Don't do this if we are looking for a
5472 * define and this line didn't match define_prog above.
5473 */
5474 if (def_regmatch.regprog == NULL || define_matched)
5475 {
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005476 if (define_matched || (compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005478 // compare the first "len" chars from "ptr"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479 startp = skipwhite(p);
5480 if (p_ic)
5481 matched = !MB_STRNICMP(startp, ptr, len);
5482 else
5483 matched = !STRNCMP(startp, ptr, len);
5484 if (matched && define_matched && whole
5485 && vim_iswordc(startp[len]))
5486 matched = FALSE;
5487 }
5488 else if (regmatch.regprog != NULL
5489 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
5490 {
5491 matched = TRUE;
5492 startp = regmatch.startp[0];
5493 /*
5494 * Check if the line is not a comment line (unless we are
5495 * looking for a define). A line starting with "# define"
5496 * is not considered to be a comment line.
5497 */
5498 if (!define_matched && skip_comments)
5499 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500 if ((*line != '#' ||
5501 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02005502 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 matched = FALSE;
5504
5505 /*
5506 * Also check for a "/ *" or "/ /" before the match.
5507 * Skips lines like "int backwards; / * normal index
5508 * * /" when looking for "normal".
5509 * Note: Doesn't skip "/ *" in comments.
5510 */
5511 p = skipwhite(line);
5512 if (matched
5513 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514 for (p = line; *p && p < startp; ++p)
5515 {
5516 if (matched
5517 && p[0] == '/'
5518 && (p[1] == '*' || p[1] == '/'))
5519 {
5520 matched = FALSE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005521 // After "//" all text is comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 if (p[1] == '/')
5523 break;
5524 ++p;
5525 }
5526 else if (!matched && p[0] == '*' && p[1] == '/')
5527 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005528 // Can find match after "* /".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 matched = TRUE;
5530 ++p;
5531 }
5532 }
5533 }
5534 }
5535 }
5536 }
5537 if (matched)
5538 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539 if (action == ACTION_EXPAND)
5540 {
Bram Moolenaard9eefe32019-04-06 14:22:21 +02005541 int cont_s_ipos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 int add_r;
5543 char_u *aux;
5544
5545 if (depth == -1 && lnum == curwin->w_cursor.lnum)
5546 break;
5547 found = TRUE;
5548 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005549 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005551 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005552 if (vim_iswordp(p))
5553 goto exit_matched;
5554 p = find_word_start(p);
5555 }
5556 p = find_word_end(p);
5557 i = (int)(p - aux);
5558
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005559 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005561 // IOSIZE > compl_length, so the STRNCPY works
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00005563
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005564 // Get the next line: when "depth" < 0 from the current
5565 // buffer, otherwise from the included file. Jump to
5566 // exit_matched when past the last line.
Bram Moolenaar89d40322006-08-29 15:30:07 +00005567 if (depth < 0)
5568 {
5569 if (lnum >= end_lnum)
5570 goto exit_matched;
5571 line = ml_get(++lnum);
5572 }
5573 else if (vim_fgets(line = file_line,
5574 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 goto exit_matched;
5576
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005577 // we read a line, set "already" to check this "line" later
5578 // if depth >= 0 we'll increase files[depth].lnum far
5579 // bellow -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580 already = aux = p = skipwhite(line);
5581 p = find_word_start(p);
5582 p = find_word_end(p);
5583 if (p > aux)
5584 {
5585 if (*aux != ')' && IObuff[i-1] != TAB)
5586 {
5587 if (IObuff[i-1] != ' ')
5588 IObuff[i++] = ' ';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005589 // IObuf =~ "\(\k\|\i\).* ", thus i >= 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 if (p_js
5591 && (IObuff[i-2] == '.'
5592 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
5593 && (IObuff[i-2] == '?'
5594 || IObuff[i-2] == '!'))))
5595 IObuff[i++] = ' ';
5596 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005597 // copy as much as possible of the new word
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 if (p - aux >= IOSIZE - i)
5599 p = aux + IOSIZE - i - 1;
5600 STRNCPY(IObuff + i, aux, p - aux);
5601 i += (int)(p - aux);
Bram Moolenaard9eefe32019-04-06 14:22:21 +02005602 cont_s_ipos = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603 }
5604 IObuff[i] = NUL;
5605 aux = IObuff;
5606
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005607 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608 goto exit_matched;
5609 }
5610
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005611 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612 curr_fname == curbuf->b_fname ? NULL : curr_fname,
Bram Moolenaard9eefe32019-04-06 14:22:21 +02005613 dir, cont_s_ipos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 if (add_r == OK)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005615 // if dir was BACKWARD then honor it just once
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005617 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618 break;
5619 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005620 else if (action == ACTION_SHOW_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 {
5622 found = TRUE;
5623 if (!did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005624 gotocmdline(TRUE); // cursor at status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005625 if (curr_fname != prev_fname)
5626 {
5627 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005628 msg_putchar('\n'); // cursor below last one
5629 if (!got_int) // don't display if 'q' typed
5630 // at "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00005631 msg_home_replace_hl(curr_fname);
5632 prev_fname = curr_fname;
5633 }
5634 did_show = TRUE;
5635 if (!got_int)
5636 show_pat_in_path(line, type, TRUE, action,
5637 (depth == -1) ? NULL : files[depth].fp,
5638 (depth == -1) ? &lnum : &files[depth].lnum,
5639 match_count++);
5640
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005641 // Set matched flag for this file and all the ones that
5642 // include it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005643 for (i = 0; i <= depth; ++i)
5644 files[i].matched = TRUE;
5645 }
5646 else if (--count <= 0)
5647 {
5648 found = TRUE;
5649 if (depth == -1 && lnum == curwin->w_cursor.lnum
Bram Moolenaar4033c552017-09-16 20:54:51 +02005650#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005651 && g_do_tagpreview == 0
5652#endif
5653 )
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005654 emsg(_("E387: Match is on current line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655 else if (action == ACTION_SHOW)
5656 {
5657 show_pat_in_path(line, type, did_show, action,
5658 (depth == -1) ? NULL : files[depth].fp,
5659 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
5660 did_show = TRUE;
5661 }
5662 else
5663 {
5664#ifdef FEAT_GUI
5665 need_mouse_correct = TRUE;
5666#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005667#if defined(FEAT_QUICKFIX)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005668 // ":psearch" uses the preview window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005669 if (g_do_tagpreview != 0)
5670 {
5671 curwin_save = curwin;
Bram Moolenaar576a4a62019-08-18 15:25:17 +02005672 prepare_tagpreview(TRUE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005673 }
5674#endif
5675 if (action == ACTION_SPLIT)
5676 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005678 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005679 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005680 }
5681 if (depth == -1)
5682 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005683 // match in current file
Bram Moolenaar4033c552017-09-16 20:54:51 +02005684#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 if (g_do_tagpreview != 0)
5686 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005687 if (!GETFILE_SUCCESS(getfile(
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005688 curwin_save->w_buffer->b_fnum, NULL,
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005689 NULL, TRUE, lnum, FALSE)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005690 break; // failed to jump to file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005691 }
5692 else
5693#endif
5694 setpcmark();
5695 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005696 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697 }
5698 else
5699 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005700 if (!GETFILE_SUCCESS(getfile(
5701 0, files[depth].name, NULL, TRUE,
5702 files[depth].lnum, FALSE)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005703 break; // failed to jump to file
5704 // autocommands may have changed the lnum, we don't
5705 // want that here
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706 curwin->w_cursor.lnum = files[depth].lnum;
5707 }
5708 }
5709 if (action != ACTION_SHOW)
5710 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005711 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712 curwin->w_set_curswant = TRUE;
5713 }
5714
Bram Moolenaar4033c552017-09-16 20:54:51 +02005715#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005716 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005717 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005718 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005719 // Return cursor to where we were
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720 validate_cursor();
5721 redraw_later(VALID);
5722 win_enter(curwin_save, TRUE);
5723 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005724# ifdef FEAT_PROP_POPUP
Bram Moolenaar1b6d9c42019-08-05 21:52:04 +02005725 else if (WIN_IS_POPUP(curwin))
5726 // can't keep focus in popup window
5727 win_enter(firstwin, TRUE);
5728# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729#endif
5730 break;
5731 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005732exit_matched:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733 matched = FALSE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005734 // look for other matches in the rest of the line if we
5735 // are not at the end of it already
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 if (def_regmatch.regprog == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005737 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005738 && !(compl_cont_status & CONT_SOL)
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005739 && *startp != NUL
Bram Moolenaar1614a142019-10-06 22:00:13 +02005740 && *(p = startp + mb_ptr2len(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 goto search_line;
5742 }
5743 line_breakcheck();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744 if (action == ACTION_EXPAND)
Bram Moolenaar472e8592016-10-15 17:06:47 +02005745 ins_compl_check_keys(30, FALSE);
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005746 if (got_int || ins_compl_interrupted())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005747 break;
5748
5749 /*
5750 * Read the next line. When reading an included file and encountering
5751 * end-of-file, close the file and continue in the file that included
5752 * it.
5753 */
5754 while (depth >= 0 && !already
5755 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5756 {
5757 fclose(files[depth].fp);
5758 --old_files;
5759 files[old_files].name = files[depth].name;
5760 files[old_files].matched = files[depth].matched;
5761 --depth;
5762 curr_fname = (depth == -1) ? curbuf->b_fname
5763 : files[depth].name;
5764 if (depth < depth_displayed)
5765 depth_displayed = depth;
5766 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005767 if (depth >= 0) // we could read the line
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005768 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769 files[depth].lnum++;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005770 // Remove any CR and LF from the line.
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005771 i = (int)STRLEN(line);
5772 if (i > 0 && line[i - 1] == '\n')
5773 line[--i] = NUL;
5774 if (i > 0 && line[i - 1] == '\r')
5775 line[--i] = NUL;
5776 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777 else if (!already)
5778 {
5779 if (++lnum > end_lnum)
5780 break;
5781 line = ml_get(lnum);
5782 }
5783 already = NULL;
5784 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005785 // End of big for (;;) loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005787 // Close any files that are still open.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788 for (i = 0; i <= depth; i++)
5789 {
5790 fclose(files[i].fp);
5791 vim_free(files[i].name);
5792 }
5793 for (i = old_files; i < max_path_depth; i++)
5794 vim_free(files[i].name);
5795 vim_free(files);
5796
5797 if (type == CHECK_PATH)
5798 {
5799 if (!did_show)
5800 {
5801 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005802 msg(_("All included files were found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005804 msg(_("No included files"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 }
5806 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005807 else if (!found && action != ACTION_EXPAND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808 {
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005809 if (got_int || ins_compl_interrupted())
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005810 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 else if (type == FIND_DEFINE)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005812 emsg(_("E388: Couldn't find definition"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005814 emsg(_("E389: Couldn't find pattern"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 }
5816 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5817 msg_end();
5818
5819fpip_end:
5820 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02005821 vim_regfree(regmatch.regprog);
5822 vim_regfree(incl_regmatch.regprog);
5823 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005824}
5825
5826 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005827show_pat_in_path(
5828 char_u *line,
5829 int type,
5830 int did_show,
5831 int action,
5832 FILE *fp,
5833 linenr_T *lnum,
5834 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005835{
5836 char_u *p;
5837
5838 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005839 msg_putchar('\n'); // cursor below last one
Bram Moolenaar91170f82006-05-05 21:15:17 +00005840 else if (!msg_silent)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005841 gotocmdline(TRUE); // cursor at status line
5842 if (got_int) // 'q' typed at "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843 return;
5844 for (;;)
5845 {
5846 p = line + STRLEN(line) - 1;
5847 if (fp != NULL)
5848 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005849 // We used fgets(), so get rid of newline at end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850 if (p >= line && *p == '\n')
5851 --p;
5852 if (p >= line && *p == '\r')
5853 --p;
5854 *(p + 1) = NUL;
5855 }
5856 if (action == ACTION_SHOW_ALL)
5857 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005858 sprintf((char *)IObuff, "%3ld: ", count); // show match nr
Bram Moolenaar32526b32019-01-19 17:43:09 +01005859 msg_puts((char *)IObuff);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005860 sprintf((char *)IObuff, "%4ld", *lnum); // show line nr
5861 // Highlight line numbers
Bram Moolenaar32526b32019-01-19 17:43:09 +01005862 msg_puts_attr((char *)IObuff, HL_ATTR(HLF_N));
5863 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005865 msg_prt_line(line, FALSE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005866 out_flush(); // show one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005868 // Definition continues until line that doesn't end with '\'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005869 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5870 break;
5871
5872 if (fp != NULL)
5873 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005874 if (vim_fgets(line, LSIZE, fp)) // end of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875 break;
5876 ++*lnum;
5877 }
5878 else
5879 {
5880 if (++*lnum > curbuf->b_ml.ml_line_count)
5881 break;
5882 line = ml_get(*lnum);
5883 }
5884 msg_putchar('\n');
5885 }
5886}
5887#endif
5888
5889#ifdef FEAT_VIMINFO
Bram Moolenaar6bd1d772019-10-09 22:01:25 +02005890/*
5891 * Return the last used search pattern at "idx".
5892 */
Bram Moolenaarc3328162019-07-23 22:15:25 +02005893 spat_T *
5894get_spat(int idx)
5895{
5896 return &spats[idx];
5897}
5898
Bram Moolenaar6bd1d772019-10-09 22:01:25 +02005899/*
5900 * Return the last used search pattern index.
5901 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902 int
Bram Moolenaarc3328162019-07-23 22:15:25 +02005903get_spat_last_idx(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904{
Bram Moolenaarc3328162019-07-23 22:15:25 +02005905 return last_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005907#endif