blob: a12a1d33c545a5af7da8f159fc39ed836aea4657 [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_prevcol(char_u *linep, int col, int ch, int *prevcol);
20static int inmacro(char_u *, char_u *);
21static int check_linecomment(char_u *line);
22static int cls(void);
23static int skip_chars(int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000024#ifdef FEAT_TEXTOBJ
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010025static void back_in_line(void);
26static void find_first_blank(pos_T *);
27static void findsent_forward(long count, int at_start_sent);
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#endif
29#ifdef FEAT_FIND_ID
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010030static void show_pat_in_path(char_u *, int,
31 int, int, FILE *, linenr_T *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +000032#endif
33#ifdef FEAT_VIMINFO
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010034static void wvsp_one(FILE *fp, int idx, char *s, int sc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000035#endif
36
Bram Moolenaar071d4272004-06-13 20:20:40 +000037/*
38 * This file contains various searching-related routines. These fall into
39 * three groups:
40 * 1. string searches (for /, ?, n, and N)
41 * 2. character searches within a single line (for f, F, t, T, etc)
42 * 3. "other" kinds of searches like the '%' command, and 'word' searches.
43 */
44
45/*
46 * String searches
47 *
48 * The string search functions are divided into two levels:
49 * lowest: searchit(); uses an pos_T for starting position and found match.
50 * Highest: do_search(); uses curwin->w_cursor; calls searchit().
51 *
52 * The last search pattern is remembered for repeating the same search.
53 * This pattern is shared between the :g, :s, ? and / commands.
54 * This is in search_regcomp().
55 *
56 * The actual string matching is done using a heavily modified version of
57 * Henry Spencer's regular expression library. See regexp.c.
58 */
59
60/* The offset for a search command is store in a soff struct */
61/* Note: only spats[0].off is really used */
62struct soffset
63{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000064 int dir; /* search direction, '/' or '?' */
Bram Moolenaar071d4272004-06-13 20:20:40 +000065 int line; /* search has line offset */
66 int end; /* search set cursor at end */
67 long off; /* line or char offset */
68};
69
70/* A search pattern and its attributes are stored in a spat struct */
71struct spat
72{
73 char_u *pat; /* the pattern (in allocated memory) or NULL */
74 int magic; /* magicness of the pattern */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020075 int no_scs; /* no smartcase for this pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +000076 struct soffset off;
77};
78
79/*
80 * Two search patterns are remembered: One for the :substitute command and
81 * one for other searches. last_idx points to the one that was used the last
82 * time.
83 */
84static struct spat spats[2] =
85{
86 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}}, /* last used search pat */
87 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}} /* last used substitute pat */
88};
89
90static int last_idx = 0; /* index in spats[] for RE_LAST */
91
Bram Moolenaardbd24b52015-08-11 14:26:19 +020092static char_u lastc[2] = {NUL, NUL}; /* last character searched for */
93static int lastcdir = FORWARD; /* last direction of character search */
94static int last_t_cmd = TRUE; /* last search t_cmd */
95#ifdef FEAT_MBYTE
96static char_u lastc_bytes[MB_MAXBYTES + 1];
97static int lastc_bytelen = 1; /* >1 for multi-byte char */
98#endif
99
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100/* copy of spats[], for keeping the search patterns while executing autocmds */
101static struct spat saved_spats[2];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100103/* copy of spats[RE_SEARCH], for keeping the search patterns while incremental
104 * searching */
105static struct spat saved_last_search_spat;
106static int saved_last_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107static int saved_no_hlsearch = 0;
108# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109
110static char_u *mr_pattern = NULL; /* pattern used by search_regcomp() */
111#ifdef FEAT_RIGHTLEFT
112static int mr_pattern_alloced = FALSE; /* mr_pattern was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113#endif
114
115#ifdef FEAT_FIND_ID
116/*
117 * Type used by find_pattern_in_path() to remember which included files have
118 * been searched already.
119 */
120typedef struct SearchedFile
121{
122 FILE *fp; /* File pointer */
123 char_u *name; /* Full name of file */
124 linenr_T lnum; /* Line we were up to in file */
125 int matched; /* Found a match in this file */
126} SearchedFile;
127#endif
128
129/*
130 * translate search pattern for vim_regcomp()
131 *
132 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd)
133 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command)
134 * pat_save == RE_BOTH: save pat in both patterns (:global command)
135 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL
Bram Moolenaarb8017e72007-05-10 18:59:07 +0000136 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 * pat_use == RE_LAST: use last used pattern if "pat" is NULL
138 * options & SEARCH_HIS: put search string in history
139 * options & SEARCH_KEEP: keep previous search pattern
140 *
141 * returns FAIL if failed, OK otherwise.
142 */
143 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100144search_regcomp(
145 char_u *pat,
146 int pat_save,
147 int pat_use,
148 int options,
149 regmmatch_T *regmatch) /* return: pattern and ignore-case flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150{
151 int magic;
152 int i;
153
154 rc_did_emsg = FALSE;
155 magic = p_magic;
156
157 /*
158 * If no pattern given, use a previously defined pattern.
159 */
160 if (pat == NULL || *pat == NUL)
161 {
162 if (pat_use == RE_LAST)
163 i = last_idx;
164 else
165 i = pat_use;
166 if (spats[i].pat == NULL) /* pattern was never defined */
167 {
168 if (pat_use == RE_SUBST)
169 EMSG(_(e_nopresub));
170 else
171 EMSG(_(e_noprevre));
172 rc_did_emsg = TRUE;
173 return FAIL;
174 }
175 pat = spats[i].pat;
176 magic = spats[i].magic;
177 no_smartcase = spats[i].no_scs;
178 }
179#ifdef FEAT_CMDHIST
180 else if (options & SEARCH_HIS) /* put new pattern in history */
181 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
182#endif
183
184#ifdef FEAT_RIGHTLEFT
185 if (mr_pattern_alloced)
186 {
187 vim_free(mr_pattern);
188 mr_pattern_alloced = FALSE;
189 }
190
191 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
192 {
193 char_u *rev_pattern;
194
195 rev_pattern = reverse_text(pat);
196 if (rev_pattern == NULL)
197 mr_pattern = pat; /* out of memory, keep normal pattern. */
198 else
199 {
200 mr_pattern = rev_pattern;
201 mr_pattern_alloced = TRUE;
202 }
203 }
204 else
205#endif
206 mr_pattern = pat;
207
208 /*
209 * Save the currently used pattern in the appropriate place,
210 * unless the pattern should not be remembered.
211 */
Bram Moolenaar14177b72014-01-14 15:53:51 +0100212 if (!(options & SEARCH_KEEP) && !cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213 {
214 /* search or global command */
215 if (pat_save == RE_SEARCH || pat_save == RE_BOTH)
216 save_re_pat(RE_SEARCH, pat, magic);
217 /* substitute or global command */
218 if (pat_save == RE_SUBST || pat_save == RE_BOTH)
219 save_re_pat(RE_SUBST, pat, magic);
220 }
221
222 regmatch->rmm_ic = ignorecase(pat);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +0000223 regmatch->rmm_maxcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
225 if (regmatch->regprog == NULL)
226 return FAIL;
227 return OK;
228}
229
230/*
231 * Get search pattern used by search_regcomp().
232 */
233 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100234get_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235{
236 return mr_pattern;
237}
238
Bram Moolenaarabc97732007-08-08 20:49:37 +0000239#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240/*
241 * Reverse text into allocated memory.
242 * Returns the allocated string, NULL when out of memory.
243 */
Bram Moolenaarabc97732007-08-08 20:49:37 +0000244 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100245reverse_text(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246{
247 unsigned len;
248 unsigned s_i, rev_i;
249 char_u *rev;
250
251 /*
252 * Reverse the pattern.
253 */
254 len = (unsigned)STRLEN(s);
255 rev = alloc(len + 1);
256 if (rev != NULL)
257 {
258 rev_i = len;
259 for (s_i = 0; s_i < len; ++s_i)
260 {
261# ifdef FEAT_MBYTE
262 if (has_mbyte)
263 {
264 int mb_len;
265
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000266 mb_len = (*mb_ptr2len)(s + s_i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267 rev_i -= mb_len;
268 mch_memmove(rev + rev_i, s + s_i, mb_len);
269 s_i += mb_len - 1;
270 }
271 else
272# endif
273 rev[--rev_i] = s[s_i];
274
275 }
276 rev[len] = NUL;
277 }
278 return rev;
279}
280#endif
281
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +0100282 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100283save_re_pat(int idx, char_u *pat, int magic)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284{
285 if (spats[idx].pat != pat)
286 {
287 vim_free(spats[idx].pat);
288 spats[idx].pat = vim_strsave(pat);
289 spats[idx].magic = magic;
290 spats[idx].no_scs = no_smartcase;
291 last_idx = idx;
292#ifdef FEAT_SEARCH_EXTRA
293 /* If 'hlsearch' set and search pat changed: need redraw. */
294 if (p_hls)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000295 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200296 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297#endif
298 }
299}
300
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301/*
302 * Save the search patterns, so they can be restored later.
303 * Used before/after executing autocommands and user functions.
304 */
305static int save_level = 0;
306
307 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100308save_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309{
310 if (save_level++ == 0)
311 {
312 saved_spats[0] = spats[0];
313 if (spats[0].pat != NULL)
314 saved_spats[0].pat = vim_strsave(spats[0].pat);
315 saved_spats[1] = spats[1];
316 if (spats[1].pat != NULL)
317 saved_spats[1].pat = vim_strsave(spats[1].pat);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100318#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319 saved_last_idx = last_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320 saved_no_hlsearch = no_hlsearch;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100321#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 }
323}
324
325 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100326restore_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327{
328 if (--save_level == 0)
329 {
330 vim_free(spats[0].pat);
331 spats[0] = saved_spats[0];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100332#if defined(FEAT_EVAL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000333 set_vv_searchforward();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 vim_free(spats[1].pat);
336 spats[1] = saved_spats[1];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100337#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338 last_idx = saved_last_idx;
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200339 set_no_hlsearch(saved_no_hlsearch);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100340#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 }
342}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000344#if defined(EXITFREE) || defined(PROTO)
345 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100346free_search_patterns(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000347{
348 vim_free(spats[0].pat);
349 vim_free(spats[1].pat);
Bram Moolenaarf2427622009-04-22 16:45:21 +0000350
351# ifdef FEAT_RIGHTLEFT
352 if (mr_pattern_alloced)
353 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200354 vim_free(mr_pattern);
355 mr_pattern_alloced = FALSE;
356 mr_pattern = NULL;
Bram Moolenaarf2427622009-04-22 16:45:21 +0000357 }
358# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000359}
360#endif
361
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100362#ifdef FEAT_SEARCH_EXTRA
363/*
364 * Save and restore the search pattern for incremental highlight search
365 * feature.
366 *
367 * It's similar but differnt from save_search_patterns() and
368 * restore_search_patterns(), because the search pattern must be restored when
369 * cannceling incremental searching even if it's called inside user functions.
370 */
371 void
372save_last_search_pattern(void)
373{
374 saved_last_search_spat = spats[RE_SEARCH];
375 if (spats[RE_SEARCH].pat != NULL)
376 saved_last_search_spat.pat = vim_strsave(spats[RE_SEARCH].pat);
377 saved_last_idx = last_idx;
378 saved_no_hlsearch = no_hlsearch;
379}
380
381 void
382restore_last_search_pattern(void)
383{
384 vim_free(spats[RE_SEARCH].pat);
385 spats[RE_SEARCH] = saved_last_search_spat;
386# if defined(FEAT_EVAL)
387 set_vv_searchforward();
388# endif
389 last_idx = saved_last_idx;
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200390 set_no_hlsearch(saved_no_hlsearch);
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100391}
Bram Moolenaard0480092017-11-16 22:20:39 +0100392
393 char_u *
394last_search_pattern(void)
395{
396 return spats[RE_SEARCH].pat;
397}
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100398#endif
399
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400/*
401 * Return TRUE when case should be ignored for search pattern "pat".
402 * Uses the 'ignorecase' and 'smartcase' options.
403 */
404 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100405ignorecase(char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406{
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200407 return ignorecase_opt(pat, p_ic, p_scs);
408}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200410/*
411 * As ignorecase() put pass the "ic" and "scs" flags.
412 */
413 int
414ignorecase_opt(char_u *pat, int ic_in, int scs)
415{
416 int ic = ic_in;
417
418 if (ic && !no_smartcase && scs
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419#ifdef FEAT_INS_EXPAND
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +0100420 && !(ctrl_x_mode_not_default() && curbuf->b_p_inf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421#endif
422 )
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200423 ic = !pat_has_uppercase(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 no_smartcase = FALSE;
425
426 return ic;
427}
428
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200429/*
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200430 * Return TRUE if pattern "pat" has an uppercase character.
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200431 */
432 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100433pat_has_uppercase(char_u *pat)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200434{
435 char_u *p = pat;
436
437 while (*p != NUL)
438 {
439#ifdef FEAT_MBYTE
440 int l;
441
442 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
443 {
444 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
445 return TRUE;
446 p += l;
447 }
448 else
449#endif
450 if (*p == '\\')
451 {
452 if (p[1] == '_' && p[2] != NUL) /* skip "\_X" */
453 p += 3;
454 else if (p[1] == '%' && p[2] != NUL) /* skip "\%X" */
455 p += 3;
456 else if (p[1] != NUL) /* skip "\X" */
457 p += 2;
458 else
459 p += 1;
460 }
461 else if (MB_ISUPPER(*p))
462 return TRUE;
463 else
464 ++p;
465 }
466 return FALSE;
467}
468
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100470last_csearch(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200471{
472#ifdef FEAT_MBYTE
473 return lastc_bytes;
474#else
475 return lastc;
476#endif
477}
478
479 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100480last_csearch_forward(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200481{
482 return lastcdir == FORWARD;
483}
484
485 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100486last_csearch_until(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200487{
488 return last_t_cmd == TRUE;
489}
490
491 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100492set_last_csearch(int c, char_u *s UNUSED, int len UNUSED)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200493{
494 *lastc = c;
495#ifdef FEAT_MBYTE
496 lastc_bytelen = len;
497 if (len)
498 memcpy(lastc_bytes, s, len);
499 else
500 vim_memset(lastc_bytes, 0, sizeof(lastc_bytes));
501#endif
502}
503
504 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100505set_csearch_direction(int cdir)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200506{
507 lastcdir = cdir;
508}
509
510 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100511set_csearch_until(int t_cmd)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200512{
513 last_t_cmd = t_cmd;
514}
515
516 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100517last_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518{
519 return spats[last_idx].pat;
520}
521
522/*
523 * Reset search direction to forward. For "gd" and "gD" commands.
524 */
525 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100526reset_search_dir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527{
528 spats[0].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000529#if defined(FEAT_EVAL)
530 set_vv_searchforward();
531#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532}
533
534#if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
535/*
536 * Set the last search pattern. For ":let @/ =" and viminfo.
537 * Also set the saved search pattern, so that this works in an autocommand.
538 */
539 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100540set_last_search_pat(
541 char_u *s,
542 int idx,
543 int magic,
544 int setlast)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545{
546 vim_free(spats[idx].pat);
547 /* An empty string means that nothing should be matched. */
548 if (*s == NUL)
549 spats[idx].pat = NULL;
550 else
551 spats[idx].pat = vim_strsave(s);
552 spats[idx].magic = magic;
553 spats[idx].no_scs = FALSE;
554 spats[idx].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000555#if defined(FEAT_EVAL)
556 set_vv_searchforward();
557#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558 spats[idx].off.line = FALSE;
559 spats[idx].off.end = FALSE;
560 spats[idx].off.off = 0;
561 if (setlast)
562 last_idx = idx;
563 if (save_level)
564 {
565 vim_free(saved_spats[idx].pat);
566 saved_spats[idx] = spats[0];
567 if (spats[idx].pat == NULL)
568 saved_spats[idx].pat = NULL;
569 else
570 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
571 saved_last_idx = last_idx;
572 }
573# ifdef FEAT_SEARCH_EXTRA
574 /* If 'hlsearch' set and search pat changed: need redraw. */
575 if (p_hls && idx == last_idx && !no_hlsearch)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000576 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577# endif
578}
579#endif
580
581#ifdef FEAT_SEARCH_EXTRA
582/*
583 * Get a regexp program for the last used search pattern.
584 * This is used for highlighting all matches in a window.
585 * Values returned in regmatch->regprog and regmatch->rmm_ic.
586 */
587 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100588last_pat_prog(regmmatch_T *regmatch)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589{
590 if (spats[last_idx].pat == NULL)
591 {
592 regmatch->regprog = NULL;
593 return;
594 }
595 ++emsg_off; /* So it doesn't beep if bad expr */
596 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
597 --emsg_off;
598}
599#endif
600
601/*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100602 * Lowest level search function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603 * Search for 'count'th occurrence of pattern 'pat' in direction 'dir'.
604 * Start at position 'pos' and return the found position in 'pos'.
605 *
606 * if (options & SEARCH_MSG) == 0 don't give any messages
607 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
608 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
609 * if (options & SEARCH_HIS) put search pattern in history
610 * if (options & SEARCH_END) return position at end of match
611 * if (options & SEARCH_START) accept match at pos itself
612 * if (options & SEARCH_KEEP) keep previous search pattern
613 * if (options & SEARCH_FOLD) match only once in a closed fold
614 * if (options & SEARCH_PEEK) check for typed char, cancel search
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100615 * if (options & SEARCH_COL) start at pos->col instead of zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 *
617 * Return FAIL (zero) for failure, non-zero for success.
618 * When FEAT_EVAL is defined, returns the index of the first matching
619 * subpattern plus one; one if there was none.
620 */
621 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100622searchit(
623 win_T *win, /* window to search in; can be NULL for a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 buffer without a window! */
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100625 buf_T *buf,
626 pos_T *pos,
627 int dir,
628 char_u *pat,
629 long count,
630 int options,
631 int pat_use, /* which pattern to use when "pat" is empty */
632 linenr_T stop_lnum, /* stop after this line number when != 0 */
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200633 proftime_T *tm UNUSED, /* timeout limit or NULL */
634 int *timed_out UNUSED) /* set when timed out or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635{
636 int found;
637 linenr_T lnum; /* no init to shut up Apollo cc */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100638 colnr_T col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 regmmatch_T regmatch;
640 char_u *ptr;
641 colnr_T matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 lpos_T endpos;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000643 lpos_T matchpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 int loop;
645 pos_T start_pos;
646 int at_first_line;
647 int extra_col;
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200648 int start_char_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 int match_ok;
650 long nmatched;
651 int submatch = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100652 int first_match = TRUE;
Bram Moolenaar280f1262006-01-30 00:14:18 +0000653 int save_called_emsg = called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654#ifdef FEAT_SEARCH_EXTRA
655 int break_loop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656#endif
657
658 if (search_regcomp(pat, RE_SEARCH, pat_use,
659 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
660 {
661 if ((options & SEARCH_MSG) && !rc_did_emsg)
662 EMSG2(_("E383: Invalid search string: %s"), mr_pattern);
663 return FAIL;
664 }
665
Bram Moolenaar280f1262006-01-30 00:14:18 +0000666 /*
667 * find the string
668 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669 called_emsg = FALSE;
670 do /* loop for count */
671 {
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100672 /* When not accepting a match at the start position set "extra_col" to
673 * a non-zero value. Don't do that when starting at MAXCOL, since
674 * MAXCOL + 1 is zero. */
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200675 if (pos->col == MAXCOL)
676 start_char_len = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100677#ifdef FEAT_MBYTE
678 /* Watch out for the "col" being MAXCOL - 2, used in a closed fold. */
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200679 else if (has_mbyte
680 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
681 && pos->col < MAXCOL - 2)
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100682 {
Bram Moolenaar82846a02018-02-09 18:09:54 +0100683 ptr = ml_get_buf(buf, pos->lnum, FALSE);
Bram Moolenaar8846ac52018-02-09 19:24:01 +0100684 if ((int)STRLEN(ptr) <= pos->col)
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200685 start_char_len = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100686 else
Bram Moolenaar82846a02018-02-09 18:09:54 +0100687 start_char_len = (*mb_ptr2len)(ptr + pos->col);
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100688 }
689#endif
690 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200691 start_char_len = 1;
692 if (dir == FORWARD)
693 {
694 if (options & SEARCH_START)
695 extra_col = 0;
696 else
697 extra_col = start_char_len;
698 }
699 else
700 {
701 if (options & SEARCH_START)
702 extra_col = start_char_len;
703 else
704 extra_col = 0;
705 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100706
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 start_pos = *pos; /* remember start pos for detecting no match */
708 found = 0; /* default: not found */
709 at_first_line = TRUE; /* default: start in first line */
710 if (pos->lnum == 0) /* correct lnum for when starting in line 0 */
711 {
712 pos->lnum = 1;
713 pos->col = 0;
714 at_first_line = FALSE; /* not in first line now */
715 }
716
717 /*
718 * Start searching in current line, unless searching backwards and
719 * we're in column 0.
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000720 * If we are searching backwards, in column 0, and not including the
721 * current position, gain some efficiency by skipping back a line.
722 * Otherwise begin the search in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723 */
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000724 if (dir == BACKWARD && start_pos.col == 0
725 && (options & SEARCH_START) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726 {
727 lnum = pos->lnum - 1;
728 at_first_line = FALSE;
729 }
730 else
731 lnum = pos->lnum;
732
733 for (loop = 0; loop <= 1; ++loop) /* loop twice if 'wrapscan' set */
734 {
735 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
736 lnum += dir, at_first_line = FALSE)
737 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000738 /* Stop after checking "stop_lnum", if it's set. */
739 if (stop_lnum != 0 && (dir == FORWARD
740 ? lnum > stop_lnum : lnum < stop_lnum))
741 break;
Bram Moolenaar76929292008-01-06 19:07:36 +0000742#ifdef FEAT_RELTIME
743 /* Stop after passing the "tm" time limit. */
744 if (tm != NULL && profile_passed_limit(tm))
745 break;
746#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000747
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000749 * Look for a match somewhere in line "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100751 col = at_first_line && (options & SEARCH_COL) ? pos->col
752 : (colnr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 nmatched = vim_regexec_multi(&regmatch, win, buf,
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100754 lnum, col,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000755#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200756 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000757#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200758 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000759#endif
760 );
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 /* Abort searching on an error (e.g., out of stack). */
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200762 if (called_emsg
763#ifdef FEAT_RELTIME
764 || (timed_out != NULL && *timed_out)
765#endif
766 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 break;
768 if (nmatched > 0)
769 {
770 /* match may actually be in another line when using \zs */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000771 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 endpos = regmatch.endpos[0];
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000773#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 submatch = first_submatch(&regmatch);
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000775#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000776 /* "lnum" may be past end of buffer for "\n\zs". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000777 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
778 ptr = (char_u *)"";
779 else
780 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781
782 /*
783 * Forward search in the first line: match should be after
784 * the start position. If not, continue at the end of the
785 * match (this is vi compatible) or on the next char.
786 */
787 if (dir == FORWARD && at_first_line)
788 {
789 match_ok = TRUE;
790 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000791 * When the match starts in a next line it's certainly
792 * past the start position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793 * When match lands on a NUL the cursor will be put
794 * one back afterwards, compare with that position,
795 * otherwise "/$" will get stuck on end of line.
796 */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000797 while (matchpos.lnum == 0
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100798 && ((options & SEARCH_END) && first_match
Bram Moolenaar677ee682005-01-27 14:41:15 +0000799 ? (nmatched == 1
800 && (int)endpos.col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801 < (int)start_pos.col + extra_col)
Bram Moolenaar677ee682005-01-27 14:41:15 +0000802 : ((int)matchpos.col
803 - (ptr[matchpos.col] == NUL)
804 < (int)start_pos.col + extra_col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805 {
806 /*
807 * If vi-compatible searching, continue at the end
808 * of the match, otherwise continue one position
809 * forward.
810 */
811 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
812 {
813 if (nmatched > 1)
814 {
815 /* end is in next line, thus no match in
816 * this line */
817 match_ok = FALSE;
818 break;
819 }
820 matchcol = endpos.col;
821 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000822 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 && ptr[matchcol] != NUL)
824 {
825#ifdef FEAT_MBYTE
826 if (has_mbyte)
827 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000828 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 else
830#endif
831 ++matchcol;
832 }
833 }
834 else
835 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000836 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 if (ptr[matchcol] != NUL)
838 {
839#ifdef FEAT_MBYTE
840 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000841 matchcol += (*mb_ptr2len)(ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 + matchcol);
843 else
844#endif
845 ++matchcol;
846 }
847 }
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200848 if (matchcol == 0 && (options & SEARCH_START))
Bram Moolenaardb333a52013-03-19 15:27:48 +0100849 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 if (ptr[matchcol] == NUL
851 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000852 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000853 matchcol,
854#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200855 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000856#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200857 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000858#endif
859 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 {
861 match_ok = FALSE;
862 break;
863 }
Bram Moolenaar677ee682005-01-27 14:41:15 +0000864 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 endpos = regmatch.endpos[0];
866# ifdef FEAT_EVAL
867 submatch = first_submatch(&regmatch);
868# endif
869
870 /* Need to get the line pointer again, a
871 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000872 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 }
874 if (!match_ok)
875 continue;
876 }
877 if (dir == BACKWARD)
878 {
879 /*
880 * Now, if there are multiple matches on this line,
881 * we have to get the last one. Or the last one before
882 * the cursor, if we're on that line.
883 * When putting the new cursor at the end, compare
884 * relative to the end of the match.
885 */
886 match_ok = FALSE;
887 for (;;)
888 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000889 /* Remember a position that is before the start
890 * position, we use it if it's the last match in
891 * the line. Always accept a position after
892 * wrapping around. */
893 if (loop
894 || ((options & SEARCH_END)
895 ? (lnum + regmatch.endpos[0].lnum
896 < start_pos.lnum
897 || (lnum + regmatch.endpos[0].lnum
898 == start_pos.lnum
899 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200900 < (int)start_pos.col
901 + extra_col))
Bram Moolenaar677ee682005-01-27 14:41:15 +0000902 : (lnum + regmatch.startpos[0].lnum
903 < start_pos.lnum
904 || (lnum + regmatch.startpos[0].lnum
905 == start_pos.lnum
906 && (int)regmatch.startpos[0].col
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200907 < (int)start_pos.col
908 + extra_col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000911 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 endpos = regmatch.endpos[0];
913# ifdef FEAT_EVAL
914 submatch = first_submatch(&regmatch);
915# endif
916 }
917 else
918 break;
919
920 /*
921 * We found a valid match, now check if there is
922 * another one after it.
923 * If vi-compatible searching, continue at the end
924 * of the match, otherwise continue one position
925 * forward.
926 */
927 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
928 {
929 if (nmatched > 1)
930 break;
931 matchcol = endpos.col;
932 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000933 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 && ptr[matchcol] != NUL)
935 {
936#ifdef FEAT_MBYTE
937 if (has_mbyte)
938 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000939 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 else
941#endif
942 ++matchcol;
943 }
944 }
945 else
946 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000947 /* Stop when the match is in a next line. */
948 if (matchpos.lnum > 0)
949 break;
950 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 if (ptr[matchcol] != NUL)
952 {
953#ifdef FEAT_MBYTE
954 if (has_mbyte)
955 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000956 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 else
958#endif
959 ++matchcol;
960 }
961 }
962 if (ptr[matchcol] == NUL
963 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000964 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000965 matchcol,
966#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200967 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000968#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200969 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000970#endif
971 )) == 0)
Bram Moolenaar9d322762018-02-09 16:04:25 +0100972 {
973#ifdef FEAT_RELTIME
974 /* If the search timed out, we did find a match
975 * but it might be the wrong one, so that's not
976 * OK. */
977 if (timed_out != NULL && *timed_out)
978 match_ok = FALSE;
979#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 break;
Bram Moolenaar9d322762018-02-09 16:04:25 +0100981 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982
983 /* Need to get the line pointer again, a
984 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000985 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 }
987
988 /*
989 * If there is only a match after the cursor, skip
990 * this match.
991 */
992 if (!match_ok)
993 continue;
994 }
995
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000996 /* With the SEARCH_END option move to the last character
997 * of the match. Don't do it for an empty match, end
998 * should be same as start then. */
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200999 if ((options & SEARCH_END) && !(options & SEARCH_NOOF)
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001000 && !(matchpos.lnum == endpos.lnum
1001 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001003 /* For a match in the first column, set the position
1004 * on the NUL in the previous line. */
Bram Moolenaar677ee682005-01-27 14:41:15 +00001005 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001006 pos->col = endpos.col;
1007 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001008 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001009 if (pos->lnum > 1) /* just in case */
1010 {
1011 --pos->lnum;
1012 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
1013 pos->lnum, FALSE));
1014 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001015 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001016 else
1017 {
1018 --pos->col;
1019#ifdef FEAT_MBYTE
1020 if (has_mbyte
1021 && pos->lnum <= buf->b_ml.ml_line_count)
1022 {
1023 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1024 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
1025 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001026#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001027 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 }
1029 else
1030 {
Bram Moolenaar677ee682005-01-27 14:41:15 +00001031 pos->lnum = lnum + matchpos.lnum;
1032 pos->col = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033 }
1034#ifdef FEAT_VIRTUALEDIT
1035 pos->coladd = 0;
1036#endif
1037 found = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +01001038 first_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039
1040 /* Set variables used for 'incsearch' highlighting. */
Bram Moolenaar677ee682005-01-27 14:41:15 +00001041 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 search_match_endcol = endpos.col;
1043 break;
1044 }
1045 line_breakcheck(); /* stop if ctrl-C typed */
1046 if (got_int)
1047 break;
1048
1049#ifdef FEAT_SEARCH_EXTRA
1050 /* Cancel searching if a character was typed. Used for
1051 * 'incsearch'. Don't check too often, that would slowdown
1052 * searching too much. */
1053 if ((options & SEARCH_PEEK)
1054 && ((lnum - pos->lnum) & 0x3f) == 0
1055 && char_avail())
1056 {
1057 break_loop = TRUE;
1058 break;
1059 }
1060#endif
1061
1062 if (loop && lnum == start_pos.lnum)
1063 break; /* if second loop, stop where started */
1064 }
1065 at_first_line = FALSE;
1066
1067 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001068 * Stop the search if wrapscan isn't set, "stop_lnum" is
1069 * specified, after an interrupt, after a match and after looping
1070 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071 */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001072 if (!p_ws || stop_lnum != 0 || got_int || called_emsg
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001073#ifdef FEAT_RELTIME
1074 || (timed_out != NULL && *timed_out)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001075#endif
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001076#ifdef FEAT_SEARCH_EXTRA
1077 || break_loop
1078#endif
1079 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 break;
1081
1082 /*
1083 * If 'wrapscan' is set we continue at the other end of the file.
1084 * If 'shortmess' does not contain 's', we give a message.
1085 * This message is also remembered in keep_msg for when the screen
1086 * is redrawn. The keep_msg is cleared whenever another message is
1087 * written.
1088 */
1089 if (dir == BACKWARD) /* start second loop at the other end */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00001093 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
1094 give_warning((char_u *)_(dir == BACKWARD
1095 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00001097 if (got_int || called_emsg
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001098#ifdef FEAT_RELTIME
1099 || (timed_out != NULL && *timed_out)
1100#endif
Bram Moolenaar78a15312009-05-15 19:33:18 +00001101#ifdef FEAT_SEARCH_EXTRA
1102 || break_loop
1103#endif
1104 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 break;
1106 }
1107 while (--count > 0 && found); /* stop after count matches or no match */
1108
Bram Moolenaar473de612013-06-08 18:19:48 +02001109 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110
Bram Moolenaar280f1262006-01-30 00:14:18 +00001111 called_emsg |= save_called_emsg;
1112
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 if (!found) /* did not find it */
1114 {
1115 if (got_int)
1116 EMSG(_(e_interr));
1117 else if ((options & SEARCH_MSG) == SEARCH_MSG)
1118 {
1119 if (p_ws)
1120 EMSG2(_(e_patnotf2), mr_pattern);
1121 else if (lnum == 0)
1122 EMSG2(_("E384: search hit TOP without match for: %s"),
1123 mr_pattern);
1124 else
1125 EMSG2(_("E385: search hit BOTTOM without match for: %s"),
1126 mr_pattern);
1127 }
1128 return FAIL;
1129 }
1130
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001131 /* A pattern like "\n\zs" may go past the last line. */
1132 if (pos->lnum > buf->b_ml.ml_line_count)
1133 {
1134 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001135 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001136 if (pos->col > 0)
1137 --pos->col;
1138 }
1139
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 return submatch + 1;
1141}
1142
1143#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001144 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001145set_search_direction(int cdir)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001146{
1147 spats[0].off.dir = cdir;
1148}
1149
1150 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001151set_vv_searchforward(void)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001152{
1153 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1154}
1155
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156/*
1157 * Return the number of the first subpat that matched.
Bram Moolenaarad4d8a12015-12-28 19:20:36 +01001158 * Return zero if none of them matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 */
1160 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001161first_submatch(regmmatch_T *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162{
1163 int submatch;
1164
1165 for (submatch = 1; ; ++submatch)
1166 {
1167 if (rp->startpos[submatch].lnum >= 0)
1168 break;
1169 if (submatch == 9)
1170 {
1171 submatch = 0;
1172 break;
1173 }
1174 }
1175 return submatch;
1176}
1177#endif
1178
1179/*
1180 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001181 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 * If 'dirc' is 0: use previous dir.
1183 * If 'pat' is NULL or empty : use previous string.
1184 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1185 * If 'options & SEARCH_ECHO': echo the search command and handle options
1186 * If 'options & SEARCH_MSG' : may give error message
1187 * If 'options & SEARCH_OPT' : interpret optional flags
1188 * If 'options & SEARCH_HIS' : put search pattern in history
1189 * If 'options & SEARCH_NOOF': don't add offset to position
1190 * If 'options & SEARCH_MARK': set previous context mark
1191 * If 'options & SEARCH_KEEP': keep previous search pattern
1192 * If 'options & SEARCH_START': accept match at curpos itself
1193 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1194 *
1195 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1196 * makes the movement linewise without moving the match position.
1197 *
Bram Moolenaarb6c27352015-03-05 19:57:49 +01001198 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 */
1200 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001201do_search(
1202 oparg_T *oap, /* can be NULL */
1203 int dirc, /* '/' or '?' */
1204 char_u *pat,
1205 long count,
1206 int options,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001207 proftime_T *tm, /* timeout limit or NULL */
1208 int *timed_out) /* flag set on timeout or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209{
1210 pos_T pos; /* position of the last match */
1211 char_u *searchstr;
1212 struct soffset old_off;
1213 int retval; /* Return value */
1214 char_u *p;
1215 long c;
1216 char_u *dircp;
1217 char_u *strcopy = NULL;
1218 char_u *ps;
1219
1220 /*
1221 * A line offset is not remembered, this is vi compatible.
1222 */
1223 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1224 {
1225 spats[0].off.line = FALSE;
1226 spats[0].off.off = 0;
1227 }
1228
1229 /*
1230 * Save the values for when (options & SEARCH_KEEP) is used.
1231 * (there is no "if ()" around this because gcc wants them initialized)
1232 */
1233 old_off = spats[0].off;
1234
1235 pos = curwin->w_cursor; /* start searching at the cursor position */
1236
1237 /*
1238 * Find out the direction of the search.
1239 */
1240 if (dirc == 0)
1241 dirc = spats[0].off.dir;
1242 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001243 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001245#if defined(FEAT_EVAL)
1246 set_vv_searchforward();
1247#endif
1248 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 if (options & SEARCH_REV)
1250 {
1251#ifdef WIN32
1252 /* There is a bug in the Visual C++ 2.2 compiler which means that
1253 * dirc always ends up being '/' */
1254 dirc = (dirc == '/') ? '?' : '/';
1255#else
1256 if (dirc == '/')
1257 dirc = '?';
1258 else
1259 dirc = '/';
1260#endif
1261 }
1262
1263#ifdef FEAT_FOLDING
1264 /* If the cursor is in a closed fold, don't find another match in the same
1265 * fold. */
1266 if (dirc == '/')
1267 {
1268 if (hasFolding(pos.lnum, NULL, &pos.lnum))
1269 pos.col = MAXCOL - 2; /* avoid overflow when adding 1 */
1270 }
1271 else
1272 {
1273 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1274 pos.col = 0;
1275 }
1276#endif
1277
1278#ifdef FEAT_SEARCH_EXTRA
1279 /*
1280 * Turn 'hlsearch' highlighting back on.
1281 */
1282 if (no_hlsearch && !(options & SEARCH_KEEP))
1283 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001284 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02001285 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 }
1287#endif
1288
1289 /*
1290 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1291 */
1292 for (;;)
1293 {
1294 searchstr = pat;
1295 dircp = NULL;
1296 /* use previous pattern */
1297 if (pat == NULL || *pat == NUL || *pat == dirc)
1298 {
1299 if (spats[RE_SEARCH].pat == NULL) /* no previous pattern */
1300 {
Bram Moolenaarea683da2016-09-09 21:41:34 +02001301 searchstr = spats[RE_SUBST].pat;
1302 if (searchstr == NULL)
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001303 {
1304 EMSG(_(e_noprevre));
1305 retval = 0;
1306 goto end_do_search;
1307 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001309 else
1310 {
1311 /* make search_regcomp() use spats[RE_SEARCH].pat */
1312 searchstr = (char_u *)"";
1313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 }
1315
1316 if (pat != NULL && *pat != NUL) /* look for (new) offset */
1317 {
1318 /*
1319 * Find end of regular expression.
1320 * If there is a matching '/' or '?', toss it.
1321 */
1322 ps = strcopy;
1323 p = skip_regexp(pat, dirc, (int)p_magic, &strcopy);
1324 if (strcopy != ps)
1325 {
1326 /* made a copy of "pat" to change "\?" to "?" */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001327 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 pat = strcopy;
1329 searchstr = strcopy;
1330 }
1331 if (*p == dirc)
1332 {
1333 dircp = p; /* remember where we put the NUL */
1334 *p++ = NUL;
1335 }
1336 spats[0].off.line = FALSE;
1337 spats[0].off.end = FALSE;
1338 spats[0].off.off = 0;
1339 /*
1340 * Check for a line offset or a character offset.
1341 * For get_address (echo off) we don't check for a character
1342 * offset, because it is meaningless and the 's' could be a
1343 * substitute command.
1344 */
1345 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1346 spats[0].off.line = TRUE;
1347 else if ((options & SEARCH_OPT) &&
1348 (*p == 'e' || *p == 's' || *p == 'b'))
1349 {
1350 if (*p == 'e') /* end */
1351 spats[0].off.end = SEARCH_END;
1352 ++p;
1353 }
1354 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') /* got an offset */
1355 {
1356 /* 'nr' or '+nr' or '-nr' */
1357 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1358 spats[0].off.off = atol((char *)p);
1359 else if (*p == '-') /* single '-' */
1360 spats[0].off.off = -1;
1361 else /* single '+' */
1362 spats[0].off.off = 1;
1363 ++p;
1364 while (VIM_ISDIGIT(*p)) /* skip number */
1365 ++p;
1366 }
1367
1368 /* compute length of search command for get_address() */
1369 searchcmdlen += (int)(p - pat);
1370
1371 pat = p; /* put pat after search command */
1372 }
1373
1374 if ((options & SEARCH_ECHO) && messaging()
1375 && !cmd_silent && msg_silent == 0)
1376 {
1377 char_u *msgbuf;
1378 char_u *trunc;
1379
1380 if (*searchstr == NUL)
1381 p = spats[last_idx].pat;
1382 else
1383 p = searchstr;
1384 msgbuf = alloc((unsigned)(STRLEN(p) + 40));
1385 if (msgbuf != NULL)
1386 {
1387 msgbuf[0] = dirc;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001388#ifdef FEAT_MBYTE
1389 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1390 {
1391 /* Use a space to draw the composing char on. */
1392 msgbuf[1] = ' ';
1393 STRCPY(msgbuf + 2, p);
1394 }
1395 else
1396#endif
1397 STRCPY(msgbuf + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 if (spats[0].off.line || spats[0].off.end || spats[0].off.off)
1399 {
1400 p = msgbuf + STRLEN(msgbuf);
1401 *p++ = dirc;
1402 if (spats[0].off.end)
1403 *p++ = 'e';
1404 else if (!spats[0].off.line)
1405 *p++ = 's';
1406 if (spats[0].off.off > 0 || spats[0].off.line)
1407 *p++ = '+';
1408 if (spats[0].off.off != 0 || spats[0].off.line)
1409 sprintf((char *)p, "%ld", spats[0].off.off);
1410 else
1411 *p = NUL;
1412 }
1413
1414 msg_start();
Bram Moolenaara4a08382005-09-09 19:52:02 +00001415 trunc = msg_strtrunc(msgbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416
1417#ifdef FEAT_RIGHTLEFT
1418 /* The search pattern could be shown on the right in rightleft
1419 * mode, but the 'ruler' and 'showcmd' area use it too, thus
1420 * it would be blanked out again very soon. Show it on the
1421 * left, but do reverse the text. */
1422 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1423 {
1424 char_u *r;
1425
1426 r = reverse_text(trunc != NULL ? trunc : msgbuf);
1427 if (r != NULL)
1428 {
1429 vim_free(trunc);
1430 trunc = r;
1431 }
1432 }
1433#endif
1434 if (trunc != NULL)
1435 {
1436 msg_outtrans(trunc);
1437 vim_free(trunc);
1438 }
1439 else
1440 msg_outtrans(msgbuf);
1441 msg_clr_eos();
1442 msg_check();
1443 vim_free(msgbuf);
1444
1445 gotocmdline(FALSE);
1446 out_flush();
1447 msg_nowait = TRUE; /* don't wait for this message */
1448 }
1449 }
1450
1451 /*
1452 * If there is a character offset, subtract it from the current
1453 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001454 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 * This is not done for a line offset, because then we would not be vi
1456 * compatible.
1457 */
Bram Moolenaared203462004-06-16 11:19:22 +00001458 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 {
1460 if (spats[0].off.off > 0)
1461 {
1462 for (c = spats[0].off.off; c; --c)
1463 if (decl(&pos) == -1)
1464 break;
1465 if (c) /* at start of buffer */
1466 {
1467 pos.lnum = 0; /* allow lnum == 0 here */
1468 pos.col = MAXCOL;
1469 }
1470 }
1471 else
1472 {
1473 for (c = spats[0].off.off; c; ++c)
1474 if (incl(&pos) == -1)
1475 break;
1476 if (c) /* at end of buffer */
1477 {
1478 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1479 pos.col = 0;
1480 }
1481 }
1482 }
1483
1484#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
1485 if (p_altkeymap && curwin->w_p_rl)
1486 lrFswap(searchstr,0);
1487#endif
1488
1489 c = searchit(curwin, curbuf, &pos, dirc == '/' ? FORWARD : BACKWARD,
1490 searchstr, count, spats[0].off.end + (options &
1491 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1492 + SEARCH_MSG + SEARCH_START
1493 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001494 RE_LAST, (linenr_T)0, tm, timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495
1496 if (dircp != NULL)
1497 *dircp = dirc; /* restore second '/' or '?' for normal_cmd() */
1498 if (c == FAIL)
1499 {
1500 retval = 0;
1501 goto end_do_search;
1502 }
1503 if (spats[0].off.end && oap != NULL)
1504 oap->inclusive = TRUE; /* 'e' includes last character */
1505
1506 retval = 1; /* pattern found */
1507
1508 /*
1509 * Add character and/or line offset
1510 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001511 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 {
1513 if (spats[0].off.line) /* Add the offset to the line number. */
1514 {
1515 c = pos.lnum + spats[0].off.off;
1516 if (c < 1)
1517 pos.lnum = 1;
1518 else if (c > curbuf->b_ml.ml_line_count)
1519 pos.lnum = curbuf->b_ml.ml_line_count;
1520 else
1521 pos.lnum = c;
1522 pos.col = 0;
1523
1524 retval = 2; /* pattern found, line offset added */
1525 }
Bram Moolenaared203462004-06-16 11:19:22 +00001526 else if (pos.col < MAXCOL - 2) /* just in case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 {
1528 /* to the right, check for end of file */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001529 c = spats[0].off.off;
1530 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001532 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 if (incl(&pos) == -1)
1534 break;
1535 }
1536 /* to the left, check for start of file */
1537 else
1538 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001539 while (c++ < 0)
1540 if (decl(&pos) == -1)
1541 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 }
1543 }
1544 }
1545
1546 /*
1547 * The search command can be followed by a ';' to do another search.
1548 * For example: "/pat/;/foo/+3;?bar"
1549 * This is like doing another search command, except:
1550 * - The remembered direction '/' or '?' is from the first search.
1551 * - When an error happens the cursor isn't moved at all.
1552 * Don't do this when called by get_address() (it handles ';' itself).
1553 */
1554 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1555 break;
1556
1557 dirc = *++pat;
1558 if (dirc != '?' && dirc != '/')
1559 {
1560 retval = 0;
1561 EMSG(_("E386: Expected '?' or '/' after ';'"));
1562 goto end_do_search;
1563 }
1564 ++pat;
1565 }
1566
1567 if (options & SEARCH_MARK)
1568 setpcmark();
1569 curwin->w_cursor = pos;
1570 curwin->w_set_curswant = TRUE;
1571
1572end_do_search:
Bram Moolenaarac8400d2014-01-14 21:31:34 +01001573 if ((options & SEARCH_KEEP) || cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 spats[0].off = old_off;
1575 vim_free(strcopy);
1576
1577 return retval;
1578}
1579
1580#if defined(FEAT_INS_EXPAND) || defined(PROTO)
1581/*
1582 * search_for_exact_line(buf, pos, dir, pat)
1583 *
1584 * Search for a line starting with the given pattern (ignoring leading
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001585 * white-space), starting from pos and going in direction "dir". "pos" will
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 * contain the position of the match found. Blank lines match only if
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001587 * ADDING is set. If p_ic is set then the pattern must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 * Return OK for success, or FAIL if no line found.
1589 */
1590 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001591search_for_exact_line(
1592 buf_T *buf,
1593 pos_T *pos,
1594 int dir,
1595 char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596{
1597 linenr_T start = 0;
1598 char_u *ptr;
1599 char_u *p;
1600
1601 if (buf->b_ml.ml_line_count == 0)
1602 return FAIL;
1603 for (;;)
1604 {
1605 pos->lnum += dir;
1606 if (pos->lnum < 1)
1607 {
1608 if (p_ws)
1609 {
1610 pos->lnum = buf->b_ml.ml_line_count;
1611 if (!shortmess(SHM_SEARCH))
1612 give_warning((char_u *)_(top_bot_msg), TRUE);
1613 }
1614 else
1615 {
1616 pos->lnum = 1;
1617 break;
1618 }
1619 }
1620 else if (pos->lnum > buf->b_ml.ml_line_count)
1621 {
1622 if (p_ws)
1623 {
1624 pos->lnum = 1;
1625 if (!shortmess(SHM_SEARCH))
1626 give_warning((char_u *)_(bot_top_msg), TRUE);
1627 }
1628 else
1629 {
1630 pos->lnum = 1;
1631 break;
1632 }
1633 }
1634 if (pos->lnum == start)
1635 break;
1636 if (start == 0)
1637 start = pos->lnum;
1638 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1639 p = skipwhite(ptr);
1640 pos->col = (colnr_T) (p - ptr);
1641
1642 /* when adding lines the matching line may be empty but it is not
1643 * ignored because we are interested in the next line -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001644 if ((compl_cont_status & CONT_ADDING)
1645 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 {
1647 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1648 return OK;
1649 }
1650 else if (*p != NUL) /* ignore empty lines */
1651 { /* expanding lines or words */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001652 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1653 : STRNCMP(p, pat, compl_length)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 return OK;
1655 }
1656 }
1657 return FAIL;
1658}
1659#endif /* FEAT_INS_EXPAND */
1660
1661/*
1662 * Character Searches
1663 */
1664
1665/*
1666 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1667 * position of the character, otherwise move to just before the char.
1668 * Do this "cap->count1" times.
1669 * Return FAIL or OK.
1670 */
1671 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001672searchc(cmdarg_T *cap, int t_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673{
1674 int c = cap->nchar; /* char to search for */
1675 int dir = cap->arg; /* TRUE for searching forward */
1676 long count = cap->count1; /* repeat count */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 int col;
1678 char_u *p;
1679 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001680 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681
1682 if (c != NUL) /* normal search: remember args for repeat */
1683 {
1684 if (!KeyStuffed) /* don't remember when redoing */
1685 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001686 *lastc = c;
1687 set_csearch_direction(dir);
1688 set_csearch_until(t_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689#ifdef FEAT_MBYTE
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001690 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 if (cap->ncharC1 != 0)
1692 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001693 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1,
1694 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 if (cap->ncharC2 != 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001696 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2,
1697 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 }
1699#endif
1700 }
1701 }
1702 else /* repeat previous search */
1703 {
Bram Moolenaar454709b2017-03-12 16:37:14 +01001704 if (*lastc == NUL
1705#ifdef FEAT_MBYTE
1706 && lastc_bytelen == 1
1707#endif
1708 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709 return FAIL;
1710 if (dir) /* repeat in opposite direction */
1711 dir = -lastcdir;
1712 else
1713 dir = lastcdir;
1714 t_cmd = last_t_cmd;
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001715 c = *lastc;
1716 /* For multi-byte re-use last lastc_bytes[] and lastc_bytelen. */
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001717
1718 /* Force a move of at least one char, so ";" and "," will move the
1719 * cursor, even if the cursor is right in front of char we are looking
1720 * at. */
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001721 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001722 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 }
1724
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001725 if (dir == BACKWARD)
1726 cap->oap->inclusive = FALSE;
1727 else
1728 cap->oap->inclusive = TRUE;
1729
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 p = ml_get_curline();
1731 col = curwin->w_cursor.col;
1732 len = (int)STRLEN(p);
1733
1734 while (count--)
1735 {
1736#ifdef FEAT_MBYTE
1737 if (has_mbyte)
1738 {
1739 for (;;)
1740 {
1741 if (dir > 0)
1742 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001743 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 if (col >= len)
1745 return FAIL;
1746 }
1747 else
1748 {
1749 if (col == 0)
1750 return FAIL;
1751 col -= (*mb_head_off)(p, p + col - 1) + 1;
1752 }
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001753 if (lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001755 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 break;
1757 }
Bram Moolenaar66727e12017-03-01 22:17:05 +01001758 else if (STRNCMP(p + col, lastc_bytes, lastc_bytelen) == 0
Bram Moolenaarb129a442016-12-01 17:25:20 +01001759 && stop)
Bram Moolenaar66727e12017-03-01 22:17:05 +01001760 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001761 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 }
1763 }
1764 else
1765#endif
1766 {
1767 for (;;)
1768 {
1769 if ((col += dir) < 0 || col >= len)
1770 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001771 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001773 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 }
1775 }
1776 }
1777
1778 if (t_cmd)
1779 {
1780 /* backup to before the character (possibly double-byte) */
1781 col -= dir;
1782#ifdef FEAT_MBYTE
1783 if (has_mbyte)
1784 {
1785 if (dir < 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001786 /* Landed on the search char which is lastc_bytelen long */
1787 col += lastc_bytelen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 else
1789 /* To previous char, which may be multi-byte. */
1790 col -= (*mb_head_off)(p, p + col);
1791 }
1792#endif
1793 }
1794 curwin->w_cursor.col = col;
1795
1796 return OK;
1797}
1798
1799/*
1800 * "Other" Searches
1801 */
1802
1803/*
1804 * findmatch - find the matching paren or brace
1805 *
1806 * Improvement over vi: Braces inside quotes are ignored.
1807 */
1808 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001809findmatch(oparg_T *oap, int initc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810{
1811 return findmatchlimit(oap, initc, 0, 0);
1812}
1813
1814/*
1815 * Return TRUE if the character before "linep[col]" equals "ch".
1816 * Return FALSE if "col" is zero.
1817 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1818 * is NULL.
1819 * Handles multibyte string correctly.
1820 */
1821 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001822check_prevcol(
1823 char_u *linep,
1824 int col,
1825 int ch,
1826 int *prevcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827{
1828 --col;
1829#ifdef FEAT_MBYTE
1830 if (col > 0 && has_mbyte)
1831 col -= (*mb_head_off)(linep, linep + col);
1832#endif
1833 if (prevcol)
1834 *prevcol = col;
1835 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1836}
1837
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001838static int find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001839
1840/*
1841 * Raw string start is found at linep[startpos.col - 1].
1842 * Return TRUE if the matching end can be found between startpos and endpos.
1843 */
1844 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001845find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos)
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001846{
1847 char_u *p;
1848 char_u *delim_copy;
1849 size_t delim_len;
1850 linenr_T lnum;
1851 int found = FALSE;
1852
1853 for (p = linep + startpos->col + 1; *p && *p != '('; ++p)
1854 ;
1855 delim_len = (p - linep) - startpos->col - 1;
Bram Moolenaar6ed535d2015-08-26 23:01:21 +02001856 delim_copy = vim_strnsave(linep + startpos->col + 1, (int)delim_len);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001857 if (delim_copy == NULL)
1858 return FALSE;
1859 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum)
1860 {
1861 char_u *line = ml_get(lnum);
1862
1863 for (p = line + (lnum == startpos->lnum
1864 ? startpos->col + 1 : 0); *p; ++p)
1865 {
1866 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col)
1867 break;
1868 if (*p == ')' && p[delim_len + 1] == '"'
1869 && STRNCMP(delim_copy, p + 1, delim_len) == 0)
1870 {
1871 found = TRUE;
1872 break;
1873 }
1874 }
1875 if (found)
1876 break;
1877 }
1878 vim_free(delim_copy);
1879 return found;
1880}
1881
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882/*
1883 * findmatchlimit -- find the matching paren or brace, if it exists within
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001884 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling
1885 * off the edge of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 *
1887 * "initc" is the character to find a match for. NUL means to find the
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001888 * character at or after the cursor. Special values:
1889 * '*' look for C-style comment / *
1890 * '/' look for C-style comment / *, ignoring comment-end
1891 * '#' look for preprocessor directives
1892 * 'R' look for raw string start: R"delim(text)delim" (only backwards)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 *
1894 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
1895 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
1896 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
1897 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001898 *
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001899 * "oap" is only used to set oap->motion_type for a linewise motion, it can be
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001900 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901 */
1902
1903 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001904findmatchlimit(
1905 oparg_T *oap,
1906 int initc,
1907 int flags,
1908 int maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909{
1910 static pos_T pos; /* current search position */
1911 int findc = 0; /* matching brace */
1912 int c;
1913 int count = 0; /* cumulative number of braces */
1914 int backwards = FALSE; /* init for gcc */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001915 int raw_string = FALSE; /* search for raw string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 int inquote = FALSE; /* TRUE when inside quotes */
1917 char_u *linep; /* pointer to current line */
1918 char_u *ptr;
1919 int do_quotes; /* check for quotes in current line */
1920 int at_start; /* do_quotes value at start position */
1921 int hash_dir = 0; /* Direction searched for # things */
1922 int comment_dir = 0; /* Direction searched for comments */
1923 pos_T match_pos; /* Where last slash-star was found */
1924 int start_in_quotes; /* start position is in quotes */
1925 int traveled = 0; /* how far we've searched so far */
1926 int ignore_cend = FALSE; /* ignore comment end */
1927 int cpo_match; /* vi compatible matching */
1928 int cpo_bsl; /* don't recognize backslashes */
1929 int match_escaped = 0; /* search for escaped match */
1930 int dir; /* Direction to search */
1931 int comment_col = MAXCOL; /* start of / / comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001932#ifdef FEAT_LISP
1933 int lispcomm = FALSE; /* inside of Lisp-style comment */
1934 int lisp = curbuf->b_p_lisp; /* engage Lisp-specific hacks ;) */
1935#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936
1937 pos = curwin->w_cursor;
Bram Moolenaarc56c4592013-08-14 17:45:29 +02001938#ifdef FEAT_VIRTUALEDIT
1939 pos.coladd = 0;
1940#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 linep = ml_get(pos.lnum);
1942
1943 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
1944 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
1945
1946 /* Direction to search when initc is '/', '*' or '#' */
1947 if (flags & FM_BACKWARD)
1948 dir = BACKWARD;
1949 else if (flags & FM_FORWARD)
1950 dir = FORWARD;
1951 else
1952 dir = 0;
1953
1954 /*
1955 * if initc given, look in the table for the matching character
1956 * '/' and '*' are special cases: look for start or end of comment.
1957 * When '/' is used, we ignore running backwards into an star-slash, for
1958 * "[*" command, we just want to find any comment.
1959 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001960 if (initc == '/' || initc == '*' || initc == 'R')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 {
1962 comment_dir = dir;
1963 if (initc == '/')
1964 ignore_cend = TRUE;
1965 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001966 raw_string = (initc == 'R');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 initc = NUL;
1968 }
1969 else if (initc != '#' && initc != NUL)
1970 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001971 find_mps_values(&initc, &findc, &backwards, TRUE);
1972 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 return NULL;
1974 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 else
1976 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001977 /*
1978 * Either initc is '#', or no initc was given and we need to look
1979 * under the cursor.
1980 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 if (initc == '#')
1982 {
1983 hash_dir = dir;
1984 }
1985 else
1986 {
1987 /*
1988 * initc was not given, must look for something to match under
1989 * or near the cursor.
1990 * Only check for special things when 'cpo' doesn't have '%'.
1991 */
1992 if (!cpo_match)
1993 {
1994 /* Are we before or at #if, #else etc.? */
1995 ptr = skipwhite(linep);
1996 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
1997 {
1998 ptr = skipwhite(ptr + 1);
1999 if ( STRNCMP(ptr, "if", 2) == 0
2000 || STRNCMP(ptr, "endif", 5) == 0
2001 || STRNCMP(ptr, "el", 2) == 0)
2002 hash_dir = 1;
2003 }
2004
2005 /* Are we on a comment? */
2006 else if (linep[pos.col] == '/')
2007 {
2008 if (linep[pos.col + 1] == '*')
2009 {
2010 comment_dir = FORWARD;
2011 backwards = FALSE;
2012 pos.col++;
2013 }
2014 else if (pos.col > 0 && linep[pos.col - 1] == '*')
2015 {
2016 comment_dir = BACKWARD;
2017 backwards = TRUE;
2018 pos.col--;
2019 }
2020 }
2021 else if (linep[pos.col] == '*')
2022 {
2023 if (linep[pos.col + 1] == '/')
2024 {
2025 comment_dir = BACKWARD;
2026 backwards = TRUE;
2027 }
2028 else if (pos.col > 0 && linep[pos.col - 1] == '/')
2029 {
2030 comment_dir = FORWARD;
2031 backwards = FALSE;
2032 }
2033 }
2034 }
2035
2036 /*
2037 * If we are not on a comment or the # at the start of a line, then
2038 * look for brace anywhere on this line after the cursor.
2039 */
2040 if (!hash_dir && !comment_dir)
2041 {
2042 /*
2043 * Find the brace under or after the cursor.
2044 * If beyond the end of the line, use the last character in
2045 * the line.
2046 */
2047 if (linep[pos.col] == NUL && pos.col)
2048 --pos.col;
2049 for (;;)
2050 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002051 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 if (initc == NUL)
2053 break;
2054
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002055 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 if (findc)
2057 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002058 pos.col += MB_PTR2LEN(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 }
2060 if (!findc)
2061 {
2062 /* no brace in the line, maybe use " #if" then */
2063 if (!cpo_match && *skipwhite(linep) == '#')
2064 hash_dir = 1;
2065 else
2066 return NULL;
2067 }
2068 else if (!cpo_bsl)
2069 {
2070 int col, bslcnt = 0;
2071
2072 /* Set "match_escaped" if there are an odd number of
2073 * backslashes. */
2074 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2075 bslcnt++;
2076 match_escaped = (bslcnt & 1);
2077 }
2078 }
2079 }
2080 if (hash_dir)
2081 {
2082 /*
2083 * Look for matching #if, #else, #elif, or #endif
2084 */
2085 if (oap != NULL)
2086 oap->motion_type = MLINE; /* Linewise for this case only */
2087 if (initc != '#')
2088 {
2089 ptr = skipwhite(skipwhite(linep) + 1);
2090 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
2091 hash_dir = 1;
2092 else if (STRNCMP(ptr, "endif", 5) == 0)
2093 hash_dir = -1;
2094 else
2095 return NULL;
2096 }
2097 pos.col = 0;
2098 while (!got_int)
2099 {
2100 if (hash_dir > 0)
2101 {
2102 if (pos.lnum == curbuf->b_ml.ml_line_count)
2103 break;
2104 }
2105 else if (pos.lnum == 1)
2106 break;
2107 pos.lnum += hash_dir;
2108 linep = ml_get(pos.lnum);
2109 line_breakcheck(); /* check for CTRL-C typed */
2110 ptr = skipwhite(linep);
2111 if (*ptr != '#')
2112 continue;
2113 pos.col = (colnr_T) (ptr - linep);
2114 ptr = skipwhite(ptr + 1);
2115 if (hash_dir > 0)
2116 {
2117 if (STRNCMP(ptr, "if", 2) == 0)
2118 count++;
2119 else if (STRNCMP(ptr, "el", 2) == 0)
2120 {
2121 if (count == 0)
2122 return &pos;
2123 }
2124 else if (STRNCMP(ptr, "endif", 5) == 0)
2125 {
2126 if (count == 0)
2127 return &pos;
2128 count--;
2129 }
2130 }
2131 else
2132 {
2133 if (STRNCMP(ptr, "if", 2) == 0)
2134 {
2135 if (count == 0)
2136 return &pos;
2137 count--;
2138 }
2139 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
2140 {
2141 if (count == 0)
2142 return &pos;
2143 }
2144 else if (STRNCMP(ptr, "endif", 5) == 0)
2145 count++;
2146 }
2147 }
2148 return NULL;
2149 }
2150 }
2151
2152#ifdef FEAT_RIGHTLEFT
Bram Moolenaarabc97732007-08-08 20:49:37 +00002153 /* This is just guessing: when 'rightleft' is set, search for a matching
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 * paren/brace in the other direction. */
2155 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
2156 backwards = !backwards;
2157#endif
2158
2159 do_quotes = -1;
2160 start_in_quotes = MAYBE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002161 CLEAR_POS(&match_pos);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002162
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 /* backward search: Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002164 if ((backwards && comment_dir)
2165#ifdef FEAT_LISP
2166 || lisp
2167#endif
2168 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002170#ifdef FEAT_LISP
2171 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
2172 lispcomm = TRUE; /* find match inside this comment */
2173#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 while (!got_int)
2175 {
2176 /*
2177 * Go to the next position, forward or backward. We could use
2178 * inc() and dec() here, but that is much slower
2179 */
2180 if (backwards)
2181 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002182#ifdef FEAT_LISP
2183 /* char to match is inside of comment, don't search outside */
2184 if (lispcomm && pos.col < (colnr_T)comment_col)
2185 break;
2186#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 if (pos.col == 0) /* at start of line, go to prev. one */
2188 {
2189 if (pos.lnum == 1) /* start of file */
2190 break;
2191 --pos.lnum;
2192
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002193 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 break;
2195
2196 linep = ml_get(pos.lnum);
2197 pos.col = (colnr_T)STRLEN(linep); /* pos.col on trailing NUL */
2198 do_quotes = -1;
2199 line_breakcheck();
2200
2201 /* Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002202 if (comment_dir
2203#ifdef FEAT_LISP
2204 || lisp
2205#endif
2206 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002208#ifdef FEAT_LISP
2209 /* skip comment */
2210 if (lisp && comment_col != MAXCOL)
2211 pos.col = comment_col;
2212#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 }
2214 else
2215 {
2216 --pos.col;
2217#ifdef FEAT_MBYTE
2218 if (has_mbyte)
2219 pos.col -= (*mb_head_off)(linep, linep + pos.col);
2220#endif
2221 }
2222 }
2223 else /* forward search */
2224 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002225 if (linep[pos.col] == NUL
2226 /* at end of line, go to next one */
2227#ifdef FEAT_LISP
2228 /* don't search for match in comment */
2229 || (lisp && comment_col != MAXCOL
2230 && pos.col == (colnr_T)comment_col)
2231#endif
2232 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002234 if (pos.lnum == curbuf->b_ml.ml_line_count /* end of file */
2235#ifdef FEAT_LISP
2236 /* line is exhausted and comment with it,
2237 * don't search for match in code */
2238 || lispcomm
2239#endif
2240 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 break;
2242 ++pos.lnum;
2243
2244 if (maxtravel && traveled++ > maxtravel)
2245 break;
2246
2247 linep = ml_get(pos.lnum);
2248 pos.col = 0;
2249 do_quotes = -1;
2250 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002251#ifdef FEAT_LISP
2252 if (lisp) /* find comment pos in new line */
2253 comment_col = check_linecomment(linep);
2254#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 }
2256 else
2257 {
2258#ifdef FEAT_MBYTE
2259 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002260 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 else
2262#endif
2263 ++pos.col;
2264 }
2265 }
2266
2267 /*
2268 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2269 */
2270 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2271 (linep[0] == '{' || linep[0] == '}'))
2272 {
2273 if (linep[0] == findc && count == 0) /* match! */
2274 return &pos;
2275 break; /* out of scope */
2276 }
2277
2278 if (comment_dir)
2279 {
2280 /* Note: comments do not nest, and we ignore quotes in them */
2281 /* TODO: ignore comment brackets inside strings */
2282 if (comment_dir == FORWARD)
2283 {
2284 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2285 {
2286 pos.col++;
2287 return &pos;
2288 }
2289 }
2290 else /* Searching backwards */
2291 {
2292 /*
2293 * A comment may contain / * or / /, it may also start or end
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002294 * with / * /. Ignore a / * after / / and after *.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 */
2296 if (pos.col == 0)
2297 continue;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002298 else if (raw_string)
2299 {
2300 if (linep[pos.col - 1] == 'R'
2301 && linep[pos.col] == '"'
2302 && vim_strchr(linep + pos.col + 1, '(') != NULL)
2303 {
2304 /* Possible start of raw string. Now that we have the
2305 * delimiter we can check if it ends before where we
2306 * started searching, or before the previously found
2307 * raw string start. */
2308 if (!find_rawstring_end(linep, &pos,
2309 count > 0 ? &match_pos : &curwin->w_cursor))
2310 {
2311 count++;
2312 match_pos = pos;
2313 match_pos.col--;
2314 }
2315 linep = ml_get(pos.lnum); /* may have been released */
2316 }
2317 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 else if ( linep[pos.col - 1] == '/'
2319 && linep[pos.col] == '*'
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002320 && (pos.col == 1 || linep[pos.col - 2] != '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 && (int)pos.col < comment_col)
2322 {
2323 count++;
2324 match_pos = pos;
2325 match_pos.col--;
2326 }
2327 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2328 {
2329 if (count > 0)
2330 pos = match_pos;
2331 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2332 && (int)pos.col <= comment_col)
2333 pos.col -= 2;
2334 else if (ignore_cend)
2335 continue;
2336 else
2337 return NULL;
2338 return &pos;
2339 }
2340 }
2341 continue;
2342 }
2343
2344 /*
2345 * If smart matching ('cpoptions' does not contain '%'), braces inside
2346 * of quotes are ignored, but only if there is an even number of
2347 * quotes in the line.
2348 */
2349 if (cpo_match)
2350 do_quotes = 0;
2351 else if (do_quotes == -1)
2352 {
2353 /*
2354 * Count the number of quotes in the line, skipping \" and '"'.
2355 * Watch out for "\\".
2356 */
2357 at_start = do_quotes;
2358 for (ptr = linep; *ptr; ++ptr)
2359 {
2360 if (ptr == linep + pos.col + backwards)
2361 at_start = (do_quotes & 1);
2362 if (*ptr == '"'
2363 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2364 ++do_quotes;
2365 if (*ptr == '\\' && ptr[1] != NUL)
2366 ++ptr;
2367 }
2368 do_quotes &= 1; /* result is 1 with even number of quotes */
2369
2370 /*
2371 * If we find an uneven count, check current line and previous
2372 * one for a '\' at the end.
2373 */
2374 if (!do_quotes)
2375 {
2376 inquote = FALSE;
2377 if (ptr[-1] == '\\')
2378 {
2379 do_quotes = 1;
2380 if (start_in_quotes == MAYBE)
2381 {
2382 /* Do we need to use at_start here? */
2383 inquote = TRUE;
2384 start_in_quotes = TRUE;
2385 }
2386 else if (backwards)
2387 inquote = TRUE;
2388 }
2389 if (pos.lnum > 1)
2390 {
2391 ptr = ml_get(pos.lnum - 1);
2392 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2393 {
2394 do_quotes = 1;
2395 if (start_in_quotes == MAYBE)
2396 {
2397 inquote = at_start;
2398 if (inquote)
2399 start_in_quotes = TRUE;
2400 }
2401 else if (!backwards)
2402 inquote = TRUE;
2403 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002404
2405 /* ml_get() only keeps one line, need to get linep again */
2406 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 }
2408 }
2409 }
2410 if (start_in_quotes == MAYBE)
2411 start_in_quotes = FALSE;
2412
2413 /*
2414 * If 'smartmatch' is set:
2415 * Things inside quotes are ignored by setting 'inquote'. If we
2416 * find a quote without a preceding '\' invert 'inquote'. At the
2417 * end of a line not ending in '\' we reset 'inquote'.
2418 *
2419 * In lines with an uneven number of quotes (without preceding '\')
2420 * we do not know which part to ignore. Therefore we only set
2421 * inquote if the number of quotes in a line is even, unless this
2422 * line or the previous one ends in a '\'. Complicated, isn't it?
2423 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002424 c = PTR2CHAR(linep + pos.col);
2425 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 {
2427 case NUL:
2428 /* at end of line without trailing backslash, reset inquote */
2429 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2430 {
2431 inquote = FALSE;
2432 start_in_quotes = FALSE;
2433 }
2434 break;
2435
2436 case '"':
2437 /* a quote that is preceded with an odd number of backslashes is
2438 * ignored */
2439 if (do_quotes)
2440 {
2441 int col;
2442
2443 for (col = pos.col - 1; col >= 0; --col)
2444 if (linep[col] != '\\')
2445 break;
2446 if ((((int)pos.col - 1 - col) & 1) == 0)
2447 {
2448 inquote = !inquote;
2449 start_in_quotes = FALSE;
2450 }
2451 }
2452 break;
2453
2454 /*
2455 * If smart matching ('cpoptions' does not contain '%'):
2456 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2457 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2458 * skipped, there is never a brace in them.
2459 * Ignore this when finding matches for `'.
2460 */
2461 case '\'':
2462 if (!cpo_match && initc != '\'' && findc != '\'')
2463 {
2464 if (backwards)
2465 {
2466 if (pos.col > 1)
2467 {
2468 if (linep[pos.col - 2] == '\'')
2469 {
2470 pos.col -= 2;
2471 break;
2472 }
2473 else if (linep[pos.col - 2] == '\\' &&
2474 pos.col > 2 && linep[pos.col - 3] == '\'')
2475 {
2476 pos.col -= 3;
2477 break;
2478 }
2479 }
2480 }
2481 else if (linep[pos.col + 1]) /* forward search */
2482 {
2483 if (linep[pos.col + 1] == '\\' &&
2484 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2485 {
2486 pos.col += 3;
2487 break;
2488 }
2489 else if (linep[pos.col + 2] == '\'')
2490 {
2491 pos.col += 2;
2492 break;
2493 }
2494 }
2495 }
2496 /* FALLTHROUGH */
2497
2498 default:
2499#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002500 /*
2501 * For Lisp skip over backslashed (), {} and [].
2502 * (actually, we skip #\( et al)
2503 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 if (curbuf->b_p_lisp
2505 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002506 && pos.col > 1
2507 && check_prevcol(linep, pos.col, '\\', NULL)
2508 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 break;
2510#endif
2511
2512 /* Check for match outside of quotes, and inside of
2513 * quotes when the start is also inside of quotes. */
2514 if ((!inquote || start_in_quotes == TRUE)
2515 && (c == initc || c == findc))
2516 {
2517 int col, bslcnt = 0;
2518
2519 if (!cpo_bsl)
2520 {
2521 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2522 bslcnt++;
2523 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00002524 /* Only accept a match when 'M' is in 'cpo' or when escaping
2525 * is what we expect. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2527 {
2528 if (c == initc)
2529 count++;
2530 else
2531 {
2532 if (count == 0)
2533 return &pos;
2534 count--;
2535 }
2536 }
2537 }
2538 }
2539 }
2540
2541 if (comment_dir == BACKWARD && count > 0)
2542 {
2543 pos = match_pos;
2544 return &pos;
2545 }
2546 return (pos_T *)NULL; /* never found it */
2547}
2548
2549/*
2550 * Check if line[] contains a / / comment.
2551 * Return MAXCOL if not, otherwise return the column.
2552 * TODO: skip strings.
2553 */
2554 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002555check_linecomment(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556{
2557 char_u *p;
2558
2559 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002560#ifdef FEAT_LISP
2561 /* skip Lispish one-line comments */
2562 if (curbuf->b_p_lisp)
2563 {
2564 if (vim_strchr(p, ';') != NULL) /* there may be comments */
2565 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002566 int in_str = FALSE; /* inside of string */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002567
2568 p = line; /* scan from start */
Bram Moolenaar520470a2005-06-16 21:59:56 +00002569 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002570 {
2571 if (*p == '"')
2572 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002573 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002574 {
2575 if (*(p - 1) != '\\') /* skip escaped quote */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002576 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002577 }
2578 else if (p == line || ((p - line) >= 2
2579 /* skip #\" form */
2580 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002581 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002582 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002583 else if (!in_str && ((p - line) < 2
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002584 || (*(p - 1) != '\\' && *(p - 2) != '#')))
2585 break; /* found! */
2586 ++p;
2587 }
2588 }
2589 else
2590 p = NULL;
2591 }
2592 else
2593#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 while ((p = vim_strchr(p, '/')) != NULL)
2595 {
Bram Moolenaar78d4aba2008-01-01 14:43:35 +00002596 /* accept a double /, unless it's preceded with * and followed by *,
2597 * because * / / * is an end and start of a C comment */
2598 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599 break;
2600 ++p;
2601 }
2602
2603 if (p == NULL)
2604 return MAXCOL;
2605 return (int)(p - line);
2606}
2607
2608/*
2609 * Move cursor briefly to character matching the one under the cursor.
2610 * Used for Insert mode and "r" command.
2611 * Show the match only if it is visible on the screen.
2612 * If there isn't a match, then beep.
2613 */
2614 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002615showmatch(
2616 int c) /* char to show match for */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617{
2618 pos_T *lpos, save_cursor;
2619 pos_T mpos;
2620 colnr_T vcol;
2621 long save_so;
2622 long save_siso;
2623#ifdef CURSOR_SHAPE
2624 int save_state;
2625#endif
2626 colnr_T save_dollar_vcol;
2627 char_u *p;
2628
2629 /*
2630 * Only show match for chars in the 'matchpairs' option.
2631 */
2632 /* 'matchpairs' is "x:y,x:y" */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002633 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634 {
2635#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002636 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002637 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002638#endif
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002639 p += MB_PTR2LEN(p) + 1;
2640 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641#ifdef FEAT_RIGHTLEFT
2642 && !(curwin->w_p_rl ^ p_ri)
2643#endif
2644 )
2645 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002646 p += MB_PTR2LEN(p);
2647 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 return;
2649 }
2650
2651 if ((lpos = findmatch(NULL, NUL)) == NULL) /* no match, so beep */
Bram Moolenaar165bc692015-07-21 17:53:25 +02002652 vim_beep(BO_MATCH);
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002653 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 {
2655 if (!curwin->w_p_wrap)
2656 getvcol(curwin, lpos, NULL, &vcol, NULL);
2657 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
Bram Moolenaar02631462017-09-22 15:20:32 +02002658 && vcol < curwin->w_leftcol + curwin->w_width))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 {
2660 mpos = *lpos; /* save the pos, update_screen() may change it */
2661 save_cursor = curwin->w_cursor;
2662 save_so = p_so;
2663 save_siso = p_siso;
2664 /* Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2665 * stop displaying the "$". */
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002666 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2667 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 ++curwin->w_virtcol; /* do display ')' just before "$" */
2669 update_screen(VALID); /* show the new char first */
2670
2671 save_dollar_vcol = dollar_vcol;
2672#ifdef CURSOR_SHAPE
2673 save_state = State;
2674 State = SHOWMATCH;
2675 ui_cursor_shape(); /* may show different cursor shape */
2676#endif
2677 curwin->w_cursor = mpos; /* move to matching char */
2678 p_so = 0; /* don't use 'scrolloff' here */
2679 p_siso = 0; /* don't use 'sidescrolloff' here */
2680 showruler(FALSE);
2681 setcursor();
2682 cursor_on(); /* make sure that the cursor is shown */
Bram Moolenaara338adc2018-01-31 20:51:47 +01002683 out_flush_cursor(TRUE, FALSE);
2684
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 /* Restore dollar_vcol(), because setcursor() may call curs_rows()
2686 * which resets it if the matching position is in a previous line
2687 * and has a higher column number. */
2688 dollar_vcol = save_dollar_vcol;
2689
2690 /*
2691 * brief pause, unless 'm' is present in 'cpo' and a character is
2692 * available.
2693 */
2694 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
2695 ui_delay(p_mat * 100L, TRUE);
2696 else if (!char_avail())
2697 ui_delay(p_mat * 100L, FALSE);
2698 curwin->w_cursor = save_cursor; /* restore cursor position */
2699 p_so = save_so;
2700 p_siso = save_siso;
2701#ifdef CURSOR_SHAPE
2702 State = save_state;
2703 ui_cursor_shape(); /* may show different cursor shape */
2704#endif
2705 }
2706 }
2707}
2708
2709/*
Bram Moolenaar85160712018-06-19 18:27:41 +02002710 * Find the start of the next sentence, searching in the direction specified
2711 * by the "dir" argument. The cursor is positioned on the start of the next
2712 * sentence when found. If the next sentence is found, return OK. Return FAIL
2713 * otherwise. See ":h sentence" for the precise definition of a "sentence"
2714 * text object.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 */
2716 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002717findsent(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718{
2719 pos_T pos, tpos;
2720 int c;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002721 int (*func)(pos_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 int startlnum;
2723 int noskip = FALSE; /* do not skip blanks */
2724 int cpo_J;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002725 int found_dot;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726
2727 pos = curwin->w_cursor;
2728 if (dir == FORWARD)
2729 func = incl;
2730 else
2731 func = decl;
2732
2733 while (count--)
2734 {
2735 /*
2736 * if on an empty line, skip upto a non-empty line
2737 */
2738 if (gchar_pos(&pos) == NUL)
2739 {
2740 do
2741 if ((*func)(&pos) == -1)
2742 break;
2743 while (gchar_pos(&pos) == NUL);
2744 if (dir == FORWARD)
2745 goto found;
2746 }
2747 /*
2748 * if on the start of a paragraph or a section and searching forward,
2749 * go to the next line
2750 */
2751 else if (dir == FORWARD && pos.col == 0 &&
2752 startPS(pos.lnum, NUL, FALSE))
2753 {
2754 if (pos.lnum == curbuf->b_ml.ml_line_count)
2755 return FAIL;
2756 ++pos.lnum;
2757 goto found;
2758 }
2759 else if (dir == BACKWARD)
2760 decl(&pos);
2761
Bram Moolenaar85160712018-06-19 18:27:41 +02002762 // go back to the previous non-white non-punctuation character
Bram Moolenaardef9e822004-12-31 20:58:58 +00002763 found_dot = FALSE;
Bram Moolenaar85160712018-06-19 18:27:41 +02002764 while (c = gchar_pos(&pos), VIM_ISWHITE(c)
2765 || vim_strchr((char_u *)".!?)]\"'", c) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 {
Bram Moolenaar85160712018-06-19 18:27:41 +02002767 tpos = pos;
2768 if (decl(&tpos) == -1 || (LINEEMPTY(tpos.lnum) && dir == FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 break;
Bram Moolenaar85160712018-06-19 18:27:41 +02002770
2771 if (found_dot)
2772 break;
2773 if (vim_strchr((char_u *) ".!?", c) != NULL)
2774 found_dot = TRUE;
2775
2776 if (vim_strchr((char_u *) ")]\"'", c) != NULL
2777 && vim_strchr((char_u *) ".!?)]\"'", gchar_pos(&tpos)) == NULL)
2778 break;
2779
2780 decl(&pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 }
2782
2783 /* remember the line where the search started */
2784 startlnum = pos.lnum;
2785 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL;
2786
2787 for (;;) /* find end of sentence */
2788 {
2789 c = gchar_pos(&pos);
2790 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE)))
2791 {
2792 if (dir == BACKWARD && pos.lnum != startlnum)
2793 ++pos.lnum;
2794 break;
2795 }
2796 if (c == '.' || c == '!' || c == '?')
2797 {
2798 tpos = pos;
2799 do
2800 if ((c = inc(&tpos)) == -1)
2801 break;
2802 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos))
2803 != NULL);
2804 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL
2805 || (cpo_J && (c == ' ' && inc(&tpos) >= 0
2806 && gchar_pos(&tpos) == ' ')))
2807 {
2808 pos = tpos;
2809 if (gchar_pos(&pos) == NUL) /* skip NUL at EOL */
2810 inc(&pos);
2811 break;
2812 }
2813 }
2814 if ((*func)(&pos) == -1)
2815 {
2816 if (count)
2817 return FAIL;
2818 noskip = TRUE;
2819 break;
2820 }
2821 }
2822found:
2823 /* skip white space */
2824 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t'))
2825 if (incl(&pos) == -1)
2826 break;
2827 }
2828
2829 setpcmark();
2830 curwin->w_cursor = pos;
2831 return OK;
2832}
2833
2834/*
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002835 * Find the next paragraph or section in direction 'dir'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 * Paragraphs are currently supposed to be separated by empty lines.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002837 * If 'what' is NUL we go to the next paragraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 * If 'what' is '{' or '}' we go to the next section.
2839 * If 'both' is TRUE also stop at '}'.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002840 * Return TRUE if the next paragraph or section was found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 */
2842 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002843findpar(
2844 int *pincl, /* Return: TRUE if last char is to be included */
2845 int dir,
2846 long count,
2847 int what,
2848 int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849{
2850 linenr_T curr;
2851 int did_skip; /* TRUE after separating lines have been skipped */
2852 int first; /* TRUE on first line */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002853 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854#ifdef FEAT_FOLDING
2855 linenr_T fold_first; /* first line of a closed fold */
2856 linenr_T fold_last; /* last line of a closed fold */
2857 int fold_skipped; /* TRUE if a closed fold was skipped this
2858 iteration */
2859#endif
2860
2861 curr = curwin->w_cursor.lnum;
2862
2863 while (count--)
2864 {
2865 did_skip = FALSE;
2866 for (first = TRUE; ; first = FALSE)
2867 {
2868 if (*ml_get(curr) != NUL)
2869 did_skip = TRUE;
2870
2871#ifdef FEAT_FOLDING
2872 /* skip folded lines */
2873 fold_skipped = FALSE;
2874 if (first && hasFolding(curr, &fold_first, &fold_last))
2875 {
2876 curr = ((dir > 0) ? fold_last : fold_first) + dir;
2877 fold_skipped = TRUE;
2878 }
2879#endif
2880
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002881 /* POSIX has it's own ideas of what a paragraph boundary is and it
2882 * doesn't match historical Vi: It also stops at a "{" in the
2883 * first column and at an empty line. */
2884 if (!first && did_skip && (startPS(curr, what, both)
2885 || (posix && what == NUL && *ml_get(curr) == '{')))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 break;
2887
2888#ifdef FEAT_FOLDING
2889 if (fold_skipped)
2890 curr -= dir;
2891#endif
2892 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count)
2893 {
2894 if (count)
2895 return FALSE;
2896 curr -= dir;
2897 break;
2898 }
2899 }
2900 }
2901 setpcmark();
2902 if (both && *ml_get(curr) == '}') /* include line with '}' */
2903 ++curr;
2904 curwin->w_cursor.lnum = curr;
2905 if (curr == curbuf->b_ml.ml_line_count && what != '}')
2906 {
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02002907 char_u *line = ml_get(curr);
2908
2909 /* Put the cursor on the last character in the last line and make the
2910 * motion inclusive. */
2911 if ((curwin->w_cursor.col = (colnr_T)STRLEN(line)) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 {
2913 --curwin->w_cursor.col;
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02002914#ifdef FEAT_MBYTE
2915 curwin->w_cursor.col -=
2916 (*mb_head_off)(line, line + curwin->w_cursor.col);
2917#endif
Bram Moolenaar92d640f2005-09-05 22:11:52 +00002918 *pincl = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919 }
2920 }
2921 else
2922 curwin->w_cursor.col = 0;
2923 return TRUE;
2924}
2925
2926/*
2927 * check if the string 's' is a nroff macro that is in option 'opt'
2928 */
2929 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002930inmacro(char_u *opt, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931{
2932 char_u *macro;
2933
2934 for (macro = opt; macro[0]; ++macro)
2935 {
2936 /* Accept two characters in the option being equal to two characters
2937 * in the line. A space in the option matches with a space in the
2938 * line or the line having ended. */
2939 if ( (macro[0] == s[0]
2940 || (macro[0] == ' '
2941 && (s[0] == NUL || s[0] == ' ')))
2942 && (macro[1] == s[1]
2943 || ((macro[1] == NUL || macro[1] == ' ')
2944 && (s[0] == NUL || s[1] == NUL || s[1] == ' '))))
2945 break;
2946 ++macro;
2947 if (macro[0] == NUL)
2948 break;
2949 }
2950 return (macro[0] != NUL);
2951}
2952
2953/*
2954 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph.
2955 * If 'para' is '{' or '}' only check for sections.
2956 * If 'both' is TRUE also stop at '}'
2957 */
2958 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002959startPS(linenr_T lnum, int para, int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960{
2961 char_u *s;
2962
2963 s = ml_get(lnum);
2964 if (*s == para || *s == '\f' || (both && *s == '}'))
2965 return TRUE;
2966 if (*s == '.' && (inmacro(p_sections, s + 1) ||
2967 (!para && inmacro(p_para, s + 1))))
2968 return TRUE;
2969 return FALSE;
2970}
2971
2972/*
2973 * The following routines do the word searches performed by the 'w', 'W',
2974 * 'b', 'B', 'e', and 'E' commands.
2975 */
2976
2977/*
2978 * To perform these searches, characters are placed into one of three
2979 * classes, and transitions between classes determine word boundaries.
2980 *
2981 * The classes are:
2982 *
2983 * 0 - white space
2984 * 1 - punctuation
2985 * 2 or higher - keyword characters (letters, digits and underscore)
2986 */
2987
2988static int cls_bigword; /* TRUE for "W", "B" or "E" */
2989
2990/*
2991 * cls() - returns the class of character at curwin->w_cursor
2992 *
2993 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars
2994 * from class 2 and higher are reported as class 1 since only white space
2995 * boundaries are of interest.
2996 */
2997 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002998cls(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999{
3000 int c;
3001
3002 c = gchar_cursor();
3003#ifdef FEAT_FKMAP /* when 'akm' (Farsi mode), take care of Farsi blank */
3004 if (p_altkeymap && c == F_BLANK)
3005 return 0;
3006#endif
3007 if (c == ' ' || c == '\t' || c == NUL)
3008 return 0;
3009#ifdef FEAT_MBYTE
3010 if (enc_dbcs != 0 && c > 0xFF)
3011 {
3012 /* If cls_bigword, report multi-byte chars as class 1. */
3013 if (enc_dbcs == DBCS_KOR && cls_bigword)
3014 return 1;
3015
3016 /* process code leading/trailing bytes */
3017 return dbcs_class(((unsigned)c >> 8), (c & 0xFF));
3018 }
3019 if (enc_utf8)
3020 {
3021 c = utf_class(c);
3022 if (c != 0 && cls_bigword)
3023 return 1;
3024 return c;
3025 }
3026#endif
3027
3028 /* If cls_bigword is TRUE, report all non-blanks as class 1. */
3029 if (cls_bigword)
3030 return 1;
3031
3032 if (vim_iswordc(c))
3033 return 2;
3034 return 1;
3035}
3036
3037
3038/*
3039 * fwd_word(count, type, eol) - move forward one word
3040 *
3041 * Returns FAIL if the cursor was already at the end of the file.
3042 * If eol is TRUE, last word stops at end of line (for operators).
3043 */
3044 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003045fwd_word(
3046 long count,
3047 int bigword, /* "W", "E" or "B" */
3048 int eol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049{
3050 int sclass; /* starting class */
3051 int i;
3052 int last_line;
3053
3054#ifdef FEAT_VIRTUALEDIT
3055 curwin->w_cursor.coladd = 0;
3056#endif
3057 cls_bigword = bigword;
3058 while (--count >= 0)
3059 {
3060#ifdef FEAT_FOLDING
3061 /* When inside a range of folded lines, move to the last char of the
3062 * last line. */
3063 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3064 coladvance((colnr_T)MAXCOL);
3065#endif
3066 sclass = cls();
3067
3068 /*
3069 * We always move at least one character, unless on the last
3070 * character in the buffer.
3071 */
3072 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count);
3073 i = inc_cursor();
3074 if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */
3075 return FAIL;
Bram Moolenaar9a149792007-07-10 10:38:02 +00003076 if (i >= 1 && eol && count == 0) /* started at last char in line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077 return OK;
3078
3079 /*
3080 * Go one char past end of current word (if any)
3081 */
3082 if (sclass != 0)
3083 while (cls() == sclass)
3084 {
3085 i = inc_cursor();
3086 if (i == -1 || (i >= 1 && eol && count == 0))
3087 return OK;
3088 }
3089
3090 /*
3091 * go to next non-white
3092 */
3093 while (cls() == 0)
3094 {
3095 /*
3096 * We'll stop if we land on a blank line
3097 */
3098 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL)
3099 break;
3100
3101 i = inc_cursor();
3102 if (i == -1 || (i >= 1 && eol && count == 0))
3103 return OK;
3104 }
3105 }
3106 return OK;
3107}
3108
3109/*
3110 * bck_word() - move backward 'count' words
3111 *
3112 * If stop is TRUE and we are already on the start of a word, move one less.
3113 *
3114 * Returns FAIL if top of the file was reached.
3115 */
3116 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003117bck_word(long count, int bigword, int stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118{
3119 int sclass; /* starting class */
3120
3121#ifdef FEAT_VIRTUALEDIT
3122 curwin->w_cursor.coladd = 0;
3123#endif
3124 cls_bigword = bigword;
3125 while (--count >= 0)
3126 {
3127#ifdef FEAT_FOLDING
3128 /* When inside a range of folded lines, move to the first char of the
3129 * first line. */
3130 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL))
3131 curwin->w_cursor.col = 0;
3132#endif
3133 sclass = cls();
3134 if (dec_cursor() == -1) /* started at start of file */
3135 return FAIL;
3136
3137 if (!stop || sclass == cls() || sclass == 0)
3138 {
3139 /*
3140 * Skip white space before the word.
3141 * Stop on an empty line.
3142 */
3143 while (cls() == 0)
3144 {
3145 if (curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003146 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147 goto finished;
3148 if (dec_cursor() == -1) /* hit start of file, stop here */
3149 return OK;
3150 }
3151
3152 /*
3153 * Move backward to start of this word.
3154 */
3155 if (skip_chars(cls(), BACKWARD))
3156 return OK;
3157 }
3158
3159 inc_cursor(); /* overshot - forward one */
3160finished:
3161 stop = FALSE;
3162 }
3163 return OK;
3164}
3165
3166/*
3167 * end_word() - move to the end of the word
3168 *
3169 * There is an apparent bug in the 'e' motion of the real vi. At least on the
3170 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e'
3171 * motion crosses blank lines. When the real vi crosses a blank line in an
3172 * 'e' motion, the cursor is placed on the FIRST character of the next
3173 * non-blank line. The 'E' command, however, works correctly. Since this
3174 * appears to be a bug, I have not duplicated it here.
3175 *
3176 * Returns FAIL if end of the file was reached.
3177 *
3178 * If stop is TRUE and we are already on the end of a word, move one less.
3179 * If empty is TRUE stop on an empty line.
3180 */
3181 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003182end_word(
3183 long count,
3184 int bigword,
3185 int stop,
3186 int empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187{
3188 int sclass; /* starting class */
3189
3190#ifdef FEAT_VIRTUALEDIT
3191 curwin->w_cursor.coladd = 0;
3192#endif
3193 cls_bigword = bigword;
3194 while (--count >= 0)
3195 {
3196#ifdef FEAT_FOLDING
3197 /* When inside a range of folded lines, move to the last char of the
3198 * last line. */
3199 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3200 coladvance((colnr_T)MAXCOL);
3201#endif
3202 sclass = cls();
3203 if (inc_cursor() == -1)
3204 return FAIL;
3205
3206 /*
3207 * If we're in the middle of a word, we just have to move to the end
3208 * of it.
3209 */
3210 if (cls() == sclass && sclass != 0)
3211 {
3212 /*
3213 * Move forward to end of the current word
3214 */
3215 if (skip_chars(sclass, FORWARD))
3216 return FAIL;
3217 }
3218 else if (!stop || sclass == 0)
3219 {
3220 /*
3221 * We were at the end of a word. Go to the end of the next word.
3222 * First skip white space, if 'empty' is TRUE, stop at empty line.
3223 */
3224 while (cls() == 0)
3225 {
3226 if (empty && curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003227 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228 goto finished;
3229 if (inc_cursor() == -1) /* hit end of file, stop here */
3230 return FAIL;
3231 }
3232
3233 /*
3234 * Move forward to the end of this word.
3235 */
3236 if (skip_chars(cls(), FORWARD))
3237 return FAIL;
3238 }
3239 dec_cursor(); /* overshot - one char backward */
3240finished:
3241 stop = FALSE; /* we move only one word less */
3242 }
3243 return OK;
3244}
3245
3246/*
3247 * Move back to the end of the word.
3248 *
3249 * Returns FAIL if start of the file was reached.
3250 */
3251 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003252bckend_word(
3253 long count,
3254 int bigword, /* TRUE for "B" */
3255 int eol) /* TRUE: stop at end of line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256{
3257 int sclass; /* starting class */
3258 int i;
3259
3260#ifdef FEAT_VIRTUALEDIT
3261 curwin->w_cursor.coladd = 0;
3262#endif
3263 cls_bigword = bigword;
3264 while (--count >= 0)
3265 {
3266 sclass = cls();
3267 if ((i = dec_cursor()) == -1)
3268 return FAIL;
3269 if (eol && i == 1)
3270 return OK;
3271
3272 /*
3273 * Move backward to before the start of this word.
3274 */
3275 if (sclass != 0)
3276 {
3277 while (cls() == sclass)
3278 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3279 return OK;
3280 }
3281
3282 /*
3283 * Move backward to end of the previous word
3284 */
3285 while (cls() == 0)
3286 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003287 if (curwin->w_cursor.col == 0 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288 break;
3289 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3290 return OK;
3291 }
3292 }
3293 return OK;
3294}
3295
3296/*
3297 * Skip a row of characters of the same class.
3298 * Return TRUE when end-of-file reached, FALSE otherwise.
3299 */
3300 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003301skip_chars(int cclass, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302{
3303 while (cls() == cclass)
3304 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1)
3305 return TRUE;
3306 return FALSE;
3307}
3308
3309#ifdef FEAT_TEXTOBJ
3310/*
3311 * Go back to the start of the word or the start of white space
3312 */
3313 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003314back_in_line(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315{
3316 int sclass; /* starting class */
3317
3318 sclass = cls();
3319 for (;;)
3320 {
3321 if (curwin->w_cursor.col == 0) /* stop at start of line */
3322 break;
3323 dec_cursor();
3324 if (cls() != sclass) /* stop at start of word */
3325 {
3326 inc_cursor();
3327 break;
3328 }
3329 }
3330}
3331
3332 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003333find_first_blank(pos_T *posp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334{
3335 int c;
3336
3337 while (decl(posp) != -1)
3338 {
3339 c = gchar_pos(posp);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003340 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341 {
3342 incl(posp);
3343 break;
3344 }
3345 }
3346}
3347
3348/*
3349 * Skip count/2 sentences and count/2 separating white spaces.
3350 */
3351 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003352findsent_forward(
3353 long count,
3354 int at_start_sent) /* cursor is at start of sentence */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355{
3356 while (count--)
3357 {
3358 findsent(FORWARD, 1L);
3359 if (at_start_sent)
3360 find_first_blank(&curwin->w_cursor);
3361 if (count == 0 || at_start_sent)
3362 decl(&curwin->w_cursor);
3363 at_start_sent = !at_start_sent;
3364 }
3365}
3366
3367/*
3368 * Find word under cursor, cursor at end.
3369 * Used while an operator is pending, and in Visual mode.
3370 */
3371 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003372current_word(
3373 oparg_T *oap,
3374 long count,
3375 int include, /* TRUE: include word and white space */
3376 int bigword) /* FALSE == word, TRUE == WORD */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377{
3378 pos_T start_pos;
3379 pos_T pos;
3380 int inclusive = TRUE;
3381 int include_white = FALSE;
3382
3383 cls_bigword = bigword;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003384 CLEAR_POS(&start_pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386 /* Correct cursor when 'selection' is exclusive */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003387 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 dec_cursor();
3389
3390 /*
3391 * When Visual mode is not active, or when the VIsual area is only one
3392 * character, select the word and/or white space under the cursor.
3393 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003394 if (!VIsual_active || EQUAL_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395 {
3396 /*
3397 * Go to start of current word or white space.
3398 */
3399 back_in_line();
3400 start_pos = curwin->w_cursor;
3401
3402 /*
3403 * If the start is on white space, and white space should be included
3404 * (" word"), or start is not on white space, and white space should
3405 * not be included ("word"), find end of word.
3406 */
3407 if ((cls() == 0) == include)
3408 {
3409 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3410 return FAIL;
3411 }
3412 else
3413 {
3414 /*
3415 * If the start is not on white space, and white space should be
3416 * included ("word "), or start is on white space and white
3417 * space should not be included (" "), find start of word.
3418 * If we end up in the first column of the next line (single char
3419 * word) back up to end of the line.
3420 */
3421 fwd_word(1L, bigword, TRUE);
3422 if (curwin->w_cursor.col == 0)
3423 decl(&curwin->w_cursor);
3424 else
3425 oneleft();
3426
3427 if (include)
3428 include_white = TRUE;
3429 }
3430
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431 if (VIsual_active)
3432 {
3433 /* should do something when inclusive == FALSE ! */
3434 VIsual = start_pos;
3435 redraw_curbuf_later(INVERTED); /* update the inversion */
3436 }
3437 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 {
3439 oap->start = start_pos;
3440 oap->motion_type = MCHAR;
3441 }
3442 --count;
3443 }
3444
3445 /*
3446 * When count is still > 0, extend with more objects.
3447 */
3448 while (count > 0)
3449 {
3450 inclusive = TRUE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003451 if (VIsual_active && LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452 {
3453 /*
3454 * In Visual mode, with cursor at start: move cursor back.
3455 */
3456 if (decl(&curwin->w_cursor) == -1)
3457 return FAIL;
3458 if (include != (cls() != 0))
3459 {
3460 if (bck_word(1L, bigword, TRUE) == FAIL)
3461 return FAIL;
3462 }
3463 else
3464 {
3465 if (bckend_word(1L, bigword, TRUE) == FAIL)
3466 return FAIL;
3467 (void)incl(&curwin->w_cursor);
3468 }
3469 }
3470 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 {
3472 /*
3473 * Move cursor forward one word and/or white area.
3474 */
3475 if (incl(&curwin->w_cursor) == -1)
3476 return FAIL;
3477 if (include != (cls() == 0))
3478 {
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003479 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 return FAIL;
3481 /*
3482 * If end is just past a new-line, we don't want to include
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003483 * the first character on the line.
3484 * Put cursor on last char of white.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 */
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003486 if (oneleft() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 inclusive = FALSE;
3488 }
3489 else
3490 {
3491 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3492 return FAIL;
3493 }
3494 }
3495 --count;
3496 }
3497
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003498 if (include_white && (cls() != 0
3499 || (curwin->w_cursor.col == 0 && !inclusive)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 {
3501 /*
3502 * If we don't include white space at the end, move the start
3503 * to include some white space there. This makes "daw" work
3504 * better on the last word in a sentence (and "2daw" on last-but-one
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003505 * word). Also when "2daw" deletes "word." at the end of the line
3506 * (cursor is at start of next line).
3507 * But don't delete white space at start of line (indent).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 */
3509 pos = curwin->w_cursor; /* save cursor position */
3510 curwin->w_cursor = start_pos;
3511 if (oneleft() == OK)
3512 {
3513 back_in_line();
3514 if (cls() == 0 && curwin->w_cursor.col > 0)
3515 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 if (VIsual_active)
3517 VIsual = curwin->w_cursor;
3518 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519 oap->start = curwin->w_cursor;
3520 }
3521 }
3522 curwin->w_cursor = pos; /* put cursor back at end */
3523 }
3524
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525 if (VIsual_active)
3526 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003527 if (*p_sel == 'e' && inclusive && LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528 inc_cursor();
3529 if (VIsual_mode == 'V')
3530 {
3531 VIsual_mode = 'v';
3532 redraw_cmdline = TRUE; /* show mode later */
3533 }
3534 }
3535 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536 oap->inclusive = inclusive;
3537
3538 return OK;
3539}
3540
3541/*
3542 * Find sentence(s) under the cursor, cursor at end.
3543 * When Visual active, extend it by one or more sentences.
3544 */
3545 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003546current_sent(oparg_T *oap, long count, int include)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547{
3548 pos_T start_pos;
3549 pos_T pos;
3550 int start_blank;
3551 int c;
3552 int at_start_sent;
3553 long ncount;
3554
3555 start_pos = curwin->w_cursor;
3556 pos = start_pos;
3557 findsent(FORWARD, 1L); /* Find start of next sentence. */
3558
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003560 * When the Visual area is bigger than one character: Extend it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003562 if (VIsual_active && !EQUAL_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 {
3564extend:
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003565 if (LT_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566 {
3567 /*
3568 * Cursor at start of Visual area.
3569 * Find out where we are:
3570 * - in the white space before a sentence
3571 * - in a sentence or just after it
3572 * - at the start of a sentence
3573 */
3574 at_start_sent = TRUE;
3575 decl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003576 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577 {
3578 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003579 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 {
3581 at_start_sent = FALSE;
3582 break;
3583 }
3584 incl(&pos);
3585 }
3586 if (!at_start_sent)
3587 {
3588 findsent(BACKWARD, 1L);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003589 if (EQUAL_POS(curwin->w_cursor, start_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 at_start_sent = TRUE; /* exactly at start of sentence */
3591 else
3592 /* inside a sentence, go to its end (start of next) */
3593 findsent(FORWARD, 1L);
3594 }
3595 if (include) /* "as" gets twice as much as "is" */
3596 count *= 2;
3597 while (count--)
3598 {
3599 if (at_start_sent)
3600 find_first_blank(&curwin->w_cursor);
3601 c = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01003602 if (!at_start_sent || (!include && !VIM_ISWHITE(c)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603 findsent(BACKWARD, 1L);
3604 at_start_sent = !at_start_sent;
3605 }
3606 }
3607 else
3608 {
3609 /*
3610 * Cursor at end of Visual area.
3611 * Find out where we are:
3612 * - just before a sentence
3613 * - just before or in the white space before a sentence
3614 * - in a sentence
3615 */
3616 incl(&pos);
3617 at_start_sent = TRUE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003618 /* not just before a sentence */
3619 if (!EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 {
3621 at_start_sent = FALSE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003622 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623 {
3624 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003625 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 {
3627 at_start_sent = TRUE;
3628 break;
3629 }
3630 incl(&pos);
3631 }
3632 if (at_start_sent) /* in the sentence */
3633 findsent(BACKWARD, 1L);
3634 else /* in/before white before a sentence */
3635 curwin->w_cursor = start_pos;
3636 }
3637
3638 if (include) /* "as" gets twice as much as "is" */
3639 count *= 2;
3640 findsent_forward(count, at_start_sent);
3641 if (*p_sel == 'e')
3642 ++curwin->w_cursor.col;
3643 }
3644 return OK;
3645 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646
3647 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003648 * If the cursor started on a blank, check if it is just before the start
3649 * of the next sentence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 */
Bram Moolenaar1c465442017-03-12 20:10:05 +01003651 while (c = gchar_pos(&pos), VIM_ISWHITE(c)) /* VIM_ISWHITE() is a macro */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 incl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003653 if (EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654 {
3655 start_blank = TRUE;
3656 find_first_blank(&start_pos); /* go back to first blank */
3657 }
3658 else
3659 {
3660 start_blank = FALSE;
3661 findsent(BACKWARD, 1L);
3662 start_pos = curwin->w_cursor;
3663 }
3664 if (include)
3665 ncount = count * 2;
3666 else
3667 {
3668 ncount = count;
3669 if (start_blank)
3670 --ncount;
3671 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00003672 if (ncount > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673 findsent_forward(ncount, TRUE);
3674 else
3675 decl(&curwin->w_cursor);
3676
3677 if (include)
3678 {
3679 /*
3680 * If the blank in front of the sentence is included, exclude the
3681 * blanks at the end of the sentence, go back to the first blank.
3682 * If there are no trailing blanks, try to include leading blanks.
3683 */
3684 if (start_blank)
3685 {
3686 find_first_blank(&curwin->w_cursor);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003687 c = gchar_pos(&curwin->w_cursor); /* VIM_ISWHITE() is a macro */
3688 if (VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 decl(&curwin->w_cursor);
3690 }
Bram Moolenaar1c465442017-03-12 20:10:05 +01003691 else if (c = gchar_cursor(), !VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692 find_first_blank(&start_pos);
3693 }
3694
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 if (VIsual_active)
3696 {
Bram Moolenaar641e2862012-07-25 15:06:34 +02003697 /* Avoid getting stuck with "is" on a single space before a sentence. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003698 if (EQUAL_POS(start_pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 goto extend;
3700 if (*p_sel == 'e')
3701 ++curwin->w_cursor.col;
3702 VIsual = start_pos;
3703 VIsual_mode = 'v';
Bram Moolenaar779f2fc2016-09-01 20:58:24 +02003704 redraw_cmdline = TRUE; /* show mode later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 redraw_curbuf_later(INVERTED); /* update the inversion */
3706 }
3707 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 {
3709 /* include a newline after the sentence, if there is one */
3710 if (incl(&curwin->w_cursor) == -1)
3711 oap->inclusive = TRUE;
3712 else
3713 oap->inclusive = FALSE;
3714 oap->start = start_pos;
3715 oap->motion_type = MCHAR;
3716 }
3717 return OK;
3718}
3719
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003720/*
3721 * Find block under the cursor, cursor at end.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003722 * "what" and "other" are two matching parenthesis/brace/etc.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003723 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003725current_block(
3726 oparg_T *oap,
3727 long count,
3728 int include, /* TRUE == include white space */
3729 int what, /* '(', '{', etc. */
3730 int other) /* ')', '}', etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731{
3732 pos_T old_pos;
3733 pos_T *pos = NULL;
3734 pos_T start_pos;
3735 pos_T *end_pos;
3736 pos_T old_start, old_end;
3737 char_u *save_cpo;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003738 int sol = FALSE; /* '{' at start of line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739
3740 old_pos = curwin->w_cursor;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003741 old_end = curwin->w_cursor; /* remember where we started */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 old_start = old_end;
3743
3744 /*
3745 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive.
3746 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003747 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 {
3749 setpcmark();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003750 if (what == '{') /* ignore indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751 while (inindent(1))
3752 if (inc_cursor() != 0)
3753 break;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003754 if (gchar_cursor() == what)
3755 /* cursor on '(' or '{', move cursor just after it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 ++curwin->w_cursor.col;
3757 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003758 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 {
3760 old_start = VIsual;
3761 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3762 }
3763 else
3764 old_end = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765
3766 /*
3767 * Search backwards for unclosed '(', '{', etc..
3768 * Put this position in start_pos.
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003769 * Ignore quotes here. Keep the "M" flag in 'cpo', as that is what the
3770 * user wants.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 */
3772 save_cpo = p_cpo;
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003773 p_cpo = (char_u *)(vim_strchr(p_cpo, CPO_MATCHBSL) != NULL ? "%M" : "%");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 while (count-- > 0)
3775 {
3776 if ((pos = findmatch(NULL, what)) == NULL)
3777 break;
3778 curwin->w_cursor = *pos;
3779 start_pos = *pos; /* the findmatch for end_pos will overwrite *pos */
3780 }
3781 p_cpo = save_cpo;
3782
3783 /*
3784 * Search for matching ')', '}', etc.
3785 * Put this position in curwin->w_cursor.
3786 */
3787 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL)
3788 {
3789 curwin->w_cursor = old_pos;
3790 return FAIL;
3791 }
3792 curwin->w_cursor = *end_pos;
3793
3794 /*
3795 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE.
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003796 * If the ending '}', ')' or ']' is only preceded by indent, skip that
3797 * indent. But only if the resulting area is not smaller than what we
3798 * started with.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799 */
3800 while (!include)
3801 {
3802 incl(&start_pos);
3803 sol = (curwin->w_cursor.col == 0);
3804 decl(&curwin->w_cursor);
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003805 while (inindent(1))
3806 {
3807 sol = TRUE;
3808 if (decl(&curwin->w_cursor) != 0)
3809 break;
3810 }
3811
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 /*
3813 * In Visual mode, when the resulting area is not bigger than what we
3814 * started with, extend it to the next block, and then exclude again.
3815 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003816 if (!LT_POS(start_pos, old_start) && !LT_POS(old_end, curwin->w_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 && VIsual_active)
3818 {
3819 curwin->w_cursor = old_start;
3820 decl(&curwin->w_cursor);
3821 if ((pos = findmatch(NULL, what)) == NULL)
3822 {
3823 curwin->w_cursor = old_pos;
3824 return FAIL;
3825 }
3826 start_pos = *pos;
3827 curwin->w_cursor = *pos;
3828 if ((end_pos = findmatch(NULL, other)) == NULL)
3829 {
3830 curwin->w_cursor = old_pos;
3831 return FAIL;
3832 }
3833 curwin->w_cursor = *end_pos;
3834 }
3835 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 break;
3837 }
3838
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 if (VIsual_active)
3840 {
3841 if (*p_sel == 'e')
Bram Moolenaar8667d662015-09-01 18:27:49 +02003842 inc(&curwin->w_cursor);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003843 if (sol && gchar_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 inc(&curwin->w_cursor); /* include the line break */
3845 VIsual = start_pos;
3846 VIsual_mode = 'v';
3847 redraw_curbuf_later(INVERTED); /* update the inversion */
3848 showmode();
3849 }
3850 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 {
3852 oap->start = start_pos;
3853 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003854 oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003855 if (sol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 incl(&curwin->w_cursor);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003857 else if (LTOREQ_POS(start_pos, curwin->w_cursor))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003858 /* Include the character under the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 oap->inclusive = TRUE;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003860 else
3861 /* End is before the start (no text in between <>, [], etc.): don't
3862 * operate on any text. */
3863 curwin->w_cursor = start_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 }
3865
3866 return OK;
3867}
3868
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003869static int in_html_tag(int);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003870
3871/*
3872 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>".
3873 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>".
3874 */
3875 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003876in_html_tag(
3877 int end_tag)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003878{
3879 char_u *line = ml_get_curline();
3880 char_u *p;
3881 int c;
3882 int lc = NUL;
3883 pos_T pos;
3884
3885#ifdef FEAT_MBYTE
3886 if (enc_dbcs)
3887 {
3888 char_u *lp = NULL;
3889
3890 /* We search forward until the cursor, because searching backwards is
3891 * very slow for DBCS encodings. */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003892 for (p = line; p < line + curwin->w_cursor.col; MB_PTR_ADV(p))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003893 if (*p == '>' || *p == '<')
3894 {
3895 lc = *p;
3896 lp = p;
3897 }
3898 if (*p != '<') /* check for '<' under cursor */
3899 {
3900 if (lc != '<')
3901 return FALSE;
3902 p = lp;
3903 }
3904 }
3905 else
3906#endif
3907 {
3908 for (p = line + curwin->w_cursor.col; p > line; )
3909 {
3910 if (*p == '<') /* find '<' under/before cursor */
3911 break;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003912 MB_PTR_BACK(line, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003913 if (*p == '>') /* find '>' before cursor */
3914 break;
3915 }
3916 if (*p != '<')
3917 return FALSE;
3918 }
3919
3920 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003921 pos.col = (colnr_T)(p - line);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003922
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003923 MB_PTR_ADV(p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003924 if (end_tag)
3925 /* check that there is a '/' after the '<' */
3926 return *p == '/';
3927
3928 /* check that there is no '/' after the '<' */
3929 if (*p == '/')
3930 return FALSE;
3931
3932 /* check that the matching '>' is not preceded by '/' */
3933 for (;;)
3934 {
3935 if (inc(&pos) < 0)
3936 return FALSE;
3937 c = *ml_get_pos(&pos);
3938 if (c == '>')
3939 break;
3940 lc = c;
3941 }
3942 return lc != '/';
3943}
3944
3945/*
3946 * Find tag block under the cursor, cursor at end.
3947 */
3948 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003949current_tagblock(
3950 oparg_T *oap,
3951 long count_arg,
3952 int include) /* TRUE == include white space */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003953{
3954 long count = count_arg;
3955 long n;
3956 pos_T old_pos;
3957 pos_T start_pos;
3958 pos_T end_pos;
3959 pos_T old_start, old_end;
3960 char_u *spat, *epat;
3961 char_u *p;
3962 char_u *cp;
3963 int len;
3964 int r;
3965 int do_include = include;
3966 int save_p_ws = p_ws;
3967 int retval = FAIL;
Bram Moolenaarb6c27352015-03-05 19:57:49 +01003968 int is_inclusive = TRUE;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003969
3970 p_ws = FALSE;
3971
3972 old_pos = curwin->w_cursor;
3973 old_end = curwin->w_cursor; /* remember where we started */
3974 old_start = old_end;
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003975 if (!VIsual_active || *p_sel == 'e')
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003976 decl(&old_end); /* old_end is inclusive */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003977
3978 /*
Bram Moolenaar45360022005-07-21 21:08:21 +00003979 * If we start on "<aaa>" select that block.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003980 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003981 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003982 {
3983 setpcmark();
3984
3985 /* ignore indent */
3986 while (inindent(1))
3987 if (inc_cursor() != 0)
3988 break;
3989
3990 if (in_html_tag(FALSE))
3991 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003992 /* cursor on start tag, move to its '>' */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003993 while (*ml_get_cursor() != '>')
3994 if (inc_cursor() < 0)
3995 break;
3996 }
3997 else if (in_html_tag(TRUE))
3998 {
3999 /* cursor on end tag, move to just before it */
4000 while (*ml_get_cursor() != '<')
4001 if (dec_cursor() < 0)
4002 break;
4003 dec_cursor();
4004 old_end = curwin->w_cursor;
4005 }
4006 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004007 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004008 {
4009 old_start = VIsual;
4010 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
4011 }
4012 else
4013 old_end = VIsual;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004014
4015again:
4016 /*
4017 * Search backwards for unclosed "<aaa>".
4018 * Put this position in start_pos.
4019 */
4020 for (n = 0; n < count; ++n)
4021 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004022 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)",
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004023 (char_u *)"",
Bram Moolenaar48570482017-10-30 21:48:41 +01004024 (char_u *)"</[^>]*>", BACKWARD, NULL, 0,
Bram Moolenaar76929292008-01-06 19:07:36 +00004025 NULL, (linenr_T)0, 0L) <= 0)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004026 {
4027 curwin->w_cursor = old_pos;
4028 goto theend;
4029 }
4030 }
4031 start_pos = curwin->w_cursor;
4032
4033 /*
4034 * Search for matching "</aaa>". First isolate the "aaa".
4035 */
4036 inc_cursor();
4037 p = ml_get_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01004038 for (cp = p; *cp != NUL && *cp != '>' && !VIM_ISWHITE(*cp); MB_PTR_ADV(cp))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004039 ;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004040 len = (int)(cp - p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004041 if (len == 0)
4042 {
4043 curwin->w_cursor = old_pos;
4044 goto theend;
4045 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004046 spat = alloc(len + 31);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004047 epat = alloc(len + 9);
4048 if (spat == NULL || epat == NULL)
4049 {
4050 vim_free(spat);
4051 vim_free(epat);
4052 curwin->w_cursor = old_pos;
4053 goto theend;
4054 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004055 sprintf((char *)spat, "<%.*s\\>\\%%(\\s\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004056 sprintf((char *)epat, "</%.*s>\\c", len, p);
4057
Bram Moolenaar48570482017-10-30 21:48:41 +01004058 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, NULL,
Bram Moolenaar76929292008-01-06 19:07:36 +00004059 0, NULL, (linenr_T)0, 0L);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004060
4061 vim_free(spat);
4062 vim_free(epat);
4063
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004064 if (r < 1 || LT_POS(curwin->w_cursor, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004065 {
4066 /* Can't find other end or it's before the previous end. Could be a
4067 * HTML tag that doesn't have a matching end. Search backwards for
4068 * another starting tag. */
4069 count = 1;
4070 curwin->w_cursor = start_pos;
4071 goto again;
4072 }
4073
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02004074 if (do_include)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004075 {
4076 /* Include up to the '>'. */
4077 while (*ml_get_cursor() != '>')
4078 if (inc_cursor() < 0)
4079 break;
4080 }
4081 else
4082 {
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004083 char_u *c = ml_get_cursor();
4084
4085 /* Exclude the '<' of the end tag.
4086 * If the closing tag is on new line, do not decrement cursor, but
4087 * make operation exclusive, so that the linefeed will be selected */
4088 if (*c == '<' && !VIsual_active && curwin->w_cursor.col == 0)
4089 /* do not decrement cursor */
4090 is_inclusive = FALSE;
4091 else if (*c == '<')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004092 dec_cursor();
4093 }
4094 end_pos = curwin->w_cursor;
4095
4096 if (!do_include)
4097 {
4098 /* Exclude the start tag. */
4099 curwin->w_cursor = start_pos;
4100 while (inc_cursor() >= 0)
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004101 if (*ml_get_cursor() == '>')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004102 {
4103 inc_cursor();
4104 start_pos = curwin->w_cursor;
4105 break;
4106 }
4107 curwin->w_cursor = end_pos;
4108
Bram Moolenaarb476cb72018-08-16 21:37:50 +02004109 // If we are in Visual mode and now have the same text as before set
4110 // "do_include" and try again.
4111 if (VIsual_active && EQUAL_POS(start_pos, old_start)
4112 && EQUAL_POS(end_pos, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004113 {
4114 do_include = TRUE;
4115 curwin->w_cursor = old_start;
4116 count = count_arg;
4117 goto again;
4118 }
4119 }
4120
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004121 if (VIsual_active)
4122 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004123 /* If the end is before the start there is no text between tags, select
4124 * the char under the cursor. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004125 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004126 curwin->w_cursor = start_pos;
4127 else if (*p_sel == 'e')
Bram Moolenaar8340dd92014-12-13 20:11:33 +01004128 inc_cursor();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004129 VIsual = start_pos;
4130 VIsual_mode = 'v';
4131 redraw_curbuf_later(INVERTED); /* update the inversion */
4132 showmode();
4133 }
4134 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004135 {
4136 oap->start = start_pos;
4137 oap->motion_type = MCHAR;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004138 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004139 {
4140 /* End is before the start: there is no text between tags; operate
4141 * on an empty area. */
4142 curwin->w_cursor = start_pos;
4143 oap->inclusive = FALSE;
4144 }
4145 else
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004146 oap->inclusive = is_inclusive;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004147 }
4148 retval = OK;
4149
4150theend:
4151 p_ws = save_p_ws;
4152 return retval;
4153}
4154
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004156current_par(
4157 oparg_T *oap,
4158 long count,
4159 int include, /* TRUE == include white space */
4160 int type) /* 'p' for paragraph, 'S' for section */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161{
4162 linenr_T start_lnum;
4163 linenr_T end_lnum;
4164 int white_in_front;
4165 int dir;
4166 int start_is_white;
4167 int prev_start_is_white;
4168 int retval = OK;
4169 int do_white = FALSE;
4170 int t;
4171 int i;
4172
4173 if (type == 'S') /* not implemented yet */
4174 return FAIL;
4175
4176 start_lnum = curwin->w_cursor.lnum;
4177
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 /*
4179 * When visual area is more than one line: extend it.
4180 */
4181 if (VIsual_active && start_lnum != VIsual.lnum)
4182 {
4183extend:
4184 if (start_lnum < VIsual.lnum)
4185 dir = BACKWARD;
4186 else
4187 dir = FORWARD;
4188 for (i = count; --i >= 0; )
4189 {
4190 if (start_lnum ==
4191 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
4192 {
4193 retval = FAIL;
4194 break;
4195 }
4196
4197 prev_start_is_white = -1;
4198 for (t = 0; t < 2; ++t)
4199 {
4200 start_lnum += dir;
4201 start_is_white = linewhite(start_lnum);
4202 if (prev_start_is_white == start_is_white)
4203 {
4204 start_lnum -= dir;
4205 break;
4206 }
4207 for (;;)
4208 {
4209 if (start_lnum == (dir == BACKWARD
4210 ? 1 : curbuf->b_ml.ml_line_count))
4211 break;
4212 if (start_is_white != linewhite(start_lnum + dir)
4213 || (!start_is_white
4214 && startPS(start_lnum + (dir > 0
4215 ? 1 : 0), 0, 0)))
4216 break;
4217 start_lnum += dir;
4218 }
4219 if (!include)
4220 break;
4221 if (start_lnum == (dir == BACKWARD
4222 ? 1 : curbuf->b_ml.ml_line_count))
4223 break;
4224 prev_start_is_white = start_is_white;
4225 }
4226 }
4227 curwin->w_cursor.lnum = start_lnum;
4228 curwin->w_cursor.col = 0;
4229 return retval;
4230 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231
4232 /*
4233 * First move back to the start_lnum of the paragraph or white lines
4234 */
4235 white_in_front = linewhite(start_lnum);
4236 while (start_lnum > 1)
4237 {
4238 if (white_in_front) /* stop at first white line */
4239 {
4240 if (!linewhite(start_lnum - 1))
4241 break;
4242 }
4243 else /* stop at first non-white line of start of paragraph */
4244 {
4245 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
4246 break;
4247 }
4248 --start_lnum;
4249 }
4250
4251 /*
4252 * Move past the end of any white lines.
4253 */
4254 end_lnum = start_lnum;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004255 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
4256 ++end_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257
4258 --end_lnum;
4259 i = count;
4260 if (!include && white_in_front)
4261 --i;
4262 while (i--)
4263 {
4264 if (end_lnum == curbuf->b_ml.ml_line_count)
4265 return FAIL;
4266
4267 if (!include)
4268 do_white = linewhite(end_lnum + 1);
4269
4270 if (include || !do_white)
4271 {
4272 ++end_lnum;
4273 /*
4274 * skip to end of paragraph
4275 */
4276 while (end_lnum < curbuf->b_ml.ml_line_count
4277 && !linewhite(end_lnum + 1)
4278 && !startPS(end_lnum + 1, 0, 0))
4279 ++end_lnum;
4280 }
4281
4282 if (i == 0 && white_in_front && include)
4283 break;
4284
4285 /*
4286 * skip to end of white lines after paragraph
4287 */
4288 if (include || do_white)
4289 while (end_lnum < curbuf->b_ml.ml_line_count
4290 && linewhite(end_lnum + 1))
4291 ++end_lnum;
4292 }
4293
4294 /*
4295 * If there are no empty lines at the end, try to find some empty lines at
4296 * the start (unless that has been done already).
4297 */
4298 if (!white_in_front && !linewhite(end_lnum) && include)
4299 while (start_lnum > 1 && linewhite(start_lnum - 1))
4300 --start_lnum;
4301
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 if (VIsual_active)
4303 {
4304 /* Problem: when doing "Vipipip" nothing happens in a single white
4305 * line, we get stuck there. Trap this here. */
4306 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4307 goto extend;
Bram Moolenaar84b2a382017-02-17 11:40:00 +01004308 if (VIsual.lnum != start_lnum)
4309 {
4310 VIsual.lnum = start_lnum;
4311 VIsual.col = 0;
4312 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313 VIsual_mode = 'V';
4314 redraw_curbuf_later(INVERTED); /* update the inversion */
4315 showmode();
4316 }
4317 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 {
4319 oap->start.lnum = start_lnum;
4320 oap->start.col = 0;
4321 oap->motion_type = MLINE;
4322 }
4323 curwin->w_cursor.lnum = end_lnum;
4324 curwin->w_cursor.col = 0;
4325
4326 return OK;
4327}
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004328
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01004329static int find_next_quote(char_u *top_ptr, int col, int quotechar, char_u *escape);
4330static int find_prev_quote(char_u *line, int col_start, int quotechar, char_u *escape);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004331
4332/*
4333 * Search quote char from string line[col].
4334 * Quote character escaped by one of the characters in "escape" is not counted
4335 * as a quote.
4336 * Returns column number of "quotechar" or -1 when not found.
4337 */
4338 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004339find_next_quote(
4340 char_u *line,
4341 int col,
4342 int quotechar,
4343 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004344{
4345 int c;
4346
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004347 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004348 {
4349 c = line[col];
4350 if (c == NUL)
4351 return -1;
4352 else if (escape != NULL && vim_strchr(escape, c))
4353 ++col;
4354 else if (c == quotechar)
4355 break;
4356#ifdef FEAT_MBYTE
4357 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004358 col += (*mb_ptr2len)(line + col);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004359 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004361 ++col;
4362 }
4363 return col;
4364}
4365
4366/*
4367 * Search backwards in "line" from column "col_start" to find "quotechar".
4368 * Quote character escaped by one of the characters in "escape" is not counted
4369 * as a quote.
4370 * Return the found column or zero.
4371 */
4372 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004373find_prev_quote(
4374 char_u *line,
4375 int col_start,
4376 int quotechar,
4377 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004378{
4379 int n;
4380
4381 while (col_start > 0)
4382 {
4383 --col_start;
4384#ifdef FEAT_MBYTE
4385 col_start -= (*mb_head_off)(line, line + col_start);
4386#endif
4387 n = 0;
4388 if (escape != NULL)
4389 while (col_start - n > 0 && vim_strchr(escape,
4390 line[col_start - n - 1]) != NULL)
4391 ++n;
4392 if (n & 1)
4393 col_start -= n; /* uneven number of escape chars, skip it */
4394 else if (line[col_start] == quotechar)
4395 break;
4396 }
4397 return col_start;
4398}
4399
4400/*
4401 * Find quote under the cursor, cursor at end.
4402 * Returns TRUE if found, else FALSE.
4403 */
4404 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004405current_quote(
4406 oparg_T *oap,
4407 long count,
4408 int include, /* TRUE == include quote char */
4409 int quotechar) /* Quote character */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004410{
4411 char_u *line = ml_get_curline();
4412 int col_end;
4413 int col_start = curwin->w_cursor.col;
4414 int inclusive = FALSE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004415 int vis_empty = TRUE; /* Visual selection <= 1 char */
4416 int vis_bef_curs = FALSE; /* Visual starts before cursor */
Bram Moolenaarab194812005-09-14 21:40:12 +00004417 int inside_quotes = FALSE; /* Looks like "i'" done before */
4418 int selected_quote = FALSE; /* Has quote inside selection */
4419 int i;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004420
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004421 /* Correct cursor when 'selection' is "exclusive". */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004422 if (VIsual_active)
4423 {
Bram Moolenaar46522af2017-02-18 23:12:01 +01004424 /* this only works within one line */
4425 if (VIsual.lnum != curwin->w_cursor.lnum)
4426 return FALSE;
4427
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004428 vis_bef_curs = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004429 if (*p_sel == 'e')
4430 {
4431 if (!vis_bef_curs)
4432 {
4433 /* VIsual needs to be start of Visual selection. */
4434 pos_T t = curwin->w_cursor;
4435
4436 curwin->w_cursor = VIsual;
4437 VIsual = t;
4438 vis_bef_curs = TRUE;
4439 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004440 dec_cursor();
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004441 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004442 vis_empty = EQUAL_POS(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004443 }
Bram Moolenaarab194812005-09-14 21:40:12 +00004444
4445 if (!vis_empty)
4446 {
4447 /* Check if the existing selection exactly spans the text inside
4448 * quotes. */
4449 if (vis_bef_curs)
4450 {
4451 inside_quotes = VIsual.col > 0
4452 && line[VIsual.col - 1] == quotechar
4453 && line[curwin->w_cursor.col] != NUL
4454 && line[curwin->w_cursor.col + 1] == quotechar;
4455 i = VIsual.col;
4456 col_end = curwin->w_cursor.col;
4457 }
4458 else
4459 {
4460 inside_quotes = curwin->w_cursor.col > 0
4461 && line[curwin->w_cursor.col - 1] == quotechar
4462 && line[VIsual.col] != NUL
4463 && line[VIsual.col + 1] == quotechar;
4464 i = curwin->w_cursor.col;
4465 col_end = VIsual.col;
4466 }
4467
4468 /* Find out if we have a quote in the selection. */
4469 while (i <= col_end)
4470 if (line[i++] == quotechar)
4471 {
4472 selected_quote = TRUE;
4473 break;
4474 }
4475 }
4476
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004477 if (!vis_empty && line[col_start] == quotechar)
4478 {
4479 /* Already selecting something and on a quote character. Find the
4480 * next quoted string. */
4481 if (vis_bef_curs)
4482 {
4483 /* Assume we are on a closing quote: move to after the next
4484 * opening quote. */
4485 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4486 if (col_start < 0)
4487 return FALSE;
4488 col_end = find_next_quote(line, col_start + 1, quotechar,
4489 curbuf->b_p_qe);
4490 if (col_end < 0)
4491 {
4492 /* We were on a starting quote perhaps? */
4493 col_end = col_start;
4494 col_start = curwin->w_cursor.col;
4495 }
4496 }
4497 else
4498 {
4499 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4500 if (line[col_end] != quotechar)
4501 return FALSE;
4502 col_start = find_prev_quote(line, col_end, quotechar,
4503 curbuf->b_p_qe);
4504 if (line[col_start] != quotechar)
4505 {
4506 /* We were on an ending quote perhaps? */
4507 col_start = col_end;
4508 col_end = curwin->w_cursor.col;
4509 }
4510 }
4511 }
4512 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004513
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004514 if (line[col_start] == quotechar || !vis_empty)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004515 {
4516 int first_col = col_start;
4517
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004518 if (!vis_empty)
4519 {
4520 if (vis_bef_curs)
4521 first_col = find_next_quote(line, col_start, quotechar, NULL);
4522 else
4523 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4524 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004525
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004526 /* The cursor is on a quote, we don't know if it's the opening or
4527 * closing quote. Search from the start of the line to find out.
4528 * Also do this when there is a Visual area, a' may leave the cursor
4529 * in between two strings. */
4530 col_start = 0;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004531 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004532 {
4533 /* Find open quote character. */
4534 col_start = find_next_quote(line, col_start, quotechar, NULL);
4535 if (col_start < 0 || col_start > first_col)
4536 return FALSE;
4537 /* Find close quote character. */
4538 col_end = find_next_quote(line, col_start + 1, quotechar,
4539 curbuf->b_p_qe);
4540 if (col_end < 0)
4541 return FALSE;
4542 /* If is cursor between start and end quote character, it is
4543 * target text object. */
4544 if (col_start <= first_col && first_col <= col_end)
4545 break;
4546 col_start = col_end + 1;
4547 }
4548 }
4549 else
4550 {
4551 /* Search backward for a starting quote. */
4552 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4553 if (line[col_start] != quotechar)
4554 {
4555 /* No quote before the cursor, look after the cursor. */
4556 col_start = find_next_quote(line, col_start, quotechar, NULL);
4557 if (col_start < 0)
4558 return FALSE;
4559 }
4560
4561 /* Find close quote character. */
4562 col_end = find_next_quote(line, col_start + 1, quotechar,
4563 curbuf->b_p_qe);
4564 if (col_end < 0)
4565 return FALSE;
4566 }
4567
4568 /* When "include" is TRUE, include spaces after closing quote or before
4569 * the starting quote. */
4570 if (include)
4571 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004572 if (VIM_ISWHITE(line[col_end + 1]))
4573 while (VIM_ISWHITE(line[col_end + 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004574 ++col_end;
4575 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004576 while (col_start > 0 && VIM_ISWHITE(line[col_start - 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004577 --col_start;
4578 }
4579
Bram Moolenaarab194812005-09-14 21:40:12 +00004580 /* Set start position. After vi" another i" must include the ".
4581 * For v2i" include the quotes. */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004582 if (!include && count < 2 && (vis_empty || !inside_quotes))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004583 ++col_start;
4584 curwin->w_cursor.col = col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004585 if (VIsual_active)
4586 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004587 /* Set the start of the Visual area when the Visual area was empty, we
4588 * were just inside quotes or the Visual area didn't start at a quote
4589 * and didn't include a quote.
4590 */
4591 if (vis_empty
4592 || (vis_bef_curs
4593 && !selected_quote
4594 && (inside_quotes
4595 || (line[VIsual.col] != quotechar
4596 && (VIsual.col == 0
4597 || line[VIsual.col - 1] != quotechar)))))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004598 {
4599 VIsual = curwin->w_cursor;
4600 redraw_curbuf_later(INVERTED);
4601 }
4602 }
4603 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004604 {
4605 oap->start = curwin->w_cursor;
4606 oap->motion_type = MCHAR;
4607 }
4608
4609 /* Set end position. */
4610 curwin->w_cursor.col = col_end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004611 if ((include || count > 1 /* After vi" another i" must include the ". */
Bram Moolenaarab194812005-09-14 21:40:12 +00004612 || (!vis_empty && inside_quotes)
Bram Moolenaarab194812005-09-14 21:40:12 +00004613 ) && inc_cursor() == 2)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004614 inclusive = TRUE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004615 if (VIsual_active)
4616 {
4617 if (vis_empty || vis_bef_curs)
4618 {
4619 /* decrement cursor when 'selection' is not exclusive */
4620 if (*p_sel != 'e')
4621 dec_cursor();
4622 }
4623 else
4624 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004625 /* Cursor is at start of Visual area. Set the end of the Visual
4626 * area when it was just inside quotes or it didn't end at a
4627 * quote. */
4628 if (inside_quotes
4629 || (!selected_quote
4630 && line[VIsual.col] != quotechar
4631 && (line[VIsual.col] == NUL
4632 || line[VIsual.col + 1] != quotechar)))
4633 {
4634 dec_cursor();
4635 VIsual = curwin->w_cursor;
4636 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004637 curwin->w_cursor.col = col_start;
4638 }
4639 if (VIsual_mode == 'V')
4640 {
4641 VIsual_mode = 'v';
4642 redraw_cmdline = TRUE; /* show mode later */
4643 }
4644 }
4645 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004646 {
4647 /* Set inclusive and other oap's flags. */
4648 oap->inclusive = inclusive;
4649 }
4650
4651 return OK;
4652}
4653
4654#endif /* FEAT_TEXTOBJ */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004656static int is_one_char(char_u *pattern, int move, pos_T *cur, int direction);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004657
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004658/*
4659 * Find next search match under cursor, cursor at end.
4660 * Used while an operator is pending, and in Visual mode.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004661 */
4662 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004663current_search(
4664 long count,
4665 int forward) /* move forward or backwards */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004666{
4667 pos_T start_pos; /* position before the pattern */
4668 pos_T orig_pos; /* position of the cursor at beginning */
Bram Moolenaarbdb65792018-05-22 17:50:42 +02004669 pos_T first_match; /* position of first match */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004670 pos_T pos; /* position after the pattern */
4671 int i;
4672 int dir;
4673 int result; /* result of various function calls */
4674 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004675 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02004676 pos_T save_VIsual = VIsual;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004677 int one_char;
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004678 int direction = forward ? FORWARD : BACKWARD;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004679
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004680 /* wrapping should not occur */
4681 p_ws = FALSE;
4682
4683 /* Correct cursor when 'selection' is exclusive */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004684 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004685 dec_cursor();
4686
4687 if (VIsual_active)
4688 {
4689 orig_pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004690
4691 pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004692
4693 /* make sure, searching further will extend the match */
4694 if (VIsual_active)
4695 {
4696 if (forward)
4697 incl(&pos);
4698 else
4699 decl(&pos);
4700 }
4701 }
4702 else
Bram Moolenaar268a06c2016-04-21 09:07:01 +02004703 orig_pos = pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004704
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004705 /* Is the pattern is zero-width?, this time, don't care about the direction
4706 */
4707 one_char = is_one_char(spats[last_idx].pat, TRUE, &curwin->w_cursor,
4708 FORWARD);
Bram Moolenaare78495d2013-06-30 14:46:53 +02004709 if (one_char == -1)
Bram Moolenaarba2d44f2013-11-28 19:27:30 +01004710 {
4711 p_ws = old_p_ws;
4712 return FAIL; /* pattern not found */
4713 }
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004714
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004715 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004716 * The trick is to first search backwards and then search forward again,
4717 * so that a match at the current cursor position will be correctly
4718 * captured.
4719 */
4720 for (i = 0; i < 2; i++)
4721 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004722 if (forward)
4723 dir = i;
4724 else
4725 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004726
4727 flags = 0;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004728 if (!dir && !one_char)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004729 flags = SEARCH_END;
4730
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004731 result = searchit(curwin, curbuf, &pos, (dir ? FORWARD : BACKWARD),
4732 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004733 SEARCH_KEEP | flags, RE_SEARCH, 0, NULL, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004734
4735 /* First search may fail, but then start searching from the
4736 * beginning of the file (cursor might be on the search match)
4737 * except when Visual mode is active, so that extending the visual
4738 * selection works. */
4739 if (!result && i) /* not found, abort */
4740 {
4741 curwin->w_cursor = orig_pos;
4742 if (VIsual_active)
4743 VIsual = save_VIsual;
4744 p_ws = old_p_ws;
4745 return FAIL;
4746 }
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004747 else if (!i && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004748 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004749 if (forward)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004750 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004751 /* try again from start of buffer */
4752 CLEAR_POS(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004753 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004754 else
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004755 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004756 /* try again from end of buffer */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004757 /* searching backwards, so set pos to last line and col */
4758 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02004759 pos.col = (colnr_T)STRLEN(
4760 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004761 }
4762 }
Bram Moolenaarbdb65792018-05-22 17:50:42 +02004763 if (i == 0)
4764 first_match = pos;
Bram Moolenaarfcea03d2013-11-07 04:46:48 +01004765 p_ws = old_p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004766 }
4767
4768 start_pos = pos;
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004769 flags = forward ? SEARCH_END : SEARCH_START;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004770
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004771 /* Check again from the current cursor position,
4772 * since the next match might actually by only one char wide */
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004773 one_char = is_one_char(spats[last_idx].pat, FALSE, &pos, direction);
Bram Moolenaaradd8dce2017-06-05 19:56:04 +02004774 if (one_char < 0)
4775 /* search failed, abort */
4776 return FAIL;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004777
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004778 /* move to match, except for zero-width matches, in which case, we are
4779 * already on the next match */
Bram Moolenaare78495d2013-06-30 14:46:53 +02004780 if (!one_char)
Bram Moolenaarbdb65792018-05-22 17:50:42 +02004781 {
4782 p_ws = FALSE;
4783 for (i = 0; i < 2; i++)
4784 {
4785 result = searchit(curwin, curbuf, &pos, direction,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004786 spats[last_idx].pat, 0L, flags | SEARCH_KEEP, RE_SEARCH, 0,
4787 NULL, NULL);
Bram Moolenaarbdb65792018-05-22 17:50:42 +02004788 /* Search successfull, break out from the loop */
4789 if (result)
4790 break;
4791 /* search failed, try again from the last search position match */
4792 pos = first_match;
4793 }
4794 }
4795
4796 p_ws = old_p_ws;
4797 /* not found */
4798 if (!result)
4799 return FAIL;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004800
4801 if (!VIsual_active)
4802 VIsual = start_pos;
4803
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004804 curwin->w_cursor = pos;
4805 VIsual_active = TRUE;
4806 VIsual_mode = 'v';
4807
4808 if (VIsual_active)
4809 {
4810 redraw_curbuf_later(INVERTED); /* update the inversion */
Bram Moolenaar718f0072012-10-03 13:35:51 +02004811 if (*p_sel == 'e')
4812 {
4813 /* Correction for exclusive selection depends on the direction. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004814 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar718f0072012-10-03 13:35:51 +02004815 inc_cursor();
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004816 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual))
Bram Moolenaar718f0072012-10-03 13:35:51 +02004817 inc(&VIsual);
4818 }
4819
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004820 }
4821
4822#ifdef FEAT_FOLDING
4823 if (fdo_flags & FDO_SEARCH && KeyTyped)
4824 foldOpenCursor();
4825#endif
4826
4827 may_start_select('c');
4828#ifdef FEAT_MOUSE
4829 setmouse();
4830#endif
4831#ifdef FEAT_CLIPBOARD
4832 /* Make sure the clipboard gets updated. Needed because start and
4833 * end are still the same, and the selection needs to be owned */
4834 clip_star.vmode = NUL;
4835#endif
4836 redraw_curbuf_later(INVERTED);
4837 showmode();
4838
4839 return OK;
4840}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004841
4842/*
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004843 * Check if the pattern is one character long or zero-width.
Bram Moolenaaradd8dce2017-06-05 19:56:04 +02004844 * If move is TRUE, check from the beginning of the buffer, else from position
4845 * "cur".
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004846 * "direction" is FORWARD or BACKWARD.
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004847 * Returns TRUE, FALSE or -1 for failure.
4848 */
4849 static int
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004850is_one_char(char_u *pattern, int move, pos_T *cur, int direction)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004851{
4852 regmmatch_T regmatch;
4853 int nmatched = 0;
4854 int result = -1;
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004855 pos_T pos;
4856 int save_called_emsg = called_emsg;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004857 int flag = 0;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004858
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004859 if (pattern == NULL)
4860 pattern = spats[last_idx].pat;
4861
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004862 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
4863 SEARCH_KEEP, &regmatch) == FAIL)
4864 return -1;
4865
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004866 /* init startcol correctly */
4867 regmatch.startpos[0].col = -1;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004868 /* move to match */
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004869 if (move)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004870 {
4871 CLEAR_POS(&pos);
4872 }
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004873 else
4874 {
Bram Moolenaaradd8dce2017-06-05 19:56:04 +02004875 pos = *cur;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004876 /* accept a match at the cursor position */
4877 flag = SEARCH_START;
4878 }
4879
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004880 if (searchit(curwin, curbuf, &pos, direction, pattern, 1,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004881 SEARCH_KEEP + flag, RE_SEARCH, 0, NULL, NULL) != FAIL)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004882 {
4883 /* Zero-width pattern should match somewhere, then we can check if
4884 * start and end are in the same position. */
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004885 called_emsg = FALSE;
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004886 do
4887 {
4888 regmatch.startpos[0].col++;
4889 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004890 pos.lnum, regmatch.startpos[0].col, NULL, NULL);
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004891 if (!nmatched)
4892 break;
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004893 } while (direction == FORWARD ? regmatch.startpos[0].col < pos.col
4894 : regmatch.startpos[0].col > pos.col);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004895
4896 if (!called_emsg)
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004897 {
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004898 result = (nmatched != 0
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004899 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
4900 && regmatch.startpos[0].col == regmatch.endpos[0].col);
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004901 /* one char width */
4902 if (!result && inc(&pos) >= 0 && pos.col == regmatch.endpos[0].col)
4903 result = TRUE;
4904 }
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004905 }
4906
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004907 called_emsg |= save_called_emsg;
Bram Moolenaar473de612013-06-08 18:19:48 +02004908 vim_regfree(regmatch.regprog);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004909 return result;
4910}
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004911
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4913 || defined(PROTO)
4914/*
4915 * return TRUE if line 'lnum' is empty or has white chars only.
4916 */
4917 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004918linewhite(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919{
4920 char_u *p;
4921
4922 p = skipwhite(ml_get(lnum));
4923 return (*p == NUL);
4924}
4925#endif
4926
4927#if defined(FEAT_FIND_ID) || defined(PROTO)
4928/*
4929 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01004930 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004933find_pattern_in_path(
4934 char_u *ptr, /* pointer to search pattern */
4935 int dir UNUSED, /* direction of expansion */
4936 int len, /* length of search pattern */
4937 int whole, /* match whole words only */
4938 int skip_comments, /* don't match inside comments */
4939 int type, /* Type of search; are we looking for a type?
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 a macro? */
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004941 long count,
4942 int action, /* What to do when we find it */
4943 linenr_T start_lnum, /* first line to start searching */
4944 linenr_T end_lnum) /* last line for searching */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945{
4946 SearchedFile *files; /* Stack of included files */
4947 SearchedFile *bigger; /* When we need more space */
4948 int max_path_depth = 50;
4949 long match_count = 1;
4950
4951 char_u *pat;
4952 char_u *new_fname;
4953 char_u *curr_fname = curbuf->b_fname;
4954 char_u *prev_fname = NULL;
4955 linenr_T lnum;
4956 int depth;
4957 int depth_displayed; /* For type==CHECK_PATH */
4958 int old_files;
4959 int already_searched;
4960 char_u *file_line;
4961 char_u *line;
4962 char_u *p;
4963 char_u save_char;
4964 int define_matched;
4965 regmatch_T regmatch;
4966 regmatch_T incl_regmatch;
4967 regmatch_T def_regmatch;
4968 int matched = FALSE;
4969 int did_show = FALSE;
4970 int found = FALSE;
4971 int i;
4972 char_u *already = NULL;
4973 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004974 char_u *inc_opt = NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02004975#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 win_T *curwin_save = NULL;
4977#endif
4978
4979 regmatch.regprog = NULL;
4980 incl_regmatch.regprog = NULL;
4981 def_regmatch.regprog = NULL;
4982
4983 file_line = alloc(LSIZE);
4984 if (file_line == NULL)
4985 return;
4986
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 if (type != CHECK_PATH && type != FIND_DEFINE
4988#ifdef FEAT_INS_EXPAND
4989 /* when CONT_SOL is set compare "ptr" with the beginning of the line
4990 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004991 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992#endif
4993 )
4994 {
4995 pat = alloc(len + 5);
4996 if (pat == NULL)
4997 goto fpip_end;
4998 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
4999 /* ignore case according to p_ic, p_scs and pat */
5000 regmatch.rm_ic = ignorecase(pat);
5001 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
5002 vim_free(pat);
5003 if (regmatch.regprog == NULL)
5004 goto fpip_end;
5005 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005006 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
5007 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005009 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 if (incl_regmatch.regprog == NULL)
5011 goto fpip_end;
5012 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */
5013 }
5014 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
5015 {
5016 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
5017 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
5018 if (def_regmatch.regprog == NULL)
5019 goto fpip_end;
5020 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */
5021 }
5022 files = (SearchedFile *)lalloc_clear((long_u)
5023 (max_path_depth * sizeof(SearchedFile)), TRUE);
5024 if (files == NULL)
5025 goto fpip_end;
5026 old_files = max_path_depth;
5027 depth = depth_displayed = -1;
5028
5029 lnum = start_lnum;
5030 if (end_lnum > curbuf->b_ml.ml_line_count)
5031 end_lnum = curbuf->b_ml.ml_line_count;
5032 if (lnum > end_lnum) /* do at least one line */
5033 lnum = end_lnum;
5034 line = ml_get(lnum);
5035
5036 for (;;)
5037 {
5038 if (incl_regmatch.regprog != NULL
5039 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
5040 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005041 char_u *p_fname = (curr_fname == curbuf->b_fname)
5042 ? curbuf->b_ffname : curr_fname;
5043
5044 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
5045 /* Use text from '\zs' to '\ze' (or end) of 'include'. */
5046 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005047 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005048 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
5049 else
5050 /* Use text after match with 'include'. */
5051 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005052 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 already_searched = FALSE;
5054 if (new_fname != NULL)
5055 {
5056 /* Check whether we have already searched in this file */
5057 for (i = 0;; i++)
5058 {
5059 if (i == depth + 1)
5060 i = old_files;
5061 if (i == max_path_depth)
5062 break;
5063 if (fullpathcmp(new_fname, files[i].name, TRUE) & FPC_SAME)
5064 {
5065 if (type != CHECK_PATH &&
5066 action == ACTION_SHOW_ALL && files[i].matched)
5067 {
5068 msg_putchar('\n'); /* cursor below last one */
5069 if (!got_int) /* don't display if 'q'
5070 typed at "--more--"
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005071 message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 {
5073 msg_home_replace_hl(new_fname);
5074 MSG_PUTS(_(" (includes previously listed match)"));
5075 prev_fname = NULL;
5076 }
5077 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01005078 VIM_CLEAR(new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 already_searched = TRUE;
5080 break;
5081 }
5082 }
5083 }
5084
5085 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
5086 || (new_fname == NULL && !already_searched)))
5087 {
5088 if (did_show)
5089 msg_putchar('\n'); /* cursor below last one */
5090 else
5091 {
5092 gotocmdline(TRUE); /* cursor at status line */
5093 MSG_PUTS_TITLE(_("--- Included files "));
5094 if (action != ACTION_SHOW_ALL)
5095 MSG_PUTS_TITLE(_("not found "));
5096 MSG_PUTS_TITLE(_("in path ---\n"));
5097 }
5098 did_show = TRUE;
5099 while (depth_displayed < depth && !got_int)
5100 {
5101 ++depth_displayed;
5102 for (i = 0; i < depth_displayed; i++)
5103 MSG_PUTS(" ");
5104 msg_home_replace(files[depth_displayed].name);
5105 MSG_PUTS(" -->\n");
5106 }
5107 if (!got_int) /* don't display if 'q' typed
5108 for "--more--" message */
5109 {
5110 for (i = 0; i <= depth_displayed; i++)
5111 MSG_PUTS(" ");
5112 if (new_fname != NULL)
5113 {
5114 /* using "new_fname" is more reliable, e.g., when
5115 * 'includeexpr' is set. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005116 msg_outtrans_attr(new_fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 }
5118 else
5119 {
5120 /*
5121 * Isolate the file name.
5122 * Include the surrounding "" or <> if present.
5123 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005124 if (inc_opt != NULL
5125 && strstr((char *)inc_opt, "\\zs") != NULL)
5126 {
5127 /* pattern contains \zs, use the match */
5128 p = incl_regmatch.startp[0];
5129 i = (int)(incl_regmatch.endp[0]
5130 - incl_regmatch.startp[0]);
5131 }
5132 else
5133 {
5134 /* find the file name after the end of the match */
5135 for (p = incl_regmatch.endp[0];
5136 *p && !vim_isfilec(*p); p++)
5137 ;
5138 for (i = 0; vim_isfilec(p[i]); i++)
5139 ;
5140 }
5141
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 if (i == 0)
5143 {
5144 /* Nothing found, use the rest of the line. */
5145 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005146 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 }
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005148 /* Avoid checking before the start of the line, can
5149 * happen if \zs appears in the regexp. */
5150 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 {
5152 if (p[-1] == '"' || p[-1] == '<')
5153 {
5154 --p;
5155 ++i;
5156 }
5157 if (p[i] == '"' || p[i] == '>')
5158 ++i;
5159 }
5160 save_char = p[i];
5161 p[i] = NUL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01005162 msg_outtrans_attr(p, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163 p[i] = save_char;
5164 }
5165
5166 if (new_fname == NULL && action == ACTION_SHOW_ALL)
5167 {
5168 if (already_searched)
5169 MSG_PUTS(_(" (Already listed)"));
5170 else
5171 MSG_PUTS(_(" NOT FOUND"));
5172 }
5173 }
5174 out_flush(); /* output each line directly */
5175 }
5176
5177 if (new_fname != NULL)
5178 {
5179 /* Push the new file onto the file stack */
5180 if (depth + 1 == old_files)
5181 {
5182 bigger = (SearchedFile *)lalloc((long_u)(
5183 max_path_depth * 2 * sizeof(SearchedFile)), TRUE);
5184 if (bigger != NULL)
5185 {
5186 for (i = 0; i <= depth; i++)
5187 bigger[i] = files[i];
5188 for (i = depth + 1; i < old_files + max_path_depth; i++)
5189 {
5190 bigger[i].fp = NULL;
5191 bigger[i].name = NULL;
5192 bigger[i].lnum = 0;
5193 bigger[i].matched = FALSE;
5194 }
5195 for (i = old_files; i < max_path_depth; i++)
5196 bigger[i + max_path_depth] = files[i];
5197 old_files += max_path_depth;
5198 max_path_depth *= 2;
5199 vim_free(files);
5200 files = bigger;
5201 }
5202 }
5203 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
5204 == NULL)
5205 vim_free(new_fname);
5206 else
5207 {
5208 if (++depth == old_files)
5209 {
5210 /*
5211 * lalloc() for 'bigger' must have failed above. We
5212 * will forget one of our already visited files now.
5213 */
5214 vim_free(files[old_files].name);
5215 ++old_files;
5216 }
5217 files[depth].name = curr_fname = new_fname;
5218 files[depth].lnum = 0;
5219 files[depth].matched = FALSE;
5220#ifdef FEAT_INS_EXPAND
5221 if (action == ACTION_EXPAND)
5222 {
Bram Moolenaardf40adf2006-10-14 12:32:39 +00005223 msg_hist_off = TRUE; /* reset in msg_trunc_attr() */
Bram Moolenaar555b2802005-05-19 21:08:39 +00005224 vim_snprintf((char*)IObuff, IOSIZE,
5225 _("Scanning included file: %s"),
5226 (char *)new_fname);
Bram Moolenaar8820b482017-03-16 17:23:31 +01005227 msg_trunc_attr(IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228 }
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005229 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230#endif
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005231 if (p_verbose >= 5)
5232 {
5233 verbose_enter();
5234 smsg((char_u *)_("Searching included file %s"),
5235 (char *)new_fname);
5236 verbose_leave();
5237 }
5238
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239 }
5240 }
5241 }
5242 else
5243 {
5244 /*
5245 * Check if the line is a define (type == FIND_DEFINE)
5246 */
5247 p = line;
5248search_line:
5249 define_matched = FALSE;
5250 if (def_regmatch.regprog != NULL
5251 && vim_regexec(&def_regmatch, line, (colnr_T)0))
5252 {
5253 /*
5254 * Pattern must be first identifier after 'define', so skip
5255 * to that position before checking for match of pattern. Also
5256 * don't let it match beyond the end of this identifier.
5257 */
5258 p = def_regmatch.endp[0];
5259 while (*p && !vim_iswordc(*p))
5260 p++;
5261 define_matched = TRUE;
5262 }
5263
5264 /*
5265 * Look for a match. Don't do this if we are looking for a
5266 * define and this line didn't match define_prog above.
5267 */
5268 if (def_regmatch.regprog == NULL || define_matched)
5269 {
5270 if (define_matched
5271#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005272 || (compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273#endif
5274 )
5275 {
5276 /* compare the first "len" chars from "ptr" */
5277 startp = skipwhite(p);
5278 if (p_ic)
5279 matched = !MB_STRNICMP(startp, ptr, len);
5280 else
5281 matched = !STRNCMP(startp, ptr, len);
5282 if (matched && define_matched && whole
5283 && vim_iswordc(startp[len]))
5284 matched = FALSE;
5285 }
5286 else if (regmatch.regprog != NULL
5287 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
5288 {
5289 matched = TRUE;
5290 startp = regmatch.startp[0];
5291 /*
5292 * Check if the line is not a comment line (unless we are
5293 * looking for a define). A line starting with "# define"
5294 * is not considered to be a comment line.
5295 */
5296 if (!define_matched && skip_comments)
5297 {
5298#ifdef FEAT_COMMENTS
5299 if ((*line != '#' ||
5300 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02005301 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302 matched = FALSE;
5303
5304 /*
5305 * Also check for a "/ *" or "/ /" before the match.
5306 * Skips lines like "int backwards; / * normal index
5307 * * /" when looking for "normal".
5308 * Note: Doesn't skip "/ *" in comments.
5309 */
5310 p = skipwhite(line);
5311 if (matched
5312 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
5313#endif
5314 for (p = line; *p && p < startp; ++p)
5315 {
5316 if (matched
5317 && p[0] == '/'
5318 && (p[1] == '*' || p[1] == '/'))
5319 {
5320 matched = FALSE;
5321 /* After "//" all text is comment */
5322 if (p[1] == '/')
5323 break;
5324 ++p;
5325 }
5326 else if (!matched && p[0] == '*' && p[1] == '/')
5327 {
5328 /* Can find match after "* /". */
5329 matched = TRUE;
5330 ++p;
5331 }
5332 }
5333 }
5334 }
5335 }
5336 }
5337 if (matched)
5338 {
5339#ifdef FEAT_INS_EXPAND
5340 if (action == ACTION_EXPAND)
5341 {
5342 int reuse = 0;
5343 int add_r;
5344 char_u *aux;
5345
5346 if (depth == -1 && lnum == curwin->w_cursor.lnum)
5347 break;
5348 found = TRUE;
5349 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005350 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005352 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353 if (vim_iswordp(p))
5354 goto exit_matched;
5355 p = find_word_start(p);
5356 }
5357 p = find_word_end(p);
5358 i = (int)(p - aux);
5359
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005360 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005362 /* IOSIZE > compl_length, so the STRNCPY works */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00005364
5365 /* Get the next line: when "depth" < 0 from the current
5366 * buffer, otherwise from the included file. Jump to
5367 * exit_matched when past the last line. */
5368 if (depth < 0)
5369 {
5370 if (lnum >= end_lnum)
5371 goto exit_matched;
5372 line = ml_get(++lnum);
5373 }
5374 else if (vim_fgets(line = file_line,
5375 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 goto exit_matched;
5377
5378 /* we read a line, set "already" to check this "line" later
5379 * if depth >= 0 we'll increase files[depth].lnum far
5380 * bellow -- Acevedo */
5381 already = aux = p = skipwhite(line);
5382 p = find_word_start(p);
5383 p = find_word_end(p);
5384 if (p > aux)
5385 {
5386 if (*aux != ')' && IObuff[i-1] != TAB)
5387 {
5388 if (IObuff[i-1] != ' ')
5389 IObuff[i++] = ' ';
5390 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/
5391 if (p_js
5392 && (IObuff[i-2] == '.'
5393 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
5394 && (IObuff[i-2] == '?'
5395 || IObuff[i-2] == '!'))))
5396 IObuff[i++] = ' ';
5397 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005398 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399 if (p - aux >= IOSIZE - i)
5400 p = aux + IOSIZE - i - 1;
5401 STRNCPY(IObuff + i, aux, p - aux);
5402 i += (int)(p - aux);
5403 reuse |= CONT_S_IPOS;
5404 }
5405 IObuff[i] = NUL;
5406 aux = IObuff;
5407
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005408 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 goto exit_matched;
5410 }
5411
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005412 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 curr_fname == curbuf->b_fname ? NULL : curr_fname,
5414 dir, reuse);
5415 if (add_r == OK)
5416 /* if dir was BACKWARD then honor it just once */
5417 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005418 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005419 break;
5420 }
5421 else
5422#endif
5423 if (action == ACTION_SHOW_ALL)
5424 {
5425 found = TRUE;
5426 if (!did_show)
5427 gotocmdline(TRUE); /* cursor at status line */
5428 if (curr_fname != prev_fname)
5429 {
5430 if (did_show)
5431 msg_putchar('\n'); /* cursor below last one */
5432 if (!got_int) /* don't display if 'q' typed
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005433 at "--more--" message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434 msg_home_replace_hl(curr_fname);
5435 prev_fname = curr_fname;
5436 }
5437 did_show = TRUE;
5438 if (!got_int)
5439 show_pat_in_path(line, type, TRUE, action,
5440 (depth == -1) ? NULL : files[depth].fp,
5441 (depth == -1) ? &lnum : &files[depth].lnum,
5442 match_count++);
5443
5444 /* Set matched flag for this file and all the ones that
5445 * include it */
5446 for (i = 0; i <= depth; ++i)
5447 files[i].matched = TRUE;
5448 }
5449 else if (--count <= 0)
5450 {
5451 found = TRUE;
5452 if (depth == -1 && lnum == curwin->w_cursor.lnum
Bram Moolenaar4033c552017-09-16 20:54:51 +02005453#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 && g_do_tagpreview == 0
5455#endif
5456 )
5457 EMSG(_("E387: Match is on current line"));
5458 else if (action == ACTION_SHOW)
5459 {
5460 show_pat_in_path(line, type, did_show, action,
5461 (depth == -1) ? NULL : files[depth].fp,
5462 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
5463 did_show = TRUE;
5464 }
5465 else
5466 {
5467#ifdef FEAT_GUI
5468 need_mouse_correct = TRUE;
5469#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005470#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 /* ":psearch" uses the preview window */
5472 if (g_do_tagpreview != 0)
5473 {
5474 curwin_save = curwin;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005475 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 }
5477#endif
5478 if (action == ACTION_SPLIT)
5479 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005482 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 }
5484 if (depth == -1)
5485 {
5486 /* match in current file */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005487#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488 if (g_do_tagpreview != 0)
5489 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005490 if (!GETFILE_SUCCESS(getfile(
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005491 curwin_save->w_buffer->b_fnum, NULL,
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005492 NULL, TRUE, lnum, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 break; /* failed to jump to file */
5494 }
5495 else
5496#endif
5497 setpcmark();
5498 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005499 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500 }
5501 else
5502 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005503 if (!GETFILE_SUCCESS(getfile(
5504 0, files[depth].name, NULL, TRUE,
5505 files[depth].lnum, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506 break; /* failed to jump to file */
5507 /* autocommands may have changed the lnum, we don't
5508 * want that here */
5509 curwin->w_cursor.lnum = files[depth].lnum;
5510 }
5511 }
5512 if (action != ACTION_SHOW)
5513 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005514 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 curwin->w_set_curswant = TRUE;
5516 }
5517
Bram Moolenaar4033c552017-09-16 20:54:51 +02005518#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005520 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 {
5522 /* Return cursor to where we were */
5523 validate_cursor();
5524 redraw_later(VALID);
5525 win_enter(curwin_save, TRUE);
5526 }
5527#endif
5528 break;
5529 }
5530#ifdef FEAT_INS_EXPAND
5531exit_matched:
5532#endif
5533 matched = FALSE;
5534 /* look for other matches in the rest of the line if we
5535 * are not at the end of it already */
5536 if (def_regmatch.regprog == NULL
5537#ifdef FEAT_INS_EXPAND
5538 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005539 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540#endif
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005541 && *startp != NUL
Bram Moolenaar94c465c2012-07-19 17:18:26 +02005542 && *(p = startp + MB_PTR2LEN(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 goto search_line;
5544 }
5545 line_breakcheck();
5546#ifdef FEAT_INS_EXPAND
5547 if (action == ACTION_EXPAND)
Bram Moolenaar472e8592016-10-15 17:06:47 +02005548 ins_compl_check_keys(30, FALSE);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005549 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550#else
5551 if (got_int)
5552#endif
5553 break;
5554
5555 /*
5556 * Read the next line. When reading an included file and encountering
5557 * end-of-file, close the file and continue in the file that included
5558 * it.
5559 */
5560 while (depth >= 0 && !already
5561 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5562 {
5563 fclose(files[depth].fp);
5564 --old_files;
5565 files[old_files].name = files[depth].name;
5566 files[old_files].matched = files[depth].matched;
5567 --depth;
5568 curr_fname = (depth == -1) ? curbuf->b_fname
5569 : files[depth].name;
5570 if (depth < depth_displayed)
5571 depth_displayed = depth;
5572 }
5573 if (depth >= 0) /* we could read the line */
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005574 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 files[depth].lnum++;
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005576 /* Remove any CR and LF from the line. */
5577 i = (int)STRLEN(line);
5578 if (i > 0 && line[i - 1] == '\n')
5579 line[--i] = NUL;
5580 if (i > 0 && line[i - 1] == '\r')
5581 line[--i] = NUL;
5582 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 else if (!already)
5584 {
5585 if (++lnum > end_lnum)
5586 break;
5587 line = ml_get(lnum);
5588 }
5589 already = NULL;
5590 }
5591 /* End of big for (;;) loop. */
5592
5593 /* Close any files that are still open. */
5594 for (i = 0; i <= depth; i++)
5595 {
5596 fclose(files[i].fp);
5597 vim_free(files[i].name);
5598 }
5599 for (i = old_files; i < max_path_depth; i++)
5600 vim_free(files[i].name);
5601 vim_free(files);
5602
5603 if (type == CHECK_PATH)
5604 {
5605 if (!did_show)
5606 {
5607 if (action != ACTION_SHOW_ALL)
5608 MSG(_("All included files were found"));
5609 else
5610 MSG(_("No included files"));
5611 }
5612 }
5613 else if (!found
5614#ifdef FEAT_INS_EXPAND
5615 && action != ACTION_EXPAND
5616#endif
5617 )
5618 {
5619#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005620 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621#else
5622 if (got_int)
5623#endif
5624 EMSG(_(e_interr));
5625 else if (type == FIND_DEFINE)
5626 EMSG(_("E388: Couldn't find definition"));
5627 else
5628 EMSG(_("E389: Couldn't find pattern"));
5629 }
5630 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5631 msg_end();
5632
5633fpip_end:
5634 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02005635 vim_regfree(regmatch.regprog);
5636 vim_regfree(incl_regmatch.regprog);
5637 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638}
5639
5640 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005641show_pat_in_path(
5642 char_u *line,
5643 int type,
5644 int did_show,
5645 int action,
5646 FILE *fp,
5647 linenr_T *lnum,
5648 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649{
5650 char_u *p;
5651
5652 if (did_show)
5653 msg_putchar('\n'); /* cursor below last one */
Bram Moolenaar91170f82006-05-05 21:15:17 +00005654 else if (!msg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655 gotocmdline(TRUE); /* cursor at status line */
5656 if (got_int) /* 'q' typed at "--more--" message */
5657 return;
5658 for (;;)
5659 {
5660 p = line + STRLEN(line) - 1;
5661 if (fp != NULL)
5662 {
5663 /* We used fgets(), so get rid of newline at end */
5664 if (p >= line && *p == '\n')
5665 --p;
5666 if (p >= line && *p == '\r')
5667 --p;
5668 *(p + 1) = NUL;
5669 }
5670 if (action == ACTION_SHOW_ALL)
5671 {
5672 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */
5673 msg_puts(IObuff);
5674 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */
5675 /* Highlight line numbers */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005676 msg_puts_attr(IObuff, HL_ATTR(HLF_N));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 MSG_PUTS(" ");
5678 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005679 msg_prt_line(line, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005680 out_flush(); /* show one line at a time */
5681
5682 /* Definition continues until line that doesn't end with '\' */
5683 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5684 break;
5685
5686 if (fp != NULL)
5687 {
5688 if (vim_fgets(line, LSIZE, fp)) /* end of file */
5689 break;
5690 ++*lnum;
5691 }
5692 else
5693 {
5694 if (++*lnum > curbuf->b_ml.ml_line_count)
5695 break;
5696 line = ml_get(*lnum);
5697 }
5698 msg_putchar('\n');
5699 }
5700}
5701#endif
5702
5703#ifdef FEAT_VIMINFO
5704 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005705read_viminfo_search_pattern(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706{
5707 char_u *lp;
5708 int idx = -1;
5709 int magic = FALSE;
5710 int no_scs = FALSE;
5711 int off_line = FALSE;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005712 int off_end = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713 long off = 0;
5714 int setlast = FALSE;
5715#ifdef FEAT_SEARCH_EXTRA
5716 static int hlsearch_on = FALSE;
5717#endif
5718 char_u *val;
5719
5720 /*
5721 * Old line types:
5722 * "/pat", "&pat": search/subst. pat
5723 * "~/pat", "~&pat": last used search/subst. pat
5724 * New line types:
5725 * "~h", "~H": hlsearch highlighting off/on
5726 * "~<magic><smartcase><line><end><off><last><which>pat"
5727 * <magic>: 'm' off, 'M' on
5728 * <smartcase>: 's' off, 'S' on
5729 * <line>: 'L' line offset, 'l' char offset
5730 * <end>: 'E' from end, 'e' from start
5731 * <off>: decimal, offset
5732 * <last>: '~' last used pattern
5733 * <which>: '/' search pat, '&' subst. pat
5734 */
5735 lp = virp->vir_line;
5736 if (lp[0] == '~' && (lp[1] == 'm' || lp[1] == 'M')) /* new line type */
5737 {
5738 if (lp[1] == 'M') /* magic on */
5739 magic = TRUE;
5740 if (lp[2] == 's')
5741 no_scs = TRUE;
5742 if (lp[3] == 'L')
5743 off_line = TRUE;
5744 if (lp[4] == 'E')
Bram Moolenaared203462004-06-16 11:19:22 +00005745 off_end = SEARCH_END;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 lp += 5;
5747 off = getdigits(&lp);
5748 }
5749 if (lp[0] == '~') /* use this pattern for last-used pattern */
5750 {
5751 setlast = TRUE;
5752 lp++;
5753 }
5754 if (lp[0] == '/')
5755 idx = RE_SEARCH;
5756 else if (lp[0] == '&')
5757 idx = RE_SUBST;
5758#ifdef FEAT_SEARCH_EXTRA
5759 else if (lp[0] == 'h') /* ~h: 'hlsearch' highlighting off */
5760 hlsearch_on = FALSE;
5761 else if (lp[0] == 'H') /* ~H: 'hlsearch' highlighting on */
5762 hlsearch_on = TRUE;
5763#endif
5764 if (idx >= 0)
5765 {
5766 if (force || spats[idx].pat == NULL)
5767 {
5768 val = viminfo_readstring(virp, (int)(lp - virp->vir_line + 1),
5769 TRUE);
5770 if (val != NULL)
5771 {
5772 set_last_search_pat(val, idx, magic, setlast);
5773 vim_free(val);
5774 spats[idx].no_scs = no_scs;
5775 spats[idx].off.line = off_line;
5776 spats[idx].off.end = off_end;
5777 spats[idx].off.off = off;
5778#ifdef FEAT_SEARCH_EXTRA
5779 if (setlast)
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02005780 set_no_hlsearch(!hlsearch_on);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781#endif
5782 }
5783 }
5784 }
5785 return viminfo_readline(virp);
5786}
5787
5788 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005789write_viminfo_search_pattern(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790{
5791 if (get_viminfo_parameter('/') != 0)
5792 {
5793#ifdef FEAT_SEARCH_EXTRA
5794 fprintf(fp, "\n# hlsearch on (H) or off (h):\n~%c",
5795 (no_hlsearch || find_viminfo_parameter('h') != NULL) ? 'h' : 'H');
5796#endif
5797 wvsp_one(fp, RE_SEARCH, "", '/');
Bram Moolenaar9b228712008-07-18 10:05:58 +00005798 wvsp_one(fp, RE_SUBST, _("Substitute "), '&');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 }
5800}
5801
5802 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005803wvsp_one(
5804 FILE *fp, /* file to write to */
5805 int idx, /* spats[] index */
5806 char *s, /* search pat */
5807 int sc) /* dir char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808{
5809 if (spats[idx].pat != NULL)
5810 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005811 fprintf(fp, _("\n# Last %sSearch Pattern:\n~"), s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812 /* off.dir is not stored, it's reset to forward */
5813 fprintf(fp, "%c%c%c%c%ld%s%c",
5814 spats[idx].magic ? 'M' : 'm', /* magic */
5815 spats[idx].no_scs ? 's' : 'S', /* smartcase */
5816 spats[idx].off.line ? 'L' : 'l', /* line offset */
5817 spats[idx].off.end ? 'E' : 'e', /* offset from end */
5818 spats[idx].off.off, /* offset */
5819 last_idx == idx ? "~" : "", /* last used pat */
5820 sc);
5821 viminfo_writestring(fp, spats[idx].pat);
5822 }
5823}
5824#endif /* FEAT_VIMINFO */