blob: a34636227a8436143fabcd474ff44085b9cd3a84 [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 Moolenaar8050efa2013-11-08 04:30:20 +0100296 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 Moolenaar8050efa2013-11-08 04:30:20 +0100339 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;
390 SET_NO_HLSEARCH(saved_no_hlsearch);
391}
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 Moolenaar8050efa2013-11-08 04:30:20 +01001285 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/*
2710 * findsent(dir, count) - Find the start of the next sentence in direction
Bram Moolenaarebefac62005-12-28 22:39:57 +00002711 * "dir" Sentences are supposed to end in ".", "!" or "?" followed by white
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 * space or a line break. Also stop at an empty line.
2713 * Return OK if the next sentence was found.
2714 */
2715 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002716findsent(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717{
2718 pos_T pos, tpos;
2719 int c;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002720 int (*func)(pos_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 int startlnum;
2722 int noskip = FALSE; /* do not skip blanks */
2723 int cpo_J;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002724 int found_dot;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725
2726 pos = curwin->w_cursor;
2727 if (dir == FORWARD)
2728 func = incl;
2729 else
2730 func = decl;
2731
2732 while (count--)
2733 {
2734 /*
2735 * if on an empty line, skip upto a non-empty line
2736 */
2737 if (gchar_pos(&pos) == NUL)
2738 {
2739 do
2740 if ((*func)(&pos) == -1)
2741 break;
2742 while (gchar_pos(&pos) == NUL);
2743 if (dir == FORWARD)
2744 goto found;
2745 }
2746 /*
2747 * if on the start of a paragraph or a section and searching forward,
2748 * go to the next line
2749 */
2750 else if (dir == FORWARD && pos.col == 0 &&
2751 startPS(pos.lnum, NUL, FALSE))
2752 {
2753 if (pos.lnum == curbuf->b_ml.ml_line_count)
2754 return FAIL;
2755 ++pos.lnum;
2756 goto found;
2757 }
2758 else if (dir == BACKWARD)
2759 decl(&pos);
2760
2761 /* go back to the previous non-blank char */
Bram Moolenaardef9e822004-12-31 20:58:58 +00002762 found_dot = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 while ((c = gchar_pos(&pos)) == ' ' || c == '\t' ||
2764 (dir == BACKWARD && vim_strchr((char_u *)".!?)]\"'", c) != NULL))
2765 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00002766 if (vim_strchr((char_u *)".!?", c) != NULL)
2767 {
2768 /* Only skip over a '.', '!' and '?' once. */
2769 if (found_dot)
2770 break;
2771 found_dot = TRUE;
2772 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 if (decl(&pos) == -1)
2774 break;
2775 /* when going forward: Stop in front of empty line */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002776 if (LINEEMPTY(pos.lnum) && dir == FORWARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 {
2778 incl(&pos);
2779 goto found;
2780 }
2781 }
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 Moolenaar45360022005-07-21 21:08:21 +00004109 /* If we now have the same text as before reset "do_include" and try
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004110 * again. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004111 if (EQUAL_POS(start_pos, old_start) && EQUAL_POS(end_pos, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004112 {
4113 do_include = TRUE;
4114 curwin->w_cursor = old_start;
4115 count = count_arg;
4116 goto again;
4117 }
4118 }
4119
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004120 if (VIsual_active)
4121 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004122 /* If the end is before the start there is no text between tags, select
4123 * the char under the cursor. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004124 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004125 curwin->w_cursor = start_pos;
4126 else if (*p_sel == 'e')
Bram Moolenaar8340dd92014-12-13 20:11:33 +01004127 inc_cursor();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004128 VIsual = start_pos;
4129 VIsual_mode = 'v';
4130 redraw_curbuf_later(INVERTED); /* update the inversion */
4131 showmode();
4132 }
4133 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004134 {
4135 oap->start = start_pos;
4136 oap->motion_type = MCHAR;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004137 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004138 {
4139 /* End is before the start: there is no text between tags; operate
4140 * on an empty area. */
4141 curwin->w_cursor = start_pos;
4142 oap->inclusive = FALSE;
4143 }
4144 else
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004145 oap->inclusive = is_inclusive;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004146 }
4147 retval = OK;
4148
4149theend:
4150 p_ws = save_p_ws;
4151 return retval;
4152}
4153
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004155current_par(
4156 oparg_T *oap,
4157 long count,
4158 int include, /* TRUE == include white space */
4159 int type) /* 'p' for paragraph, 'S' for section */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160{
4161 linenr_T start_lnum;
4162 linenr_T end_lnum;
4163 int white_in_front;
4164 int dir;
4165 int start_is_white;
4166 int prev_start_is_white;
4167 int retval = OK;
4168 int do_white = FALSE;
4169 int t;
4170 int i;
4171
4172 if (type == 'S') /* not implemented yet */
4173 return FAIL;
4174
4175 start_lnum = curwin->w_cursor.lnum;
4176
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 /*
4178 * When visual area is more than one line: extend it.
4179 */
4180 if (VIsual_active && start_lnum != VIsual.lnum)
4181 {
4182extend:
4183 if (start_lnum < VIsual.lnum)
4184 dir = BACKWARD;
4185 else
4186 dir = FORWARD;
4187 for (i = count; --i >= 0; )
4188 {
4189 if (start_lnum ==
4190 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
4191 {
4192 retval = FAIL;
4193 break;
4194 }
4195
4196 prev_start_is_white = -1;
4197 for (t = 0; t < 2; ++t)
4198 {
4199 start_lnum += dir;
4200 start_is_white = linewhite(start_lnum);
4201 if (prev_start_is_white == start_is_white)
4202 {
4203 start_lnum -= dir;
4204 break;
4205 }
4206 for (;;)
4207 {
4208 if (start_lnum == (dir == BACKWARD
4209 ? 1 : curbuf->b_ml.ml_line_count))
4210 break;
4211 if (start_is_white != linewhite(start_lnum + dir)
4212 || (!start_is_white
4213 && startPS(start_lnum + (dir > 0
4214 ? 1 : 0), 0, 0)))
4215 break;
4216 start_lnum += dir;
4217 }
4218 if (!include)
4219 break;
4220 if (start_lnum == (dir == BACKWARD
4221 ? 1 : curbuf->b_ml.ml_line_count))
4222 break;
4223 prev_start_is_white = start_is_white;
4224 }
4225 }
4226 curwin->w_cursor.lnum = start_lnum;
4227 curwin->w_cursor.col = 0;
4228 return retval;
4229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230
4231 /*
4232 * First move back to the start_lnum of the paragraph or white lines
4233 */
4234 white_in_front = linewhite(start_lnum);
4235 while (start_lnum > 1)
4236 {
4237 if (white_in_front) /* stop at first white line */
4238 {
4239 if (!linewhite(start_lnum - 1))
4240 break;
4241 }
4242 else /* stop at first non-white line of start of paragraph */
4243 {
4244 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
4245 break;
4246 }
4247 --start_lnum;
4248 }
4249
4250 /*
4251 * Move past the end of any white lines.
4252 */
4253 end_lnum = start_lnum;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004254 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
4255 ++end_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256
4257 --end_lnum;
4258 i = count;
4259 if (!include && white_in_front)
4260 --i;
4261 while (i--)
4262 {
4263 if (end_lnum == curbuf->b_ml.ml_line_count)
4264 return FAIL;
4265
4266 if (!include)
4267 do_white = linewhite(end_lnum + 1);
4268
4269 if (include || !do_white)
4270 {
4271 ++end_lnum;
4272 /*
4273 * skip to end of paragraph
4274 */
4275 while (end_lnum < curbuf->b_ml.ml_line_count
4276 && !linewhite(end_lnum + 1)
4277 && !startPS(end_lnum + 1, 0, 0))
4278 ++end_lnum;
4279 }
4280
4281 if (i == 0 && white_in_front && include)
4282 break;
4283
4284 /*
4285 * skip to end of white lines after paragraph
4286 */
4287 if (include || do_white)
4288 while (end_lnum < curbuf->b_ml.ml_line_count
4289 && linewhite(end_lnum + 1))
4290 ++end_lnum;
4291 }
4292
4293 /*
4294 * If there are no empty lines at the end, try to find some empty lines at
4295 * the start (unless that has been done already).
4296 */
4297 if (!white_in_front && !linewhite(end_lnum) && include)
4298 while (start_lnum > 1 && linewhite(start_lnum - 1))
4299 --start_lnum;
4300
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301 if (VIsual_active)
4302 {
4303 /* Problem: when doing "Vipipip" nothing happens in a single white
4304 * line, we get stuck there. Trap this here. */
4305 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4306 goto extend;
Bram Moolenaar84b2a382017-02-17 11:40:00 +01004307 if (VIsual.lnum != start_lnum)
4308 {
4309 VIsual.lnum = start_lnum;
4310 VIsual.col = 0;
4311 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312 VIsual_mode = 'V';
4313 redraw_curbuf_later(INVERTED); /* update the inversion */
4314 showmode();
4315 }
4316 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 {
4318 oap->start.lnum = start_lnum;
4319 oap->start.col = 0;
4320 oap->motion_type = MLINE;
4321 }
4322 curwin->w_cursor.lnum = end_lnum;
4323 curwin->w_cursor.col = 0;
4324
4325 return OK;
4326}
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004327
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01004328static int find_next_quote(char_u *top_ptr, int col, int quotechar, char_u *escape);
4329static int find_prev_quote(char_u *line, int col_start, int quotechar, char_u *escape);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004330
4331/*
4332 * Search quote char from string line[col].
4333 * Quote character escaped by one of the characters in "escape" is not counted
4334 * as a quote.
4335 * Returns column number of "quotechar" or -1 when not found.
4336 */
4337 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004338find_next_quote(
4339 char_u *line,
4340 int col,
4341 int quotechar,
4342 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004343{
4344 int c;
4345
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004346 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004347 {
4348 c = line[col];
4349 if (c == NUL)
4350 return -1;
4351 else if (escape != NULL && vim_strchr(escape, c))
4352 ++col;
4353 else if (c == quotechar)
4354 break;
4355#ifdef FEAT_MBYTE
4356 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004357 col += (*mb_ptr2len)(line + col);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004358 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004360 ++col;
4361 }
4362 return col;
4363}
4364
4365/*
4366 * Search backwards in "line" from column "col_start" to find "quotechar".
4367 * Quote character escaped by one of the characters in "escape" is not counted
4368 * as a quote.
4369 * Return the found column or zero.
4370 */
4371 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004372find_prev_quote(
4373 char_u *line,
4374 int col_start,
4375 int quotechar,
4376 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004377{
4378 int n;
4379
4380 while (col_start > 0)
4381 {
4382 --col_start;
4383#ifdef FEAT_MBYTE
4384 col_start -= (*mb_head_off)(line, line + col_start);
4385#endif
4386 n = 0;
4387 if (escape != NULL)
4388 while (col_start - n > 0 && vim_strchr(escape,
4389 line[col_start - n - 1]) != NULL)
4390 ++n;
4391 if (n & 1)
4392 col_start -= n; /* uneven number of escape chars, skip it */
4393 else if (line[col_start] == quotechar)
4394 break;
4395 }
4396 return col_start;
4397}
4398
4399/*
4400 * Find quote under the cursor, cursor at end.
4401 * Returns TRUE if found, else FALSE.
4402 */
4403 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004404current_quote(
4405 oparg_T *oap,
4406 long count,
4407 int include, /* TRUE == include quote char */
4408 int quotechar) /* Quote character */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004409{
4410 char_u *line = ml_get_curline();
4411 int col_end;
4412 int col_start = curwin->w_cursor.col;
4413 int inclusive = FALSE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004414 int vis_empty = TRUE; /* Visual selection <= 1 char */
4415 int vis_bef_curs = FALSE; /* Visual starts before cursor */
Bram Moolenaarab194812005-09-14 21:40:12 +00004416 int inside_quotes = FALSE; /* Looks like "i'" done before */
4417 int selected_quote = FALSE; /* Has quote inside selection */
4418 int i;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004419
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004420 /* Correct cursor when 'selection' is "exclusive". */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004421 if (VIsual_active)
4422 {
Bram Moolenaar46522af2017-02-18 23:12:01 +01004423 /* this only works within one line */
4424 if (VIsual.lnum != curwin->w_cursor.lnum)
4425 return FALSE;
4426
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004427 vis_bef_curs = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004428 if (*p_sel == 'e')
4429 {
4430 if (!vis_bef_curs)
4431 {
4432 /* VIsual needs to be start of Visual selection. */
4433 pos_T t = curwin->w_cursor;
4434
4435 curwin->w_cursor = VIsual;
4436 VIsual = t;
4437 vis_bef_curs = TRUE;
4438 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004439 dec_cursor();
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004440 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004441 vis_empty = EQUAL_POS(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004442 }
Bram Moolenaarab194812005-09-14 21:40:12 +00004443
4444 if (!vis_empty)
4445 {
4446 /* Check if the existing selection exactly spans the text inside
4447 * quotes. */
4448 if (vis_bef_curs)
4449 {
4450 inside_quotes = VIsual.col > 0
4451 && line[VIsual.col - 1] == quotechar
4452 && line[curwin->w_cursor.col] != NUL
4453 && line[curwin->w_cursor.col + 1] == quotechar;
4454 i = VIsual.col;
4455 col_end = curwin->w_cursor.col;
4456 }
4457 else
4458 {
4459 inside_quotes = curwin->w_cursor.col > 0
4460 && line[curwin->w_cursor.col - 1] == quotechar
4461 && line[VIsual.col] != NUL
4462 && line[VIsual.col + 1] == quotechar;
4463 i = curwin->w_cursor.col;
4464 col_end = VIsual.col;
4465 }
4466
4467 /* Find out if we have a quote in the selection. */
4468 while (i <= col_end)
4469 if (line[i++] == quotechar)
4470 {
4471 selected_quote = TRUE;
4472 break;
4473 }
4474 }
4475
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004476 if (!vis_empty && line[col_start] == quotechar)
4477 {
4478 /* Already selecting something and on a quote character. Find the
4479 * next quoted string. */
4480 if (vis_bef_curs)
4481 {
4482 /* Assume we are on a closing quote: move to after the next
4483 * opening quote. */
4484 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4485 if (col_start < 0)
4486 return FALSE;
4487 col_end = find_next_quote(line, col_start + 1, quotechar,
4488 curbuf->b_p_qe);
4489 if (col_end < 0)
4490 {
4491 /* We were on a starting quote perhaps? */
4492 col_end = col_start;
4493 col_start = curwin->w_cursor.col;
4494 }
4495 }
4496 else
4497 {
4498 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4499 if (line[col_end] != quotechar)
4500 return FALSE;
4501 col_start = find_prev_quote(line, col_end, quotechar,
4502 curbuf->b_p_qe);
4503 if (line[col_start] != quotechar)
4504 {
4505 /* We were on an ending quote perhaps? */
4506 col_start = col_end;
4507 col_end = curwin->w_cursor.col;
4508 }
4509 }
4510 }
4511 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004512
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004513 if (line[col_start] == quotechar || !vis_empty)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004514 {
4515 int first_col = col_start;
4516
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004517 if (!vis_empty)
4518 {
4519 if (vis_bef_curs)
4520 first_col = find_next_quote(line, col_start, quotechar, NULL);
4521 else
4522 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4523 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004524
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004525 /* The cursor is on a quote, we don't know if it's the opening or
4526 * closing quote. Search from the start of the line to find out.
4527 * Also do this when there is a Visual area, a' may leave the cursor
4528 * in between two strings. */
4529 col_start = 0;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004530 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004531 {
4532 /* Find open quote character. */
4533 col_start = find_next_quote(line, col_start, quotechar, NULL);
4534 if (col_start < 0 || col_start > first_col)
4535 return FALSE;
4536 /* Find close quote character. */
4537 col_end = find_next_quote(line, col_start + 1, quotechar,
4538 curbuf->b_p_qe);
4539 if (col_end < 0)
4540 return FALSE;
4541 /* If is cursor between start and end quote character, it is
4542 * target text object. */
4543 if (col_start <= first_col && first_col <= col_end)
4544 break;
4545 col_start = col_end + 1;
4546 }
4547 }
4548 else
4549 {
4550 /* Search backward for a starting quote. */
4551 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4552 if (line[col_start] != quotechar)
4553 {
4554 /* No quote before the cursor, look after the cursor. */
4555 col_start = find_next_quote(line, col_start, quotechar, NULL);
4556 if (col_start < 0)
4557 return FALSE;
4558 }
4559
4560 /* Find close quote character. */
4561 col_end = find_next_quote(line, col_start + 1, quotechar,
4562 curbuf->b_p_qe);
4563 if (col_end < 0)
4564 return FALSE;
4565 }
4566
4567 /* When "include" is TRUE, include spaces after closing quote or before
4568 * the starting quote. */
4569 if (include)
4570 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004571 if (VIM_ISWHITE(line[col_end + 1]))
4572 while (VIM_ISWHITE(line[col_end + 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004573 ++col_end;
4574 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004575 while (col_start > 0 && VIM_ISWHITE(line[col_start - 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004576 --col_start;
4577 }
4578
Bram Moolenaarab194812005-09-14 21:40:12 +00004579 /* Set start position. After vi" another i" must include the ".
4580 * For v2i" include the quotes. */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004581 if (!include && count < 2 && (vis_empty || !inside_quotes))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004582 ++col_start;
4583 curwin->w_cursor.col = col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004584 if (VIsual_active)
4585 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004586 /* Set the start of the Visual area when the Visual area was empty, we
4587 * were just inside quotes or the Visual area didn't start at a quote
4588 * and didn't include a quote.
4589 */
4590 if (vis_empty
4591 || (vis_bef_curs
4592 && !selected_quote
4593 && (inside_quotes
4594 || (line[VIsual.col] != quotechar
4595 && (VIsual.col == 0
4596 || line[VIsual.col - 1] != quotechar)))))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004597 {
4598 VIsual = curwin->w_cursor;
4599 redraw_curbuf_later(INVERTED);
4600 }
4601 }
4602 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004603 {
4604 oap->start = curwin->w_cursor;
4605 oap->motion_type = MCHAR;
4606 }
4607
4608 /* Set end position. */
4609 curwin->w_cursor.col = col_end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004610 if ((include || count > 1 /* After vi" another i" must include the ". */
Bram Moolenaarab194812005-09-14 21:40:12 +00004611 || (!vis_empty && inside_quotes)
Bram Moolenaarab194812005-09-14 21:40:12 +00004612 ) && inc_cursor() == 2)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004613 inclusive = TRUE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004614 if (VIsual_active)
4615 {
4616 if (vis_empty || vis_bef_curs)
4617 {
4618 /* decrement cursor when 'selection' is not exclusive */
4619 if (*p_sel != 'e')
4620 dec_cursor();
4621 }
4622 else
4623 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004624 /* Cursor is at start of Visual area. Set the end of the Visual
4625 * area when it was just inside quotes or it didn't end at a
4626 * quote. */
4627 if (inside_quotes
4628 || (!selected_quote
4629 && line[VIsual.col] != quotechar
4630 && (line[VIsual.col] == NUL
4631 || line[VIsual.col + 1] != quotechar)))
4632 {
4633 dec_cursor();
4634 VIsual = curwin->w_cursor;
4635 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004636 curwin->w_cursor.col = col_start;
4637 }
4638 if (VIsual_mode == 'V')
4639 {
4640 VIsual_mode = 'v';
4641 redraw_cmdline = TRUE; /* show mode later */
4642 }
4643 }
4644 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004645 {
4646 /* Set inclusive and other oap's flags. */
4647 oap->inclusive = inclusive;
4648 }
4649
4650 return OK;
4651}
4652
4653#endif /* FEAT_TEXTOBJ */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004655static int is_one_char(char_u *pattern, int move, pos_T *cur, int direction);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004656
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004657/*
4658 * Find next search match under cursor, cursor at end.
4659 * Used while an operator is pending, and in Visual mode.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004660 */
4661 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004662current_search(
4663 long count,
4664 int forward) /* move forward or backwards */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004665{
4666 pos_T start_pos; /* position before the pattern */
4667 pos_T orig_pos; /* position of the cursor at beginning */
4668 pos_T pos; /* position after the pattern */
4669 int i;
4670 int dir;
4671 int result; /* result of various function calls */
4672 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004673 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02004674 pos_T save_VIsual = VIsual;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004675 int one_char;
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004676 int direction = forward ? FORWARD : BACKWARD;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004677
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004678 /* wrapping should not occur */
4679 p_ws = FALSE;
4680
4681 /* Correct cursor when 'selection' is exclusive */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004682 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004683 dec_cursor();
4684
4685 if (VIsual_active)
4686 {
4687 orig_pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004688
4689 pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004690
4691 /* make sure, searching further will extend the match */
4692 if (VIsual_active)
4693 {
4694 if (forward)
4695 incl(&pos);
4696 else
4697 decl(&pos);
4698 }
4699 }
4700 else
Bram Moolenaar268a06c2016-04-21 09:07:01 +02004701 orig_pos = pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004702
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004703 /* Is the pattern is zero-width?, this time, don't care about the direction
4704 */
4705 one_char = is_one_char(spats[last_idx].pat, TRUE, &curwin->w_cursor,
4706 FORWARD);
Bram Moolenaare78495d2013-06-30 14:46:53 +02004707 if (one_char == -1)
Bram Moolenaarba2d44f2013-11-28 19:27:30 +01004708 {
4709 p_ws = old_p_ws;
4710 return FAIL; /* pattern not found */
4711 }
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004712
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004713 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004714 * The trick is to first search backwards and then search forward again,
4715 * so that a match at the current cursor position will be correctly
4716 * captured.
4717 */
4718 for (i = 0; i < 2; i++)
4719 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004720 if (forward)
4721 dir = i;
4722 else
4723 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004724
4725 flags = 0;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004726 if (!dir && !one_char)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004727 flags = SEARCH_END;
4728
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004729 result = searchit(curwin, curbuf, &pos, (dir ? FORWARD : BACKWARD),
4730 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004731 SEARCH_KEEP | flags, RE_SEARCH, 0, NULL, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004732
4733 /* First search may fail, but then start searching from the
4734 * beginning of the file (cursor might be on the search match)
4735 * except when Visual mode is active, so that extending the visual
4736 * selection works. */
4737 if (!result && i) /* not found, abort */
4738 {
4739 curwin->w_cursor = orig_pos;
4740 if (VIsual_active)
4741 VIsual = save_VIsual;
4742 p_ws = old_p_ws;
4743 return FAIL;
4744 }
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004745 else if (!i && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004746 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004747 if (forward)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004748 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004749 /* try again from start of buffer */
4750 CLEAR_POS(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004751 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004752 else
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004753 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004754 /* try again from end of buffer */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004755 /* searching backwards, so set pos to last line and col */
4756 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02004757 pos.col = (colnr_T)STRLEN(
4758 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004759 }
4760 }
Bram Moolenaarfcea03d2013-11-07 04:46:48 +01004761 p_ws = old_p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004762 }
4763
4764 start_pos = pos;
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004765 flags = forward ? SEARCH_END : SEARCH_START;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004766
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004767 /* Check again from the current cursor position,
4768 * since the next match might actually by only one char wide */
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004769 one_char = is_one_char(spats[last_idx].pat, FALSE, &pos, direction);
Bram Moolenaaradd8dce2017-06-05 19:56:04 +02004770 if (one_char < 0)
4771 /* search failed, abort */
4772 return FAIL;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004773
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004774 /* move to match, except for zero-width matches, in which case, we are
4775 * already on the next match */
Bram Moolenaare78495d2013-06-30 14:46:53 +02004776 if (!one_char)
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004777 result = searchit(curwin, curbuf, &pos, direction,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004778 spats[last_idx].pat, 0L, flags | SEARCH_KEEP, RE_SEARCH, 0,
4779 NULL, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004780
4781 if (!VIsual_active)
4782 VIsual = start_pos;
4783
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004784 curwin->w_cursor = pos;
4785 VIsual_active = TRUE;
4786 VIsual_mode = 'v';
4787
4788 if (VIsual_active)
4789 {
4790 redraw_curbuf_later(INVERTED); /* update the inversion */
Bram Moolenaar718f0072012-10-03 13:35:51 +02004791 if (*p_sel == 'e')
4792 {
4793 /* Correction for exclusive selection depends on the direction. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004794 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar718f0072012-10-03 13:35:51 +02004795 inc_cursor();
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004796 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual))
Bram Moolenaar718f0072012-10-03 13:35:51 +02004797 inc(&VIsual);
4798 }
4799
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004800 }
4801
4802#ifdef FEAT_FOLDING
4803 if (fdo_flags & FDO_SEARCH && KeyTyped)
4804 foldOpenCursor();
4805#endif
4806
4807 may_start_select('c');
4808#ifdef FEAT_MOUSE
4809 setmouse();
4810#endif
4811#ifdef FEAT_CLIPBOARD
4812 /* Make sure the clipboard gets updated. Needed because start and
4813 * end are still the same, and the selection needs to be owned */
4814 clip_star.vmode = NUL;
4815#endif
4816 redraw_curbuf_later(INVERTED);
4817 showmode();
4818
4819 return OK;
4820}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004821
4822/*
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004823 * Check if the pattern is one character long or zero-width.
Bram Moolenaaradd8dce2017-06-05 19:56:04 +02004824 * If move is TRUE, check from the beginning of the buffer, else from position
4825 * "cur".
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004826 * "direction" is FORWARD or BACKWARD.
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004827 * Returns TRUE, FALSE or -1 for failure.
4828 */
4829 static int
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004830is_one_char(char_u *pattern, int move, pos_T *cur, int direction)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004831{
4832 regmmatch_T regmatch;
4833 int nmatched = 0;
4834 int result = -1;
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004835 pos_T pos;
4836 int save_called_emsg = called_emsg;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004837 int flag = 0;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004838
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004839 if (pattern == NULL)
4840 pattern = spats[last_idx].pat;
4841
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004842 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
4843 SEARCH_KEEP, &regmatch) == FAIL)
4844 return -1;
4845
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004846 /* init startcol correctly */
4847 regmatch.startpos[0].col = -1;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004848 /* move to match */
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004849 if (move)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004850 {
4851 CLEAR_POS(&pos);
4852 }
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004853 else
4854 {
Bram Moolenaaradd8dce2017-06-05 19:56:04 +02004855 pos = *cur;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004856 /* accept a match at the cursor position */
4857 flag = SEARCH_START;
4858 }
4859
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004860 if (searchit(curwin, curbuf, &pos, direction, pattern, 1,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004861 SEARCH_KEEP + flag, RE_SEARCH, 0, NULL, NULL) != FAIL)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004862 {
4863 /* Zero-width pattern should match somewhere, then we can check if
4864 * start and end are in the same position. */
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004865 called_emsg = FALSE;
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004866 do
4867 {
4868 regmatch.startpos[0].col++;
4869 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004870 pos.lnum, regmatch.startpos[0].col, NULL, NULL);
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004871 if (!nmatched)
4872 break;
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004873 } while (direction == FORWARD ? regmatch.startpos[0].col < pos.col
4874 : regmatch.startpos[0].col > pos.col);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004875
4876 if (!called_emsg)
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004877 {
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004878 result = (nmatched != 0
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004879 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
4880 && regmatch.startpos[0].col == regmatch.endpos[0].col);
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004881 /* one char width */
4882 if (!result && inc(&pos) >= 0 && pos.col == regmatch.endpos[0].col)
4883 result = TRUE;
4884 }
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004885 }
4886
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004887 called_emsg |= save_called_emsg;
Bram Moolenaar473de612013-06-08 18:19:48 +02004888 vim_regfree(regmatch.regprog);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004889 return result;
4890}
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004891
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4893 || defined(PROTO)
4894/*
4895 * return TRUE if line 'lnum' is empty or has white chars only.
4896 */
4897 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004898linewhite(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899{
4900 char_u *p;
4901
4902 p = skipwhite(ml_get(lnum));
4903 return (*p == NUL);
4904}
4905#endif
4906
4907#if defined(FEAT_FIND_ID) || defined(PROTO)
4908/*
4909 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01004910 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004913find_pattern_in_path(
4914 char_u *ptr, /* pointer to search pattern */
4915 int dir UNUSED, /* direction of expansion */
4916 int len, /* length of search pattern */
4917 int whole, /* match whole words only */
4918 int skip_comments, /* don't match inside comments */
4919 int type, /* Type of search; are we looking for a type?
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 a macro? */
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004921 long count,
4922 int action, /* What to do when we find it */
4923 linenr_T start_lnum, /* first line to start searching */
4924 linenr_T end_lnum) /* last line for searching */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925{
4926 SearchedFile *files; /* Stack of included files */
4927 SearchedFile *bigger; /* When we need more space */
4928 int max_path_depth = 50;
4929 long match_count = 1;
4930
4931 char_u *pat;
4932 char_u *new_fname;
4933 char_u *curr_fname = curbuf->b_fname;
4934 char_u *prev_fname = NULL;
4935 linenr_T lnum;
4936 int depth;
4937 int depth_displayed; /* For type==CHECK_PATH */
4938 int old_files;
4939 int already_searched;
4940 char_u *file_line;
4941 char_u *line;
4942 char_u *p;
4943 char_u save_char;
4944 int define_matched;
4945 regmatch_T regmatch;
4946 regmatch_T incl_regmatch;
4947 regmatch_T def_regmatch;
4948 int matched = FALSE;
4949 int did_show = FALSE;
4950 int found = FALSE;
4951 int i;
4952 char_u *already = NULL;
4953 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004954 char_u *inc_opt = NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02004955#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 win_T *curwin_save = NULL;
4957#endif
4958
4959 regmatch.regprog = NULL;
4960 incl_regmatch.regprog = NULL;
4961 def_regmatch.regprog = NULL;
4962
4963 file_line = alloc(LSIZE);
4964 if (file_line == NULL)
4965 return;
4966
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 if (type != CHECK_PATH && type != FIND_DEFINE
4968#ifdef FEAT_INS_EXPAND
4969 /* when CONT_SOL is set compare "ptr" with the beginning of the line
4970 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004971 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972#endif
4973 )
4974 {
4975 pat = alloc(len + 5);
4976 if (pat == NULL)
4977 goto fpip_end;
4978 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
4979 /* ignore case according to p_ic, p_scs and pat */
4980 regmatch.rm_ic = ignorecase(pat);
4981 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4982 vim_free(pat);
4983 if (regmatch.regprog == NULL)
4984 goto fpip_end;
4985 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004986 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
4987 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004989 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 if (incl_regmatch.regprog == NULL)
4991 goto fpip_end;
4992 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */
4993 }
4994 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
4995 {
4996 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
4997 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
4998 if (def_regmatch.regprog == NULL)
4999 goto fpip_end;
5000 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */
5001 }
5002 files = (SearchedFile *)lalloc_clear((long_u)
5003 (max_path_depth * sizeof(SearchedFile)), TRUE);
5004 if (files == NULL)
5005 goto fpip_end;
5006 old_files = max_path_depth;
5007 depth = depth_displayed = -1;
5008
5009 lnum = start_lnum;
5010 if (end_lnum > curbuf->b_ml.ml_line_count)
5011 end_lnum = curbuf->b_ml.ml_line_count;
5012 if (lnum > end_lnum) /* do at least one line */
5013 lnum = end_lnum;
5014 line = ml_get(lnum);
5015
5016 for (;;)
5017 {
5018 if (incl_regmatch.regprog != NULL
5019 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
5020 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005021 char_u *p_fname = (curr_fname == curbuf->b_fname)
5022 ? curbuf->b_ffname : curr_fname;
5023
5024 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
5025 /* Use text from '\zs' to '\ze' (or end) of 'include'. */
5026 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005027 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005028 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
5029 else
5030 /* Use text after match with 'include'. */
5031 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005032 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 already_searched = FALSE;
5034 if (new_fname != NULL)
5035 {
5036 /* Check whether we have already searched in this file */
5037 for (i = 0;; i++)
5038 {
5039 if (i == depth + 1)
5040 i = old_files;
5041 if (i == max_path_depth)
5042 break;
5043 if (fullpathcmp(new_fname, files[i].name, TRUE) & FPC_SAME)
5044 {
5045 if (type != CHECK_PATH &&
5046 action == ACTION_SHOW_ALL && files[i].matched)
5047 {
5048 msg_putchar('\n'); /* cursor below last one */
5049 if (!got_int) /* don't display if 'q'
5050 typed at "--more--"
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005051 message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 {
5053 msg_home_replace_hl(new_fname);
5054 MSG_PUTS(_(" (includes previously listed match)"));
5055 prev_fname = NULL;
5056 }
5057 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01005058 VIM_CLEAR(new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 already_searched = TRUE;
5060 break;
5061 }
5062 }
5063 }
5064
5065 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
5066 || (new_fname == NULL && !already_searched)))
5067 {
5068 if (did_show)
5069 msg_putchar('\n'); /* cursor below last one */
5070 else
5071 {
5072 gotocmdline(TRUE); /* cursor at status line */
5073 MSG_PUTS_TITLE(_("--- Included files "));
5074 if (action != ACTION_SHOW_ALL)
5075 MSG_PUTS_TITLE(_("not found "));
5076 MSG_PUTS_TITLE(_("in path ---\n"));
5077 }
5078 did_show = TRUE;
5079 while (depth_displayed < depth && !got_int)
5080 {
5081 ++depth_displayed;
5082 for (i = 0; i < depth_displayed; i++)
5083 MSG_PUTS(" ");
5084 msg_home_replace(files[depth_displayed].name);
5085 MSG_PUTS(" -->\n");
5086 }
5087 if (!got_int) /* don't display if 'q' typed
5088 for "--more--" message */
5089 {
5090 for (i = 0; i <= depth_displayed; i++)
5091 MSG_PUTS(" ");
5092 if (new_fname != NULL)
5093 {
5094 /* using "new_fname" is more reliable, e.g., when
5095 * 'includeexpr' is set. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005096 msg_outtrans_attr(new_fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 }
5098 else
5099 {
5100 /*
5101 * Isolate the file name.
5102 * Include the surrounding "" or <> if present.
5103 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005104 if (inc_opt != NULL
5105 && strstr((char *)inc_opt, "\\zs") != NULL)
5106 {
5107 /* pattern contains \zs, use the match */
5108 p = incl_regmatch.startp[0];
5109 i = (int)(incl_regmatch.endp[0]
5110 - incl_regmatch.startp[0]);
5111 }
5112 else
5113 {
5114 /* find the file name after the end of the match */
5115 for (p = incl_regmatch.endp[0];
5116 *p && !vim_isfilec(*p); p++)
5117 ;
5118 for (i = 0; vim_isfilec(p[i]); i++)
5119 ;
5120 }
5121
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122 if (i == 0)
5123 {
5124 /* Nothing found, use the rest of the line. */
5125 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005126 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 }
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005128 /* Avoid checking before the start of the line, can
5129 * happen if \zs appears in the regexp. */
5130 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131 {
5132 if (p[-1] == '"' || p[-1] == '<')
5133 {
5134 --p;
5135 ++i;
5136 }
5137 if (p[i] == '"' || p[i] == '>')
5138 ++i;
5139 }
5140 save_char = p[i];
5141 p[i] = NUL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01005142 msg_outtrans_attr(p, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143 p[i] = save_char;
5144 }
5145
5146 if (new_fname == NULL && action == ACTION_SHOW_ALL)
5147 {
5148 if (already_searched)
5149 MSG_PUTS(_(" (Already listed)"));
5150 else
5151 MSG_PUTS(_(" NOT FOUND"));
5152 }
5153 }
5154 out_flush(); /* output each line directly */
5155 }
5156
5157 if (new_fname != NULL)
5158 {
5159 /* Push the new file onto the file stack */
5160 if (depth + 1 == old_files)
5161 {
5162 bigger = (SearchedFile *)lalloc((long_u)(
5163 max_path_depth * 2 * sizeof(SearchedFile)), TRUE);
5164 if (bigger != NULL)
5165 {
5166 for (i = 0; i <= depth; i++)
5167 bigger[i] = files[i];
5168 for (i = depth + 1; i < old_files + max_path_depth; i++)
5169 {
5170 bigger[i].fp = NULL;
5171 bigger[i].name = NULL;
5172 bigger[i].lnum = 0;
5173 bigger[i].matched = FALSE;
5174 }
5175 for (i = old_files; i < max_path_depth; i++)
5176 bigger[i + max_path_depth] = files[i];
5177 old_files += max_path_depth;
5178 max_path_depth *= 2;
5179 vim_free(files);
5180 files = bigger;
5181 }
5182 }
5183 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
5184 == NULL)
5185 vim_free(new_fname);
5186 else
5187 {
5188 if (++depth == old_files)
5189 {
5190 /*
5191 * lalloc() for 'bigger' must have failed above. We
5192 * will forget one of our already visited files now.
5193 */
5194 vim_free(files[old_files].name);
5195 ++old_files;
5196 }
5197 files[depth].name = curr_fname = new_fname;
5198 files[depth].lnum = 0;
5199 files[depth].matched = FALSE;
5200#ifdef FEAT_INS_EXPAND
5201 if (action == ACTION_EXPAND)
5202 {
Bram Moolenaardf40adf2006-10-14 12:32:39 +00005203 msg_hist_off = TRUE; /* reset in msg_trunc_attr() */
Bram Moolenaar555b2802005-05-19 21:08:39 +00005204 vim_snprintf((char*)IObuff, IOSIZE,
5205 _("Scanning included file: %s"),
5206 (char *)new_fname);
Bram Moolenaar8820b482017-03-16 17:23:31 +01005207 msg_trunc_attr(IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208 }
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005209 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210#endif
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005211 if (p_verbose >= 5)
5212 {
5213 verbose_enter();
5214 smsg((char_u *)_("Searching included file %s"),
5215 (char *)new_fname);
5216 verbose_leave();
5217 }
5218
Bram Moolenaar071d4272004-06-13 20:20:40 +00005219 }
5220 }
5221 }
5222 else
5223 {
5224 /*
5225 * Check if the line is a define (type == FIND_DEFINE)
5226 */
5227 p = line;
5228search_line:
5229 define_matched = FALSE;
5230 if (def_regmatch.regprog != NULL
5231 && vim_regexec(&def_regmatch, line, (colnr_T)0))
5232 {
5233 /*
5234 * Pattern must be first identifier after 'define', so skip
5235 * to that position before checking for match of pattern. Also
5236 * don't let it match beyond the end of this identifier.
5237 */
5238 p = def_regmatch.endp[0];
5239 while (*p && !vim_iswordc(*p))
5240 p++;
5241 define_matched = TRUE;
5242 }
5243
5244 /*
5245 * Look for a match. Don't do this if we are looking for a
5246 * define and this line didn't match define_prog above.
5247 */
5248 if (def_regmatch.regprog == NULL || define_matched)
5249 {
5250 if (define_matched
5251#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005252 || (compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253#endif
5254 )
5255 {
5256 /* compare the first "len" chars from "ptr" */
5257 startp = skipwhite(p);
5258 if (p_ic)
5259 matched = !MB_STRNICMP(startp, ptr, len);
5260 else
5261 matched = !STRNCMP(startp, ptr, len);
5262 if (matched && define_matched && whole
5263 && vim_iswordc(startp[len]))
5264 matched = FALSE;
5265 }
5266 else if (regmatch.regprog != NULL
5267 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
5268 {
5269 matched = TRUE;
5270 startp = regmatch.startp[0];
5271 /*
5272 * Check if the line is not a comment line (unless we are
5273 * looking for a define). A line starting with "# define"
5274 * is not considered to be a comment line.
5275 */
5276 if (!define_matched && skip_comments)
5277 {
5278#ifdef FEAT_COMMENTS
5279 if ((*line != '#' ||
5280 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02005281 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282 matched = FALSE;
5283
5284 /*
5285 * Also check for a "/ *" or "/ /" before the match.
5286 * Skips lines like "int backwards; / * normal index
5287 * * /" when looking for "normal".
5288 * Note: Doesn't skip "/ *" in comments.
5289 */
5290 p = skipwhite(line);
5291 if (matched
5292 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
5293#endif
5294 for (p = line; *p && p < startp; ++p)
5295 {
5296 if (matched
5297 && p[0] == '/'
5298 && (p[1] == '*' || p[1] == '/'))
5299 {
5300 matched = FALSE;
5301 /* After "//" all text is comment */
5302 if (p[1] == '/')
5303 break;
5304 ++p;
5305 }
5306 else if (!matched && p[0] == '*' && p[1] == '/')
5307 {
5308 /* Can find match after "* /". */
5309 matched = TRUE;
5310 ++p;
5311 }
5312 }
5313 }
5314 }
5315 }
5316 }
5317 if (matched)
5318 {
5319#ifdef FEAT_INS_EXPAND
5320 if (action == ACTION_EXPAND)
5321 {
5322 int reuse = 0;
5323 int add_r;
5324 char_u *aux;
5325
5326 if (depth == -1 && lnum == curwin->w_cursor.lnum)
5327 break;
5328 found = TRUE;
5329 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005330 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005332 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333 if (vim_iswordp(p))
5334 goto exit_matched;
5335 p = find_word_start(p);
5336 }
5337 p = find_word_end(p);
5338 i = (int)(p - aux);
5339
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005340 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005342 /* IOSIZE > compl_length, so the STRNCPY works */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005343 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00005344
5345 /* Get the next line: when "depth" < 0 from the current
5346 * buffer, otherwise from the included file. Jump to
5347 * exit_matched when past the last line. */
5348 if (depth < 0)
5349 {
5350 if (lnum >= end_lnum)
5351 goto exit_matched;
5352 line = ml_get(++lnum);
5353 }
5354 else if (vim_fgets(line = file_line,
5355 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356 goto exit_matched;
5357
5358 /* we read a line, set "already" to check this "line" later
5359 * if depth >= 0 we'll increase files[depth].lnum far
5360 * bellow -- Acevedo */
5361 already = aux = p = skipwhite(line);
5362 p = find_word_start(p);
5363 p = find_word_end(p);
5364 if (p > aux)
5365 {
5366 if (*aux != ')' && IObuff[i-1] != TAB)
5367 {
5368 if (IObuff[i-1] != ' ')
5369 IObuff[i++] = ' ';
5370 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/
5371 if (p_js
5372 && (IObuff[i-2] == '.'
5373 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
5374 && (IObuff[i-2] == '?'
5375 || IObuff[i-2] == '!'))))
5376 IObuff[i++] = ' ';
5377 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005378 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 if (p - aux >= IOSIZE - i)
5380 p = aux + IOSIZE - i - 1;
5381 STRNCPY(IObuff + i, aux, p - aux);
5382 i += (int)(p - aux);
5383 reuse |= CONT_S_IPOS;
5384 }
5385 IObuff[i] = NUL;
5386 aux = IObuff;
5387
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005388 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389 goto exit_matched;
5390 }
5391
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005392 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393 curr_fname == curbuf->b_fname ? NULL : curr_fname,
5394 dir, reuse);
5395 if (add_r == OK)
5396 /* if dir was BACKWARD then honor it just once */
5397 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005398 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399 break;
5400 }
5401 else
5402#endif
5403 if (action == ACTION_SHOW_ALL)
5404 {
5405 found = TRUE;
5406 if (!did_show)
5407 gotocmdline(TRUE); /* cursor at status line */
5408 if (curr_fname != prev_fname)
5409 {
5410 if (did_show)
5411 msg_putchar('\n'); /* cursor below last one */
5412 if (!got_int) /* don't display if 'q' typed
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005413 at "--more--" message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414 msg_home_replace_hl(curr_fname);
5415 prev_fname = curr_fname;
5416 }
5417 did_show = TRUE;
5418 if (!got_int)
5419 show_pat_in_path(line, type, TRUE, action,
5420 (depth == -1) ? NULL : files[depth].fp,
5421 (depth == -1) ? &lnum : &files[depth].lnum,
5422 match_count++);
5423
5424 /* Set matched flag for this file and all the ones that
5425 * include it */
5426 for (i = 0; i <= depth; ++i)
5427 files[i].matched = TRUE;
5428 }
5429 else if (--count <= 0)
5430 {
5431 found = TRUE;
5432 if (depth == -1 && lnum == curwin->w_cursor.lnum
Bram Moolenaar4033c552017-09-16 20:54:51 +02005433#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434 && g_do_tagpreview == 0
5435#endif
5436 )
5437 EMSG(_("E387: Match is on current line"));
5438 else if (action == ACTION_SHOW)
5439 {
5440 show_pat_in_path(line, type, did_show, action,
5441 (depth == -1) ? NULL : files[depth].fp,
5442 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
5443 did_show = TRUE;
5444 }
5445 else
5446 {
5447#ifdef FEAT_GUI
5448 need_mouse_correct = TRUE;
5449#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005450#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005451 /* ":psearch" uses the preview window */
5452 if (g_do_tagpreview != 0)
5453 {
5454 curwin_save = curwin;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005455 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 }
5457#endif
5458 if (action == ACTION_SPLIT)
5459 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005460 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005462 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005463 }
5464 if (depth == -1)
5465 {
5466 /* match in current file */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005467#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468 if (g_do_tagpreview != 0)
5469 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005470 if (!GETFILE_SUCCESS(getfile(
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005471 curwin_save->w_buffer->b_fnum, NULL,
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005472 NULL, TRUE, lnum, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473 break; /* failed to jump to file */
5474 }
5475 else
5476#endif
5477 setpcmark();
5478 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005479 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 }
5481 else
5482 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005483 if (!GETFILE_SUCCESS(getfile(
5484 0, files[depth].name, NULL, TRUE,
5485 files[depth].lnum, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486 break; /* failed to jump to file */
5487 /* autocommands may have changed the lnum, we don't
5488 * want that here */
5489 curwin->w_cursor.lnum = files[depth].lnum;
5490 }
5491 }
5492 if (action != ACTION_SHOW)
5493 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005494 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495 curwin->w_set_curswant = TRUE;
5496 }
5497
Bram Moolenaar4033c552017-09-16 20:54:51 +02005498#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005500 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501 {
5502 /* Return cursor to where we were */
5503 validate_cursor();
5504 redraw_later(VALID);
5505 win_enter(curwin_save, TRUE);
5506 }
5507#endif
5508 break;
5509 }
5510#ifdef FEAT_INS_EXPAND
5511exit_matched:
5512#endif
5513 matched = FALSE;
5514 /* look for other matches in the rest of the line if we
5515 * are not at the end of it already */
5516 if (def_regmatch.regprog == NULL
5517#ifdef FEAT_INS_EXPAND
5518 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005519 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005520#endif
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005521 && *startp != NUL
Bram Moolenaar94c465c2012-07-19 17:18:26 +02005522 && *(p = startp + MB_PTR2LEN(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523 goto search_line;
5524 }
5525 line_breakcheck();
5526#ifdef FEAT_INS_EXPAND
5527 if (action == ACTION_EXPAND)
Bram Moolenaar472e8592016-10-15 17:06:47 +02005528 ins_compl_check_keys(30, FALSE);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005529 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530#else
5531 if (got_int)
5532#endif
5533 break;
5534
5535 /*
5536 * Read the next line. When reading an included file and encountering
5537 * end-of-file, close the file and continue in the file that included
5538 * it.
5539 */
5540 while (depth >= 0 && !already
5541 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5542 {
5543 fclose(files[depth].fp);
5544 --old_files;
5545 files[old_files].name = files[depth].name;
5546 files[old_files].matched = files[depth].matched;
5547 --depth;
5548 curr_fname = (depth == -1) ? curbuf->b_fname
5549 : files[depth].name;
5550 if (depth < depth_displayed)
5551 depth_displayed = depth;
5552 }
5553 if (depth >= 0) /* we could read the line */
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005554 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 files[depth].lnum++;
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005556 /* Remove any CR and LF from the line. */
5557 i = (int)STRLEN(line);
5558 if (i > 0 && line[i - 1] == '\n')
5559 line[--i] = NUL;
5560 if (i > 0 && line[i - 1] == '\r')
5561 line[--i] = NUL;
5562 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 else if (!already)
5564 {
5565 if (++lnum > end_lnum)
5566 break;
5567 line = ml_get(lnum);
5568 }
5569 already = NULL;
5570 }
5571 /* End of big for (;;) loop. */
5572
5573 /* Close any files that are still open. */
5574 for (i = 0; i <= depth; i++)
5575 {
5576 fclose(files[i].fp);
5577 vim_free(files[i].name);
5578 }
5579 for (i = old_files; i < max_path_depth; i++)
5580 vim_free(files[i].name);
5581 vim_free(files);
5582
5583 if (type == CHECK_PATH)
5584 {
5585 if (!did_show)
5586 {
5587 if (action != ACTION_SHOW_ALL)
5588 MSG(_("All included files were found"));
5589 else
5590 MSG(_("No included files"));
5591 }
5592 }
5593 else if (!found
5594#ifdef FEAT_INS_EXPAND
5595 && action != ACTION_EXPAND
5596#endif
5597 )
5598 {
5599#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005600 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601#else
5602 if (got_int)
5603#endif
5604 EMSG(_(e_interr));
5605 else if (type == FIND_DEFINE)
5606 EMSG(_("E388: Couldn't find definition"));
5607 else
5608 EMSG(_("E389: Couldn't find pattern"));
5609 }
5610 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5611 msg_end();
5612
5613fpip_end:
5614 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02005615 vim_regfree(regmatch.regprog);
5616 vim_regfree(incl_regmatch.regprog);
5617 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618}
5619
5620 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005621show_pat_in_path(
5622 char_u *line,
5623 int type,
5624 int did_show,
5625 int action,
5626 FILE *fp,
5627 linenr_T *lnum,
5628 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629{
5630 char_u *p;
5631
5632 if (did_show)
5633 msg_putchar('\n'); /* cursor below last one */
Bram Moolenaar91170f82006-05-05 21:15:17 +00005634 else if (!msg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005635 gotocmdline(TRUE); /* cursor at status line */
5636 if (got_int) /* 'q' typed at "--more--" message */
5637 return;
5638 for (;;)
5639 {
5640 p = line + STRLEN(line) - 1;
5641 if (fp != NULL)
5642 {
5643 /* We used fgets(), so get rid of newline at end */
5644 if (p >= line && *p == '\n')
5645 --p;
5646 if (p >= line && *p == '\r')
5647 --p;
5648 *(p + 1) = NUL;
5649 }
5650 if (action == ACTION_SHOW_ALL)
5651 {
5652 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */
5653 msg_puts(IObuff);
5654 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */
5655 /* Highlight line numbers */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005656 msg_puts_attr(IObuff, HL_ATTR(HLF_N));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005657 MSG_PUTS(" ");
5658 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005659 msg_prt_line(line, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 out_flush(); /* show one line at a time */
5661
5662 /* Definition continues until line that doesn't end with '\' */
5663 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5664 break;
5665
5666 if (fp != NULL)
5667 {
5668 if (vim_fgets(line, LSIZE, fp)) /* end of file */
5669 break;
5670 ++*lnum;
5671 }
5672 else
5673 {
5674 if (++*lnum > curbuf->b_ml.ml_line_count)
5675 break;
5676 line = ml_get(*lnum);
5677 }
5678 msg_putchar('\n');
5679 }
5680}
5681#endif
5682
5683#ifdef FEAT_VIMINFO
5684 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005685read_viminfo_search_pattern(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686{
5687 char_u *lp;
5688 int idx = -1;
5689 int magic = FALSE;
5690 int no_scs = FALSE;
5691 int off_line = FALSE;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005692 int off_end = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693 long off = 0;
5694 int setlast = FALSE;
5695#ifdef FEAT_SEARCH_EXTRA
5696 static int hlsearch_on = FALSE;
5697#endif
5698 char_u *val;
5699
5700 /*
5701 * Old line types:
5702 * "/pat", "&pat": search/subst. pat
5703 * "~/pat", "~&pat": last used search/subst. pat
5704 * New line types:
5705 * "~h", "~H": hlsearch highlighting off/on
5706 * "~<magic><smartcase><line><end><off><last><which>pat"
5707 * <magic>: 'm' off, 'M' on
5708 * <smartcase>: 's' off, 'S' on
5709 * <line>: 'L' line offset, 'l' char offset
5710 * <end>: 'E' from end, 'e' from start
5711 * <off>: decimal, offset
5712 * <last>: '~' last used pattern
5713 * <which>: '/' search pat, '&' subst. pat
5714 */
5715 lp = virp->vir_line;
5716 if (lp[0] == '~' && (lp[1] == 'm' || lp[1] == 'M')) /* new line type */
5717 {
5718 if (lp[1] == 'M') /* magic on */
5719 magic = TRUE;
5720 if (lp[2] == 's')
5721 no_scs = TRUE;
5722 if (lp[3] == 'L')
5723 off_line = TRUE;
5724 if (lp[4] == 'E')
Bram Moolenaared203462004-06-16 11:19:22 +00005725 off_end = SEARCH_END;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005726 lp += 5;
5727 off = getdigits(&lp);
5728 }
5729 if (lp[0] == '~') /* use this pattern for last-used pattern */
5730 {
5731 setlast = TRUE;
5732 lp++;
5733 }
5734 if (lp[0] == '/')
5735 idx = RE_SEARCH;
5736 else if (lp[0] == '&')
5737 idx = RE_SUBST;
5738#ifdef FEAT_SEARCH_EXTRA
5739 else if (lp[0] == 'h') /* ~h: 'hlsearch' highlighting off */
5740 hlsearch_on = FALSE;
5741 else if (lp[0] == 'H') /* ~H: 'hlsearch' highlighting on */
5742 hlsearch_on = TRUE;
5743#endif
5744 if (idx >= 0)
5745 {
5746 if (force || spats[idx].pat == NULL)
5747 {
5748 val = viminfo_readstring(virp, (int)(lp - virp->vir_line + 1),
5749 TRUE);
5750 if (val != NULL)
5751 {
5752 set_last_search_pat(val, idx, magic, setlast);
5753 vim_free(val);
5754 spats[idx].no_scs = no_scs;
5755 spats[idx].off.line = off_line;
5756 spats[idx].off.end = off_end;
5757 spats[idx].off.off = off;
5758#ifdef FEAT_SEARCH_EXTRA
5759 if (setlast)
Bram Moolenaar8050efa2013-11-08 04:30:20 +01005760 {
5761 SET_NO_HLSEARCH(!hlsearch_on);
5762 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763#endif
5764 }
5765 }
5766 }
5767 return viminfo_readline(virp);
5768}
5769
5770 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005771write_viminfo_search_pattern(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005772{
5773 if (get_viminfo_parameter('/') != 0)
5774 {
5775#ifdef FEAT_SEARCH_EXTRA
5776 fprintf(fp, "\n# hlsearch on (H) or off (h):\n~%c",
5777 (no_hlsearch || find_viminfo_parameter('h') != NULL) ? 'h' : 'H');
5778#endif
5779 wvsp_one(fp, RE_SEARCH, "", '/');
Bram Moolenaar9b228712008-07-18 10:05:58 +00005780 wvsp_one(fp, RE_SUBST, _("Substitute "), '&');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781 }
5782}
5783
5784 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005785wvsp_one(
5786 FILE *fp, /* file to write to */
5787 int idx, /* spats[] index */
5788 char *s, /* search pat */
5789 int sc) /* dir char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790{
5791 if (spats[idx].pat != NULL)
5792 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005793 fprintf(fp, _("\n# Last %sSearch Pattern:\n~"), s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005794 /* off.dir is not stored, it's reset to forward */
5795 fprintf(fp, "%c%c%c%c%ld%s%c",
5796 spats[idx].magic ? 'M' : 'm', /* magic */
5797 spats[idx].no_scs ? 's' : 'S', /* smartcase */
5798 spats[idx].off.line ? 'L' : 'l', /* line offset */
5799 spats[idx].off.end ? 'E' : 'e', /* offset from end */
5800 spats[idx].off.off, /* offset */
5801 last_idx == idx ? "~" : "", /* last used pat */
5802 sc);
5803 viminfo_writestring(fp, spats[idx].pat);
5804 }
5805}
5806#endif /* FEAT_VIMINFO */