blob: 08915578fc0efc8b9aaff832de3773dca9e947b2 [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 Moolenaar07ada5f2020-02-05 20:38:22 +0100383 void
384free_last_pat(int idx)
385{
386 VIM_CLEAR(spats[idx].pat);
387}
388
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389/*
390 * Return TRUE when case should be ignored for search pattern "pat".
391 * Uses the 'ignorecase' and 'smartcase' options.
392 */
393 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100394ignorecase(char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395{
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200396 return ignorecase_opt(pat, p_ic, p_scs);
397}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200399/*
400 * As ignorecase() put pass the "ic" and "scs" flags.
401 */
402 int
403ignorecase_opt(char_u *pat, int ic_in, int scs)
404{
405 int ic = ic_in;
406
407 if (ic && !no_smartcase && scs
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200408 && !(ctrl_x_mode_not_default() && curbuf->b_p_inf))
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200409 ic = !pat_has_uppercase(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410 no_smartcase = FALSE;
411
412 return ic;
413}
414
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200415/*
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200416 * Return TRUE if pattern "pat" has an uppercase character.
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200417 */
418 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100419pat_has_uppercase(char_u *pat)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200420{
421 char_u *p = pat;
422
423 while (*p != NUL)
424 {
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200425 int l;
426
427 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
428 {
429 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
430 return TRUE;
431 p += l;
432 }
Bram Moolenaar264b74f2019-01-24 17:18:42 +0100433 else if (*p == '\\')
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200434 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100435 if (p[1] == '_' && p[2] != NUL) // skip "\_X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200436 p += 3;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100437 else if (p[1] == '%' && p[2] != NUL) // skip "\%X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200438 p += 3;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100439 else if (p[1] != NUL) // skip "\X"
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200440 p += 2;
441 else
442 p += 1;
443 }
444 else if (MB_ISUPPER(*p))
445 return TRUE;
446 else
447 ++p;
448 }
449 return FALSE;
450}
451
Bram Moolenaar113e1072019-01-20 15:30:40 +0100452#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100454last_csearch(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200455{
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200456 return lastc_bytes;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200457}
458
459 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100460last_csearch_forward(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200461{
462 return lastcdir == FORWARD;
463}
464
465 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100466last_csearch_until(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200467{
468 return last_t_cmd == TRUE;
469}
470
471 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100472set_last_csearch(int c, char_u *s UNUSED, int len UNUSED)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200473{
474 *lastc = c;
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200475 lastc_bytelen = len;
476 if (len)
477 memcpy(lastc_bytes, s, len);
478 else
479 vim_memset(lastc_bytes, 0, sizeof(lastc_bytes));
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200480}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100481#endif
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200482
483 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100484set_csearch_direction(int cdir)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200485{
486 lastcdir = cdir;
487}
488
489 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100490set_csearch_until(int t_cmd)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200491{
492 last_t_cmd = t_cmd;
493}
494
495 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100496last_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497{
498 return spats[last_idx].pat;
499}
500
501/*
502 * Reset search direction to forward. For "gd" and "gD" commands.
503 */
504 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100505reset_search_dir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506{
507 spats[0].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000508#if defined(FEAT_EVAL)
509 set_vv_searchforward();
510#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511}
512
513#if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
514/*
515 * Set the last search pattern. For ":let @/ =" and viminfo.
516 * Also set the saved search pattern, so that this works in an autocommand.
517 */
518 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100519set_last_search_pat(
520 char_u *s,
521 int idx,
522 int magic,
523 int setlast)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524{
525 vim_free(spats[idx].pat);
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100526 // An empty string means that nothing should be matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 if (*s == NUL)
528 spats[idx].pat = NULL;
529 else
530 spats[idx].pat = vim_strsave(s);
531 spats[idx].magic = magic;
532 spats[idx].no_scs = FALSE;
533 spats[idx].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000534#if defined(FEAT_EVAL)
535 set_vv_searchforward();
536#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 spats[idx].off.line = FALSE;
538 spats[idx].off.end = FALSE;
539 spats[idx].off.off = 0;
540 if (setlast)
541 last_idx = idx;
542 if (save_level)
543 {
544 vim_free(saved_spats[idx].pat);
545 saved_spats[idx] = spats[0];
546 if (spats[idx].pat == NULL)
547 saved_spats[idx].pat = NULL;
548 else
549 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
Bram Moolenaar975880b2019-03-03 14:42:11 +0100550# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaared8bc782018-12-01 21:08:21 +0100551 saved_spats_last_idx = last_idx;
Bram Moolenaar975880b2019-03-03 14:42:11 +0100552# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 }
554# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100555 // If 'hlsearch' set and search pat changed: need redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 if (p_hls && idx == last_idx && !no_hlsearch)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000557 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558# endif
559}
560#endif
561
562#ifdef FEAT_SEARCH_EXTRA
563/*
564 * Get a regexp program for the last used search pattern.
565 * This is used for highlighting all matches in a window.
566 * Values returned in regmatch->regprog and regmatch->rmm_ic.
567 */
568 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100569last_pat_prog(regmmatch_T *regmatch)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570{
571 if (spats[last_idx].pat == NULL)
572 {
573 regmatch->regprog = NULL;
574 return;
575 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100576 ++emsg_off; // So it doesn't beep if bad expr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
578 --emsg_off;
579}
580#endif
581
582/*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100583 * Lowest level search function.
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100584 * Search for 'count'th occurrence of pattern "pat" in direction "dir".
585 * Start at position "pos" and return the found position in "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 *
587 * if (options & SEARCH_MSG) == 0 don't give any messages
588 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
589 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
590 * if (options & SEARCH_HIS) put search pattern in history
591 * if (options & SEARCH_END) return position at end of match
592 * if (options & SEARCH_START) accept match at pos itself
593 * if (options & SEARCH_KEEP) keep previous search pattern
594 * if (options & SEARCH_FOLD) match only once in a closed fold
595 * if (options & SEARCH_PEEK) check for typed char, cancel search
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100596 * if (options & SEARCH_COL) start at pos->col instead of zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 *
598 * Return FAIL (zero) for failure, non-zero for success.
599 * When FEAT_EVAL is defined, returns the index of the first matching
600 * subpattern plus one; one if there was none.
601 */
602 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100603searchit(
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200604 win_T *win, // window to search in; can be NULL for a
605 // buffer without a window!
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100606 buf_T *buf,
607 pos_T *pos,
Bram Moolenaar5d24a222018-12-23 19:10:09 +0100608 pos_T *end_pos, // set to end of the match, unless NULL
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100609 int dir,
610 char_u *pat,
611 long count,
612 int options,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200613 int pat_use, // which pattern to use when "pat" is empty
614 searchit_arg_T *extra_arg) // optional extra arguments, can be NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615{
616 int found;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100617 linenr_T lnum; // no init to shut up Apollo cc
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100618 colnr_T col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 regmmatch_T regmatch;
620 char_u *ptr;
621 colnr_T matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 lpos_T endpos;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000623 lpos_T matchpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 int loop;
625 pos_T start_pos;
626 int at_first_line;
627 int extra_col;
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200628 int start_char_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 int match_ok;
630 long nmatched;
631 int submatch = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100632 int first_match = TRUE;
Bram Moolenaar53989552019-12-23 22:59:18 +0100633 int called_emsg_before = called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634#ifdef FEAT_SEARCH_EXTRA
635 int break_loop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636#endif
Bram Moolenaar92ea26b2019-10-18 20:53:34 +0200637 linenr_T stop_lnum = 0; // stop after this line number when != 0
638#ifdef FEAT_RELTIME
639 proftime_T *tm = NULL; // timeout limit or NULL
640 int *timed_out = NULL; // set when timed out or NULL
641#endif
642
643 if (extra_arg != NULL)
644 {
645 stop_lnum = extra_arg->sa_stop_lnum;
646#ifdef FEAT_RELTIME
647 tm = extra_arg->sa_tm;
648 timed_out = &extra_arg->sa_timed_out;
649#endif
650 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651
652 if (search_regcomp(pat, RE_SEARCH, pat_use,
653 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
654 {
655 if ((options & SEARCH_MSG) && !rc_did_emsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100656 semsg(_("E383: Invalid search string: %s"), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 return FAIL;
658 }
659
Bram Moolenaar280f1262006-01-30 00:14:18 +0000660 /*
661 * find the string
662 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100663 do // loop for count
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100665 // When not accepting a match at the start position set "extra_col" to
666 // a non-zero value. Don't do that when starting at MAXCOL, since
667 // MAXCOL + 1 is zero.
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200668 if (pos->col == MAXCOL)
669 start_char_len = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100670 // Watch out for the "col" being MAXCOL - 2, used in a closed fold.
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200671 else if (has_mbyte
672 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
673 && pos->col < MAXCOL - 2)
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100674 {
Bram Moolenaar82846a02018-02-09 18:09:54 +0100675 ptr = ml_get_buf(buf, pos->lnum, FALSE);
Bram Moolenaar8846ac52018-02-09 19:24:01 +0100676 if ((int)STRLEN(ptr) <= pos->col)
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200677 start_char_len = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100678 else
Bram Moolenaar82846a02018-02-09 18:09:54 +0100679 start_char_len = (*mb_ptr2len)(ptr + pos->col);
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100680 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100681 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200682 start_char_len = 1;
683 if (dir == FORWARD)
684 {
685 if (options & SEARCH_START)
686 extra_col = 0;
687 else
688 extra_col = start_char_len;
689 }
690 else
691 {
692 if (options & SEARCH_START)
693 extra_col = start_char_len;
694 else
695 extra_col = 0;
696 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100697
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100698 start_pos = *pos; // remember start pos for detecting no match
699 found = 0; // default: not found
700 at_first_line = TRUE; // default: start in first line
701 if (pos->lnum == 0) // correct lnum for when starting in line 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 {
703 pos->lnum = 1;
704 pos->col = 0;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100705 at_first_line = FALSE; // not in first line now
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 }
707
708 /*
709 * Start searching in current line, unless searching backwards and
710 * we're in column 0.
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000711 * If we are searching backwards, in column 0, and not including the
712 * current position, gain some efficiency by skipping back a line.
713 * Otherwise begin the search in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 */
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000715 if (dir == BACKWARD && start_pos.col == 0
716 && (options & SEARCH_START) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 {
718 lnum = pos->lnum - 1;
719 at_first_line = FALSE;
720 }
721 else
722 lnum = pos->lnum;
723
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100724 for (loop = 0; loop <= 1; ++loop) // loop twice if 'wrapscan' set
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 {
726 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
727 lnum += dir, at_first_line = FALSE)
728 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100729 // Stop after checking "stop_lnum", if it's set.
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000730 if (stop_lnum != 0 && (dir == FORWARD
731 ? lnum > stop_lnum : lnum < stop_lnum))
732 break;
Bram Moolenaar76929292008-01-06 19:07:36 +0000733#ifdef FEAT_RELTIME
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100734 // Stop after passing the "tm" time limit.
Bram Moolenaar76929292008-01-06 19:07:36 +0000735 if (tm != NULL && profile_passed_limit(tm))
736 break;
737#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000738
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000740 * Look for a match somewhere in line "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100742 col = at_first_line && (options & SEARCH_COL) ? pos->col
743 : (colnr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 nmatched = vim_regexec_multi(&regmatch, win, buf,
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100745 lnum, col,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000746#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200747 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000748#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200749 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000750#endif
751 );
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100752 // Abort searching on an error (e.g., out of stack).
Bram Moolenaar53989552019-12-23 22:59:18 +0100753 if (called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200754#ifdef FEAT_RELTIME
755 || (timed_out != NULL && *timed_out)
756#endif
757 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 break;
759 if (nmatched > 0)
760 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100761 // match may actually be in another line when using \zs
Bram Moolenaar677ee682005-01-27 14:41:15 +0000762 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 endpos = regmatch.endpos[0];
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000764#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 submatch = first_submatch(&regmatch);
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000766#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100767 // "lnum" may be past end of buffer for "\n\zs".
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000768 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
769 ptr = (char_u *)"";
770 else
771 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772
773 /*
774 * Forward search in the first line: match should be after
775 * the start position. If not, continue at the end of the
776 * match (this is vi compatible) or on the next char.
777 */
778 if (dir == FORWARD && at_first_line)
779 {
780 match_ok = TRUE;
781 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000782 * When the match starts in a next line it's certainly
783 * past the start position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 * When match lands on a NUL the cursor will be put
785 * one back afterwards, compare with that position,
786 * otherwise "/$" will get stuck on end of line.
787 */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000788 while (matchpos.lnum == 0
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100789 && ((options & SEARCH_END) && first_match
Bram Moolenaar677ee682005-01-27 14:41:15 +0000790 ? (nmatched == 1
791 && (int)endpos.col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 < (int)start_pos.col + extra_col)
Bram Moolenaar677ee682005-01-27 14:41:15 +0000793 : ((int)matchpos.col
794 - (ptr[matchpos.col] == NUL)
795 < (int)start_pos.col + extra_col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 {
797 /*
798 * If vi-compatible searching, continue at the end
799 * of the match, otherwise continue one position
800 * forward.
801 */
802 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
803 {
804 if (nmatched > 1)
805 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100806 // end is in next line, thus no match in
807 // this line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 match_ok = FALSE;
809 break;
810 }
811 matchcol = endpos.col;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100812 // for empty match: advance one char
Bram Moolenaar677ee682005-01-27 14:41:15 +0000813 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 && ptr[matchcol] != NUL)
815 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 if (has_mbyte)
817 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000818 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 ++matchcol;
821 }
822 }
823 else
824 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000825 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 if (ptr[matchcol] != NUL)
827 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000829 matchcol += (*mb_ptr2len)(ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 + matchcol);
831 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 ++matchcol;
833 }
834 }
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200835 if (matchcol == 0 && (options & SEARCH_START))
Bram Moolenaardb333a52013-03-19 15:27:48 +0100836 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 if (ptr[matchcol] == NUL
838 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000839 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000840 matchcol,
841#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200842 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000843#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200844 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000845#endif
846 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 {
848 match_ok = FALSE;
849 break;
850 }
Bram Moolenaar677ee682005-01-27 14:41:15 +0000851 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 endpos = regmatch.endpos[0];
853# ifdef FEAT_EVAL
854 submatch = first_submatch(&regmatch);
855# endif
856
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100857 // Need to get the line pointer again, a
858 // multi-line search may have made it invalid.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000859 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 }
861 if (!match_ok)
862 continue;
863 }
864 if (dir == BACKWARD)
865 {
866 /*
867 * Now, if there are multiple matches on this line,
868 * we have to get the last one. Or the last one before
869 * the cursor, if we're on that line.
870 * When putting the new cursor at the end, compare
871 * relative to the end of the match.
872 */
873 match_ok = FALSE;
874 for (;;)
875 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100876 // Remember a position that is before the start
877 // position, we use it if it's the last match in
878 // the line. Always accept a position after
879 // wrapping around.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000880 if (loop
881 || ((options & SEARCH_END)
882 ? (lnum + regmatch.endpos[0].lnum
883 < start_pos.lnum
884 || (lnum + regmatch.endpos[0].lnum
885 == start_pos.lnum
886 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200887 < (int)start_pos.col
888 + extra_col))
Bram Moolenaar677ee682005-01-27 14:41:15 +0000889 : (lnum + regmatch.startpos[0].lnum
890 < start_pos.lnum
891 || (lnum + regmatch.startpos[0].lnum
892 == start_pos.lnum
893 && (int)regmatch.startpos[0].col
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200894 < (int)start_pos.col
895 + extra_col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000898 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 endpos = regmatch.endpos[0];
900# ifdef FEAT_EVAL
901 submatch = first_submatch(&regmatch);
902# endif
903 }
904 else
905 break;
906
907 /*
908 * We found a valid match, now check if there is
909 * another one after it.
910 * If vi-compatible searching, continue at the end
911 * of the match, otherwise continue one position
912 * forward.
913 */
914 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
915 {
916 if (nmatched > 1)
917 break;
918 matchcol = endpos.col;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100919 // for empty match: advance one char
Bram Moolenaar677ee682005-01-27 14:41:15 +0000920 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 && ptr[matchcol] != NUL)
922 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923 if (has_mbyte)
924 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000925 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 ++matchcol;
928 }
929 }
930 else
931 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100932 // Stop when the match is in a next line.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000933 if (matchpos.lnum > 0)
934 break;
935 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 if (ptr[matchcol] != NUL)
937 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 if (has_mbyte)
939 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000940 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 ++matchcol;
943 }
944 }
945 if (ptr[matchcol] == NUL
946 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000947 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000948 matchcol,
949#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200950 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000951#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200952 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000953#endif
954 )) == 0)
Bram Moolenaar9d322762018-02-09 16:04:25 +0100955 {
956#ifdef FEAT_RELTIME
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100957 // If the search timed out, we did find a match
958 // but it might be the wrong one, so that's not
959 // OK.
Bram Moolenaar9d322762018-02-09 16:04:25 +0100960 if (timed_out != NULL && *timed_out)
961 match_ok = FALSE;
962#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 break;
Bram Moolenaar9d322762018-02-09 16:04:25 +0100964 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100966 // Need to get the line pointer again, a
967 // multi-line search may have made it invalid.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000968 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 }
970
971 /*
972 * If there is only a match after the cursor, skip
973 * this match.
974 */
975 if (!match_ok)
976 continue;
977 }
978
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100979 // With the SEARCH_END option move to the last character
980 // of the match. Don't do it for an empty match, end
981 // should be same as start then.
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200982 if ((options & SEARCH_END) && !(options & SEARCH_NOOF)
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000983 && !(matchpos.lnum == endpos.lnum
984 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100986 // For a match in the first column, set the position
987 // on the NUL in the previous line.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000988 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000989 pos->col = endpos.col;
990 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000991 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100992 if (pos->lnum > 1) // just in case
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000993 {
994 --pos->lnum;
995 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
996 pos->lnum, FALSE));
997 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000998 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000999 else
1000 {
1001 --pos->col;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001002 if (has_mbyte
1003 && pos->lnum <= buf->b_ml.ml_line_count)
1004 {
1005 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1006 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
1007 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001008 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001009 if (end_pos != NULL)
1010 {
1011 end_pos->lnum = lnum + matchpos.lnum;
1012 end_pos->col = matchpos.col;
1013 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 }
1015 else
1016 {
Bram Moolenaar677ee682005-01-27 14:41:15 +00001017 pos->lnum = lnum + matchpos.lnum;
1018 pos->col = matchpos.col;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001019 if (end_pos != NULL)
1020 {
1021 end_pos->lnum = lnum + endpos.lnum;
1022 end_pos->col = endpos.col;
1023 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 pos->coladd = 0;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01001026 if (end_pos != NULL)
1027 end_pos->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 found = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +01001029 first_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001031 // Set variables used for 'incsearch' highlighting.
Bram Moolenaar677ee682005-01-27 14:41:15 +00001032 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033 search_match_endcol = endpos.col;
1034 break;
1035 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001036 line_breakcheck(); // stop if ctrl-C typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 if (got_int)
1038 break;
1039
1040#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001041 // Cancel searching if a character was typed. Used for
1042 // 'incsearch'. Don't check too often, that would slowdown
1043 // searching too much.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 if ((options & SEARCH_PEEK)
1045 && ((lnum - pos->lnum) & 0x3f) == 0
1046 && char_avail())
1047 {
1048 break_loop = TRUE;
1049 break;
1050 }
1051#endif
1052
1053 if (loop && lnum == start_pos.lnum)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001054 break; // if second loop, stop where started
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 }
1056 at_first_line = FALSE;
1057
1058 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001059 * Stop the search if wrapscan isn't set, "stop_lnum" is
1060 * specified, after an interrupt, after a match and after looping
1061 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062 */
Bram Moolenaar53989552019-12-23 22:59:18 +01001063 if (!p_ws || stop_lnum != 0 || got_int
1064 || called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001065#ifdef FEAT_RELTIME
1066 || (timed_out != NULL && *timed_out)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001067#endif
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001068#ifdef FEAT_SEARCH_EXTRA
1069 || break_loop
1070#endif
1071 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 break;
1073
1074 /*
1075 * If 'wrapscan' is set we continue at the other end of the file.
1076 * If 'shortmess' does not contain 's', we give a message.
1077 * This message is also remembered in keep_msg for when the screen
1078 * is redrawn. The keep_msg is cleared whenever another message is
1079 * written.
1080 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001081 if (dir == BACKWARD) // start second loop at the other end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00001085 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
1086 give_warning((char_u *)_(dir == BACKWARD
1087 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001088 if (extra_arg != NULL)
1089 extra_arg->sa_wrapped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090 }
Bram Moolenaar53989552019-12-23 22:59:18 +01001091 if (got_int || called_emsg > called_emsg_before
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001092#ifdef FEAT_RELTIME
1093 || (timed_out != NULL && *timed_out)
1094#endif
Bram Moolenaar78a15312009-05-15 19:33:18 +00001095#ifdef FEAT_SEARCH_EXTRA
1096 || break_loop
1097#endif
1098 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 break;
1100 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001101 while (--count > 0 && found); // stop after count matches or no match
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102
Bram Moolenaar473de612013-06-08 18:19:48 +02001103 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001105 if (!found) // did not find it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 {
1107 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001108 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 else if ((options & SEARCH_MSG) == SEARCH_MSG)
1110 {
1111 if (p_ws)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001112 semsg(_(e_patnotf2), mr_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 else if (lnum == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001114 semsg(_("E384: search hit TOP without match for: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 mr_pattern);
1116 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001117 semsg(_("E385: search hit BOTTOM without match for: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 mr_pattern);
1119 }
1120 return FAIL;
1121 }
1122
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001123 // A pattern like "\n\zs" may go past the last line.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001124 if (pos->lnum > buf->b_ml.ml_line_count)
1125 {
1126 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001127 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001128 if (pos->col > 0)
1129 --pos->col;
1130 }
1131
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 return submatch + 1;
1133}
1134
1135#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001136 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001137set_search_direction(int cdir)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001138{
1139 spats[0].off.dir = cdir;
1140}
1141
1142 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001143set_vv_searchforward(void)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001144{
1145 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1146}
1147
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148/*
1149 * Return the number of the first subpat that matched.
Bram Moolenaarad4d8a12015-12-28 19:20:36 +01001150 * Return zero if none of them matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 */
1152 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001153first_submatch(regmmatch_T *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154{
1155 int submatch;
1156
1157 for (submatch = 1; ; ++submatch)
1158 {
1159 if (rp->startpos[submatch].lnum >= 0)
1160 break;
1161 if (submatch == 9)
1162 {
1163 submatch = 0;
1164 break;
1165 }
1166 }
1167 return submatch;
1168}
1169#endif
1170
1171/*
1172 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001173 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 * If 'dirc' is 0: use previous dir.
1175 * If 'pat' is NULL or empty : use previous string.
1176 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1177 * If 'options & SEARCH_ECHO': echo the search command and handle options
1178 * If 'options & SEARCH_MSG' : may give error message
1179 * If 'options & SEARCH_OPT' : interpret optional flags
1180 * If 'options & SEARCH_HIS' : put search pattern in history
1181 * If 'options & SEARCH_NOOF': don't add offset to position
1182 * If 'options & SEARCH_MARK': set previous context mark
1183 * If 'options & SEARCH_KEEP': keep previous search pattern
1184 * If 'options & SEARCH_START': accept match at curpos itself
1185 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1186 *
1187 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1188 * makes the movement linewise without moving the match position.
1189 *
Bram Moolenaarb6c27352015-03-05 19:57:49 +01001190 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 */
1192 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001193do_search(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001194 oparg_T *oap, // can be NULL
1195 int dirc, // '/' or '?'
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001196 char_u *pat,
1197 long count,
1198 int options,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001199 searchit_arg_T *sia) // optional arguments or NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001201 pos_T pos; // position of the last match
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 char_u *searchstr;
Bram Moolenaarc3328162019-07-23 22:15:25 +02001203 soffset_T old_off;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001204 int retval; // Return value
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 char_u *p;
1206 long c;
1207 char_u *dircp;
1208 char_u *strcopy = NULL;
1209 char_u *ps;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001210 char_u *msgbuf = NULL;
1211 size_t len;
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001212 int has_offset = FALSE;
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02001213#define SEARCH_STAT_BUF_LEN 12
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214
1215 /*
1216 * A line offset is not remembered, this is vi compatible.
1217 */
1218 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1219 {
1220 spats[0].off.line = FALSE;
1221 spats[0].off.off = 0;
1222 }
1223
1224 /*
1225 * Save the values for when (options & SEARCH_KEEP) is used.
1226 * (there is no "if ()" around this because gcc wants them initialized)
1227 */
1228 old_off = spats[0].off;
1229
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001230 pos = curwin->w_cursor; // start searching at the cursor position
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231
1232 /*
1233 * Find out the direction of the search.
1234 */
1235 if (dirc == 0)
1236 dirc = spats[0].off.dir;
1237 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001238 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001240#if defined(FEAT_EVAL)
1241 set_vv_searchforward();
1242#endif
1243 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 if (options & SEARCH_REV)
1245 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001246#ifdef MSWIN
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001247 // There is a bug in the Visual C++ 2.2 compiler which means that
1248 // dirc always ends up being '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 dirc = (dirc == '/') ? '?' : '/';
1250#else
1251 if (dirc == '/')
1252 dirc = '?';
1253 else
1254 dirc = '/';
1255#endif
1256 }
1257
1258#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001259 // If the cursor is in a closed fold, don't find another match in the same
1260 // fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 if (dirc == '/')
1262 {
1263 if (hasFolding(pos.lnum, NULL, &pos.lnum))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001264 pos.col = MAXCOL - 2; // avoid overflow when adding 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 }
1266 else
1267 {
1268 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1269 pos.col = 0;
1270 }
1271#endif
1272
1273#ifdef FEAT_SEARCH_EXTRA
1274 /*
1275 * Turn 'hlsearch' highlighting back on.
1276 */
1277 if (no_hlsearch && !(options & SEARCH_KEEP))
1278 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001279 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02001280 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 }
1282#endif
1283
1284 /*
1285 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1286 */
1287 for (;;)
1288 {
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001289 int show_top_bot_msg = FALSE;
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02001290
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 searchstr = pat;
1292 dircp = NULL;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001293 // use previous pattern
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 if (pat == NULL || *pat == NUL || *pat == dirc)
1295 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001296 if (spats[RE_SEARCH].pat == NULL) // no previous pattern
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 {
Bram Moolenaarea683da2016-09-09 21:41:34 +02001298 searchstr = spats[RE_SUBST].pat;
1299 if (searchstr == NULL)
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001300 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001301 emsg(_(e_noprevre));
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001302 retval = 0;
1303 goto end_do_search;
1304 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001306 else
1307 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001308 // make search_regcomp() use spats[RE_SEARCH].pat
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001309 searchstr = (char_u *)"";
1310 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 }
1312
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001313 if (pat != NULL && *pat != NUL) // look for (new) offset
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 {
1315 /*
1316 * Find end of regular expression.
1317 * If there is a matching '/' or '?', toss it.
1318 */
1319 ps = strcopy;
1320 p = skip_regexp(pat, dirc, (int)p_magic, &strcopy);
1321 if (strcopy != ps)
1322 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001323 // made a copy of "pat" to change "\?" to "?"
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001324 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 pat = strcopy;
1326 searchstr = strcopy;
1327 }
1328 if (*p == dirc)
1329 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001330 dircp = p; // remember where we put the NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 *p++ = NUL;
1332 }
1333 spats[0].off.line = FALSE;
1334 spats[0].off.end = FALSE;
1335 spats[0].off.off = 0;
1336 /*
1337 * Check for a line offset or a character offset.
1338 * For get_address (echo off) we don't check for a character
1339 * offset, because it is meaningless and the 's' could be a
1340 * substitute command.
1341 */
1342 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1343 spats[0].off.line = TRUE;
1344 else if ((options & SEARCH_OPT) &&
1345 (*p == 'e' || *p == 's' || *p == 'b'))
1346 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001347 if (*p == 'e') // end
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 spats[0].off.end = SEARCH_END;
1349 ++p;
1350 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001351 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') // got an offset
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001353 // 'nr' or '+nr' or '-nr'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1355 spats[0].off.off = atol((char *)p);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001356 else if (*p == '-') // single '-'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 spats[0].off.off = -1;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001358 else // single '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 spats[0].off.off = 1;
1360 ++p;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001361 while (VIM_ISDIGIT(*p)) // skip number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 ++p;
1363 }
1364
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001365 // compute length of search command for get_address()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 searchcmdlen += (int)(p - pat);
1367
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001368 pat = p; // put pat after search command
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 }
1370
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001371 if ((options & SEARCH_ECHO) && messaging() &&
1372 !msg_silent &&
1373 (!cmd_silent || !shortmess(SHM_SEARCHCOUNT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 char_u *trunc;
Bram Moolenaar984f0312019-05-24 13:11:47 +02001376 char_u off_buf[40];
Bram Moolenaard33a7642019-05-24 17:56:14 +02001377 size_t off_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001379 // Compute msg_row early.
1380 msg_start();
1381
Bram Moolenaar984f0312019-05-24 13:11:47 +02001382 // Get the offset, so we know how long it is.
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001383 if (!cmd_silent &&
1384 (spats[0].off.line || spats[0].off.end || spats[0].off.off))
Bram Moolenaar984f0312019-05-24 13:11:47 +02001385 {
1386 p = off_buf;
1387 *p++ = dirc;
1388 if (spats[0].off.end)
1389 *p++ = 'e';
1390 else if (!spats[0].off.line)
1391 *p++ = 's';
1392 if (spats[0].off.off > 0 || spats[0].off.line)
1393 *p++ = '+';
1394 *p = NUL;
1395 if (spats[0].off.off != 0 || spats[0].off.line)
1396 sprintf((char *)p, "%ld", spats[0].off.off);
1397 off_len = STRLEN(off_buf);
1398 }
1399
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 if (*searchstr == NUL)
Bram Moolenaar2fb8f682018-12-01 13:14:45 +01001401 p = spats[0].pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 else
1403 p = searchstr;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001404
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001405 if (!shortmess(SHM_SEARCHCOUNT) || cmd_silent)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001406 {
1407 // Reserve enough space for the search pattern + offset +
Bram Moolenaar984f0312019-05-24 13:11:47 +02001408 // search stat. Use all the space available, so that the
1409 // search state is right aligned. If there is not enough space
1410 // msg_strtrunc() will shorten in the middle.
Bram Moolenaar19e8ac72019-09-03 22:23:38 +02001411 if (msg_scrolled != 0 && !cmd_silent)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001412 // Use all the columns.
1413 len = (int)(Rows - msg_row) * Columns - 1;
1414 else
1415 // Use up to 'showcmd' column.
1416 len = (int)(Rows - msg_row - 1) * Columns + sc_col - 1;
Bram Moolenaar984f0312019-05-24 13:11:47 +02001417 if (len < STRLEN(p) + off_len + SEARCH_STAT_BUF_LEN + 3)
1418 len = STRLEN(p) + off_len + SEARCH_STAT_BUF_LEN + 3;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001419 }
1420 else
1421 // Reserve enough space for the search pattern + offset.
Bram Moolenaar984f0312019-05-24 13:11:47 +02001422 len = STRLEN(p) + off_len + 3;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001423
Bram Moolenaar51e14382019-05-25 20:21:28 +02001424 msgbuf = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 if (msgbuf != NULL)
1426 {
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001427 vim_memset(msgbuf, ' ', len);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001428 msgbuf[len - 1] = NUL;
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001429 // do not fill the msgbuf buffer, if cmd_silent is set, leave it
1430 // empty for the search_stat feature.
1431 if (!cmd_silent)
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001432 {
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001433 msgbuf[0] = dirc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001435 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1436 {
1437 // Use a space to draw the composing char on.
1438 msgbuf[1] = ' ';
1439 mch_memmove(msgbuf + 2, p, STRLEN(p));
1440 }
1441 else
1442 mch_memmove(msgbuf + 1, p, STRLEN(p));
1443 if (off_len > 0)
1444 mch_memmove(msgbuf + STRLEN(p) + 1, off_buf, off_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001446 trunc = msg_strtrunc(msgbuf, TRUE);
1447 if (trunc != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 {
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001449 vim_free(msgbuf);
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001450 msgbuf = trunc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001453 #ifdef FEAT_RIGHTLEFT
1454 // The search pattern could be shown on the right in rightleft
1455 // mode, but the 'ruler' and 'showcmd' area use it too, thus
1456 // it would be blanked out again very soon. Show it on the
1457 // left, but do reverse the text.
1458 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1459 {
1460 char_u *r;
1461 size_t pat_len;
1462
1463 r = reverse_text(msgbuf);
1464 if (r != NULL)
1465 {
1466 vim_free(msgbuf);
1467 msgbuf = r;
1468 // move reversed text to beginning of buffer
1469 while (*r != NUL && *r == ' ')
1470 r++;
1471 pat_len = msgbuf + STRLEN(msgbuf) - r;
1472 mch_memmove(msgbuf, r, pat_len);
1473 // overwrite old text
1474 if ((size_t)(r - msgbuf) >= pat_len)
1475 vim_memset(r, ' ', pat_len);
1476 else
1477 vim_memset(msgbuf + pat_len, ' ', r - msgbuf);
1478 }
1479 }
1480 #endif
1481 msg_outtrans(msgbuf);
1482 msg_clr_eos();
1483 msg_check();
1484
1485 gotocmdline(FALSE);
1486 out_flush();
1487 msg_nowait = TRUE; // don't wait for this message
1488 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 }
1490 }
1491
1492 /*
1493 * If there is a character offset, subtract it from the current
1494 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001495 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 * This is not done for a line offset, because then we would not be vi
1497 * compatible.
1498 */
Bram Moolenaared203462004-06-16 11:19:22 +00001499 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 {
1501 if (spats[0].off.off > 0)
1502 {
1503 for (c = spats[0].off.off; c; --c)
1504 if (decl(&pos) == -1)
1505 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001506 if (c) // at start of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001508 pos.lnum = 0; // allow lnum == 0 here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 pos.col = MAXCOL;
1510 }
1511 }
1512 else
1513 {
1514 for (c = spats[0].off.off; c; ++c)
1515 if (incl(&pos) == -1)
1516 break;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001517 if (c) // at end of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 {
1519 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1520 pos.col = 0;
1521 }
1522 }
1523 }
1524
Bram Moolenaar14184a32019-02-16 15:10:30 +01001525 c = searchit(curwin, curbuf, &pos, NULL,
1526 dirc == '/' ? FORWARD : BACKWARD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 searchstr, count, spats[0].off.end + (options &
1528 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1529 + SEARCH_MSG + SEARCH_START
1530 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02001531 RE_LAST, sia);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532
1533 if (dircp != NULL)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001534 *dircp = dirc; // restore second '/' or '?' for normal_cmd()
1535
1536 if (!shortmess(SHM_SEARCH)
1537 && ((dirc == '/' && LT_POS(pos, curwin->w_cursor))
1538 || (dirc == '?' && LT_POS(curwin->w_cursor, pos))))
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02001539 show_top_bot_msg = TRUE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001540
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 if (c == FAIL)
1542 {
1543 retval = 0;
1544 goto end_do_search;
1545 }
1546 if (spats[0].off.end && oap != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001547 oap->inclusive = TRUE; // 'e' includes last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001549 retval = 1; // pattern found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550
1551 /*
1552 * Add character and/or line offset
1553 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001554 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 {
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001556 pos_T org_pos = pos;
1557
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001558 if (spats[0].off.line) // Add the offset to the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 {
1560 c = pos.lnum + spats[0].off.off;
1561 if (c < 1)
1562 pos.lnum = 1;
1563 else if (c > curbuf->b_ml.ml_line_count)
1564 pos.lnum = curbuf->b_ml.ml_line_count;
1565 else
1566 pos.lnum = c;
1567 pos.col = 0;
1568
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001569 retval = 2; // pattern found, line offset added
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001571 else if (pos.col < MAXCOL - 2) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001573 // to the right, check for end of file
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001574 c = spats[0].off.off;
1575 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001577 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 if (incl(&pos) == -1)
1579 break;
1580 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001581 // to the left, check for start of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 else
1583 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001584 while (c++ < 0)
1585 if (decl(&pos) == -1)
1586 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 }
1588 }
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001589 if (!EQUAL_POS(pos, org_pos))
1590 has_offset = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 }
1592
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001593 // Show [1/15] if 'S' is not in 'shortmess'.
1594 if ((options & SEARCH_ECHO)
1595 && messaging()
Bram Moolenaar359ad1a2019-09-02 21:44:59 +02001596 && !msg_silent
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001597 && c != FAIL
1598 && !shortmess(SHM_SEARCHCOUNT)
1599 && msgbuf != NULL)
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02001600 search_stat(dirc, &pos, show_top_bot_msg, msgbuf,
1601 (count != 1 || has_offset));
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001602
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 /*
1604 * The search command can be followed by a ';' to do another search.
1605 * For example: "/pat/;/foo/+3;?bar"
1606 * This is like doing another search command, except:
1607 * - The remembered direction '/' or '?' is from the first search.
1608 * - When an error happens the cursor isn't moved at all.
1609 * Don't do this when called by get_address() (it handles ';' itself).
1610 */
1611 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1612 break;
1613
1614 dirc = *++pat;
1615 if (dirc != '?' && dirc != '/')
1616 {
1617 retval = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001618 emsg(_("E386: Expected '?' or '/' after ';'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 goto end_do_search;
1620 }
1621 ++pat;
1622 }
1623
1624 if (options & SEARCH_MARK)
1625 setpcmark();
1626 curwin->w_cursor = pos;
1627 curwin->w_set_curswant = TRUE;
1628
1629end_do_search:
Bram Moolenaarac8400d2014-01-14 21:31:34 +01001630 if ((options & SEARCH_KEEP) || cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 spats[0].off = old_off;
1632 vim_free(strcopy);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02001633 vim_free(msgbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634
1635 return retval;
1636}
1637
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638/*
1639 * search_for_exact_line(buf, pos, dir, pat)
1640 *
1641 * Search for a line starting with the given pattern (ignoring leading
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001642 * white-space), starting from pos and going in direction "dir". "pos" will
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 * contain the position of the match found. Blank lines match only if
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001644 * ADDING is set. If p_ic is set then the pattern must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 * Return OK for success, or FAIL if no line found.
1646 */
1647 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001648search_for_exact_line(
1649 buf_T *buf,
1650 pos_T *pos,
1651 int dir,
1652 char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653{
1654 linenr_T start = 0;
1655 char_u *ptr;
1656 char_u *p;
1657
1658 if (buf->b_ml.ml_line_count == 0)
1659 return FAIL;
1660 for (;;)
1661 {
1662 pos->lnum += dir;
1663 if (pos->lnum < 1)
1664 {
1665 if (p_ws)
1666 {
1667 pos->lnum = buf->b_ml.ml_line_count;
1668 if (!shortmess(SHM_SEARCH))
1669 give_warning((char_u *)_(top_bot_msg), TRUE);
1670 }
1671 else
1672 {
1673 pos->lnum = 1;
1674 break;
1675 }
1676 }
1677 else if (pos->lnum > buf->b_ml.ml_line_count)
1678 {
1679 if (p_ws)
1680 {
1681 pos->lnum = 1;
1682 if (!shortmess(SHM_SEARCH))
1683 give_warning((char_u *)_(bot_top_msg), TRUE);
1684 }
1685 else
1686 {
1687 pos->lnum = 1;
1688 break;
1689 }
1690 }
1691 if (pos->lnum == start)
1692 break;
1693 if (start == 0)
1694 start = pos->lnum;
1695 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1696 p = skipwhite(ptr);
1697 pos->col = (colnr_T) (p - ptr);
1698
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001699 // when adding lines the matching line may be empty but it is not
1700 // ignored because we are interested in the next line -- Acevedo
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001701 if ((compl_cont_status & CONT_ADDING)
1702 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 {
1704 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1705 return OK;
1706 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001707 else if (*p != NUL) // ignore empty lines
1708 { // expanding lines or words
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001709 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1710 : STRNCMP(p, pat, compl_length)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 return OK;
1712 }
1713 }
1714 return FAIL;
1715}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716
1717/*
1718 * Character Searches
1719 */
1720
1721/*
1722 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1723 * position of the character, otherwise move to just before the char.
1724 * Do this "cap->count1" times.
1725 * Return FAIL or OK.
1726 */
1727 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001728searchc(cmdarg_T *cap, int t_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001730 int c = cap->nchar; // char to search for
1731 int dir = cap->arg; // TRUE for searching forward
1732 long count = cap->count1; // repeat count
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 int col;
1734 char_u *p;
1735 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001736 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001738 if (c != NUL) // normal search: remember args for repeat
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001740 if (!KeyStuffed) // don't remember when redoing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001742 *lastc = c;
1743 set_csearch_direction(dir);
1744 set_csearch_until(t_cmd);
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001745 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 if (cap->ncharC1 != 0)
1747 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001748 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1,
1749 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 if (cap->ncharC2 != 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001751 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2,
1752 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 }
1755 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001756 else // repeat previous search
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 {
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001758 if (*lastc == NUL && lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 return FAIL;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001760 if (dir) // repeat in opposite direction
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 dir = -lastcdir;
1762 else
1763 dir = lastcdir;
1764 t_cmd = last_t_cmd;
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001765 c = *lastc;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001766 // For multi-byte re-use last lastc_bytes[] and lastc_bytelen.
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001767
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001768 // Force a move of at least one char, so ";" and "," will move the
1769 // cursor, even if the cursor is right in front of char we are looking
1770 // at.
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001771 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001772 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 }
1774
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001775 if (dir == BACKWARD)
1776 cap->oap->inclusive = FALSE;
1777 else
1778 cap->oap->inclusive = TRUE;
1779
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 p = ml_get_curline();
1781 col = curwin->w_cursor.col;
1782 len = (int)STRLEN(p);
1783
1784 while (count--)
1785 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 if (has_mbyte)
1787 {
1788 for (;;)
1789 {
1790 if (dir > 0)
1791 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001792 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 if (col >= len)
1794 return FAIL;
1795 }
1796 else
1797 {
1798 if (col == 0)
1799 return FAIL;
1800 col -= (*mb_head_off)(p, p + col - 1) + 1;
1801 }
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001802 if (lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001804 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 break;
1806 }
Bram Moolenaar66727e12017-03-01 22:17:05 +01001807 else if (STRNCMP(p + col, lastc_bytes, lastc_bytelen) == 0
Bram Moolenaarb129a442016-12-01 17:25:20 +01001808 && stop)
Bram Moolenaar66727e12017-03-01 22:17:05 +01001809 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001810 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 }
1812 }
1813 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 {
1815 for (;;)
1816 {
1817 if ((col += dir) < 0 || col >= len)
1818 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001819 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001821 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 }
1823 }
1824 }
1825
1826 if (t_cmd)
1827 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001828 // backup to before the character (possibly double-byte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 col -= dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 if (has_mbyte)
1831 {
1832 if (dir < 0)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001833 // Landed on the search char which is lastc_bytelen long
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001834 col += lastc_bytelen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001836 // To previous char, which may be multi-byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 col -= (*mb_head_off)(p, p + col);
1838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 }
1840 curwin->w_cursor.col = col;
1841
1842 return OK;
1843}
1844
1845/*
1846 * "Other" Searches
1847 */
1848
1849/*
1850 * findmatch - find the matching paren or brace
1851 *
1852 * Improvement over vi: Braces inside quotes are ignored.
1853 */
1854 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001855findmatch(oparg_T *oap, int initc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856{
1857 return findmatchlimit(oap, initc, 0, 0);
1858}
1859
1860/*
1861 * Return TRUE if the character before "linep[col]" equals "ch".
1862 * Return FALSE if "col" is zero.
1863 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1864 * is NULL.
1865 * Handles multibyte string correctly.
1866 */
1867 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001868check_prevcol(
1869 char_u *linep,
1870 int col,
1871 int ch,
1872 int *prevcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873{
1874 --col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 if (col > 0 && has_mbyte)
1876 col -= (*mb_head_off)(linep, linep + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 if (prevcol)
1878 *prevcol = col;
1879 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1880}
1881
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001882/*
1883 * Raw string start is found at linep[startpos.col - 1].
1884 * Return TRUE if the matching end can be found between startpos and endpos.
1885 */
1886 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001887find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos)
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001888{
1889 char_u *p;
1890 char_u *delim_copy;
1891 size_t delim_len;
1892 linenr_T lnum;
1893 int found = FALSE;
1894
1895 for (p = linep + startpos->col + 1; *p && *p != '('; ++p)
1896 ;
1897 delim_len = (p - linep) - startpos->col - 1;
Bram Moolenaar6ed535d2015-08-26 23:01:21 +02001898 delim_copy = vim_strnsave(linep + startpos->col + 1, (int)delim_len);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001899 if (delim_copy == NULL)
1900 return FALSE;
1901 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum)
1902 {
1903 char_u *line = ml_get(lnum);
1904
1905 for (p = line + (lnum == startpos->lnum
1906 ? startpos->col + 1 : 0); *p; ++p)
1907 {
1908 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col)
1909 break;
1910 if (*p == ')' && p[delim_len + 1] == '"'
1911 && STRNCMP(delim_copy, p + 1, delim_len) == 0)
1912 {
1913 found = TRUE;
1914 break;
1915 }
1916 }
1917 if (found)
1918 break;
1919 }
1920 vim_free(delim_copy);
1921 return found;
1922}
1923
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924/*
Bram Moolenaar556ae8e2019-11-21 22:27:22 +01001925 * Check matchpairs option for "*initc".
1926 * If there is a match set "*initc" to the matching character and "*findc" to
1927 * the opposite character. Set "*backwards" to the direction.
1928 * When "switchit" is TRUE swap the direction.
1929 */
1930 static void
1931find_mps_values(
1932 int *initc,
1933 int *findc,
1934 int *backwards,
1935 int switchit)
1936{
1937 char_u *ptr;
1938
1939 ptr = curbuf->b_p_mps;
1940 while (*ptr != NUL)
1941 {
1942 if (has_mbyte)
1943 {
1944 char_u *prev;
1945
1946 if (mb_ptr2char(ptr) == *initc)
1947 {
1948 if (switchit)
1949 {
1950 *findc = *initc;
1951 *initc = mb_ptr2char(ptr + mb_ptr2len(ptr) + 1);
1952 *backwards = TRUE;
1953 }
1954 else
1955 {
1956 *findc = mb_ptr2char(ptr + mb_ptr2len(ptr) + 1);
1957 *backwards = FALSE;
1958 }
1959 return;
1960 }
1961 prev = ptr;
1962 ptr += mb_ptr2len(ptr) + 1;
1963 if (mb_ptr2char(ptr) == *initc)
1964 {
1965 if (switchit)
1966 {
1967 *findc = *initc;
1968 *initc = mb_ptr2char(prev);
1969 *backwards = FALSE;
1970 }
1971 else
1972 {
1973 *findc = mb_ptr2char(prev);
1974 *backwards = TRUE;
1975 }
1976 return;
1977 }
1978 ptr += mb_ptr2len(ptr);
1979 }
1980 else
1981 {
1982 if (*ptr == *initc)
1983 {
1984 if (switchit)
1985 {
1986 *backwards = TRUE;
1987 *findc = *initc;
1988 *initc = ptr[2];
1989 }
1990 else
1991 {
1992 *backwards = FALSE;
1993 *findc = ptr[2];
1994 }
1995 return;
1996 }
1997 ptr += 2;
1998 if (*ptr == *initc)
1999 {
2000 if (switchit)
2001 {
2002 *backwards = FALSE;
2003 *findc = *initc;
2004 *initc = ptr[-2];
2005 }
2006 else
2007 {
2008 *backwards = TRUE;
2009 *findc = ptr[-2];
2010 }
2011 return;
2012 }
2013 ++ptr;
2014 }
2015 if (*ptr == ',')
2016 ++ptr;
2017 }
2018}
2019
2020/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 * findmatchlimit -- find the matching paren or brace, if it exists within
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002022 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling
2023 * off the edge of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 *
2025 * "initc" is the character to find a match for. NUL means to find the
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002026 * character at or after the cursor. Special values:
2027 * '*' look for C-style comment / *
2028 * '/' look for C-style comment / *, ignoring comment-end
2029 * '#' look for preprocessor directives
2030 * 'R' look for raw string start: R"delim(text)delim" (only backwards)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 *
2032 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
2033 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
2034 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
2035 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002036 *
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002037 * "oap" is only used to set oap->motion_type for a linewise motion, it can be
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002038 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 */
2040
2041 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002042findmatchlimit(
2043 oparg_T *oap,
2044 int initc,
2045 int flags,
2046 int maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002048 static pos_T pos; // current search position
2049 int findc = 0; // matching brace
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 int c;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002051 int count = 0; // cumulative number of braces
2052 int backwards = FALSE; // init for gcc
2053 int raw_string = FALSE; // search for raw string
2054 int inquote = FALSE; // TRUE when inside quotes
2055 char_u *linep; // pointer to current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 char_u *ptr;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002057 int do_quotes; // check for quotes in current line
2058 int at_start; // do_quotes value at start position
2059 int hash_dir = 0; // Direction searched for # things
2060 int comment_dir = 0; // Direction searched for comments
2061 pos_T match_pos; // Where last slash-star was found
2062 int start_in_quotes; // start position is in quotes
2063 int traveled = 0; // how far we've searched so far
2064 int ignore_cend = FALSE; // ignore comment end
2065 int cpo_match; // vi compatible matching
2066 int cpo_bsl; // don't recognize backslashes
2067 int match_escaped = 0; // search for escaped match
2068 int dir; // Direction to search
2069 int comment_col = MAXCOL; // start of / / comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002070#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002071 int lispcomm = FALSE; // inside of Lisp-style comment
2072 int lisp = curbuf->b_p_lisp; // engage Lisp-specific hacks ;)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002073#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074
2075 pos = curwin->w_cursor;
Bram Moolenaarc56c4592013-08-14 17:45:29 +02002076 pos.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 linep = ml_get(pos.lnum);
2078
2079 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
2080 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
2081
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002082 // Direction to search when initc is '/', '*' or '#'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 if (flags & FM_BACKWARD)
2084 dir = BACKWARD;
2085 else if (flags & FM_FORWARD)
2086 dir = FORWARD;
2087 else
2088 dir = 0;
2089
2090 /*
2091 * if initc given, look in the table for the matching character
2092 * '/' and '*' are special cases: look for start or end of comment.
2093 * When '/' is used, we ignore running backwards into an star-slash, for
2094 * "[*" command, we just want to find any comment.
2095 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002096 if (initc == '/' || initc == '*' || initc == 'R')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097 {
2098 comment_dir = dir;
2099 if (initc == '/')
2100 ignore_cend = TRUE;
2101 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002102 raw_string = (initc == 'R');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 initc = NUL;
2104 }
2105 else if (initc != '#' && initc != NUL)
2106 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002107 find_mps_values(&initc, &findc, &backwards, TRUE);
2108 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 return NULL;
2110 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 else
2112 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002113 /*
2114 * Either initc is '#', or no initc was given and we need to look
2115 * under the cursor.
2116 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 if (initc == '#')
2118 {
2119 hash_dir = dir;
2120 }
2121 else
2122 {
2123 /*
2124 * initc was not given, must look for something to match under
2125 * or near the cursor.
2126 * Only check for special things when 'cpo' doesn't have '%'.
2127 */
2128 if (!cpo_match)
2129 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002130 // Are we before or at #if, #else etc.?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 ptr = skipwhite(linep);
2132 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
2133 {
2134 ptr = skipwhite(ptr + 1);
2135 if ( STRNCMP(ptr, "if", 2) == 0
2136 || STRNCMP(ptr, "endif", 5) == 0
2137 || STRNCMP(ptr, "el", 2) == 0)
2138 hash_dir = 1;
2139 }
2140
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002141 // Are we on a comment?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 else if (linep[pos.col] == '/')
2143 {
2144 if (linep[pos.col + 1] == '*')
2145 {
2146 comment_dir = FORWARD;
2147 backwards = FALSE;
2148 pos.col++;
2149 }
2150 else if (pos.col > 0 && linep[pos.col - 1] == '*')
2151 {
2152 comment_dir = BACKWARD;
2153 backwards = TRUE;
2154 pos.col--;
2155 }
2156 }
2157 else if (linep[pos.col] == '*')
2158 {
2159 if (linep[pos.col + 1] == '/')
2160 {
2161 comment_dir = BACKWARD;
2162 backwards = TRUE;
2163 }
2164 else if (pos.col > 0 && linep[pos.col - 1] == '/')
2165 {
2166 comment_dir = FORWARD;
2167 backwards = FALSE;
2168 }
2169 }
2170 }
2171
2172 /*
2173 * If we are not on a comment or the # at the start of a line, then
2174 * look for brace anywhere on this line after the cursor.
2175 */
2176 if (!hash_dir && !comment_dir)
2177 {
2178 /*
2179 * Find the brace under or after the cursor.
2180 * If beyond the end of the line, use the last character in
2181 * the line.
2182 */
2183 if (linep[pos.col] == NUL && pos.col)
2184 --pos.col;
2185 for (;;)
2186 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002187 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 if (initc == NUL)
2189 break;
2190
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002191 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 if (findc)
2193 break;
Bram Moolenaar1614a142019-10-06 22:00:13 +02002194 pos.col += mb_ptr2len(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 }
2196 if (!findc)
2197 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002198 // no brace in the line, maybe use " #if" then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 if (!cpo_match && *skipwhite(linep) == '#')
2200 hash_dir = 1;
2201 else
2202 return NULL;
2203 }
2204 else if (!cpo_bsl)
2205 {
2206 int col, bslcnt = 0;
2207
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002208 // Set "match_escaped" if there are an odd number of
2209 // backslashes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2211 bslcnt++;
2212 match_escaped = (bslcnt & 1);
2213 }
2214 }
2215 }
2216 if (hash_dir)
2217 {
2218 /*
2219 * Look for matching #if, #else, #elif, or #endif
2220 */
2221 if (oap != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002222 oap->motion_type = MLINE; // Linewise for this case only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 if (initc != '#')
2224 {
2225 ptr = skipwhite(skipwhite(linep) + 1);
2226 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
2227 hash_dir = 1;
2228 else if (STRNCMP(ptr, "endif", 5) == 0)
2229 hash_dir = -1;
2230 else
2231 return NULL;
2232 }
2233 pos.col = 0;
2234 while (!got_int)
2235 {
2236 if (hash_dir > 0)
2237 {
2238 if (pos.lnum == curbuf->b_ml.ml_line_count)
2239 break;
2240 }
2241 else if (pos.lnum == 1)
2242 break;
2243 pos.lnum += hash_dir;
2244 linep = ml_get(pos.lnum);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002245 line_breakcheck(); // check for CTRL-C typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 ptr = skipwhite(linep);
2247 if (*ptr != '#')
2248 continue;
2249 pos.col = (colnr_T) (ptr - linep);
2250 ptr = skipwhite(ptr + 1);
2251 if (hash_dir > 0)
2252 {
2253 if (STRNCMP(ptr, "if", 2) == 0)
2254 count++;
2255 else if (STRNCMP(ptr, "el", 2) == 0)
2256 {
2257 if (count == 0)
2258 return &pos;
2259 }
2260 else if (STRNCMP(ptr, "endif", 5) == 0)
2261 {
2262 if (count == 0)
2263 return &pos;
2264 count--;
2265 }
2266 }
2267 else
2268 {
2269 if (STRNCMP(ptr, "if", 2) == 0)
2270 {
2271 if (count == 0)
2272 return &pos;
2273 count--;
2274 }
2275 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
2276 {
2277 if (count == 0)
2278 return &pos;
2279 }
2280 else if (STRNCMP(ptr, "endif", 5) == 0)
2281 count++;
2282 }
2283 }
2284 return NULL;
2285 }
2286 }
2287
2288#ifdef FEAT_RIGHTLEFT
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002289 // This is just guessing: when 'rightleft' is set, search for a matching
2290 // paren/brace in the other direction.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
2292 backwards = !backwards;
2293#endif
2294
2295 do_quotes = -1;
2296 start_in_quotes = MAYBE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002297 CLEAR_POS(&match_pos);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002298
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002299 // backward search: Check if this line contains a single-line comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002300 if ((backwards && comment_dir)
2301#ifdef FEAT_LISP
2302 || lisp
2303#endif
2304 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002306#ifdef FEAT_LISP
2307 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002308 lispcomm = TRUE; // find match inside this comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002309#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 while (!got_int)
2311 {
2312 /*
2313 * Go to the next position, forward or backward. We could use
2314 * inc() and dec() here, but that is much slower
2315 */
2316 if (backwards)
2317 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002318#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002319 // char to match is inside of comment, don't search outside
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002320 if (lispcomm && pos.col < (colnr_T)comment_col)
2321 break;
2322#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002323 if (pos.col == 0) // at start of line, go to prev. one
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002325 if (pos.lnum == 1) // start of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 break;
2327 --pos.lnum;
2328
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002329 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 break;
2331
2332 linep = ml_get(pos.lnum);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002333 pos.col = (colnr_T)STRLEN(linep); // pos.col on trailing NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 do_quotes = -1;
2335 line_breakcheck();
2336
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002337 // Check if this line contains a single-line comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002338 if (comment_dir
2339#ifdef FEAT_LISP
2340 || lisp
2341#endif
2342 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002344#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002345 // skip comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002346 if (lisp && comment_col != MAXCOL)
2347 pos.col = comment_col;
2348#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 }
2350 else
2351 {
2352 --pos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 if (has_mbyte)
2354 pos.col -= (*mb_head_off)(linep, linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 }
2356 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002357 else // forward search
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002359 if (linep[pos.col] == NUL
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002360 // at end of line, go to next one
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002361#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002362 // don't search for match in comment
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002363 || (lisp && comment_col != MAXCOL
2364 && pos.col == (colnr_T)comment_col)
2365#endif
2366 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002368 if (pos.lnum == curbuf->b_ml.ml_line_count // end of file
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002369#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002370 // line is exhausted and comment with it,
2371 // don't search for match in code
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002372 || lispcomm
2373#endif
2374 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 break;
2376 ++pos.lnum;
2377
2378 if (maxtravel && traveled++ > maxtravel)
2379 break;
2380
2381 linep = ml_get(pos.lnum);
2382 pos.col = 0;
2383 do_quotes = -1;
2384 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002385#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002386 if (lisp) // find comment pos in new line
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002387 comment_col = check_linecomment(linep);
2388#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 }
2390 else
2391 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002393 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 ++pos.col;
2396 }
2397 }
2398
2399 /*
2400 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2401 */
2402 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2403 (linep[0] == '{' || linep[0] == '}'))
2404 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002405 if (linep[0] == findc && count == 0) // match!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 return &pos;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002407 break; // out of scope
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 }
2409
2410 if (comment_dir)
2411 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002412 // Note: comments do not nest, and we ignore quotes in them
2413 // TODO: ignore comment brackets inside strings
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 if (comment_dir == FORWARD)
2415 {
2416 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2417 {
2418 pos.col++;
2419 return &pos;
2420 }
2421 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002422 else // Searching backwards
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 {
2424 /*
2425 * A comment may contain / * or / /, it may also start or end
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002426 * with / * /. Ignore a / * after / / and after *.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 */
2428 if (pos.col == 0)
2429 continue;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002430 else if (raw_string)
2431 {
2432 if (linep[pos.col - 1] == 'R'
2433 && linep[pos.col] == '"'
2434 && vim_strchr(linep + pos.col + 1, '(') != NULL)
2435 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002436 // Possible start of raw string. Now that we have the
2437 // delimiter we can check if it ends before where we
2438 // started searching, or before the previously found
2439 // raw string start.
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002440 if (!find_rawstring_end(linep, &pos,
2441 count > 0 ? &match_pos : &curwin->w_cursor))
2442 {
2443 count++;
2444 match_pos = pos;
2445 match_pos.col--;
2446 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002447 linep = ml_get(pos.lnum); // may have been released
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002448 }
2449 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 else if ( linep[pos.col - 1] == '/'
2451 && linep[pos.col] == '*'
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002452 && (pos.col == 1 || linep[pos.col - 2] != '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 && (int)pos.col < comment_col)
2454 {
2455 count++;
2456 match_pos = pos;
2457 match_pos.col--;
2458 }
2459 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2460 {
2461 if (count > 0)
2462 pos = match_pos;
2463 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2464 && (int)pos.col <= comment_col)
2465 pos.col -= 2;
2466 else if (ignore_cend)
2467 continue;
2468 else
2469 return NULL;
2470 return &pos;
2471 }
2472 }
2473 continue;
2474 }
2475
2476 /*
2477 * If smart matching ('cpoptions' does not contain '%'), braces inside
2478 * of quotes are ignored, but only if there is an even number of
2479 * quotes in the line.
2480 */
2481 if (cpo_match)
2482 do_quotes = 0;
2483 else if (do_quotes == -1)
2484 {
2485 /*
2486 * Count the number of quotes in the line, skipping \" and '"'.
2487 * Watch out for "\\".
2488 */
2489 at_start = do_quotes;
2490 for (ptr = linep; *ptr; ++ptr)
2491 {
2492 if (ptr == linep + pos.col + backwards)
2493 at_start = (do_quotes & 1);
2494 if (*ptr == '"'
2495 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2496 ++do_quotes;
2497 if (*ptr == '\\' && ptr[1] != NUL)
2498 ++ptr;
2499 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002500 do_quotes &= 1; // result is 1 with even number of quotes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501
2502 /*
2503 * If we find an uneven count, check current line and previous
2504 * one for a '\' at the end.
2505 */
2506 if (!do_quotes)
2507 {
2508 inquote = FALSE;
2509 if (ptr[-1] == '\\')
2510 {
2511 do_quotes = 1;
2512 if (start_in_quotes == MAYBE)
2513 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002514 // Do we need to use at_start here?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515 inquote = TRUE;
2516 start_in_quotes = TRUE;
2517 }
2518 else if (backwards)
2519 inquote = TRUE;
2520 }
2521 if (pos.lnum > 1)
2522 {
2523 ptr = ml_get(pos.lnum - 1);
2524 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2525 {
2526 do_quotes = 1;
2527 if (start_in_quotes == MAYBE)
2528 {
2529 inquote = at_start;
2530 if (inquote)
2531 start_in_quotes = TRUE;
2532 }
2533 else if (!backwards)
2534 inquote = TRUE;
2535 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002536
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002537 // ml_get() only keeps one line, need to get linep again
Bram Moolenaaraec11792007-07-10 11:09:36 +00002538 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 }
2540 }
2541 }
2542 if (start_in_quotes == MAYBE)
2543 start_in_quotes = FALSE;
2544
2545 /*
2546 * If 'smartmatch' is set:
2547 * Things inside quotes are ignored by setting 'inquote'. If we
2548 * find a quote without a preceding '\' invert 'inquote'. At the
2549 * end of a line not ending in '\' we reset 'inquote'.
2550 *
2551 * In lines with an uneven number of quotes (without preceding '\')
2552 * we do not know which part to ignore. Therefore we only set
2553 * inquote if the number of quotes in a line is even, unless this
2554 * line or the previous one ends in a '\'. Complicated, isn't it?
2555 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002556 c = PTR2CHAR(linep + pos.col);
2557 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 {
2559 case NUL:
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002560 // at end of line without trailing backslash, reset inquote
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2562 {
2563 inquote = FALSE;
2564 start_in_quotes = FALSE;
2565 }
2566 break;
2567
2568 case '"':
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002569 // a quote that is preceded with an odd number of backslashes is
2570 // ignored
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 if (do_quotes)
2572 {
2573 int col;
2574
2575 for (col = pos.col - 1; col >= 0; --col)
2576 if (linep[col] != '\\')
2577 break;
2578 if ((((int)pos.col - 1 - col) & 1) == 0)
2579 {
2580 inquote = !inquote;
2581 start_in_quotes = FALSE;
2582 }
2583 }
2584 break;
2585
2586 /*
2587 * If smart matching ('cpoptions' does not contain '%'):
2588 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2589 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2590 * skipped, there is never a brace in them.
2591 * Ignore this when finding matches for `'.
2592 */
2593 case '\'':
2594 if (!cpo_match && initc != '\'' && findc != '\'')
2595 {
2596 if (backwards)
2597 {
2598 if (pos.col > 1)
2599 {
2600 if (linep[pos.col - 2] == '\'')
2601 {
2602 pos.col -= 2;
2603 break;
2604 }
2605 else if (linep[pos.col - 2] == '\\' &&
2606 pos.col > 2 && linep[pos.col - 3] == '\'')
2607 {
2608 pos.col -= 3;
2609 break;
2610 }
2611 }
2612 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002613 else if (linep[pos.col + 1]) // forward search
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 {
2615 if (linep[pos.col + 1] == '\\' &&
2616 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2617 {
2618 pos.col += 3;
2619 break;
2620 }
2621 else if (linep[pos.col + 2] == '\'')
2622 {
2623 pos.col += 2;
2624 break;
2625 }
2626 }
2627 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002628 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629
2630 default:
2631#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002632 /*
2633 * For Lisp skip over backslashed (), {} and [].
2634 * (actually, we skip #\( et al)
2635 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 if (curbuf->b_p_lisp
2637 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002638 && pos.col > 1
2639 && check_prevcol(linep, pos.col, '\\', NULL)
2640 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 break;
2642#endif
2643
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002644 // Check for match outside of quotes, and inside of
2645 // quotes when the start is also inside of quotes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 if ((!inquote || start_in_quotes == TRUE)
2647 && (c == initc || c == findc))
2648 {
2649 int col, bslcnt = 0;
2650
2651 if (!cpo_bsl)
2652 {
2653 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2654 bslcnt++;
2655 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002656 // Only accept a match when 'M' is in 'cpo' or when escaping
2657 // is what we expect.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2659 {
2660 if (c == initc)
2661 count++;
2662 else
2663 {
2664 if (count == 0)
2665 return &pos;
2666 count--;
2667 }
2668 }
2669 }
2670 }
2671 }
2672
2673 if (comment_dir == BACKWARD && count > 0)
2674 {
2675 pos = match_pos;
2676 return &pos;
2677 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002678 return (pos_T *)NULL; // never found it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679}
2680
2681/*
2682 * Check if line[] contains a / / comment.
2683 * Return MAXCOL if not, otherwise return the column.
2684 * TODO: skip strings.
2685 */
2686 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002687check_linecomment(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688{
2689 char_u *p;
2690
2691 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002692#ifdef FEAT_LISP
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002693 // skip Lispish one-line comments
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002694 if (curbuf->b_p_lisp)
2695 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002696 if (vim_strchr(p, ';') != NULL) // there may be comments
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002697 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002698 int in_str = FALSE; // inside of string
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002699
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002700 p = line; // scan from start
Bram Moolenaar520470a2005-06-16 21:59:56 +00002701 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002702 {
2703 if (*p == '"')
2704 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002705 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002706 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002707 if (*(p - 1) != '\\') // skip escaped quote
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002708 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002709 }
2710 else if (p == line || ((p - line) >= 2
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002711 // skip #\" form
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002712 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002713 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002714 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002715 else if (!in_str && ((p - line) < 2
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002716 || (*(p - 1) != '\\' && *(p - 2) != '#')))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002717 break; // found!
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002718 ++p;
2719 }
2720 }
2721 else
2722 p = NULL;
2723 }
2724 else
2725#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726 while ((p = vim_strchr(p, '/')) != NULL)
2727 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002728 // accept a double /, unless it's preceded with * and followed by *,
2729 // because * / / * is an end and start of a C comment
Bram Moolenaar78d4aba2008-01-01 14:43:35 +00002730 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 break;
2732 ++p;
2733 }
2734
2735 if (p == NULL)
2736 return MAXCOL;
2737 return (int)(p - line);
2738}
2739
2740/*
2741 * Move cursor briefly to character matching the one under the cursor.
2742 * Used for Insert mode and "r" command.
2743 * Show the match only if it is visible on the screen.
2744 * If there isn't a match, then beep.
2745 */
2746 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002747showmatch(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002748 int c) // char to show match for
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749{
2750 pos_T *lpos, save_cursor;
2751 pos_T mpos;
2752 colnr_T vcol;
2753 long save_so;
2754 long save_siso;
2755#ifdef CURSOR_SHAPE
2756 int save_state;
2757#endif
2758 colnr_T save_dollar_vcol;
2759 char_u *p;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002760 long *so = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so;
2761 long *siso = curwin->w_p_siso >= 0 ? &curwin->w_p_siso : &p_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762
2763 /*
2764 * Only show match for chars in the 'matchpairs' option.
2765 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002766 // 'matchpairs' is "x:y,x:y"
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002767 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 {
2769#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002770 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002771 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002772#endif
Bram Moolenaar1614a142019-10-06 22:00:13 +02002773 p += mb_ptr2len(p) + 1;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002774 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775#ifdef FEAT_RIGHTLEFT
2776 && !(curwin->w_p_rl ^ p_ri)
2777#endif
2778 )
2779 break;
Bram Moolenaar1614a142019-10-06 22:00:13 +02002780 p += mb_ptr2len(p);
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002781 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 return;
2783 }
2784
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002785 if ((lpos = findmatch(NULL, NUL)) == NULL) // no match, so beep
Bram Moolenaar165bc692015-07-21 17:53:25 +02002786 vim_beep(BO_MATCH);
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002787 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788 {
2789 if (!curwin->w_p_wrap)
2790 getvcol(curwin, lpos, NULL, &vcol, NULL);
2791 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
Bram Moolenaar02631462017-09-22 15:20:32 +02002792 && vcol < curwin->w_leftcol + curwin->w_width))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002794 mpos = *lpos; // save the pos, update_screen() may change it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 save_cursor = curwin->w_cursor;
Bram Moolenaar375e3392019-01-31 18:26:10 +01002796 save_so = *so;
2797 save_siso = *siso;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002798 // Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2799 // stop displaying the "$".
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002800 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2801 dollar_vcol = -1;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002802 ++curwin->w_virtcol; // do display ')' just before "$"
2803 update_screen(VALID); // show the new char first
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804
2805 save_dollar_vcol = dollar_vcol;
2806#ifdef CURSOR_SHAPE
2807 save_state = State;
2808 State = SHOWMATCH;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002809 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810#endif
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002811 curwin->w_cursor = mpos; // move to matching char
2812 *so = 0; // don't use 'scrolloff' here
2813 *siso = 0; // don't use 'sidescrolloff' here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814 showruler(FALSE);
2815 setcursor();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002816 cursor_on(); // make sure that the cursor is shown
Bram Moolenaara338adc2018-01-31 20:51:47 +01002817 out_flush_cursor(TRUE, FALSE);
2818
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002819 // Restore dollar_vcol(), because setcursor() may call curs_rows()
2820 // which resets it if the matching position is in a previous line
2821 // and has a higher column number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 dollar_vcol = save_dollar_vcol;
2823
2824 /*
2825 * brief pause, unless 'm' is present in 'cpo' and a character is
2826 * available.
2827 */
2828 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
Bram Moolenaareda1da02019-11-17 17:06:33 +01002829 ui_delay(p_mat * 100L + 8, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 else if (!char_avail())
Bram Moolenaareda1da02019-11-17 17:06:33 +01002831 ui_delay(p_mat * 100L + 9, FALSE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002832 curwin->w_cursor = save_cursor; // restore cursor position
Bram Moolenaar375e3392019-01-31 18:26:10 +01002833 *so = save_so;
2834 *siso = save_siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835#ifdef CURSOR_SHAPE
2836 State = save_state;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002837 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838#endif
2839 }
2840 }
2841}
2842
2843/*
Bram Moolenaar85160712018-06-19 18:27:41 +02002844 * Find the start of the next sentence, searching in the direction specified
2845 * by the "dir" argument. The cursor is positioned on the start of the next
2846 * sentence when found. If the next sentence is found, return OK. Return FAIL
2847 * otherwise. See ":h sentence" for the precise definition of a "sentence"
2848 * text object.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 */
2850 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002851findsent(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852{
2853 pos_T pos, tpos;
2854 int c;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002855 int (*func)(pos_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856 int startlnum;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002857 int noskip = FALSE; // do not skip blanks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 int cpo_J;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002859 int found_dot;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860
2861 pos = curwin->w_cursor;
2862 if (dir == FORWARD)
2863 func = incl;
2864 else
2865 func = decl;
2866
2867 while (count--)
2868 {
2869 /*
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002870 * if on an empty line, skip up to a non-empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 */
2872 if (gchar_pos(&pos) == NUL)
2873 {
2874 do
2875 if ((*func)(&pos) == -1)
2876 break;
2877 while (gchar_pos(&pos) == NUL);
2878 if (dir == FORWARD)
2879 goto found;
2880 }
2881 /*
2882 * if on the start of a paragraph or a section and searching forward,
2883 * go to the next line
2884 */
2885 else if (dir == FORWARD && pos.col == 0 &&
2886 startPS(pos.lnum, NUL, FALSE))
2887 {
2888 if (pos.lnum == curbuf->b_ml.ml_line_count)
2889 return FAIL;
2890 ++pos.lnum;
2891 goto found;
2892 }
2893 else if (dir == BACKWARD)
2894 decl(&pos);
2895
Bram Moolenaar85160712018-06-19 18:27:41 +02002896 // go back to the previous non-white non-punctuation character
Bram Moolenaardef9e822004-12-31 20:58:58 +00002897 found_dot = FALSE;
Bram Moolenaar85160712018-06-19 18:27:41 +02002898 while (c = gchar_pos(&pos), VIM_ISWHITE(c)
2899 || vim_strchr((char_u *)".!?)]\"'", c) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 {
Bram Moolenaar85160712018-06-19 18:27:41 +02002901 tpos = pos;
2902 if (decl(&tpos) == -1 || (LINEEMPTY(tpos.lnum) && dir == FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903 break;
Bram Moolenaar85160712018-06-19 18:27:41 +02002904
2905 if (found_dot)
2906 break;
2907 if (vim_strchr((char_u *) ".!?", c) != NULL)
2908 found_dot = TRUE;
2909
2910 if (vim_strchr((char_u *) ")]\"'", c) != NULL
2911 && vim_strchr((char_u *) ".!?)]\"'", gchar_pos(&tpos)) == NULL)
2912 break;
2913
2914 decl(&pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 }
2916
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002917 // remember the line where the search started
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 startlnum = pos.lnum;
2919 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL;
2920
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002921 for (;;) // find end of sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922 {
2923 c = gchar_pos(&pos);
2924 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE)))
2925 {
2926 if (dir == BACKWARD && pos.lnum != startlnum)
2927 ++pos.lnum;
2928 break;
2929 }
2930 if (c == '.' || c == '!' || c == '?')
2931 {
2932 tpos = pos;
2933 do
2934 if ((c = inc(&tpos)) == -1)
2935 break;
2936 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos))
2937 != NULL);
2938 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL
2939 || (cpo_J && (c == ' ' && inc(&tpos) >= 0
2940 && gchar_pos(&tpos) == ' ')))
2941 {
2942 pos = tpos;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002943 if (gchar_pos(&pos) == NUL) // skip NUL at EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944 inc(&pos);
2945 break;
2946 }
2947 }
2948 if ((*func)(&pos) == -1)
2949 {
2950 if (count)
2951 return FAIL;
2952 noskip = TRUE;
2953 break;
2954 }
2955 }
2956found:
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002957 // skip white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t'))
2959 if (incl(&pos) == -1)
2960 break;
2961 }
2962
2963 setpcmark();
2964 curwin->w_cursor = pos;
2965 return OK;
2966}
2967
2968/*
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002969 * Find the next paragraph or section in direction 'dir'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 * Paragraphs are currently supposed to be separated by empty lines.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002971 * If 'what' is NUL we go to the next paragraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972 * If 'what' is '{' or '}' we go to the next section.
2973 * If 'both' is TRUE also stop at '}'.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002974 * Return TRUE if the next paragraph or section was found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975 */
2976 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002977findpar(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002978 int *pincl, // Return: TRUE if last char is to be included
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002979 int dir,
2980 long count,
2981 int what,
2982 int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983{
2984 linenr_T curr;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002985 int did_skip; // TRUE after separating lines have been skipped
2986 int first; // TRUE on first line
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002987 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01002989 linenr_T fold_first; // first line of a closed fold
2990 linenr_T fold_last; // last line of a closed fold
2991 int fold_skipped; // TRUE if a closed fold was skipped this
2992 // iteration
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993#endif
2994
2995 curr = curwin->w_cursor.lnum;
2996
2997 while (count--)
2998 {
2999 did_skip = FALSE;
3000 for (first = TRUE; ; first = FALSE)
3001 {
3002 if (*ml_get(curr) != NUL)
3003 did_skip = TRUE;
3004
3005#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003006 // skip folded lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 fold_skipped = FALSE;
3008 if (first && hasFolding(curr, &fold_first, &fold_last))
3009 {
3010 curr = ((dir > 0) ? fold_last : fold_first) + dir;
3011 fold_skipped = TRUE;
3012 }
3013#endif
3014
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003015 // POSIX has its own ideas of what a paragraph boundary is and it
3016 // doesn't match historical Vi: It also stops at a "{" in the
3017 // first column and at an empty line.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003018 if (!first && did_skip && (startPS(curr, what, both)
3019 || (posix && what == NUL && *ml_get(curr) == '{')))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 break;
3021
3022#ifdef FEAT_FOLDING
3023 if (fold_skipped)
3024 curr -= dir;
3025#endif
3026 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count)
3027 {
3028 if (count)
3029 return FALSE;
3030 curr -= dir;
3031 break;
3032 }
3033 }
3034 }
3035 setpcmark();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003036 if (both && *ml_get(curr) == '}') // include line with '}'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 ++curr;
3038 curwin->w_cursor.lnum = curr;
3039 if (curr == curbuf->b_ml.ml_line_count && what != '}')
3040 {
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02003041 char_u *line = ml_get(curr);
3042
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003043 // Put the cursor on the last character in the last line and make the
3044 // motion inclusive.
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02003045 if ((curwin->w_cursor.col = (colnr_T)STRLEN(line)) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046 {
3047 --curwin->w_cursor.col;
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02003048 curwin->w_cursor.col -=
3049 (*mb_head_off)(line, line + curwin->w_cursor.col);
Bram Moolenaar92d640f2005-09-05 22:11:52 +00003050 *pincl = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 }
3052 }
3053 else
3054 curwin->w_cursor.col = 0;
3055 return TRUE;
3056}
3057
3058/*
3059 * check if the string 's' is a nroff macro that is in option 'opt'
3060 */
3061 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003062inmacro(char_u *opt, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063{
3064 char_u *macro;
3065
3066 for (macro = opt; macro[0]; ++macro)
3067 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003068 // Accept two characters in the option being equal to two characters
3069 // in the line. A space in the option matches with a space in the
3070 // line or the line having ended.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071 if ( (macro[0] == s[0]
3072 || (macro[0] == ' '
3073 && (s[0] == NUL || s[0] == ' ')))
3074 && (macro[1] == s[1]
3075 || ((macro[1] == NUL || macro[1] == ' ')
3076 && (s[0] == NUL || s[1] == NUL || s[1] == ' '))))
3077 break;
3078 ++macro;
3079 if (macro[0] == NUL)
3080 break;
3081 }
3082 return (macro[0] != NUL);
3083}
3084
3085/*
3086 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph.
3087 * If 'para' is '{' or '}' only check for sections.
3088 * If 'both' is TRUE also stop at '}'
3089 */
3090 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003091startPS(linenr_T lnum, int para, int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092{
3093 char_u *s;
3094
3095 s = ml_get(lnum);
3096 if (*s == para || *s == '\f' || (both && *s == '}'))
3097 return TRUE;
3098 if (*s == '.' && (inmacro(p_sections, s + 1) ||
3099 (!para && inmacro(p_para, s + 1))))
3100 return TRUE;
3101 return FALSE;
3102}
3103
3104/*
3105 * The following routines do the word searches performed by the 'w', 'W',
3106 * 'b', 'B', 'e', and 'E' commands.
3107 */
3108
3109/*
3110 * To perform these searches, characters are placed into one of three
3111 * classes, and transitions between classes determine word boundaries.
3112 *
3113 * The classes are:
3114 *
3115 * 0 - white space
3116 * 1 - punctuation
3117 * 2 or higher - keyword characters (letters, digits and underscore)
3118 */
3119
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003120static int cls_bigword; // TRUE for "W", "B" or "E"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121
3122/*
3123 * cls() - returns the class of character at curwin->w_cursor
3124 *
3125 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars
3126 * from class 2 and higher are reported as class 1 since only white space
3127 * boundaries are of interest.
3128 */
3129 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003130cls(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131{
3132 int c;
3133
3134 c = gchar_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 if (c == ' ' || c == '\t' || c == NUL)
3136 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137 if (enc_dbcs != 0 && c > 0xFF)
3138 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003139 // If cls_bigword, report multi-byte chars as class 1.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 if (enc_dbcs == DBCS_KOR && cls_bigword)
3141 return 1;
3142
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003143 // process code leading/trailing bytes
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 return dbcs_class(((unsigned)c >> 8), (c & 0xFF));
3145 }
3146 if (enc_utf8)
3147 {
3148 c = utf_class(c);
3149 if (c != 0 && cls_bigword)
3150 return 1;
3151 return c;
3152 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003154 // If cls_bigword is TRUE, report all non-blanks as class 1.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155 if (cls_bigword)
3156 return 1;
3157
3158 if (vim_iswordc(c))
3159 return 2;
3160 return 1;
3161}
3162
3163
3164/*
3165 * fwd_word(count, type, eol) - move forward one word
3166 *
3167 * Returns FAIL if the cursor was already at the end of the file.
3168 * If eol is TRUE, last word stops at end of line (for operators).
3169 */
3170 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003171fwd_word(
3172 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003173 int bigword, // "W", "E" or "B"
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003174 int eol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003176 int sclass; // starting class
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177 int i;
3178 int last_line;
3179
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181 cls_bigword = bigword;
3182 while (--count >= 0)
3183 {
3184#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003185 // When inside a range of folded lines, move to the last char of the
3186 // last line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3188 coladvance((colnr_T)MAXCOL);
3189#endif
3190 sclass = cls();
3191
3192 /*
3193 * We always move at least one character, unless on the last
3194 * character in the buffer.
3195 */
3196 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count);
3197 i = inc_cursor();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003198 if (i == -1 || (i >= 1 && last_line)) // started at last char in file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199 return FAIL;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003200 if (i >= 1 && eol && count == 0) // started at last char in line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 return OK;
3202
3203 /*
3204 * Go one char past end of current word (if any)
3205 */
3206 if (sclass != 0)
3207 while (cls() == sclass)
3208 {
3209 i = inc_cursor();
3210 if (i == -1 || (i >= 1 && eol && count == 0))
3211 return OK;
3212 }
3213
3214 /*
3215 * go to next non-white
3216 */
3217 while (cls() == 0)
3218 {
3219 /*
3220 * We'll stop if we land on a blank line
3221 */
3222 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL)
3223 break;
3224
3225 i = inc_cursor();
3226 if (i == -1 || (i >= 1 && eol && count == 0))
3227 return OK;
3228 }
3229 }
3230 return OK;
3231}
3232
3233/*
3234 * bck_word() - move backward 'count' words
3235 *
3236 * If stop is TRUE and we are already on the start of a word, move one less.
3237 *
3238 * Returns FAIL if top of the file was reached.
3239 */
3240 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003241bck_word(long count, int bigword, int stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003243 int sclass; // starting class
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246 cls_bigword = bigword;
3247 while (--count >= 0)
3248 {
3249#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003250 // When inside a range of folded lines, move to the first char of the
3251 // first line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL))
3253 curwin->w_cursor.col = 0;
3254#endif
3255 sclass = cls();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003256 if (dec_cursor() == -1) // started at start of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 return FAIL;
3258
3259 if (!stop || sclass == cls() || sclass == 0)
3260 {
3261 /*
3262 * Skip white space before the word.
3263 * Stop on an empty line.
3264 */
3265 while (cls() == 0)
3266 {
3267 if (curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003268 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269 goto finished;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003270 if (dec_cursor() == -1) // hit start of file, stop here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271 return OK;
3272 }
3273
3274 /*
3275 * Move backward to start of this word.
3276 */
3277 if (skip_chars(cls(), BACKWARD))
3278 return OK;
3279 }
3280
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003281 inc_cursor(); // overshot - forward one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282finished:
3283 stop = FALSE;
3284 }
3285 return OK;
3286}
3287
3288/*
3289 * end_word() - move to the end of the word
3290 *
3291 * There is an apparent bug in the 'e' motion of the real vi. At least on the
3292 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e'
3293 * motion crosses blank lines. When the real vi crosses a blank line in an
3294 * 'e' motion, the cursor is placed on the FIRST character of the next
3295 * non-blank line. The 'E' command, however, works correctly. Since this
3296 * appears to be a bug, I have not duplicated it here.
3297 *
3298 * Returns FAIL if end of the file was reached.
3299 *
3300 * If stop is TRUE and we are already on the end of a word, move one less.
3301 * If empty is TRUE stop on an empty line.
3302 */
3303 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003304end_word(
3305 long count,
3306 int bigword,
3307 int stop,
3308 int empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003310 int sclass; // starting class
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 cls_bigword = bigword;
3314 while (--count >= 0)
3315 {
3316#ifdef FEAT_FOLDING
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003317 // When inside a range of folded lines, move to the last char of the
3318 // last line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3320 coladvance((colnr_T)MAXCOL);
3321#endif
3322 sclass = cls();
3323 if (inc_cursor() == -1)
3324 return FAIL;
3325
3326 /*
3327 * If we're in the middle of a word, we just have to move to the end
3328 * of it.
3329 */
3330 if (cls() == sclass && sclass != 0)
3331 {
3332 /*
3333 * Move forward to end of the current word
3334 */
3335 if (skip_chars(sclass, FORWARD))
3336 return FAIL;
3337 }
3338 else if (!stop || sclass == 0)
3339 {
3340 /*
3341 * We were at the end of a word. Go to the end of the next word.
3342 * First skip white space, if 'empty' is TRUE, stop at empty line.
3343 */
3344 while (cls() == 0)
3345 {
3346 if (empty && curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003347 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 goto finished;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003349 if (inc_cursor() == -1) // hit end of file, stop here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 return FAIL;
3351 }
3352
3353 /*
3354 * Move forward to the end of this word.
3355 */
3356 if (skip_chars(cls(), FORWARD))
3357 return FAIL;
3358 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003359 dec_cursor(); // overshot - one char backward
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360finished:
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003361 stop = FALSE; // we move only one word less
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 }
3363 return OK;
3364}
3365
3366/*
3367 * Move back to the end of the word.
3368 *
3369 * Returns FAIL if start of the file was reached.
3370 */
3371 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003372bckend_word(
3373 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003374 int bigword, // TRUE for "B"
3375 int eol) // TRUE: stop at end of line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003377 int sclass; // starting class
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 int i;
3379
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 cls_bigword = bigword;
3382 while (--count >= 0)
3383 {
3384 sclass = cls();
3385 if ((i = dec_cursor()) == -1)
3386 return FAIL;
3387 if (eol && i == 1)
3388 return OK;
3389
3390 /*
3391 * Move backward to before the start of this word.
3392 */
3393 if (sclass != 0)
3394 {
3395 while (cls() == sclass)
3396 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3397 return OK;
3398 }
3399
3400 /*
3401 * Move backward to end of the previous word
3402 */
3403 while (cls() == 0)
3404 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003405 if (curwin->w_cursor.col == 0 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 break;
3407 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3408 return OK;
3409 }
3410 }
3411 return OK;
3412}
3413
3414/*
3415 * Skip a row of characters of the same class.
3416 * Return TRUE when end-of-file reached, FALSE otherwise.
3417 */
3418 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003419skip_chars(int cclass, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420{
3421 while (cls() == cclass)
3422 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1)
3423 return TRUE;
3424 return FALSE;
3425}
3426
3427#ifdef FEAT_TEXTOBJ
3428/*
3429 * Go back to the start of the word or the start of white space
3430 */
3431 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003432back_in_line(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003434 int sclass; // starting class
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435
3436 sclass = cls();
3437 for (;;)
3438 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003439 if (curwin->w_cursor.col == 0) // stop at start of line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 break;
3441 dec_cursor();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003442 if (cls() != sclass) // stop at start of word
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 {
3444 inc_cursor();
3445 break;
3446 }
3447 }
3448}
3449
3450 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003451find_first_blank(pos_T *posp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452{
3453 int c;
3454
3455 while (decl(posp) != -1)
3456 {
3457 c = gchar_pos(posp);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003458 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 {
3460 incl(posp);
3461 break;
3462 }
3463 }
3464}
3465
3466/*
3467 * Skip count/2 sentences and count/2 separating white spaces.
3468 */
3469 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003470findsent_forward(
3471 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003472 int at_start_sent) // cursor is at start of sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473{
3474 while (count--)
3475 {
3476 findsent(FORWARD, 1L);
3477 if (at_start_sent)
3478 find_first_blank(&curwin->w_cursor);
3479 if (count == 0 || at_start_sent)
3480 decl(&curwin->w_cursor);
3481 at_start_sent = !at_start_sent;
3482 }
3483}
3484
3485/*
3486 * Find word under cursor, cursor at end.
3487 * Used while an operator is pending, and in Visual mode.
3488 */
3489 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003490current_word(
3491 oparg_T *oap,
3492 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003493 int include, // TRUE: include word and white space
3494 int bigword) // FALSE == word, TRUE == WORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495{
3496 pos_T start_pos;
3497 pos_T pos;
3498 int inclusive = TRUE;
3499 int include_white = FALSE;
3500
3501 cls_bigword = bigword;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003502 CLEAR_POS(&start_pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003504 // Correct cursor when 'selection' is exclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003505 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506 dec_cursor();
3507
3508 /*
3509 * When Visual mode is not active, or when the VIsual area is only one
3510 * character, select the word and/or white space under the cursor.
3511 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003512 if (!VIsual_active || EQUAL_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 {
3514 /*
3515 * Go to start of current word or white space.
3516 */
3517 back_in_line();
3518 start_pos = curwin->w_cursor;
3519
3520 /*
3521 * If the start is on white space, and white space should be included
3522 * (" word"), or start is not on white space, and white space should
3523 * not be included ("word"), find end of word.
3524 */
3525 if ((cls() == 0) == include)
3526 {
3527 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3528 return FAIL;
3529 }
3530 else
3531 {
3532 /*
3533 * If the start is not on white space, and white space should be
3534 * included ("word "), or start is on white space and white
3535 * space should not be included (" "), find start of word.
3536 * If we end up in the first column of the next line (single char
3537 * word) back up to end of the line.
3538 */
3539 fwd_word(1L, bigword, TRUE);
3540 if (curwin->w_cursor.col == 0)
3541 decl(&curwin->w_cursor);
3542 else
3543 oneleft();
3544
3545 if (include)
3546 include_white = TRUE;
3547 }
3548
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549 if (VIsual_active)
3550 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003551 // should do something when inclusive == FALSE !
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 VIsual = start_pos;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003553 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 }
3555 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 {
3557 oap->start = start_pos;
3558 oap->motion_type = MCHAR;
3559 }
3560 --count;
3561 }
3562
3563 /*
3564 * When count is still > 0, extend with more objects.
3565 */
3566 while (count > 0)
3567 {
3568 inclusive = TRUE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003569 if (VIsual_active && LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570 {
3571 /*
3572 * In Visual mode, with cursor at start: move cursor back.
3573 */
3574 if (decl(&curwin->w_cursor) == -1)
3575 return FAIL;
3576 if (include != (cls() != 0))
3577 {
3578 if (bck_word(1L, bigword, TRUE) == FAIL)
3579 return FAIL;
3580 }
3581 else
3582 {
3583 if (bckend_word(1L, bigword, TRUE) == FAIL)
3584 return FAIL;
3585 (void)incl(&curwin->w_cursor);
3586 }
3587 }
3588 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 {
3590 /*
3591 * Move cursor forward one word and/or white area.
3592 */
3593 if (incl(&curwin->w_cursor) == -1)
3594 return FAIL;
3595 if (include != (cls() == 0))
3596 {
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003597 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 return FAIL;
3599 /*
3600 * If end is just past a new-line, we don't want to include
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003601 * the first character on the line.
3602 * Put cursor on last char of white.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603 */
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003604 if (oneleft() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605 inclusive = FALSE;
3606 }
3607 else
3608 {
3609 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3610 return FAIL;
3611 }
3612 }
3613 --count;
3614 }
3615
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003616 if (include_white && (cls() != 0
3617 || (curwin->w_cursor.col == 0 && !inclusive)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 {
3619 /*
3620 * If we don't include white space at the end, move the start
3621 * to include some white space there. This makes "daw" work
3622 * better on the last word in a sentence (and "2daw" on last-but-one
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003623 * word). Also when "2daw" deletes "word." at the end of the line
3624 * (cursor is at start of next line).
3625 * But don't delete white space at start of line (indent).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003627 pos = curwin->w_cursor; // save cursor position
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 curwin->w_cursor = start_pos;
3629 if (oneleft() == OK)
3630 {
3631 back_in_line();
3632 if (cls() == 0 && curwin->w_cursor.col > 0)
3633 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 if (VIsual_active)
3635 VIsual = curwin->w_cursor;
3636 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 oap->start = curwin->w_cursor;
3638 }
3639 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003640 curwin->w_cursor = pos; // put cursor back at end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 }
3642
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 if (VIsual_active)
3644 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003645 if (*p_sel == 'e' && inclusive && LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 inc_cursor();
3647 if (VIsual_mode == 'V')
3648 {
3649 VIsual_mode = 'v';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003650 redraw_cmdline = TRUE; // show mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 }
3652 }
3653 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654 oap->inclusive = inclusive;
3655
3656 return OK;
3657}
3658
3659/*
3660 * Find sentence(s) under the cursor, cursor at end.
3661 * When Visual active, extend it by one or more sentences.
3662 */
3663 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003664current_sent(oparg_T *oap, long count, int include)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665{
3666 pos_T start_pos;
3667 pos_T pos;
3668 int start_blank;
3669 int c;
3670 int at_start_sent;
3671 long ncount;
3672
3673 start_pos = curwin->w_cursor;
3674 pos = start_pos;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003675 findsent(FORWARD, 1L); // Find start of next sentence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003678 * When the Visual area is bigger than one character: Extend it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003680 if (VIsual_active && !EQUAL_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 {
3682extend:
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003683 if (LT_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684 {
3685 /*
3686 * Cursor at start of Visual area.
3687 * Find out where we are:
3688 * - in the white space before a sentence
3689 * - in a sentence or just after it
3690 * - at the start of a sentence
3691 */
3692 at_start_sent = TRUE;
3693 decl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003694 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 {
3696 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003697 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 {
3699 at_start_sent = FALSE;
3700 break;
3701 }
3702 incl(&pos);
3703 }
3704 if (!at_start_sent)
3705 {
3706 findsent(BACKWARD, 1L);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003707 if (EQUAL_POS(curwin->w_cursor, start_pos))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003708 at_start_sent = TRUE; // exactly at start of sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003710 // inside a sentence, go to its end (start of next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 findsent(FORWARD, 1L);
3712 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003713 if (include) // "as" gets twice as much as "is"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714 count *= 2;
3715 while (count--)
3716 {
3717 if (at_start_sent)
3718 find_first_blank(&curwin->w_cursor);
3719 c = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01003720 if (!at_start_sent || (!include && !VIM_ISWHITE(c)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 findsent(BACKWARD, 1L);
3722 at_start_sent = !at_start_sent;
3723 }
3724 }
3725 else
3726 {
3727 /*
3728 * Cursor at end of Visual area.
3729 * Find out where we are:
3730 * - just before a sentence
3731 * - just before or in the white space before a sentence
3732 * - in a sentence
3733 */
3734 incl(&pos);
3735 at_start_sent = TRUE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003736 // not just before a sentence
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003737 if (!EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 {
3739 at_start_sent = FALSE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003740 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 {
3742 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003743 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 {
3745 at_start_sent = TRUE;
3746 break;
3747 }
3748 incl(&pos);
3749 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003750 if (at_start_sent) // in the sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751 findsent(BACKWARD, 1L);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003752 else // in/before white before a sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 curwin->w_cursor = start_pos;
3754 }
3755
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003756 if (include) // "as" gets twice as much as "is"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 count *= 2;
3758 findsent_forward(count, at_start_sent);
3759 if (*p_sel == 'e')
3760 ++curwin->w_cursor.col;
3761 }
3762 return OK;
3763 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764
3765 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003766 * If the cursor started on a blank, check if it is just before the start
3767 * of the next sentence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 */
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003769 while (c = gchar_pos(&pos), VIM_ISWHITE(c)) // VIM_ISWHITE() is a macro
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 incl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003771 if (EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 {
3773 start_blank = TRUE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003774 find_first_blank(&start_pos); // go back to first blank
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 }
3776 else
3777 {
3778 start_blank = FALSE;
3779 findsent(BACKWARD, 1L);
3780 start_pos = curwin->w_cursor;
3781 }
3782 if (include)
3783 ncount = count * 2;
3784 else
3785 {
3786 ncount = count;
3787 if (start_blank)
3788 --ncount;
3789 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00003790 if (ncount > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791 findsent_forward(ncount, TRUE);
3792 else
3793 decl(&curwin->w_cursor);
3794
3795 if (include)
3796 {
3797 /*
3798 * If the blank in front of the sentence is included, exclude the
3799 * blanks at the end of the sentence, go back to the first blank.
3800 * If there are no trailing blanks, try to include leading blanks.
3801 */
3802 if (start_blank)
3803 {
3804 find_first_blank(&curwin->w_cursor);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003805 c = gchar_pos(&curwin->w_cursor); // VIM_ISWHITE() is a macro
Bram Moolenaar1c465442017-03-12 20:10:05 +01003806 if (VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003807 decl(&curwin->w_cursor);
3808 }
Bram Moolenaar1c465442017-03-12 20:10:05 +01003809 else if (c = gchar_cursor(), !VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 find_first_blank(&start_pos);
3811 }
3812
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 if (VIsual_active)
3814 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003815 // Avoid getting stuck with "is" on a single space before a sentence.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003816 if (EQUAL_POS(start_pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 goto extend;
3818 if (*p_sel == 'e')
3819 ++curwin->w_cursor.col;
3820 VIsual = start_pos;
3821 VIsual_mode = 'v';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003822 redraw_cmdline = TRUE; // show mode later
3823 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 }
3825 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003827 // include a newline after the sentence, if there is one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 if (incl(&curwin->w_cursor) == -1)
3829 oap->inclusive = TRUE;
3830 else
3831 oap->inclusive = FALSE;
3832 oap->start = start_pos;
3833 oap->motion_type = MCHAR;
3834 }
3835 return OK;
3836}
3837
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003838/*
3839 * Find block under the cursor, cursor at end.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003840 * "what" and "other" are two matching parenthesis/brace/etc.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003841 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003843current_block(
3844 oparg_T *oap,
3845 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003846 int include, // TRUE == include white space
3847 int what, // '(', '{', etc.
3848 int other) // ')', '}', etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849{
3850 pos_T old_pos;
3851 pos_T *pos = NULL;
3852 pos_T start_pos;
3853 pos_T *end_pos;
3854 pos_T old_start, old_end;
3855 char_u *save_cpo;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003856 int sol = FALSE; // '{' at start of line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857
3858 old_pos = curwin->w_cursor;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003859 old_end = curwin->w_cursor; // remember where we started
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 old_start = old_end;
3861
3862 /*
3863 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive.
3864 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003865 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 {
3867 setpcmark();
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003868 if (what == '{') // ignore indent
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 while (inindent(1))
3870 if (inc_cursor() != 0)
3871 break;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003872 if (gchar_cursor() == what)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003873 // cursor on '(' or '{', move cursor just after it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 ++curwin->w_cursor.col;
3875 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003876 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877 {
3878 old_start = VIsual;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003879 curwin->w_cursor = VIsual; // cursor at low end of Visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 }
3881 else
3882 old_end = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883
3884 /*
3885 * Search backwards for unclosed '(', '{', etc..
3886 * Put this position in start_pos.
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003887 * Ignore quotes here. Keep the "M" flag in 'cpo', as that is what the
3888 * user wants.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889 */
3890 save_cpo = p_cpo;
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003891 p_cpo = (char_u *)(vim_strchr(p_cpo, CPO_MATCHBSL) != NULL ? "%M" : "%");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 while (count-- > 0)
3893 {
3894 if ((pos = findmatch(NULL, what)) == NULL)
3895 break;
3896 curwin->w_cursor = *pos;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003897 start_pos = *pos; // the findmatch for end_pos will overwrite *pos
Bram Moolenaar071d4272004-06-13 20:20:40 +00003898 }
3899 p_cpo = save_cpo;
3900
3901 /*
3902 * Search for matching ')', '}', etc.
3903 * Put this position in curwin->w_cursor.
3904 */
3905 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL)
3906 {
3907 curwin->w_cursor = old_pos;
3908 return FAIL;
3909 }
3910 curwin->w_cursor = *end_pos;
3911
3912 /*
3913 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE.
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003914 * If the ending '}', ')' or ']' is only preceded by indent, skip that
3915 * indent. But only if the resulting area is not smaller than what we
3916 * started with.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917 */
3918 while (!include)
3919 {
3920 incl(&start_pos);
3921 sol = (curwin->w_cursor.col == 0);
3922 decl(&curwin->w_cursor);
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003923 while (inindent(1))
3924 {
3925 sol = TRUE;
3926 if (decl(&curwin->w_cursor) != 0)
3927 break;
3928 }
3929
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 /*
3931 * In Visual mode, when the resulting area is not bigger than what we
3932 * started with, extend it to the next block, and then exclude again.
3933 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003934 if (!LT_POS(start_pos, old_start) && !LT_POS(old_end, curwin->w_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 && VIsual_active)
3936 {
3937 curwin->w_cursor = old_start;
3938 decl(&curwin->w_cursor);
3939 if ((pos = findmatch(NULL, what)) == NULL)
3940 {
3941 curwin->w_cursor = old_pos;
3942 return FAIL;
3943 }
3944 start_pos = *pos;
3945 curwin->w_cursor = *pos;
3946 if ((end_pos = findmatch(NULL, other)) == NULL)
3947 {
3948 curwin->w_cursor = old_pos;
3949 return FAIL;
3950 }
3951 curwin->w_cursor = *end_pos;
3952 }
3953 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 break;
3955 }
3956
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 if (VIsual_active)
3958 {
3959 if (*p_sel == 'e')
Bram Moolenaar8667d662015-09-01 18:27:49 +02003960 inc(&curwin->w_cursor);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003961 if (sol && gchar_cursor() != NUL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003962 inc(&curwin->w_cursor); // include the line break
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963 VIsual = start_pos;
3964 VIsual_mode = 'v';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003965 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 showmode();
3967 }
3968 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969 {
3970 oap->start = start_pos;
3971 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003972 oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973 if (sol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 incl(&curwin->w_cursor);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003975 else if (LTOREQ_POS(start_pos, curwin->w_cursor))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003976 // Include the character under the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 oap->inclusive = TRUE;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003978 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01003979 // End is before the start (no text in between <>, [], etc.): don't
3980 // operate on any text.
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003981 curwin->w_cursor = start_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 }
3983
3984 return OK;
3985}
3986
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003987/*
3988 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>".
3989 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>".
3990 */
3991 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003992in_html_tag(
3993 int end_tag)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003994{
3995 char_u *line = ml_get_curline();
3996 char_u *p;
3997 int c;
3998 int lc = NUL;
3999 pos_T pos;
4000
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004001 if (enc_dbcs)
4002 {
4003 char_u *lp = NULL;
4004
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004005 // We search forward until the cursor, because searching backwards is
4006 // very slow for DBCS encodings.
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004007 for (p = line; p < line + curwin->w_cursor.col; MB_PTR_ADV(p))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004008 if (*p == '>' || *p == '<')
4009 {
4010 lc = *p;
4011 lp = p;
4012 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004013 if (*p != '<') // check for '<' under cursor
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004014 {
4015 if (lc != '<')
4016 return FALSE;
4017 p = lp;
4018 }
4019 }
4020 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004021 {
4022 for (p = line + curwin->w_cursor.col; p > line; )
4023 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004024 if (*p == '<') // find '<' under/before cursor
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004025 break;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004026 MB_PTR_BACK(line, p);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004027 if (*p == '>') // find '>' before cursor
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004028 break;
4029 }
4030 if (*p != '<')
4031 return FALSE;
4032 }
4033
4034 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004035 pos.col = (colnr_T)(p - line);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004036
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004037 MB_PTR_ADV(p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004038 if (end_tag)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004039 // check that there is a '/' after the '<'
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004040 return *p == '/';
4041
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004042 // check that there is no '/' after the '<'
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004043 if (*p == '/')
4044 return FALSE;
4045
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004046 // check that the matching '>' is not preceded by '/'
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004047 for (;;)
4048 {
4049 if (inc(&pos) < 0)
4050 return FALSE;
4051 c = *ml_get_pos(&pos);
4052 if (c == '>')
4053 break;
4054 lc = c;
4055 }
4056 return lc != '/';
4057}
4058
4059/*
4060 * Find tag block under the cursor, cursor at end.
4061 */
4062 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004063current_tagblock(
4064 oparg_T *oap,
4065 long count_arg,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004066 int include) // TRUE == include white space
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004067{
4068 long count = count_arg;
4069 long n;
4070 pos_T old_pos;
4071 pos_T start_pos;
4072 pos_T end_pos;
4073 pos_T old_start, old_end;
4074 char_u *spat, *epat;
4075 char_u *p;
4076 char_u *cp;
4077 int len;
4078 int r;
4079 int do_include = include;
4080 int save_p_ws = p_ws;
4081 int retval = FAIL;
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004082 int is_inclusive = TRUE;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004083
4084 p_ws = FALSE;
4085
4086 old_pos = curwin->w_cursor;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004087 old_end = curwin->w_cursor; // remember where we started
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004088 old_start = old_end;
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00004089 if (!VIsual_active || *p_sel == 'e')
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004090 decl(&old_end); // old_end is inclusive
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004091
4092 /*
Bram Moolenaar45360022005-07-21 21:08:21 +00004093 * If we start on "<aaa>" select that block.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004094 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004095 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004096 {
4097 setpcmark();
4098
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004099 // ignore indent
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004100 while (inindent(1))
4101 if (inc_cursor() != 0)
4102 break;
4103
4104 if (in_html_tag(FALSE))
4105 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004106 // cursor on start tag, move to its '>'
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004107 while (*ml_get_cursor() != '>')
4108 if (inc_cursor() < 0)
4109 break;
4110 }
4111 else if (in_html_tag(TRUE))
4112 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004113 // cursor on end tag, move to just before it
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004114 while (*ml_get_cursor() != '<')
4115 if (dec_cursor() < 0)
4116 break;
4117 dec_cursor();
4118 old_end = curwin->w_cursor;
4119 }
4120 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004121 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004122 {
4123 old_start = VIsual;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004124 curwin->w_cursor = VIsual; // cursor at low end of Visual
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004125 }
4126 else
4127 old_end = VIsual;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004128
4129again:
4130 /*
4131 * Search backwards for unclosed "<aaa>".
4132 * Put this position in start_pos.
4133 */
4134 for (n = 0; n < count; ++n)
4135 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004136 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)",
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004137 (char_u *)"",
Bram Moolenaar48570482017-10-30 21:48:41 +01004138 (char_u *)"</[^>]*>", BACKWARD, NULL, 0,
Bram Moolenaar76929292008-01-06 19:07:36 +00004139 NULL, (linenr_T)0, 0L) <= 0)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004140 {
4141 curwin->w_cursor = old_pos;
4142 goto theend;
4143 }
4144 }
4145 start_pos = curwin->w_cursor;
4146
4147 /*
4148 * Search for matching "</aaa>". First isolate the "aaa".
4149 */
4150 inc_cursor();
4151 p = ml_get_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01004152 for (cp = p; *cp != NUL && *cp != '>' && !VIM_ISWHITE(*cp); MB_PTR_ADV(cp))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004153 ;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004154 len = (int)(cp - p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004155 if (len == 0)
4156 {
4157 curwin->w_cursor = old_pos;
4158 goto theend;
4159 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004160 spat = alloc(len + 31);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004161 epat = alloc(len + 9);
4162 if (spat == NULL || epat == NULL)
4163 {
4164 vim_free(spat);
4165 vim_free(epat);
4166 curwin->w_cursor = old_pos;
4167 goto theend;
4168 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004169 sprintf((char *)spat, "<%.*s\\>\\%%(\\s\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004170 sprintf((char *)epat, "</%.*s>\\c", len, p);
4171
Bram Moolenaar48570482017-10-30 21:48:41 +01004172 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, NULL,
Bram Moolenaar76929292008-01-06 19:07:36 +00004173 0, NULL, (linenr_T)0, 0L);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004174
4175 vim_free(spat);
4176 vim_free(epat);
4177
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004178 if (r < 1 || LT_POS(curwin->w_cursor, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004179 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004180 // Can't find other end or it's before the previous end. Could be a
4181 // HTML tag that doesn't have a matching end. Search backwards for
4182 // another starting tag.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004183 count = 1;
4184 curwin->w_cursor = start_pos;
4185 goto again;
4186 }
4187
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02004188 if (do_include)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004189 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004190 // Include up to the '>'.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004191 while (*ml_get_cursor() != '>')
4192 if (inc_cursor() < 0)
4193 break;
4194 }
4195 else
4196 {
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004197 char_u *c = ml_get_cursor();
4198
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004199 // Exclude the '<' of the end tag.
4200 // If the closing tag is on new line, do not decrement cursor, but
4201 // make operation exclusive, so that the linefeed will be selected
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004202 if (*c == '<' && !VIsual_active && curwin->w_cursor.col == 0)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004203 // do not decrement cursor
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004204 is_inclusive = FALSE;
4205 else if (*c == '<')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004206 dec_cursor();
4207 }
4208 end_pos = curwin->w_cursor;
4209
4210 if (!do_include)
4211 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004212 // Exclude the start tag.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004213 curwin->w_cursor = start_pos;
4214 while (inc_cursor() >= 0)
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004215 if (*ml_get_cursor() == '>')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004216 {
4217 inc_cursor();
4218 start_pos = curwin->w_cursor;
4219 break;
4220 }
4221 curwin->w_cursor = end_pos;
4222
Bram Moolenaarb476cb72018-08-16 21:37:50 +02004223 // If we are in Visual mode and now have the same text as before set
4224 // "do_include" and try again.
4225 if (VIsual_active && EQUAL_POS(start_pos, old_start)
4226 && EQUAL_POS(end_pos, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004227 {
4228 do_include = TRUE;
4229 curwin->w_cursor = old_start;
4230 count = count_arg;
4231 goto again;
4232 }
4233 }
4234
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004235 if (VIsual_active)
4236 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004237 // If the end is before the start there is no text between tags, select
4238 // the char under the cursor.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004239 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004240 curwin->w_cursor = start_pos;
4241 else if (*p_sel == 'e')
Bram Moolenaar8340dd92014-12-13 20:11:33 +01004242 inc_cursor();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004243 VIsual = start_pos;
4244 VIsual_mode = 'v';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004245 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004246 showmode();
4247 }
4248 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004249 {
4250 oap->start = start_pos;
4251 oap->motion_type = MCHAR;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004252 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004253 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004254 // End is before the start: there is no text between tags; operate
4255 // on an empty area.
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004256 curwin->w_cursor = start_pos;
4257 oap->inclusive = FALSE;
4258 }
4259 else
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004260 oap->inclusive = is_inclusive;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004261 }
4262 retval = OK;
4263
4264theend:
4265 p_ws = save_p_ws;
4266 return retval;
4267}
4268
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004270current_par(
4271 oparg_T *oap,
4272 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004273 int include, // TRUE == include white space
4274 int type) // 'p' for paragraph, 'S' for section
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275{
4276 linenr_T start_lnum;
4277 linenr_T end_lnum;
4278 int white_in_front;
4279 int dir;
4280 int start_is_white;
4281 int prev_start_is_white;
4282 int retval = OK;
4283 int do_white = FALSE;
4284 int t;
4285 int i;
4286
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004287 if (type == 'S') // not implemented yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 return FAIL;
4289
4290 start_lnum = curwin->w_cursor.lnum;
4291
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292 /*
4293 * When visual area is more than one line: extend it.
4294 */
4295 if (VIsual_active && start_lnum != VIsual.lnum)
4296 {
4297extend:
4298 if (start_lnum < VIsual.lnum)
4299 dir = BACKWARD;
4300 else
4301 dir = FORWARD;
4302 for (i = count; --i >= 0; )
4303 {
4304 if (start_lnum ==
4305 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
4306 {
4307 retval = FAIL;
4308 break;
4309 }
4310
4311 prev_start_is_white = -1;
4312 for (t = 0; t < 2; ++t)
4313 {
4314 start_lnum += dir;
4315 start_is_white = linewhite(start_lnum);
4316 if (prev_start_is_white == start_is_white)
4317 {
4318 start_lnum -= dir;
4319 break;
4320 }
4321 for (;;)
4322 {
4323 if (start_lnum == (dir == BACKWARD
4324 ? 1 : curbuf->b_ml.ml_line_count))
4325 break;
4326 if (start_is_white != linewhite(start_lnum + dir)
4327 || (!start_is_white
4328 && startPS(start_lnum + (dir > 0
4329 ? 1 : 0), 0, 0)))
4330 break;
4331 start_lnum += dir;
4332 }
4333 if (!include)
4334 break;
4335 if (start_lnum == (dir == BACKWARD
4336 ? 1 : curbuf->b_ml.ml_line_count))
4337 break;
4338 prev_start_is_white = start_is_white;
4339 }
4340 }
4341 curwin->w_cursor.lnum = start_lnum;
4342 curwin->w_cursor.col = 0;
4343 return retval;
4344 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345
4346 /*
4347 * First move back to the start_lnum of the paragraph or white lines
4348 */
4349 white_in_front = linewhite(start_lnum);
4350 while (start_lnum > 1)
4351 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004352 if (white_in_front) // stop at first white line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 {
4354 if (!linewhite(start_lnum - 1))
4355 break;
4356 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004357 else // stop at first non-white line of start of paragraph
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 {
4359 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
4360 break;
4361 }
4362 --start_lnum;
4363 }
4364
4365 /*
4366 * Move past the end of any white lines.
4367 */
4368 end_lnum = start_lnum;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004369 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
4370 ++end_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371
4372 --end_lnum;
4373 i = count;
4374 if (!include && white_in_front)
4375 --i;
4376 while (i--)
4377 {
4378 if (end_lnum == curbuf->b_ml.ml_line_count)
4379 return FAIL;
4380
4381 if (!include)
4382 do_white = linewhite(end_lnum + 1);
4383
4384 if (include || !do_white)
4385 {
4386 ++end_lnum;
4387 /*
4388 * skip to end of paragraph
4389 */
4390 while (end_lnum < curbuf->b_ml.ml_line_count
4391 && !linewhite(end_lnum + 1)
4392 && !startPS(end_lnum + 1, 0, 0))
4393 ++end_lnum;
4394 }
4395
4396 if (i == 0 && white_in_front && include)
4397 break;
4398
4399 /*
4400 * skip to end of white lines after paragraph
4401 */
4402 if (include || do_white)
4403 while (end_lnum < curbuf->b_ml.ml_line_count
4404 && linewhite(end_lnum + 1))
4405 ++end_lnum;
4406 }
4407
4408 /*
4409 * If there are no empty lines at the end, try to find some empty lines at
4410 * the start (unless that has been done already).
4411 */
4412 if (!white_in_front && !linewhite(end_lnum) && include)
4413 while (start_lnum > 1 && linewhite(start_lnum - 1))
4414 --start_lnum;
4415
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 if (VIsual_active)
4417 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004418 // Problem: when doing "Vipipip" nothing happens in a single white
4419 // line, we get stuck there. Trap this here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4421 goto extend;
Bram Moolenaar84b2a382017-02-17 11:40:00 +01004422 if (VIsual.lnum != start_lnum)
4423 {
4424 VIsual.lnum = start_lnum;
4425 VIsual.col = 0;
4426 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 VIsual_mode = 'V';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004428 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429 showmode();
4430 }
4431 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432 {
4433 oap->start.lnum = start_lnum;
4434 oap->start.col = 0;
4435 oap->motion_type = MLINE;
4436 }
4437 curwin->w_cursor.lnum = end_lnum;
4438 curwin->w_cursor.col = 0;
4439
4440 return OK;
4441}
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004442
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004443/*
4444 * Search quote char from string line[col].
4445 * Quote character escaped by one of the characters in "escape" is not counted
4446 * as a quote.
4447 * Returns column number of "quotechar" or -1 when not found.
4448 */
4449 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004450find_next_quote(
4451 char_u *line,
4452 int col,
4453 int quotechar,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004454 char_u *escape) // escape characters, can be NULL
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004455{
4456 int c;
4457
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004458 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004459 {
4460 c = line[col];
4461 if (c == NUL)
4462 return -1;
4463 else if (escape != NULL && vim_strchr(escape, c))
4464 ++col;
4465 else if (c == quotechar)
4466 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004467 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004468 col += (*mb_ptr2len)(line + col);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004469 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004470 ++col;
4471 }
4472 return col;
4473}
4474
4475/*
4476 * Search backwards in "line" from column "col_start" to find "quotechar".
4477 * Quote character escaped by one of the characters in "escape" is not counted
4478 * as a quote.
4479 * Return the found column or zero.
4480 */
4481 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004482find_prev_quote(
4483 char_u *line,
4484 int col_start,
4485 int quotechar,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004486 char_u *escape) // escape characters, can be NULL
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004487{
4488 int n;
4489
4490 while (col_start > 0)
4491 {
4492 --col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004493 col_start -= (*mb_head_off)(line, line + col_start);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004494 n = 0;
4495 if (escape != NULL)
4496 while (col_start - n > 0 && vim_strchr(escape,
4497 line[col_start - n - 1]) != NULL)
4498 ++n;
4499 if (n & 1)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004500 col_start -= n; // uneven number of escape chars, skip it
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004501 else if (line[col_start] == quotechar)
4502 break;
4503 }
4504 return col_start;
4505}
4506
4507/*
4508 * Find quote under the cursor, cursor at end.
4509 * Returns TRUE if found, else FALSE.
4510 */
4511 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004512current_quote(
4513 oparg_T *oap,
4514 long count,
Bram Moolenaar94d9f4f2019-11-21 20:55:26 +01004515 int include, // TRUE == include quote char
4516 int quotechar) // Quote character
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004517{
4518 char_u *line = ml_get_curline();
4519 int col_end;
4520 int col_start = curwin->w_cursor.col;
4521 int inclusive = FALSE;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004522 int vis_empty = TRUE; // Visual selection <= 1 char
4523 int vis_bef_curs = FALSE; // Visual starts before cursor
Bram Moolenaar94d9f4f2019-11-21 20:55:26 +01004524 int did_exclusive_adj = FALSE; // adjusted pos for 'selection'
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004525 int inside_quotes = FALSE; // Looks like "i'" done before
4526 int selected_quote = FALSE; // Has quote inside selection
Bram Moolenaarab194812005-09-14 21:40:12 +00004527 int i;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004528 int restore_vis_bef = FALSE; // restore VIsual on abort
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004529
Bram Moolenaar94d9f4f2019-11-21 20:55:26 +01004530 // When 'selection' is "exclusive" move the cursor to where it would be
4531 // with 'selection' "inclusive", so that the logic is the same for both.
4532 // The cursor then is moved forward after adjusting the area.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004533 if (VIsual_active)
4534 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004535 // this only works within one line
Bram Moolenaar46522af2017-02-18 23:12:01 +01004536 if (VIsual.lnum != curwin->w_cursor.lnum)
4537 return FALSE;
4538
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004539 vis_bef_curs = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaar7170b292019-11-17 17:32:28 +01004540 vis_empty = EQUAL_POS(VIsual, curwin->w_cursor);
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004541 if (*p_sel == 'e')
4542 {
Bram Moolenaar94d9f4f2019-11-21 20:55:26 +01004543 if (vis_bef_curs)
4544 {
4545 dec_cursor();
4546 did_exclusive_adj = TRUE;
4547 }
4548 else if (!vis_empty)
4549 {
4550 dec(&VIsual);
4551 did_exclusive_adj = TRUE;
4552 }
4553 vis_empty = EQUAL_POS(VIsual, curwin->w_cursor);
Bram Moolenaar7170b292019-11-17 17:32:28 +01004554 if (!vis_bef_curs && !vis_empty)
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004555 {
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004556 // VIsual needs to be the start of Visual selection.
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004557 pos_T t = curwin->w_cursor;
4558
4559 curwin->w_cursor = VIsual;
4560 VIsual = t;
4561 vis_bef_curs = TRUE;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004562 restore_vis_bef = TRUE;
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004563 }
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004564 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004565 }
Bram Moolenaarab194812005-09-14 21:40:12 +00004566
4567 if (!vis_empty)
4568 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004569 // Check if the existing selection exactly spans the text inside
4570 // quotes.
Bram Moolenaarab194812005-09-14 21:40:12 +00004571 if (vis_bef_curs)
4572 {
4573 inside_quotes = VIsual.col > 0
4574 && line[VIsual.col - 1] == quotechar
4575 && line[curwin->w_cursor.col] != NUL
4576 && line[curwin->w_cursor.col + 1] == quotechar;
4577 i = VIsual.col;
4578 col_end = curwin->w_cursor.col;
4579 }
4580 else
4581 {
4582 inside_quotes = curwin->w_cursor.col > 0
4583 && line[curwin->w_cursor.col - 1] == quotechar
4584 && line[VIsual.col] != NUL
4585 && line[VIsual.col + 1] == quotechar;
4586 i = curwin->w_cursor.col;
4587 col_end = VIsual.col;
4588 }
4589
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004590 // Find out if we have a quote in the selection.
Bram Moolenaarab194812005-09-14 21:40:12 +00004591 while (i <= col_end)
4592 if (line[i++] == quotechar)
4593 {
4594 selected_quote = TRUE;
4595 break;
4596 }
4597 }
4598
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004599 if (!vis_empty && line[col_start] == quotechar)
4600 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004601 // Already selecting something and on a quote character. Find the
4602 // next quoted string.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004603 if (vis_bef_curs)
4604 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004605 // Assume we are on a closing quote: move to after the next
4606 // opening quote.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004607 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4608 if (col_start < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004609 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004610 col_end = find_next_quote(line, col_start + 1, quotechar,
4611 curbuf->b_p_qe);
4612 if (col_end < 0)
4613 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004614 // We were on a starting quote perhaps?
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004615 col_end = col_start;
4616 col_start = curwin->w_cursor.col;
4617 }
4618 }
4619 else
4620 {
4621 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4622 if (line[col_end] != quotechar)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004623 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004624 col_start = find_prev_quote(line, col_end, quotechar,
4625 curbuf->b_p_qe);
4626 if (line[col_start] != quotechar)
4627 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004628 // We were on an ending quote perhaps?
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004629 col_start = col_end;
4630 col_end = curwin->w_cursor.col;
4631 }
4632 }
4633 }
4634 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004635
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004636 if (line[col_start] == quotechar || !vis_empty)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004637 {
4638 int first_col = col_start;
4639
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004640 if (!vis_empty)
4641 {
4642 if (vis_bef_curs)
4643 first_col = find_next_quote(line, col_start, quotechar, NULL);
4644 else
4645 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4646 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004647
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004648 // The cursor is on a quote, we don't know if it's the opening or
4649 // closing quote. Search from the start of the line to find out.
4650 // Also do this when there is a Visual area, a' may leave the cursor
4651 // in between two strings.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004652 col_start = 0;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004653 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004654 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004655 // Find open quote character.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004656 col_start = find_next_quote(line, col_start, quotechar, NULL);
4657 if (col_start < 0 || col_start > first_col)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004658 goto abort_search;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004659 // Find close quote character.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004660 col_end = find_next_quote(line, col_start + 1, quotechar,
4661 curbuf->b_p_qe);
4662 if (col_end < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004663 goto abort_search;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004664 // If is cursor between start and end quote character, it is
4665 // target text object.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004666 if (col_start <= first_col && first_col <= col_end)
4667 break;
4668 col_start = col_end + 1;
4669 }
4670 }
4671 else
4672 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004673 // Search backward for a starting quote.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004674 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4675 if (line[col_start] != quotechar)
4676 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004677 // No quote before the cursor, look after the cursor.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004678 col_start = find_next_quote(line, col_start, quotechar, NULL);
4679 if (col_start < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004680 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004681 }
4682
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004683 // Find close quote character.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004684 col_end = find_next_quote(line, col_start + 1, quotechar,
4685 curbuf->b_p_qe);
4686 if (col_end < 0)
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004687 goto abort_search;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004688 }
4689
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004690 // When "include" is TRUE, include spaces after closing quote or before
4691 // the starting quote.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004692 if (include)
4693 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004694 if (VIM_ISWHITE(line[col_end + 1]))
4695 while (VIM_ISWHITE(line[col_end + 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004696 ++col_end;
4697 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004698 while (col_start > 0 && VIM_ISWHITE(line[col_start - 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004699 --col_start;
4700 }
4701
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004702 // Set start position. After vi" another i" must include the ".
4703 // For v2i" include the quotes.
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004704 if (!include && count < 2 && (vis_empty || !inside_quotes))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004705 ++col_start;
4706 curwin->w_cursor.col = col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004707 if (VIsual_active)
4708 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004709 // Set the start of the Visual area when the Visual area was empty, we
4710 // were just inside quotes or the Visual area didn't start at a quote
4711 // and didn't include a quote.
Bram Moolenaarab194812005-09-14 21:40:12 +00004712 if (vis_empty
4713 || (vis_bef_curs
4714 && !selected_quote
4715 && (inside_quotes
4716 || (line[VIsual.col] != quotechar
4717 && (VIsual.col == 0
4718 || line[VIsual.col - 1] != quotechar)))))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004719 {
4720 VIsual = curwin->w_cursor;
4721 redraw_curbuf_later(INVERTED);
4722 }
4723 }
4724 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004725 {
4726 oap->start = curwin->w_cursor;
4727 oap->motion_type = MCHAR;
4728 }
4729
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004730 // Set end position.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004731 curwin->w_cursor.col = col_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004732 if ((include || count > 1 // After vi" another i" must include the ".
Bram Moolenaarab194812005-09-14 21:40:12 +00004733 || (!vis_empty && inside_quotes)
Bram Moolenaarab194812005-09-14 21:40:12 +00004734 ) && inc_cursor() == 2)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004735 inclusive = TRUE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004736 if (VIsual_active)
4737 {
4738 if (vis_empty || vis_bef_curs)
4739 {
Bram Moolenaar94d9f4f2019-11-21 20:55:26 +01004740 // decrement cursor when 'selection' is not exclusive
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004741 if (*p_sel != 'e')
4742 dec_cursor();
4743 }
4744 else
4745 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004746 // Cursor is at start of Visual area. Set the end of the Visual
4747 // area when it was just inside quotes or it didn't end at a
4748 // quote.
Bram Moolenaarab194812005-09-14 21:40:12 +00004749 if (inside_quotes
4750 || (!selected_quote
4751 && line[VIsual.col] != quotechar
4752 && (line[VIsual.col] == NUL
4753 || line[VIsual.col + 1] != quotechar)))
4754 {
4755 dec_cursor();
4756 VIsual = curwin->w_cursor;
4757 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004758 curwin->w_cursor.col = col_start;
4759 }
4760 if (VIsual_mode == 'V')
4761 {
4762 VIsual_mode = 'v';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004763 redraw_cmdline = TRUE; // show mode later
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004764 }
4765 }
4766 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004767 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004768 // Set inclusive and other oap's flags.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004769 oap->inclusive = inclusive;
4770 }
4771
4772 return OK;
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004773
4774abort_search:
4775 if (VIsual_active && *p_sel == 'e')
4776 {
Bram Moolenaar94d9f4f2019-11-21 20:55:26 +01004777 if (did_exclusive_adj)
4778 inc_cursor();
Bram Moolenaar55d3bdb2019-02-22 15:04:17 +01004779 if (restore_vis_bef)
4780 {
4781 pos_T t = curwin->w_cursor;
4782
4783 curwin->w_cursor = VIsual;
4784 VIsual = t;
4785 }
4786 }
4787 return FALSE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004788}
4789
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004790#endif // FEAT_TEXTOBJ
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004792/*
Bram Moolenaar453c1922019-10-26 14:42:09 +02004793 * Check if the pattern is zero-width.
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004794 * If move is TRUE, check from the beginning of the buffer, else from position
4795 * "cur".
4796 * "direction" is FORWARD or BACKWARD.
4797 * Returns TRUE, FALSE or -1 for failure.
4798 */
4799 static int
4800is_zero_width(char_u *pattern, int move, pos_T *cur, int direction)
4801{
4802 regmmatch_T regmatch;
4803 int nmatched = 0;
4804 int result = -1;
4805 pos_T pos;
Bram Moolenaar53989552019-12-23 22:59:18 +01004806 int called_emsg_before = called_emsg;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004807 int flag = 0;
4808
4809 if (pattern == NULL)
4810 pattern = spats[last_idx].pat;
4811
4812 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
4813 SEARCH_KEEP, &regmatch) == FAIL)
4814 return -1;
4815
4816 // init startcol correctly
4817 regmatch.startpos[0].col = -1;
4818 // move to match
4819 if (move)
4820 {
4821 CLEAR_POS(&pos);
4822 }
4823 else
4824 {
4825 pos = *cur;
4826 // accept a match at the cursor position
4827 flag = SEARCH_START;
4828 }
4829
4830 if (searchit(curwin, curbuf, &pos, NULL, direction, pattern, 1,
4831 SEARCH_KEEP + flag, RE_SEARCH, NULL) != FAIL)
4832 {
4833 // Zero-width pattern should match somewhere, then we can check if
4834 // start and end are in the same position.
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004835 do
4836 {
4837 regmatch.startpos[0].col++;
4838 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
4839 pos.lnum, regmatch.startpos[0].col, NULL, NULL);
4840 if (nmatched != 0)
4841 break;
4842 } while (direction == FORWARD ? regmatch.startpos[0].col < pos.col
4843 : regmatch.startpos[0].col > pos.col);
4844
Bram Moolenaar53989552019-12-23 22:59:18 +01004845 if (called_emsg == called_emsg_before)
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004846 {
4847 result = (nmatched != 0
4848 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
4849 && regmatch.startpos[0].col == regmatch.endpos[0].col);
4850 }
4851 }
4852
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004853 vim_regfree(regmatch.regprog);
4854 return result;
4855}
4856
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004857
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004858/*
4859 * Find next search match under cursor, cursor at end.
4860 * Used while an operator is pending, and in Visual mode.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004861 */
4862 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004863current_search(
4864 long count,
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004865 int forward) // TRUE for forward, FALSE for backward
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004866{
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004867 pos_T start_pos; // start position of the pattern match
4868 pos_T end_pos; // end position of the pattern match
4869 pos_T orig_pos; // position of the cursor at beginning
4870 pos_T pos; // position after the pattern
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004871 int i;
4872 int dir;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004873 int result; // result of various function calls
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004874 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004875 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02004876 pos_T save_VIsual = VIsual;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004877 int zero_width;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004878
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004879 // Correct cursor when 'selection' is exclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004880 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004881 dec_cursor();
4882
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004883 orig_pos = pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004884 if (VIsual_active)
4885 {
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004886 if (forward)
4887 incl(&pos);
4888 else
4889 decl(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004890 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004891
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004892 // Is the pattern is zero-width?, this time, don't care about the direction
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004893 zero_width = is_zero_width(spats[last_idx].pat, TRUE, &curwin->w_cursor,
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004894 FORWARD);
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004895 if (zero_width == -1)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004896 return FAIL; // pattern not found
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004897
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004898 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004899 * The trick is to first search backwards and then search forward again,
4900 * so that a match at the current cursor position will be correctly
4901 * captured.
4902 */
4903 for (i = 0; i < 2; i++)
4904 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004905 if (forward)
4906 dir = i;
4907 else
4908 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004909
4910 flags = 0;
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004911 if (!dir && !zero_width)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004912 flags = SEARCH_END;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004913 end_pos = pos;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004914
Bram Moolenaar82cf7f62019-11-02 23:22:47 +01004915 // wrapping should not occur in the first round
4916 if (i == 0)
4917 p_ws = FALSE;
4918
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004919 result = searchit(curwin, curbuf, &pos, &end_pos,
4920 (dir ? FORWARD : BACKWARD),
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004921 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004922 SEARCH_KEEP | flags, RE_SEARCH, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004923
Bram Moolenaar82cf7f62019-11-02 23:22:47 +01004924 p_ws = old_p_ws;
4925
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004926 // First search may fail, but then start searching from the
4927 // beginning of the file (cursor might be on the search match)
4928 // except when Visual mode is active, so that extending the visual
4929 // selection works.
4930 if (i == 1 && !result) // not found, abort
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004931 {
4932 curwin->w_cursor = orig_pos;
4933 if (VIsual_active)
4934 VIsual = save_VIsual;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004935 return FAIL;
4936 }
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004937 else if (i == 0 && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004938 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004939 if (forward)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004940 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004941 // try again from start of buffer
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004942 CLEAR_POS(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004943 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004944 else
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004945 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004946 // try again from end of buffer
4947 // searching backwards, so set pos to last line and col
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004948 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02004949 pos.col = (colnr_T)STRLEN(
4950 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004951 }
4952 }
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004953 }
4954
4955 start_pos = pos;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004956
4957 if (!VIsual_active)
4958 VIsual = start_pos;
4959
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004960 // put cursor on last character of match
4961 curwin->w_cursor = end_pos;
Bram Moolenaar453c1922019-10-26 14:42:09 +02004962 if (LT_POS(VIsual, end_pos) && forward)
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004963 dec_cursor();
Bram Moolenaaredaad6e2019-10-24 15:23:37 +02004964 else if (VIsual_active && LT_POS(curwin->w_cursor, VIsual))
4965 curwin->w_cursor = pos; // put the cursor on the start of the match
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004966 VIsual_active = TRUE;
4967 VIsual_mode = 'v';
4968
Bram Moolenaarb7633612019-02-10 21:48:25 +01004969 if (*p_sel == 'e')
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004970 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004971 // Correction for exclusive selection depends on the direction.
Bram Moolenaarb7633612019-02-10 21:48:25 +01004972 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor))
4973 inc_cursor();
4974 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual))
4975 inc(&VIsual);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004976 }
4977
4978#ifdef FEAT_FOLDING
4979 if (fdo_flags & FDO_SEARCH && KeyTyped)
4980 foldOpenCursor();
4981#endif
4982
4983 may_start_select('c');
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004984 setmouse();
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004985#ifdef FEAT_CLIPBOARD
Bram Moolenaar63d9e732019-12-05 21:10:38 +01004986 // Make sure the clipboard gets updated. Needed because start and
4987 // end are still the same, and the selection needs to be owned
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004988 clip_star.vmode = NUL;
4989#endif
4990 redraw_curbuf_later(INVERTED);
4991 showmode();
4992
4993 return OK;
4994}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004995
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4997 || defined(PROTO)
4998/*
4999 * return TRUE if line 'lnum' is empty or has white chars only.
5000 */
5001 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005002linewhite(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003{
5004 char_u *p;
5005
5006 p = skipwhite(ml_get(lnum));
5007 return (*p == NUL);
5008}
5009#endif
5010
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005011/*
5012 * Add the search count "[3/19]" to "msgbuf".
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02005013 * When "recompute" is TRUE always recompute the numbers.
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005014 */
5015 static void
5016search_stat(
5017 int dirc,
5018 pos_T *pos,
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02005019 int show_top_bot_msg,
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02005020 char_u *msgbuf,
5021 int recompute)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005022{
5023 int save_ws = p_ws;
5024 int wraparound = FALSE;
5025 pos_T p = (*pos);
5026 static pos_T lastpos = {0, 0, 0};
5027 static int cur = 0;
5028 static int cnt = 0;
5029 static int chgtick = 0;
5030 static char_u *lastpat = NULL;
5031 static buf_T *lbuf = NULL;
5032#ifdef FEAT_RELTIME
5033 proftime_T start;
5034#endif
5035#define OUT_OF_TIME 999
5036
5037 wraparound = ((dirc == '?' && LT_POS(lastpos, p))
5038 || (dirc == '/' && LT_POS(p, lastpos)));
5039
5040 // If anything relevant changed the count has to be recomputed.
5041 // MB_STRNICMP ignores case, but we should not ignore case.
5042 // Unfortunately, there is no MB_STRNICMP function.
5043 if (!(chgtick == CHANGEDTICK(curbuf)
5044 && MB_STRNICMP(lastpat, spats[last_idx].pat, STRLEN(lastpat)) == 0
5045 && STRLEN(lastpat) == STRLEN(spats[last_idx].pat)
5046 && EQUAL_POS(lastpos, curwin->w_cursor)
Bram Moolenaar8f46e4c2019-05-24 22:08:15 +02005047 && lbuf == curbuf) || wraparound || cur < 0 || cur > 99 || recompute)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005048 {
5049 cur = 0;
5050 cnt = 0;
5051 CLEAR_POS(&lastpos);
5052 lbuf = curbuf;
5053 }
5054
5055 if (EQUAL_POS(lastpos, curwin->w_cursor) && !wraparound
5056 && (dirc == '/' ? cur < cnt : cur > 0))
5057 cur += dirc == '/' ? 1 : -1;
5058 else
5059 {
5060 p_ws = FALSE;
5061#ifdef FEAT_RELTIME
5062 profile_setlimit(20L, &start);
5063#endif
5064 while (!got_int && searchit(curwin, curbuf, &lastpos, NULL,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02005065 FORWARD, NULL, 1, SEARCH_KEEP, RE_LAST, NULL) != FAIL)
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005066 {
5067#ifdef FEAT_RELTIME
5068 // Stop after passing the time limit.
5069 if (profile_passed_limit(&start))
5070 {
5071 cnt = OUT_OF_TIME;
5072 cur = OUT_OF_TIME;
5073 break;
5074 }
5075#endif
5076 cnt++;
5077 if (LTOREQ_POS(lastpos, p))
5078 cur++;
5079 fast_breakcheck();
5080 if (cnt > 99)
5081 break;
5082 }
5083 if (got_int)
5084 cur = -1; // abort
5085 }
5086 if (cur > 0)
5087 {
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005088 char t[SEARCH_STAT_BUF_LEN] = "";
Bram Moolenaare2ad8262019-05-24 13:22:22 +02005089 size_t len;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005090
5091#ifdef FEAT_RIGHTLEFT
5092 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
5093 {
5094 if (cur == OUT_OF_TIME)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005095 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[?/??]");
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005096 else if (cnt > 99 && cur > 99)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005097 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>99/>99]");
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005098 else if (cnt > 99)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005099 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>99/%d]", cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005100 else
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005101 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/%d]", cnt, cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005102 }
5103 else
5104#endif
5105 {
5106 if (cur == OUT_OF_TIME)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005107 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[?/??]");
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005108 else if (cnt > 99 && cur > 99)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005109 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[>99/>99]");
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005110 else if (cnt > 99)
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005111 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/>99]", cur);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005112 else
Bram Moolenaarb6cb26f2019-05-07 21:34:37 +02005113 vim_snprintf(t, SEARCH_STAT_BUF_LEN, "[%d/%d]", cur, cnt);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005114 }
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02005115
5116 len = STRLEN(t);
Bram Moolenaardc6855a2019-05-18 19:26:29 +02005117 if (show_top_bot_msg && len + 2 < SEARCH_STAT_BUF_LEN)
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02005118 {
Bram Moolenaar16b58ae2019-09-06 20:40:21 +02005119 mch_memmove(t + 2, t, len);
5120 t[0] = 'W';
5121 t[1] = ' ';
Bram Moolenaarc7a10b32019-05-06 21:37:18 +02005122 len += 2;
5123 }
5124
5125 mch_memmove(msgbuf + STRLEN(msgbuf) - len, t, len);
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005126 if (dirc == '?' && cur == 100)
5127 cur = -1;
5128
5129 vim_free(lastpat);
5130 lastpat = vim_strsave(spats[last_idx].pat);
5131 chgtick = CHANGEDTICK(curbuf);
5132 lbuf = curbuf;
5133 lastpos = p;
5134
Bram Moolenaar984f0312019-05-24 13:11:47 +02005135 // keep the message even after redraw, but don't put in history
5136 msg_hist_off = TRUE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005137 give_warning(msgbuf, FALSE);
Bram Moolenaar984f0312019-05-24 13:11:47 +02005138 msg_hist_off = FALSE;
Bram Moolenaar9dfa3132019-05-04 21:08:40 +02005139 }
5140 p_ws = save_ws;
5141}
5142
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143#if defined(FEAT_FIND_ID) || defined(PROTO)
5144/*
5145 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01005146 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005149find_pattern_in_path(
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005150 char_u *ptr, // pointer to search pattern
5151 int dir UNUSED, // direction of expansion
5152 int len, // length of search pattern
5153 int whole, // match whole words only
5154 int skip_comments, // don't match inside comments
5155 int type, // Type of search; are we looking for a type?
5156 // a macro?
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005157 long count,
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005158 int action, // What to do when we find it
5159 linenr_T start_lnum, // first line to start searching
5160 linenr_T end_lnum) // last line for searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161{
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005162 SearchedFile *files; // Stack of included files
5163 SearchedFile *bigger; // When we need more space
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164 int max_path_depth = 50;
5165 long match_count = 1;
5166
5167 char_u *pat;
5168 char_u *new_fname;
5169 char_u *curr_fname = curbuf->b_fname;
5170 char_u *prev_fname = NULL;
5171 linenr_T lnum;
5172 int depth;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005173 int depth_displayed; // For type==CHECK_PATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 int old_files;
5175 int already_searched;
5176 char_u *file_line;
5177 char_u *line;
5178 char_u *p;
5179 char_u save_char;
5180 int define_matched;
5181 regmatch_T regmatch;
5182 regmatch_T incl_regmatch;
5183 regmatch_T def_regmatch;
5184 int matched = FALSE;
5185 int did_show = FALSE;
5186 int found = FALSE;
5187 int i;
5188 char_u *already = NULL;
5189 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005190 char_u *inc_opt = NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005191#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192 win_T *curwin_save = NULL;
5193#endif
5194
5195 regmatch.regprog = NULL;
5196 incl_regmatch.regprog = NULL;
5197 def_regmatch.regprog = NULL;
5198
5199 file_line = alloc(LSIZE);
5200 if (file_line == NULL)
5201 return;
5202
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 if (type != CHECK_PATH && type != FIND_DEFINE
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005204 // when CONT_SOL is set compare "ptr" with the beginning of the line
5205 // is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005206 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207 {
5208 pat = alloc(len + 5);
5209 if (pat == NULL)
5210 goto fpip_end;
5211 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005212 // ignore case according to p_ic, p_scs and pat
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213 regmatch.rm_ic = ignorecase(pat);
5214 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
5215 vim_free(pat);
5216 if (regmatch.regprog == NULL)
5217 goto fpip_end;
5218 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005219 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
5220 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005222 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223 if (incl_regmatch.regprog == NULL)
5224 goto fpip_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005225 incl_regmatch.rm_ic = FALSE; // don't ignore case in incl. pat.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 }
5227 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
5228 {
5229 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
5230 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
5231 if (def_regmatch.regprog == NULL)
5232 goto fpip_end;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005233 def_regmatch.rm_ic = FALSE; // don't ignore case in define pat.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005235 files = lalloc_clear(max_path_depth * sizeof(SearchedFile), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 if (files == NULL)
5237 goto fpip_end;
5238 old_files = max_path_depth;
5239 depth = depth_displayed = -1;
5240
5241 lnum = start_lnum;
5242 if (end_lnum > curbuf->b_ml.ml_line_count)
5243 end_lnum = curbuf->b_ml.ml_line_count;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005244 if (lnum > end_lnum) // do at least one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245 lnum = end_lnum;
5246 line = ml_get(lnum);
5247
5248 for (;;)
5249 {
5250 if (incl_regmatch.regprog != NULL
5251 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
5252 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005253 char_u *p_fname = (curr_fname == curbuf->b_fname)
5254 ? curbuf->b_ffname : curr_fname;
5255
5256 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005257 // Use text from '\zs' to '\ze' (or end) of 'include'.
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005258 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005259 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005260 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
5261 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005262 // Use text after match with 'include'.
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005263 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005264 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265 already_searched = FALSE;
5266 if (new_fname != NULL)
5267 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005268 // Check whether we have already searched in this file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 for (i = 0;; i++)
5270 {
5271 if (i == depth + 1)
5272 i = old_files;
5273 if (i == max_path_depth)
5274 break;
Bram Moolenaar99499b12019-05-23 21:35:48 +02005275 if (fullpathcmp(new_fname, files[i].name, TRUE, TRUE)
5276 & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 {
5278 if (type != CHECK_PATH &&
5279 action == ACTION_SHOW_ALL && files[i].matched)
5280 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005281 msg_putchar('\n'); // cursor below last one
5282 if (!got_int) // don't display if 'q'
5283 // typed at "--more--"
5284 // message
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 {
5286 msg_home_replace_hl(new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01005287 msg_puts(_(" (includes previously listed match)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005288 prev_fname = NULL;
5289 }
5290 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01005291 VIM_CLEAR(new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292 already_searched = TRUE;
5293 break;
5294 }
5295 }
5296 }
5297
5298 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
5299 || (new_fname == NULL && !already_searched)))
5300 {
5301 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005302 msg_putchar('\n'); // cursor below last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 else
5304 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005305 gotocmdline(TRUE); // cursor at status line
Bram Moolenaar32526b32019-01-19 17:43:09 +01005306 msg_puts_title(_("--- Included files "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005308 msg_puts_title(_("not found "));
5309 msg_puts_title(_("in path ---\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310 }
5311 did_show = TRUE;
5312 while (depth_displayed < depth && !got_int)
5313 {
5314 ++depth_displayed;
5315 for (i = 0; i < depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005316 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317 msg_home_replace(files[depth_displayed].name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01005318 msg_puts(" -->\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005320 if (!got_int) // don't display if 'q' typed
5321 // for "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 {
5323 for (i = 0; i <= depth_displayed; i++)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005324 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325 if (new_fname != NULL)
5326 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005327 // using "new_fname" is more reliable, e.g., when
5328 // 'includeexpr' is set.
Bram Moolenaar8820b482017-03-16 17:23:31 +01005329 msg_outtrans_attr(new_fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330 }
5331 else
5332 {
5333 /*
5334 * Isolate the file name.
5335 * Include the surrounding "" or <> if present.
5336 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005337 if (inc_opt != NULL
5338 && strstr((char *)inc_opt, "\\zs") != NULL)
5339 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005340 // pattern contains \zs, use the match
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005341 p = incl_regmatch.startp[0];
5342 i = (int)(incl_regmatch.endp[0]
5343 - incl_regmatch.startp[0]);
5344 }
5345 else
5346 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005347 // find the file name after the end of the match
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005348 for (p = incl_regmatch.endp[0];
5349 *p && !vim_isfilec(*p); p++)
5350 ;
5351 for (i = 0; vim_isfilec(p[i]); i++)
5352 ;
5353 }
5354
Bram Moolenaar071d4272004-06-13 20:20:40 +00005355 if (i == 0)
5356 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005357 // Nothing found, use the rest of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005359 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005361 // Avoid checking before the start of the line, can
5362 // happen if \zs appears in the regexp.
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005363 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 {
5365 if (p[-1] == '"' || p[-1] == '<')
5366 {
5367 --p;
5368 ++i;
5369 }
5370 if (p[i] == '"' || p[i] == '>')
5371 ++i;
5372 }
5373 save_char = p[i];
5374 p[i] = NUL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01005375 msg_outtrans_attr(p, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 p[i] = save_char;
5377 }
5378
5379 if (new_fname == NULL && action == ACTION_SHOW_ALL)
5380 {
5381 if (already_searched)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005382 msg_puts(_(" (Already listed)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005384 msg_puts(_(" NOT FOUND"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385 }
5386 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005387 out_flush(); // output each line directly
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 }
5389
5390 if (new_fname != NULL)
5391 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005392 // Push the new file onto the file stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393 if (depth + 1 == old_files)
5394 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005395 bigger = ALLOC_MULT(SearchedFile, max_path_depth * 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396 if (bigger != NULL)
5397 {
5398 for (i = 0; i <= depth; i++)
5399 bigger[i] = files[i];
5400 for (i = depth + 1; i < old_files + max_path_depth; i++)
5401 {
5402 bigger[i].fp = NULL;
5403 bigger[i].name = NULL;
5404 bigger[i].lnum = 0;
5405 bigger[i].matched = FALSE;
5406 }
5407 for (i = old_files; i < max_path_depth; i++)
5408 bigger[i + max_path_depth] = files[i];
5409 old_files += max_path_depth;
5410 max_path_depth *= 2;
5411 vim_free(files);
5412 files = bigger;
5413 }
5414 }
5415 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
5416 == NULL)
5417 vim_free(new_fname);
5418 else
5419 {
5420 if (++depth == old_files)
5421 {
5422 /*
5423 * lalloc() for 'bigger' must have failed above. We
5424 * will forget one of our already visited files now.
5425 */
5426 vim_free(files[old_files].name);
5427 ++old_files;
5428 }
5429 files[depth].name = curr_fname = new_fname;
5430 files[depth].lnum = 0;
5431 files[depth].matched = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432 if (action == ACTION_EXPAND)
5433 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005434 msg_hist_off = TRUE; // reset in msg_trunc_attr()
Bram Moolenaar555b2802005-05-19 21:08:39 +00005435 vim_snprintf((char*)IObuff, IOSIZE,
5436 _("Scanning included file: %s"),
5437 (char *)new_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01005438 msg_trunc_attr((char *)IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005440 else if (p_verbose >= 5)
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005441 {
5442 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005443 smsg(_("Searching included file %s"),
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005444 (char *)new_fname);
5445 verbose_leave();
5446 }
5447
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 }
5449 }
5450 }
5451 else
5452 {
5453 /*
5454 * Check if the line is a define (type == FIND_DEFINE)
5455 */
5456 p = line;
5457search_line:
5458 define_matched = FALSE;
5459 if (def_regmatch.regprog != NULL
5460 && vim_regexec(&def_regmatch, line, (colnr_T)0))
5461 {
5462 /*
5463 * Pattern must be first identifier after 'define', so skip
5464 * to that position before checking for match of pattern. Also
5465 * don't let it match beyond the end of this identifier.
5466 */
5467 p = def_regmatch.endp[0];
5468 while (*p && !vim_iswordc(*p))
5469 p++;
5470 define_matched = TRUE;
5471 }
5472
5473 /*
5474 * Look for a match. Don't do this if we are looking for a
5475 * define and this line didn't match define_prog above.
5476 */
5477 if (def_regmatch.regprog == NULL || define_matched)
5478 {
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005479 if (define_matched || (compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005481 // compare the first "len" chars from "ptr"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 startp = skipwhite(p);
5483 if (p_ic)
5484 matched = !MB_STRNICMP(startp, ptr, len);
5485 else
5486 matched = !STRNCMP(startp, ptr, len);
5487 if (matched && define_matched && whole
5488 && vim_iswordc(startp[len]))
5489 matched = FALSE;
5490 }
5491 else if (regmatch.regprog != NULL
5492 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
5493 {
5494 matched = TRUE;
5495 startp = regmatch.startp[0];
5496 /*
5497 * Check if the line is not a comment line (unless we are
5498 * looking for a define). A line starting with "# define"
5499 * is not considered to be a comment line.
5500 */
5501 if (!define_matched && skip_comments)
5502 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 if ((*line != '#' ||
5504 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02005505 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506 matched = FALSE;
5507
5508 /*
5509 * Also check for a "/ *" or "/ /" before the match.
5510 * Skips lines like "int backwards; / * normal index
5511 * * /" when looking for "normal".
5512 * Note: Doesn't skip "/ *" in comments.
5513 */
5514 p = skipwhite(line);
5515 if (matched
5516 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517 for (p = line; *p && p < startp; ++p)
5518 {
5519 if (matched
5520 && p[0] == '/'
5521 && (p[1] == '*' || p[1] == '/'))
5522 {
5523 matched = FALSE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005524 // After "//" all text is comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525 if (p[1] == '/')
5526 break;
5527 ++p;
5528 }
5529 else if (!matched && p[0] == '*' && p[1] == '/')
5530 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005531 // Can find match after "* /".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 matched = TRUE;
5533 ++p;
5534 }
5535 }
5536 }
5537 }
5538 }
5539 }
5540 if (matched)
5541 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 if (action == ACTION_EXPAND)
5543 {
Bram Moolenaard9eefe32019-04-06 14:22:21 +02005544 int cont_s_ipos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545 int add_r;
5546 char_u *aux;
5547
5548 if (depth == -1 && lnum == curwin->w_cursor.lnum)
5549 break;
5550 found = TRUE;
5551 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005552 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005554 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 if (vim_iswordp(p))
5556 goto exit_matched;
5557 p = find_word_start(p);
5558 }
5559 p = find_word_end(p);
5560 i = (int)(p - aux);
5561
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005562 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005564 // IOSIZE > compl_length, so the STRNCPY works
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00005566
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005567 // Get the next line: when "depth" < 0 from the current
5568 // buffer, otherwise from the included file. Jump to
5569 // exit_matched when past the last line.
Bram Moolenaar89d40322006-08-29 15:30:07 +00005570 if (depth < 0)
5571 {
5572 if (lnum >= end_lnum)
5573 goto exit_matched;
5574 line = ml_get(++lnum);
5575 }
5576 else if (vim_fgets(line = file_line,
5577 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005578 goto exit_matched;
5579
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005580 // we read a line, set "already" to check this "line" later
5581 // if depth >= 0 we'll increase files[depth].lnum far
5582 // bellow -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 already = aux = p = skipwhite(line);
5584 p = find_word_start(p);
5585 p = find_word_end(p);
5586 if (p > aux)
5587 {
5588 if (*aux != ')' && IObuff[i-1] != TAB)
5589 {
5590 if (IObuff[i-1] != ' ')
5591 IObuff[i++] = ' ';
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005592 // IObuf =~ "\(\k\|\i\).* ", thus i >= 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 if (p_js
5594 && (IObuff[i-2] == '.'
5595 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
5596 && (IObuff[i-2] == '?'
5597 || IObuff[i-2] == '!'))))
5598 IObuff[i++] = ' ';
5599 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005600 // copy as much as possible of the new word
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601 if (p - aux >= IOSIZE - i)
5602 p = aux + IOSIZE - i - 1;
5603 STRNCPY(IObuff + i, aux, p - aux);
5604 i += (int)(p - aux);
Bram Moolenaard9eefe32019-04-06 14:22:21 +02005605 cont_s_ipos = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606 }
5607 IObuff[i] = NUL;
5608 aux = IObuff;
5609
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005610 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 goto exit_matched;
5612 }
5613
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005614 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615 curr_fname == curbuf->b_fname ? NULL : curr_fname,
Bram Moolenaard9eefe32019-04-06 14:22:21 +02005616 dir, cont_s_ipos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617 if (add_r == OK)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005618 // if dir was BACKWARD then honor it just once
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005620 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 break;
5622 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005623 else if (action == ACTION_SHOW_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624 {
5625 found = TRUE;
5626 if (!did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005627 gotocmdline(TRUE); // cursor at status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628 if (curr_fname != prev_fname)
5629 {
5630 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005631 msg_putchar('\n'); // cursor below last one
5632 if (!got_int) // don't display if 'q' typed
5633 // at "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634 msg_home_replace_hl(curr_fname);
5635 prev_fname = curr_fname;
5636 }
5637 did_show = TRUE;
5638 if (!got_int)
5639 show_pat_in_path(line, type, TRUE, action,
5640 (depth == -1) ? NULL : files[depth].fp,
5641 (depth == -1) ? &lnum : &files[depth].lnum,
5642 match_count++);
5643
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005644 // Set matched flag for this file and all the ones that
5645 // include it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646 for (i = 0; i <= depth; ++i)
5647 files[i].matched = TRUE;
5648 }
5649 else if (--count <= 0)
5650 {
5651 found = TRUE;
5652 if (depth == -1 && lnum == curwin->w_cursor.lnum
Bram Moolenaar4033c552017-09-16 20:54:51 +02005653#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 && g_do_tagpreview == 0
5655#endif
5656 )
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005657 emsg(_("E387: Match is on current line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 else if (action == ACTION_SHOW)
5659 {
5660 show_pat_in_path(line, type, did_show, action,
5661 (depth == -1) ? NULL : files[depth].fp,
5662 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
5663 did_show = TRUE;
5664 }
5665 else
5666 {
5667#ifdef FEAT_GUI
5668 need_mouse_correct = TRUE;
5669#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005670#if defined(FEAT_QUICKFIX)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005671 // ":psearch" uses the preview window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672 if (g_do_tagpreview != 0)
5673 {
5674 curwin_save = curwin;
Bram Moolenaar576a4a62019-08-18 15:25:17 +02005675 prepare_tagpreview(TRUE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005676 }
5677#endif
5678 if (action == ACTION_SPLIT)
5679 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005680 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005681 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005682 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 }
5684 if (depth == -1)
5685 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005686 // match in current file
Bram Moolenaar4033c552017-09-16 20:54:51 +02005687#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688 if (g_do_tagpreview != 0)
5689 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005690 if (!GETFILE_SUCCESS(getfile(
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005691 curwin_save->w_buffer->b_fnum, NULL,
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005692 NULL, TRUE, lnum, FALSE)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005693 break; // failed to jump to file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005694 }
5695 else
5696#endif
5697 setpcmark();
5698 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005699 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005700 }
5701 else
5702 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005703 if (!GETFILE_SUCCESS(getfile(
5704 0, files[depth].name, NULL, TRUE,
5705 files[depth].lnum, FALSE)))
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005706 break; // failed to jump to file
5707 // autocommands may have changed the lnum, we don't
5708 // want that here
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709 curwin->w_cursor.lnum = files[depth].lnum;
5710 }
5711 }
5712 if (action != ACTION_SHOW)
5713 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005714 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005715 curwin->w_set_curswant = TRUE;
5716 }
5717
Bram Moolenaar4033c552017-09-16 20:54:51 +02005718#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005720 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005721 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005722 // Return cursor to where we were
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 validate_cursor();
5724 redraw_later(VALID);
5725 win_enter(curwin_save, TRUE);
5726 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005727# ifdef FEAT_PROP_POPUP
Bram Moolenaar1b6d9c42019-08-05 21:52:04 +02005728 else if (WIN_IS_POPUP(curwin))
5729 // can't keep focus in popup window
5730 win_enter(firstwin, TRUE);
5731# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005732#endif
5733 break;
5734 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735exit_matched:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 matched = FALSE;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005737 // look for other matches in the rest of the line if we
5738 // are not at the end of it already
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739 if (def_regmatch.regprog == NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005741 && !(compl_cont_status & CONT_SOL)
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005742 && *startp != NUL
Bram Moolenaar1614a142019-10-06 22:00:13 +02005743 && *(p = startp + mb_ptr2len(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744 goto search_line;
5745 }
5746 line_breakcheck();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005747 if (action == ACTION_EXPAND)
Bram Moolenaar472e8592016-10-15 17:06:47 +02005748 ins_compl_check_keys(30, FALSE);
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005749 if (got_int || ins_compl_interrupted())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 break;
5751
5752 /*
5753 * Read the next line. When reading an included file and encountering
5754 * end-of-file, close the file and continue in the file that included
5755 * it.
5756 */
5757 while (depth >= 0 && !already
5758 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5759 {
5760 fclose(files[depth].fp);
5761 --old_files;
5762 files[old_files].name = files[depth].name;
5763 files[old_files].matched = files[depth].matched;
5764 --depth;
5765 curr_fname = (depth == -1) ? curbuf->b_fname
5766 : files[depth].name;
5767 if (depth < depth_displayed)
5768 depth_displayed = depth;
5769 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005770 if (depth >= 0) // we could read the line
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005771 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005772 files[depth].lnum++;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005773 // Remove any CR and LF from the line.
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005774 i = (int)STRLEN(line);
5775 if (i > 0 && line[i - 1] == '\n')
5776 line[--i] = NUL;
5777 if (i > 0 && line[i - 1] == '\r')
5778 line[--i] = NUL;
5779 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780 else if (!already)
5781 {
5782 if (++lnum > end_lnum)
5783 break;
5784 line = ml_get(lnum);
5785 }
5786 already = NULL;
5787 }
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005788 // End of big for (;;) loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005790 // Close any files that are still open.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791 for (i = 0; i <= depth; i++)
5792 {
5793 fclose(files[i].fp);
5794 vim_free(files[i].name);
5795 }
5796 for (i = old_files; i < max_path_depth; i++)
5797 vim_free(files[i].name);
5798 vim_free(files);
5799
5800 if (type == CHECK_PATH)
5801 {
5802 if (!did_show)
5803 {
5804 if (action != ACTION_SHOW_ALL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005805 msg(_("All included files were found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005807 msg(_("No included files"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808 }
5809 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02005810 else if (!found && action != ACTION_EXPAND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 {
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005812 if (got_int || ins_compl_interrupted())
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005813 emsg(_(e_interr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814 else if (type == FIND_DEFINE)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005815 emsg(_("E388: Couldn't find definition"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005816 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005817 emsg(_("E389: Couldn't find pattern"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 }
5819 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5820 msg_end();
5821
5822fpip_end:
5823 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02005824 vim_regfree(regmatch.regprog);
5825 vim_regfree(incl_regmatch.regprog);
5826 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827}
5828
5829 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005830show_pat_in_path(
5831 char_u *line,
5832 int type,
5833 int did_show,
5834 int action,
5835 FILE *fp,
5836 linenr_T *lnum,
5837 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838{
5839 char_u *p;
5840
5841 if (did_show)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005842 msg_putchar('\n'); // cursor below last one
Bram Moolenaar91170f82006-05-05 21:15:17 +00005843 else if (!msg_silent)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005844 gotocmdline(TRUE); // cursor at status line
5845 if (got_int) // 'q' typed at "--more--" message
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 return;
5847 for (;;)
5848 {
5849 p = line + STRLEN(line) - 1;
5850 if (fp != NULL)
5851 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005852 // We used fgets(), so get rid of newline at end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005853 if (p >= line && *p == '\n')
5854 --p;
5855 if (p >= line && *p == '\r')
5856 --p;
5857 *(p + 1) = NUL;
5858 }
5859 if (action == ACTION_SHOW_ALL)
5860 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005861 sprintf((char *)IObuff, "%3ld: ", count); // show match nr
Bram Moolenaar32526b32019-01-19 17:43:09 +01005862 msg_puts((char *)IObuff);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005863 sprintf((char *)IObuff, "%4ld", *lnum); // show line nr
5864 // Highlight line numbers
Bram Moolenaar32526b32019-01-19 17:43:09 +01005865 msg_puts_attr((char *)IObuff, HL_ATTR(HLF_N));
5866 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005868 msg_prt_line(line, FALSE);
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005869 out_flush(); // show one line at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005871 // Definition continues until line that doesn't end with '\'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005872 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5873 break;
5874
5875 if (fp != NULL)
5876 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01005877 if (vim_fgets(line, LSIZE, fp)) // end of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878 break;
5879 ++*lnum;
5880 }
5881 else
5882 {
5883 if (++*lnum > curbuf->b_ml.ml_line_count)
5884 break;
5885 line = ml_get(*lnum);
5886 }
5887 msg_putchar('\n');
5888 }
5889}
5890#endif
5891
5892#ifdef FEAT_VIMINFO
Bram Moolenaar6bd1d772019-10-09 22:01:25 +02005893/*
5894 * Return the last used search pattern at "idx".
5895 */
Bram Moolenaarc3328162019-07-23 22:15:25 +02005896 spat_T *
5897get_spat(int idx)
5898{
5899 return &spats[idx];
5900}
5901
Bram Moolenaar6bd1d772019-10-09 22:01:25 +02005902/*
5903 * Return the last used search pattern index.
5904 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905 int
Bram Moolenaarc3328162019-07-23 22:15:25 +02005906get_spat_last_idx(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005907{
Bram Moolenaarc3328162019-07-23 22:15:25 +02005908 return last_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005909}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910#endif