blob: 6d245caffc076997574ee33dc5e83c7e7b648d0c [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 * search.c: code for normal mode searching commands
11 */
12
13#include "vim.h"
14
Bram Moolenaar071d4272004-06-13 20:20:40 +000015#ifdef FEAT_EVAL
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010016static void set_vv_searchforward(void);
17static int first_submatch(regmmatch_T *rp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010019static int check_linecomment(char_u *line);
20static int cls(void);
21static int skip_chars(int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022#ifdef FEAT_FIND_ID
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010023static void show_pat_in_path(char_u *, int,
24 int, int, FILE *, linenr_T *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +000025#endif
26#ifdef FEAT_VIMINFO
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010027static void wvsp_one(FILE *fp, int idx, char *s, int sc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#endif
29
Bram Moolenaar071d4272004-06-13 20:20:40 +000030/*
31 * This file contains various searching-related routines. These fall into
32 * three groups:
33 * 1. string searches (for /, ?, n, and N)
34 * 2. character searches within a single line (for f, F, t, T, etc)
35 * 3. "other" kinds of searches like the '%' command, and 'word' searches.
36 */
37
38/*
39 * String searches
40 *
41 * The string search functions are divided into two levels:
42 * lowest: searchit(); uses an pos_T for starting position and found match.
43 * Highest: do_search(); uses curwin->w_cursor; calls searchit().
44 *
45 * The last search pattern is remembered for repeating the same search.
46 * This pattern is shared between the :g, :s, ? and / commands.
47 * This is in search_regcomp().
48 *
49 * The actual string matching is done using a heavily modified version of
50 * Henry Spencer's regular expression library. See regexp.c.
51 */
52
53/* The offset for a search command is store in a soff struct */
54/* Note: only spats[0].off is really used */
55struct soffset
56{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000057 int dir; /* search direction, '/' or '?' */
Bram Moolenaar071d4272004-06-13 20:20:40 +000058 int line; /* search has line offset */
59 int end; /* search set cursor at end */
60 long off; /* line or char offset */
61};
62
63/* A search pattern and its attributes are stored in a spat struct */
64struct spat
65{
66 char_u *pat; /* the pattern (in allocated memory) or NULL */
67 int magic; /* magicness of the pattern */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020068 int no_scs; /* no smartcase for this pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +000069 struct soffset off;
70};
71
72/*
73 * Two search patterns are remembered: One for the :substitute command and
74 * one for other searches. last_idx points to the one that was used the last
75 * time.
76 */
77static struct spat spats[2] =
78{
79 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}}, /* last used search pat */
80 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}} /* last used substitute pat */
81};
82
83static int last_idx = 0; /* index in spats[] for RE_LAST */
84
Bram Moolenaardbd24b52015-08-11 14:26:19 +020085static char_u lastc[2] = {NUL, NUL}; /* last character searched for */
86static int lastcdir = FORWARD; /* last direction of character search */
87static int last_t_cmd = TRUE; /* last search t_cmd */
88#ifdef FEAT_MBYTE
89static char_u lastc_bytes[MB_MAXBYTES + 1];
90static int lastc_bytelen = 1; /* >1 for multi-byte char */
91#endif
92
Bram Moolenaar071d4272004-06-13 20:20:40 +000093/* copy of spats[], for keeping the search patterns while executing autocmds */
94static struct spat saved_spats[2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000095# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +010096/* copy of spats[RE_SEARCH], for keeping the search patterns while incremental
97 * searching */
98static struct spat saved_last_search_spat;
Bram Moolenaar01a060d2018-11-30 21:57:55 +010099static int did_save_last_search_spat = 0;
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100100static int saved_last_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101static int saved_no_hlsearch = 0;
102# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103
104static char_u *mr_pattern = NULL; /* pattern used by search_regcomp() */
105#ifdef FEAT_RIGHTLEFT
106static int mr_pattern_alloced = FALSE; /* mr_pattern was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107#endif
108
109#ifdef FEAT_FIND_ID
110/*
111 * Type used by find_pattern_in_path() to remember which included files have
112 * been searched already.
113 */
114typedef struct SearchedFile
115{
116 FILE *fp; /* File pointer */
117 char_u *name; /* Full name of file */
118 linenr_T lnum; /* Line we were up to in file */
119 int matched; /* Found a match in this file */
120} SearchedFile;
121#endif
122
123/*
124 * translate search pattern for vim_regcomp()
125 *
126 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd)
127 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command)
128 * pat_save == RE_BOTH: save pat in both patterns (:global command)
129 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL
Bram Moolenaarb8017e72007-05-10 18:59:07 +0000130 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131 * pat_use == RE_LAST: use last used pattern if "pat" is NULL
132 * options & SEARCH_HIS: put search string in history
133 * options & SEARCH_KEEP: keep previous search pattern
134 *
135 * returns FAIL if failed, OK otherwise.
136 */
137 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100138search_regcomp(
139 char_u *pat,
140 int pat_save,
141 int pat_use,
142 int options,
143 regmmatch_T *regmatch) /* return: pattern and ignore-case flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144{
145 int magic;
146 int i;
147
148 rc_did_emsg = FALSE;
149 magic = p_magic;
150
151 /*
152 * If no pattern given, use a previously defined pattern.
153 */
154 if (pat == NULL || *pat == NUL)
155 {
156 if (pat_use == RE_LAST)
157 i = last_idx;
158 else
159 i = pat_use;
160 if (spats[i].pat == NULL) /* pattern was never defined */
161 {
162 if (pat_use == RE_SUBST)
163 EMSG(_(e_nopresub));
164 else
165 EMSG(_(e_noprevre));
166 rc_did_emsg = TRUE;
167 return FAIL;
168 }
169 pat = spats[i].pat;
170 magic = spats[i].magic;
171 no_smartcase = spats[i].no_scs;
172 }
173#ifdef FEAT_CMDHIST
174 else if (options & SEARCH_HIS) /* put new pattern in history */
175 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
176#endif
177
178#ifdef FEAT_RIGHTLEFT
179 if (mr_pattern_alloced)
180 {
181 vim_free(mr_pattern);
182 mr_pattern_alloced = FALSE;
183 }
184
185 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
186 {
187 char_u *rev_pattern;
188
189 rev_pattern = reverse_text(pat);
190 if (rev_pattern == NULL)
191 mr_pattern = pat; /* out of memory, keep normal pattern. */
192 else
193 {
194 mr_pattern = rev_pattern;
195 mr_pattern_alloced = TRUE;
196 }
197 }
198 else
199#endif
200 mr_pattern = pat;
201
202 /*
203 * Save the currently used pattern in the appropriate place,
204 * unless the pattern should not be remembered.
205 */
Bram Moolenaar14177b72014-01-14 15:53:51 +0100206 if (!(options & SEARCH_KEEP) && !cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 {
208 /* search or global command */
209 if (pat_save == RE_SEARCH || pat_save == RE_BOTH)
210 save_re_pat(RE_SEARCH, pat, magic);
211 /* substitute or global command */
212 if (pat_save == RE_SUBST || pat_save == RE_BOTH)
213 save_re_pat(RE_SUBST, pat, magic);
214 }
215
216 regmatch->rmm_ic = ignorecase(pat);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +0000217 regmatch->rmm_maxcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
219 if (regmatch->regprog == NULL)
220 return FAIL;
221 return OK;
222}
223
224/*
225 * Get search pattern used by search_regcomp().
226 */
227 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100228get_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229{
230 return mr_pattern;
231}
232
Bram Moolenaarabc97732007-08-08 20:49:37 +0000233#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234/*
235 * Reverse text into allocated memory.
236 * Returns the allocated string, NULL when out of memory.
237 */
Bram Moolenaarabc97732007-08-08 20:49:37 +0000238 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100239reverse_text(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240{
241 unsigned len;
242 unsigned s_i, rev_i;
243 char_u *rev;
244
245 /*
246 * Reverse the pattern.
247 */
248 len = (unsigned)STRLEN(s);
249 rev = alloc(len + 1);
250 if (rev != NULL)
251 {
252 rev_i = len;
253 for (s_i = 0; s_i < len; ++s_i)
254 {
255# ifdef FEAT_MBYTE
256 if (has_mbyte)
257 {
258 int mb_len;
259
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000260 mb_len = (*mb_ptr2len)(s + s_i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261 rev_i -= mb_len;
262 mch_memmove(rev + rev_i, s + s_i, mb_len);
263 s_i += mb_len - 1;
264 }
265 else
266# endif
267 rev[--rev_i] = s[s_i];
268
269 }
270 rev[len] = NUL;
271 }
272 return rev;
273}
274#endif
275
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +0100276 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100277save_re_pat(int idx, char_u *pat, int magic)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278{
279 if (spats[idx].pat != pat)
280 {
281 vim_free(spats[idx].pat);
282 spats[idx].pat = vim_strsave(pat);
283 spats[idx].magic = magic;
284 spats[idx].no_scs = no_smartcase;
285 last_idx = idx;
286#ifdef FEAT_SEARCH_EXTRA
287 /* If 'hlsearch' set and search pat changed: need redraw. */
288 if (p_hls)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000289 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200290 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291#endif
292 }
293}
294
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295/*
296 * Save the search patterns, so they can be restored later.
297 * Used before/after executing autocommands and user functions.
298 */
299static int save_level = 0;
300
301 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100302save_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303{
304 if (save_level++ == 0)
305 {
306 saved_spats[0] = spats[0];
307 if (spats[0].pat != NULL)
308 saved_spats[0].pat = vim_strsave(spats[0].pat);
309 saved_spats[1] = spats[1];
310 if (spats[1].pat != NULL)
311 saved_spats[1].pat = vim_strsave(spats[1].pat);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100312#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 saved_last_idx = last_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314 saved_no_hlsearch = no_hlsearch;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100315#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316 }
317}
318
319 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100320restore_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321{
322 if (--save_level == 0)
323 {
324 vim_free(spats[0].pat);
325 spats[0] = saved_spats[0];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100326#if defined(FEAT_EVAL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000327 set_vv_searchforward();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100328#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 vim_free(spats[1].pat);
330 spats[1] = saved_spats[1];
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100331#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332 last_idx = saved_last_idx;
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200333 set_no_hlsearch(saved_no_hlsearch);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 }
336}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000338#if defined(EXITFREE) || defined(PROTO)
339 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100340free_search_patterns(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000341{
342 vim_free(spats[0].pat);
343 vim_free(spats[1].pat);
Bram Moolenaarf2427622009-04-22 16:45:21 +0000344
345# ifdef FEAT_RIGHTLEFT
346 if (mr_pattern_alloced)
347 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200348 vim_free(mr_pattern);
349 mr_pattern_alloced = FALSE;
350 mr_pattern = NULL;
Bram Moolenaarf2427622009-04-22 16:45:21 +0000351 }
352# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000353}
354#endif
355
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100356#ifdef FEAT_SEARCH_EXTRA
357/*
358 * Save and restore the search pattern for incremental highlight search
359 * feature.
360 *
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100361 * It's similar to but different from save_search_patterns() and
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100362 * restore_search_patterns(), because the search pattern must be restored when
Bram Moolenaarc4568ab2018-11-16 16:21:05 +0100363 * canceling incremental searching even if it's called inside user functions.
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100364 */
365 void
366save_last_search_pattern(void)
367{
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100368 if (did_save_last_search_spat != 0)
369 IEMSG("did_save_last_search_spat is not zero");
370 else
371 ++did_save_last_search_spat;
372
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100373 saved_last_search_spat = spats[RE_SEARCH];
374 if (spats[RE_SEARCH].pat != NULL)
375 saved_last_search_spat.pat = vim_strsave(spats[RE_SEARCH].pat);
376 saved_last_idx = last_idx;
377 saved_no_hlsearch = no_hlsearch;
378}
379
380 void
381restore_last_search_pattern(void)
382{
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100383 if (did_save_last_search_spat != 1)
384 {
385 IEMSG("did_save_last_search_spat is not one");
386 return;
387 }
388 --did_save_last_search_spat;
389
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100390 vim_free(spats[RE_SEARCH].pat);
391 spats[RE_SEARCH] = saved_last_search_spat;
Bram Moolenaar01a060d2018-11-30 21:57:55 +0100392 saved_last_search_spat.pat = NULL;
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100393# if defined(FEAT_EVAL)
394 set_vv_searchforward();
395# endif
396 last_idx = saved_last_idx;
Bram Moolenaar451fc7b2018-04-27 22:53:07 +0200397 set_no_hlsearch(saved_no_hlsearch);
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100398}
Bram Moolenaard0480092017-11-16 22:20:39 +0100399
400 char_u *
401last_search_pattern(void)
402{
403 return spats[RE_SEARCH].pat;
404}
Bram Moolenaar2e51d9a2017-10-29 16:40:30 +0100405#endif
406
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407/*
408 * Return TRUE when case should be ignored for search pattern "pat".
409 * Uses the 'ignorecase' and 'smartcase' options.
410 */
411 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100412ignorecase(char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413{
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200414 return ignorecase_opt(pat, p_ic, p_scs);
415}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416
Bram Moolenaar66e29d72016-08-20 16:57:02 +0200417/*
418 * As ignorecase() put pass the "ic" and "scs" flags.
419 */
420 int
421ignorecase_opt(char_u *pat, int ic_in, int scs)
422{
423 int ic = ic_in;
424
425 if (ic && !no_smartcase && scs
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426#ifdef FEAT_INS_EXPAND
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +0100427 && !(ctrl_x_mode_not_default() && curbuf->b_p_inf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428#endif
429 )
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200430 ic = !pat_has_uppercase(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431 no_smartcase = FALSE;
432
433 return ic;
434}
435
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200436/*
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200437 * Return TRUE if pattern "pat" has an uppercase character.
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200438 */
439 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100440pat_has_uppercase(char_u *pat)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200441{
442 char_u *p = pat;
443
444 while (*p != NUL)
445 {
446#ifdef FEAT_MBYTE
447 int l;
448
449 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
450 {
451 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
452 return TRUE;
453 p += l;
454 }
455 else
456#endif
457 if (*p == '\\')
458 {
459 if (p[1] == '_' && p[2] != NUL) /* skip "\_X" */
460 p += 3;
461 else if (p[1] == '%' && p[2] != NUL) /* skip "\%X" */
462 p += 3;
463 else if (p[1] != NUL) /* skip "\X" */
464 p += 2;
465 else
466 p += 1;
467 }
468 else if (MB_ISUPPER(*p))
469 return TRUE;
470 else
471 ++p;
472 }
473 return FALSE;
474}
475
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100477last_csearch(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200478{
479#ifdef FEAT_MBYTE
480 return lastc_bytes;
481#else
482 return lastc;
483#endif
484}
485
486 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100487last_csearch_forward(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200488{
489 return lastcdir == FORWARD;
490}
491
492 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100493last_csearch_until(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200494{
495 return last_t_cmd == TRUE;
496}
497
498 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100499set_last_csearch(int c, char_u *s UNUSED, int len UNUSED)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200500{
501 *lastc = c;
502#ifdef FEAT_MBYTE
503 lastc_bytelen = len;
504 if (len)
505 memcpy(lastc_bytes, s, len);
506 else
507 vim_memset(lastc_bytes, 0, sizeof(lastc_bytes));
508#endif
509}
510
511 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100512set_csearch_direction(int cdir)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200513{
514 lastcdir = cdir;
515}
516
517 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100518set_csearch_until(int t_cmd)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200519{
520 last_t_cmd = t_cmd;
521}
522
523 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100524last_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525{
526 return spats[last_idx].pat;
527}
528
529/*
530 * Reset search direction to forward. For "gd" and "gD" commands.
531 */
532 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100533reset_search_dir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534{
535 spats[0].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000536#if defined(FEAT_EVAL)
537 set_vv_searchforward();
538#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539}
540
541#if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
542/*
543 * Set the last search pattern. For ":let @/ =" and viminfo.
544 * Also set the saved search pattern, so that this works in an autocommand.
545 */
546 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100547set_last_search_pat(
548 char_u *s,
549 int idx,
550 int magic,
551 int setlast)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552{
553 vim_free(spats[idx].pat);
554 /* An empty string means that nothing should be matched. */
555 if (*s == NUL)
556 spats[idx].pat = NULL;
557 else
558 spats[idx].pat = vim_strsave(s);
559 spats[idx].magic = magic;
560 spats[idx].no_scs = FALSE;
561 spats[idx].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000562#if defined(FEAT_EVAL)
563 set_vv_searchforward();
564#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 spats[idx].off.line = FALSE;
566 spats[idx].off.end = FALSE;
567 spats[idx].off.off = 0;
568 if (setlast)
569 last_idx = idx;
570 if (save_level)
571 {
572 vim_free(saved_spats[idx].pat);
573 saved_spats[idx] = spats[0];
574 if (spats[idx].pat == NULL)
575 saved_spats[idx].pat = NULL;
576 else
577 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
578 saved_last_idx = last_idx;
579 }
580# ifdef FEAT_SEARCH_EXTRA
581 /* If 'hlsearch' set and search pat changed: need redraw. */
582 if (p_hls && idx == last_idx && !no_hlsearch)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000583 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584# endif
585}
586#endif
587
588#ifdef FEAT_SEARCH_EXTRA
589/*
590 * Get a regexp program for the last used search pattern.
591 * This is used for highlighting all matches in a window.
592 * Values returned in regmatch->regprog and regmatch->rmm_ic.
593 */
594 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100595last_pat_prog(regmmatch_T *regmatch)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596{
597 if (spats[last_idx].pat == NULL)
598 {
599 regmatch->regprog = NULL;
600 return;
601 }
602 ++emsg_off; /* So it doesn't beep if bad expr */
603 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
604 --emsg_off;
605}
606#endif
607
608/*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100609 * Lowest level search function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610 * Search for 'count'th occurrence of pattern 'pat' in direction 'dir'.
611 * Start at position 'pos' and return the found position in 'pos'.
612 *
613 * if (options & SEARCH_MSG) == 0 don't give any messages
614 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
615 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
616 * if (options & SEARCH_HIS) put search pattern in history
617 * if (options & SEARCH_END) return position at end of match
618 * if (options & SEARCH_START) accept match at pos itself
619 * if (options & SEARCH_KEEP) keep previous search pattern
620 * if (options & SEARCH_FOLD) match only once in a closed fold
621 * if (options & SEARCH_PEEK) check for typed char, cancel search
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100622 * if (options & SEARCH_COL) start at pos->col instead of zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623 *
624 * Return FAIL (zero) for failure, non-zero for success.
625 * When FEAT_EVAL is defined, returns the index of the first matching
626 * subpattern plus one; one if there was none.
627 */
628 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100629searchit(
630 win_T *win, /* window to search in; can be NULL for a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631 buffer without a window! */
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100632 buf_T *buf,
633 pos_T *pos,
634 int dir,
635 char_u *pat,
636 long count,
637 int options,
638 int pat_use, /* which pattern to use when "pat" is empty */
639 linenr_T stop_lnum, /* stop after this line number when != 0 */
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200640 proftime_T *tm UNUSED, /* timeout limit or NULL */
641 int *timed_out UNUSED) /* set when timed out or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642{
643 int found;
644 linenr_T lnum; /* no init to shut up Apollo cc */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100645 colnr_T col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 regmmatch_T regmatch;
647 char_u *ptr;
648 colnr_T matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 lpos_T endpos;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000650 lpos_T matchpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651 int loop;
652 pos_T start_pos;
653 int at_first_line;
654 int extra_col;
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200655 int start_char_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 int match_ok;
657 long nmatched;
658 int submatch = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100659 int first_match = TRUE;
Bram Moolenaar280f1262006-01-30 00:14:18 +0000660 int save_called_emsg = called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661#ifdef FEAT_SEARCH_EXTRA
662 int break_loop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663#endif
664
665 if (search_regcomp(pat, RE_SEARCH, pat_use,
666 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
667 {
668 if ((options & SEARCH_MSG) && !rc_did_emsg)
669 EMSG2(_("E383: Invalid search string: %s"), mr_pattern);
670 return FAIL;
671 }
672
Bram Moolenaar280f1262006-01-30 00:14:18 +0000673 /*
674 * find the string
675 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 called_emsg = FALSE;
677 do /* loop for count */
678 {
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100679 /* When not accepting a match at the start position set "extra_col" to
680 * a non-zero value. Don't do that when starting at MAXCOL, since
681 * MAXCOL + 1 is zero. */
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200682 if (pos->col == MAXCOL)
683 start_char_len = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100684#ifdef FEAT_MBYTE
685 /* Watch out for the "col" being MAXCOL - 2, used in a closed fold. */
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200686 else if (has_mbyte
687 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
688 && pos->col < MAXCOL - 2)
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100689 {
Bram Moolenaar82846a02018-02-09 18:09:54 +0100690 ptr = ml_get_buf(buf, pos->lnum, FALSE);
Bram Moolenaar8846ac52018-02-09 19:24:01 +0100691 if ((int)STRLEN(ptr) <= pos->col)
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200692 start_char_len = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100693 else
Bram Moolenaar82846a02018-02-09 18:09:54 +0100694 start_char_len = (*mb_ptr2len)(ptr + pos->col);
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100695 }
696#endif
697 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200698 start_char_len = 1;
699 if (dir == FORWARD)
700 {
701 if (options & SEARCH_START)
702 extra_col = 0;
703 else
704 extra_col = start_char_len;
705 }
706 else
707 {
708 if (options & SEARCH_START)
709 extra_col = start_char_len;
710 else
711 extra_col = 0;
712 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100713
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 start_pos = *pos; /* remember start pos for detecting no match */
715 found = 0; /* default: not found */
716 at_first_line = TRUE; /* default: start in first line */
717 if (pos->lnum == 0) /* correct lnum for when starting in line 0 */
718 {
719 pos->lnum = 1;
720 pos->col = 0;
721 at_first_line = FALSE; /* not in first line now */
722 }
723
724 /*
725 * Start searching in current line, unless searching backwards and
726 * we're in column 0.
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000727 * If we are searching backwards, in column 0, and not including the
728 * current position, gain some efficiency by skipping back a line.
729 * Otherwise begin the search in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 */
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000731 if (dir == BACKWARD && start_pos.col == 0
732 && (options & SEARCH_START) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733 {
734 lnum = pos->lnum - 1;
735 at_first_line = FALSE;
736 }
737 else
738 lnum = pos->lnum;
739
740 for (loop = 0; loop <= 1; ++loop) /* loop twice if 'wrapscan' set */
741 {
742 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
743 lnum += dir, at_first_line = FALSE)
744 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000745 /* Stop after checking "stop_lnum", if it's set. */
746 if (stop_lnum != 0 && (dir == FORWARD
747 ? lnum > stop_lnum : lnum < stop_lnum))
748 break;
Bram Moolenaar76929292008-01-06 19:07:36 +0000749#ifdef FEAT_RELTIME
750 /* Stop after passing the "tm" time limit. */
751 if (tm != NULL && profile_passed_limit(tm))
752 break;
753#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000754
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000756 * Look for a match somewhere in line "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100758 col = at_first_line && (options & SEARCH_COL) ? pos->col
759 : (colnr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 nmatched = vim_regexec_multi(&regmatch, win, buf,
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100761 lnum, col,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000762#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200763 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000764#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200765 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000766#endif
767 );
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768 /* Abort searching on an error (e.g., out of stack). */
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200769 if (called_emsg
770#ifdef FEAT_RELTIME
771 || (timed_out != NULL && *timed_out)
772#endif
773 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 break;
775 if (nmatched > 0)
776 {
777 /* match may actually be in another line when using \zs */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000778 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 endpos = regmatch.endpos[0];
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000780#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 submatch = first_submatch(&regmatch);
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000782#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000783 /* "lnum" may be past end of buffer for "\n\zs". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000784 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
785 ptr = (char_u *)"";
786 else
787 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788
789 /*
790 * Forward search in the first line: match should be after
791 * the start position. If not, continue at the end of the
792 * match (this is vi compatible) or on the next char.
793 */
794 if (dir == FORWARD && at_first_line)
795 {
796 match_ok = TRUE;
797 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000798 * When the match starts in a next line it's certainly
799 * past the start position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 * When match lands on a NUL the cursor will be put
801 * one back afterwards, compare with that position,
802 * otherwise "/$" will get stuck on end of line.
803 */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000804 while (matchpos.lnum == 0
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100805 && ((options & SEARCH_END) && first_match
Bram Moolenaar677ee682005-01-27 14:41:15 +0000806 ? (nmatched == 1
807 && (int)endpos.col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 < (int)start_pos.col + extra_col)
Bram Moolenaar677ee682005-01-27 14:41:15 +0000809 : ((int)matchpos.col
810 - (ptr[matchpos.col] == NUL)
811 < (int)start_pos.col + extra_col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 {
813 /*
814 * If vi-compatible searching, continue at the end
815 * of the match, otherwise continue one position
816 * forward.
817 */
818 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
819 {
820 if (nmatched > 1)
821 {
822 /* end is in next line, thus no match in
823 * this line */
824 match_ok = FALSE;
825 break;
826 }
827 matchcol = endpos.col;
828 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000829 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 && ptr[matchcol] != NUL)
831 {
832#ifdef FEAT_MBYTE
833 if (has_mbyte)
834 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000835 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836 else
837#endif
838 ++matchcol;
839 }
840 }
841 else
842 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000843 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 if (ptr[matchcol] != NUL)
845 {
846#ifdef FEAT_MBYTE
847 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000848 matchcol += (*mb_ptr2len)(ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 + matchcol);
850 else
851#endif
852 ++matchcol;
853 }
854 }
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200855 if (matchcol == 0 && (options & SEARCH_START))
Bram Moolenaardb333a52013-03-19 15:27:48 +0100856 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 if (ptr[matchcol] == NUL
858 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000859 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000860 matchcol,
861#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200862 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000863#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200864 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000865#endif
866 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 {
868 match_ok = FALSE;
869 break;
870 }
Bram Moolenaar677ee682005-01-27 14:41:15 +0000871 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 endpos = regmatch.endpos[0];
873# ifdef FEAT_EVAL
874 submatch = first_submatch(&regmatch);
875# endif
876
877 /* Need to get the line pointer again, a
878 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000879 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 }
881 if (!match_ok)
882 continue;
883 }
884 if (dir == BACKWARD)
885 {
886 /*
887 * Now, if there are multiple matches on this line,
888 * we have to get the last one. Or the last one before
889 * the cursor, if we're on that line.
890 * When putting the new cursor at the end, compare
891 * relative to the end of the match.
892 */
893 match_ok = FALSE;
894 for (;;)
895 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000896 /* Remember a position that is before the start
897 * position, we use it if it's the last match in
898 * the line. Always accept a position after
899 * wrapping around. */
900 if (loop
901 || ((options & SEARCH_END)
902 ? (lnum + regmatch.endpos[0].lnum
903 < start_pos.lnum
904 || (lnum + regmatch.endpos[0].lnum
905 == start_pos.lnum
906 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200907 < (int)start_pos.col
908 + extra_col))
Bram Moolenaar677ee682005-01-27 14:41:15 +0000909 : (lnum + regmatch.startpos[0].lnum
910 < start_pos.lnum
911 || (lnum + regmatch.startpos[0].lnum
912 == start_pos.lnum
913 && (int)regmatch.startpos[0].col
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200914 < (int)start_pos.col
915 + extra_col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000918 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 endpos = regmatch.endpos[0];
920# ifdef FEAT_EVAL
921 submatch = first_submatch(&regmatch);
922# endif
923 }
924 else
925 break;
926
927 /*
928 * We found a valid match, now check if there is
929 * another one after it.
930 * If vi-compatible searching, continue at the end
931 * of the match, otherwise continue one position
932 * forward.
933 */
934 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
935 {
936 if (nmatched > 1)
937 break;
938 matchcol = endpos.col;
939 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000940 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 && ptr[matchcol] != NUL)
942 {
943#ifdef FEAT_MBYTE
944 if (has_mbyte)
945 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000946 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 else
948#endif
949 ++matchcol;
950 }
951 }
952 else
953 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000954 /* Stop when the match is in a next line. */
955 if (matchpos.lnum > 0)
956 break;
957 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 if (ptr[matchcol] != NUL)
959 {
960#ifdef FEAT_MBYTE
961 if (has_mbyte)
962 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000963 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 else
965#endif
966 ++matchcol;
967 }
968 }
969 if (ptr[matchcol] == NUL
970 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000971 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000972 matchcol,
973#ifdef FEAT_RELTIME
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200974 tm, timed_out
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000975#else
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +0200976 NULL, NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000977#endif
978 )) == 0)
Bram Moolenaar9d322762018-02-09 16:04:25 +0100979 {
980#ifdef FEAT_RELTIME
981 /* If the search timed out, we did find a match
982 * but it might be the wrong one, so that's not
983 * OK. */
984 if (timed_out != NULL && *timed_out)
985 match_ok = FALSE;
986#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 break;
Bram Moolenaar9d322762018-02-09 16:04:25 +0100988 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989
990 /* Need to get the line pointer again, a
991 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000992 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 }
994
995 /*
996 * If there is only a match after the cursor, skip
997 * this match.
998 */
999 if (!match_ok)
1000 continue;
1001 }
1002
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001003 /* With the SEARCH_END option move to the last character
1004 * of the match. Don't do it for an empty match, end
1005 * should be same as start then. */
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +02001006 if ((options & SEARCH_END) && !(options & SEARCH_NOOF)
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001007 && !(matchpos.lnum == endpos.lnum
1008 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001010 /* For a match in the first column, set the position
1011 * on the NUL in the previous line. */
Bram Moolenaar677ee682005-01-27 14:41:15 +00001012 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001013 pos->col = endpos.col;
1014 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001015 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001016 if (pos->lnum > 1) /* just in case */
1017 {
1018 --pos->lnum;
1019 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
1020 pos->lnum, FALSE));
1021 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001022 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001023 else
1024 {
1025 --pos->col;
1026#ifdef FEAT_MBYTE
1027 if (has_mbyte
1028 && pos->lnum <= buf->b_ml.ml_line_count)
1029 {
1030 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1031 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
1032 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001033#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +00001034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 }
1036 else
1037 {
Bram Moolenaar677ee682005-01-27 14:41:15 +00001038 pos->lnum = lnum + matchpos.lnum;
1039 pos->col = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 }
1041#ifdef FEAT_VIRTUALEDIT
1042 pos->coladd = 0;
1043#endif
1044 found = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +01001045 first_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046
1047 /* Set variables used for 'incsearch' highlighting. */
Bram Moolenaar677ee682005-01-27 14:41:15 +00001048 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049 search_match_endcol = endpos.col;
1050 break;
1051 }
1052 line_breakcheck(); /* stop if ctrl-C typed */
1053 if (got_int)
1054 break;
1055
1056#ifdef FEAT_SEARCH_EXTRA
1057 /* Cancel searching if a character was typed. Used for
1058 * 'incsearch'. Don't check too often, that would slowdown
1059 * searching too much. */
1060 if ((options & SEARCH_PEEK)
1061 && ((lnum - pos->lnum) & 0x3f) == 0
1062 && char_avail())
1063 {
1064 break_loop = TRUE;
1065 break;
1066 }
1067#endif
1068
1069 if (loop && lnum == start_pos.lnum)
1070 break; /* if second loop, stop where started */
1071 }
1072 at_first_line = FALSE;
1073
1074 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001075 * Stop the search if wrapscan isn't set, "stop_lnum" is
1076 * specified, after an interrupt, after a match and after looping
1077 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001079 if (!p_ws || stop_lnum != 0 || got_int || called_emsg
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001080#ifdef FEAT_RELTIME
1081 || (timed_out != NULL && *timed_out)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001082#endif
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001083#ifdef FEAT_SEARCH_EXTRA
1084 || break_loop
1085#endif
1086 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 break;
1088
1089 /*
1090 * If 'wrapscan' is set we continue at the other end of the file.
1091 * If 'shortmess' does not contain 's', we give a message.
1092 * This message is also remembered in keep_msg for when the screen
1093 * is redrawn. The keep_msg is cleared whenever another message is
1094 * written.
1095 */
1096 if (dir == BACKWARD) /* start second loop at the other end */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00001100 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
1101 give_warning((char_u *)_(dir == BACKWARD
1102 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00001104 if (got_int || called_emsg
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001105#ifdef FEAT_RELTIME
1106 || (timed_out != NULL && *timed_out)
1107#endif
Bram Moolenaar78a15312009-05-15 19:33:18 +00001108#ifdef FEAT_SEARCH_EXTRA
1109 || break_loop
1110#endif
1111 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112 break;
1113 }
1114 while (--count > 0 && found); /* stop after count matches or no match */
1115
Bram Moolenaar473de612013-06-08 18:19:48 +02001116 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117
Bram Moolenaar280f1262006-01-30 00:14:18 +00001118 called_emsg |= save_called_emsg;
1119
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120 if (!found) /* did not find it */
1121 {
1122 if (got_int)
1123 EMSG(_(e_interr));
1124 else if ((options & SEARCH_MSG) == SEARCH_MSG)
1125 {
1126 if (p_ws)
1127 EMSG2(_(e_patnotf2), mr_pattern);
1128 else if (lnum == 0)
1129 EMSG2(_("E384: search hit TOP without match for: %s"),
1130 mr_pattern);
1131 else
1132 EMSG2(_("E385: search hit BOTTOM without match for: %s"),
1133 mr_pattern);
1134 }
1135 return FAIL;
1136 }
1137
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001138 /* A pattern like "\n\zs" may go past the last line. */
1139 if (pos->lnum > buf->b_ml.ml_line_count)
1140 {
1141 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001142 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001143 if (pos->col > 0)
1144 --pos->col;
1145 }
1146
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 return submatch + 1;
1148}
1149
1150#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001151 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001152set_search_direction(int cdir)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001153{
1154 spats[0].off.dir = cdir;
1155}
1156
1157 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001158set_vv_searchforward(void)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001159{
1160 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1161}
1162
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163/*
1164 * Return the number of the first subpat that matched.
Bram Moolenaarad4d8a12015-12-28 19:20:36 +01001165 * Return zero if none of them matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 */
1167 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001168first_submatch(regmmatch_T *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169{
1170 int submatch;
1171
1172 for (submatch = 1; ; ++submatch)
1173 {
1174 if (rp->startpos[submatch].lnum >= 0)
1175 break;
1176 if (submatch == 9)
1177 {
1178 submatch = 0;
1179 break;
1180 }
1181 }
1182 return submatch;
1183}
1184#endif
1185
1186/*
1187 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001188 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 * If 'dirc' is 0: use previous dir.
1190 * If 'pat' is NULL or empty : use previous string.
1191 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1192 * If 'options & SEARCH_ECHO': echo the search command and handle options
1193 * If 'options & SEARCH_MSG' : may give error message
1194 * If 'options & SEARCH_OPT' : interpret optional flags
1195 * If 'options & SEARCH_HIS' : put search pattern in history
1196 * If 'options & SEARCH_NOOF': don't add offset to position
1197 * If 'options & SEARCH_MARK': set previous context mark
1198 * If 'options & SEARCH_KEEP': keep previous search pattern
1199 * If 'options & SEARCH_START': accept match at curpos itself
1200 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1201 *
1202 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1203 * makes the movement linewise without moving the match position.
1204 *
Bram Moolenaarb6c27352015-03-05 19:57:49 +01001205 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 */
1207 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001208do_search(
1209 oparg_T *oap, /* can be NULL */
1210 int dirc, /* '/' or '?' */
1211 char_u *pat,
1212 long count,
1213 int options,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001214 proftime_T *tm, /* timeout limit or NULL */
1215 int *timed_out) /* flag set on timeout or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216{
1217 pos_T pos; /* position of the last match */
1218 char_u *searchstr;
1219 struct soffset old_off;
1220 int retval; /* Return value */
1221 char_u *p;
1222 long c;
1223 char_u *dircp;
1224 char_u *strcopy = NULL;
1225 char_u *ps;
1226
1227 /*
1228 * A line offset is not remembered, this is vi compatible.
1229 */
1230 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1231 {
1232 spats[0].off.line = FALSE;
1233 spats[0].off.off = 0;
1234 }
1235
1236 /*
1237 * Save the values for when (options & SEARCH_KEEP) is used.
1238 * (there is no "if ()" around this because gcc wants them initialized)
1239 */
1240 old_off = spats[0].off;
1241
1242 pos = curwin->w_cursor; /* start searching at the cursor position */
1243
1244 /*
1245 * Find out the direction of the search.
1246 */
1247 if (dirc == 0)
1248 dirc = spats[0].off.dir;
1249 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001250 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001252#if defined(FEAT_EVAL)
1253 set_vv_searchforward();
1254#endif
1255 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 if (options & SEARCH_REV)
1257 {
1258#ifdef WIN32
1259 /* There is a bug in the Visual C++ 2.2 compiler which means that
1260 * dirc always ends up being '/' */
1261 dirc = (dirc == '/') ? '?' : '/';
1262#else
1263 if (dirc == '/')
1264 dirc = '?';
1265 else
1266 dirc = '/';
1267#endif
1268 }
1269
1270#ifdef FEAT_FOLDING
1271 /* If the cursor is in a closed fold, don't find another match in the same
1272 * fold. */
1273 if (dirc == '/')
1274 {
1275 if (hasFolding(pos.lnum, NULL, &pos.lnum))
1276 pos.col = MAXCOL - 2; /* avoid overflow when adding 1 */
1277 }
1278 else
1279 {
1280 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1281 pos.col = 0;
1282 }
1283#endif
1284
1285#ifdef FEAT_SEARCH_EXTRA
1286 /*
1287 * Turn 'hlsearch' highlighting back on.
1288 */
1289 if (no_hlsearch && !(options & SEARCH_KEEP))
1290 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001291 redraw_all_later(SOME_VALID);
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02001292 set_no_hlsearch(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 }
1294#endif
1295
1296 /*
1297 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1298 */
1299 for (;;)
1300 {
1301 searchstr = pat;
1302 dircp = NULL;
1303 /* use previous pattern */
1304 if (pat == NULL || *pat == NUL || *pat == dirc)
1305 {
1306 if (spats[RE_SEARCH].pat == NULL) /* no previous pattern */
1307 {
Bram Moolenaarea683da2016-09-09 21:41:34 +02001308 searchstr = spats[RE_SUBST].pat;
1309 if (searchstr == NULL)
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001310 {
1311 EMSG(_(e_noprevre));
1312 retval = 0;
1313 goto end_do_search;
1314 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001316 else
1317 {
1318 /* make search_regcomp() use spats[RE_SEARCH].pat */
1319 searchstr = (char_u *)"";
1320 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 }
1322
1323 if (pat != NULL && *pat != NUL) /* look for (new) offset */
1324 {
1325 /*
1326 * Find end of regular expression.
1327 * If there is a matching '/' or '?', toss it.
1328 */
1329 ps = strcopy;
1330 p = skip_regexp(pat, dirc, (int)p_magic, &strcopy);
1331 if (strcopy != ps)
1332 {
1333 /* made a copy of "pat" to change "\?" to "?" */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001334 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 pat = strcopy;
1336 searchstr = strcopy;
1337 }
1338 if (*p == dirc)
1339 {
1340 dircp = p; /* remember where we put the NUL */
1341 *p++ = NUL;
1342 }
1343 spats[0].off.line = FALSE;
1344 spats[0].off.end = FALSE;
1345 spats[0].off.off = 0;
1346 /*
1347 * Check for a line offset or a character offset.
1348 * For get_address (echo off) we don't check for a character
1349 * offset, because it is meaningless and the 's' could be a
1350 * substitute command.
1351 */
1352 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1353 spats[0].off.line = TRUE;
1354 else if ((options & SEARCH_OPT) &&
1355 (*p == 'e' || *p == 's' || *p == 'b'))
1356 {
1357 if (*p == 'e') /* end */
1358 spats[0].off.end = SEARCH_END;
1359 ++p;
1360 }
1361 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') /* got an offset */
1362 {
1363 /* 'nr' or '+nr' or '-nr' */
1364 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1365 spats[0].off.off = atol((char *)p);
1366 else if (*p == '-') /* single '-' */
1367 spats[0].off.off = -1;
1368 else /* single '+' */
1369 spats[0].off.off = 1;
1370 ++p;
1371 while (VIM_ISDIGIT(*p)) /* skip number */
1372 ++p;
1373 }
1374
1375 /* compute length of search command for get_address() */
1376 searchcmdlen += (int)(p - pat);
1377
1378 pat = p; /* put pat after search command */
1379 }
1380
1381 if ((options & SEARCH_ECHO) && messaging()
1382 && !cmd_silent && msg_silent == 0)
1383 {
1384 char_u *msgbuf;
1385 char_u *trunc;
1386
1387 if (*searchstr == NUL)
Bram Moolenaar2fb8f682018-12-01 13:14:45 +01001388 p = spats[0].pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 else
1390 p = searchstr;
1391 msgbuf = alloc((unsigned)(STRLEN(p) + 40));
1392 if (msgbuf != NULL)
1393 {
1394 msgbuf[0] = dirc;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001395#ifdef FEAT_MBYTE
1396 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1397 {
1398 /* Use a space to draw the composing char on. */
1399 msgbuf[1] = ' ';
1400 STRCPY(msgbuf + 2, p);
1401 }
1402 else
1403#endif
1404 STRCPY(msgbuf + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 if (spats[0].off.line || spats[0].off.end || spats[0].off.off)
1406 {
1407 p = msgbuf + STRLEN(msgbuf);
1408 *p++ = dirc;
1409 if (spats[0].off.end)
1410 *p++ = 'e';
1411 else if (!spats[0].off.line)
1412 *p++ = 's';
1413 if (spats[0].off.off > 0 || spats[0].off.line)
1414 *p++ = '+';
1415 if (spats[0].off.off != 0 || spats[0].off.line)
1416 sprintf((char *)p, "%ld", spats[0].off.off);
1417 else
1418 *p = NUL;
1419 }
1420
1421 msg_start();
Bram Moolenaara4a08382005-09-09 19:52:02 +00001422 trunc = msg_strtrunc(msgbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423
1424#ifdef FEAT_RIGHTLEFT
1425 /* The search pattern could be shown on the right in rightleft
1426 * mode, but the 'ruler' and 'showcmd' area use it too, thus
1427 * it would be blanked out again very soon. Show it on the
1428 * left, but do reverse the text. */
1429 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1430 {
1431 char_u *r;
1432
1433 r = reverse_text(trunc != NULL ? trunc : msgbuf);
1434 if (r != NULL)
1435 {
1436 vim_free(trunc);
1437 trunc = r;
1438 }
1439 }
1440#endif
1441 if (trunc != NULL)
1442 {
1443 msg_outtrans(trunc);
1444 vim_free(trunc);
1445 }
1446 else
1447 msg_outtrans(msgbuf);
1448 msg_clr_eos();
1449 msg_check();
1450 vim_free(msgbuf);
1451
1452 gotocmdline(FALSE);
1453 out_flush();
1454 msg_nowait = TRUE; /* don't wait for this message */
1455 }
1456 }
1457
1458 /*
1459 * If there is a character offset, subtract it from the current
1460 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001461 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 * This is not done for a line offset, because then we would not be vi
1463 * compatible.
1464 */
Bram Moolenaared203462004-06-16 11:19:22 +00001465 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 {
1467 if (spats[0].off.off > 0)
1468 {
1469 for (c = spats[0].off.off; c; --c)
1470 if (decl(&pos) == -1)
1471 break;
1472 if (c) /* at start of buffer */
1473 {
1474 pos.lnum = 0; /* allow lnum == 0 here */
1475 pos.col = MAXCOL;
1476 }
1477 }
1478 else
1479 {
1480 for (c = spats[0].off.off; c; ++c)
1481 if (incl(&pos) == -1)
1482 break;
1483 if (c) /* at end of buffer */
1484 {
1485 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1486 pos.col = 0;
1487 }
1488 }
1489 }
1490
1491#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
1492 if (p_altkeymap && curwin->w_p_rl)
1493 lrFswap(searchstr,0);
1494#endif
1495
1496 c = searchit(curwin, curbuf, &pos, dirc == '/' ? FORWARD : BACKWARD,
1497 searchstr, count, spats[0].off.end + (options &
1498 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1499 + SEARCH_MSG + SEARCH_START
1500 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02001501 RE_LAST, (linenr_T)0, tm, timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502
1503 if (dircp != NULL)
1504 *dircp = dirc; /* restore second '/' or '?' for normal_cmd() */
1505 if (c == FAIL)
1506 {
1507 retval = 0;
1508 goto end_do_search;
1509 }
1510 if (spats[0].off.end && oap != NULL)
1511 oap->inclusive = TRUE; /* 'e' includes last character */
1512
1513 retval = 1; /* pattern found */
1514
1515 /*
1516 * Add character and/or line offset
1517 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001518 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 {
1520 if (spats[0].off.line) /* Add the offset to the line number. */
1521 {
1522 c = pos.lnum + spats[0].off.off;
1523 if (c < 1)
1524 pos.lnum = 1;
1525 else if (c > curbuf->b_ml.ml_line_count)
1526 pos.lnum = curbuf->b_ml.ml_line_count;
1527 else
1528 pos.lnum = c;
1529 pos.col = 0;
1530
1531 retval = 2; /* pattern found, line offset added */
1532 }
Bram Moolenaared203462004-06-16 11:19:22 +00001533 else if (pos.col < MAXCOL - 2) /* just in case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 {
1535 /* to the right, check for end of file */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001536 c = spats[0].off.off;
1537 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001539 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 if (incl(&pos) == -1)
1541 break;
1542 }
1543 /* to the left, check for start of file */
1544 else
1545 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001546 while (c++ < 0)
1547 if (decl(&pos) == -1)
1548 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 }
1550 }
1551 }
1552
1553 /*
1554 * The search command can be followed by a ';' to do another search.
1555 * For example: "/pat/;/foo/+3;?bar"
1556 * This is like doing another search command, except:
1557 * - The remembered direction '/' or '?' is from the first search.
1558 * - When an error happens the cursor isn't moved at all.
1559 * Don't do this when called by get_address() (it handles ';' itself).
1560 */
1561 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1562 break;
1563
1564 dirc = *++pat;
1565 if (dirc != '?' && dirc != '/')
1566 {
1567 retval = 0;
1568 EMSG(_("E386: Expected '?' or '/' after ';'"));
1569 goto end_do_search;
1570 }
1571 ++pat;
1572 }
1573
1574 if (options & SEARCH_MARK)
1575 setpcmark();
1576 curwin->w_cursor = pos;
1577 curwin->w_set_curswant = TRUE;
1578
1579end_do_search:
Bram Moolenaarac8400d2014-01-14 21:31:34 +01001580 if ((options & SEARCH_KEEP) || cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 spats[0].off = old_off;
1582 vim_free(strcopy);
1583
1584 return retval;
1585}
1586
1587#if defined(FEAT_INS_EXPAND) || defined(PROTO)
1588/*
1589 * search_for_exact_line(buf, pos, dir, pat)
1590 *
1591 * Search for a line starting with the given pattern (ignoring leading
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001592 * white-space), starting from pos and going in direction "dir". "pos" will
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 * contain the position of the match found. Blank lines match only if
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02001594 * ADDING is set. If p_ic is set then the pattern must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 * Return OK for success, or FAIL if no line found.
1596 */
1597 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001598search_for_exact_line(
1599 buf_T *buf,
1600 pos_T *pos,
1601 int dir,
1602 char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603{
1604 linenr_T start = 0;
1605 char_u *ptr;
1606 char_u *p;
1607
1608 if (buf->b_ml.ml_line_count == 0)
1609 return FAIL;
1610 for (;;)
1611 {
1612 pos->lnum += dir;
1613 if (pos->lnum < 1)
1614 {
1615 if (p_ws)
1616 {
1617 pos->lnum = buf->b_ml.ml_line_count;
1618 if (!shortmess(SHM_SEARCH))
1619 give_warning((char_u *)_(top_bot_msg), TRUE);
1620 }
1621 else
1622 {
1623 pos->lnum = 1;
1624 break;
1625 }
1626 }
1627 else if (pos->lnum > buf->b_ml.ml_line_count)
1628 {
1629 if (p_ws)
1630 {
1631 pos->lnum = 1;
1632 if (!shortmess(SHM_SEARCH))
1633 give_warning((char_u *)_(bot_top_msg), TRUE);
1634 }
1635 else
1636 {
1637 pos->lnum = 1;
1638 break;
1639 }
1640 }
1641 if (pos->lnum == start)
1642 break;
1643 if (start == 0)
1644 start = pos->lnum;
1645 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1646 p = skipwhite(ptr);
1647 pos->col = (colnr_T) (p - ptr);
1648
1649 /* when adding lines the matching line may be empty but it is not
1650 * ignored because we are interested in the next line -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001651 if ((compl_cont_status & CONT_ADDING)
1652 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 {
1654 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1655 return OK;
1656 }
1657 else if (*p != NUL) /* ignore empty lines */
1658 { /* expanding lines or words */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001659 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1660 : STRNCMP(p, pat, compl_length)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 return OK;
1662 }
1663 }
1664 return FAIL;
1665}
1666#endif /* FEAT_INS_EXPAND */
1667
1668/*
1669 * Character Searches
1670 */
1671
1672/*
1673 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1674 * position of the character, otherwise move to just before the char.
1675 * Do this "cap->count1" times.
1676 * Return FAIL or OK.
1677 */
1678 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001679searchc(cmdarg_T *cap, int t_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680{
1681 int c = cap->nchar; /* char to search for */
1682 int dir = cap->arg; /* TRUE for searching forward */
1683 long count = cap->count1; /* repeat count */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 int col;
1685 char_u *p;
1686 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001687 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688
1689 if (c != NUL) /* normal search: remember args for repeat */
1690 {
1691 if (!KeyStuffed) /* don't remember when redoing */
1692 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001693 *lastc = c;
1694 set_csearch_direction(dir);
1695 set_csearch_until(t_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696#ifdef FEAT_MBYTE
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001697 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 if (cap->ncharC1 != 0)
1699 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001700 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1,
1701 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 if (cap->ncharC2 != 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001703 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2,
1704 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705 }
1706#endif
1707 }
1708 }
1709 else /* repeat previous search */
1710 {
Bram Moolenaar454709b2017-03-12 16:37:14 +01001711 if (*lastc == NUL
1712#ifdef FEAT_MBYTE
1713 && lastc_bytelen == 1
1714#endif
1715 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 return FAIL;
1717 if (dir) /* repeat in opposite direction */
1718 dir = -lastcdir;
1719 else
1720 dir = lastcdir;
1721 t_cmd = last_t_cmd;
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001722 c = *lastc;
1723 /* For multi-byte re-use last lastc_bytes[] and lastc_bytelen. */
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001724
1725 /* Force a move of at least one char, so ";" and "," will move the
1726 * cursor, even if the cursor is right in front of char we are looking
1727 * at. */
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001728 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001729 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 }
1731
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001732 if (dir == BACKWARD)
1733 cap->oap->inclusive = FALSE;
1734 else
1735 cap->oap->inclusive = TRUE;
1736
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 p = ml_get_curline();
1738 col = curwin->w_cursor.col;
1739 len = (int)STRLEN(p);
1740
1741 while (count--)
1742 {
1743#ifdef FEAT_MBYTE
1744 if (has_mbyte)
1745 {
1746 for (;;)
1747 {
1748 if (dir > 0)
1749 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001750 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 if (col >= len)
1752 return FAIL;
1753 }
1754 else
1755 {
1756 if (col == 0)
1757 return FAIL;
1758 col -= (*mb_head_off)(p, p + col - 1) + 1;
1759 }
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001760 if (lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001762 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 break;
1764 }
Bram Moolenaar66727e12017-03-01 22:17:05 +01001765 else if (STRNCMP(p + col, lastc_bytes, lastc_bytelen) == 0
Bram Moolenaarb129a442016-12-01 17:25:20 +01001766 && stop)
Bram Moolenaar66727e12017-03-01 22:17:05 +01001767 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001768 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 }
1770 }
1771 else
1772#endif
1773 {
1774 for (;;)
1775 {
1776 if ((col += dir) < 0 || col >= len)
1777 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001778 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001780 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 }
1782 }
1783 }
1784
1785 if (t_cmd)
1786 {
1787 /* backup to before the character (possibly double-byte) */
1788 col -= dir;
1789#ifdef FEAT_MBYTE
1790 if (has_mbyte)
1791 {
1792 if (dir < 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001793 /* Landed on the search char which is lastc_bytelen long */
1794 col += lastc_bytelen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 else
1796 /* To previous char, which may be multi-byte. */
1797 col -= (*mb_head_off)(p, p + col);
1798 }
1799#endif
1800 }
1801 curwin->w_cursor.col = col;
1802
1803 return OK;
1804}
1805
1806/*
1807 * "Other" Searches
1808 */
1809
1810/*
1811 * findmatch - find the matching paren or brace
1812 *
1813 * Improvement over vi: Braces inside quotes are ignored.
1814 */
1815 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001816findmatch(oparg_T *oap, int initc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817{
1818 return findmatchlimit(oap, initc, 0, 0);
1819}
1820
1821/*
1822 * Return TRUE if the character before "linep[col]" equals "ch".
1823 * Return FALSE if "col" is zero.
1824 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1825 * is NULL.
1826 * Handles multibyte string correctly.
1827 */
1828 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001829check_prevcol(
1830 char_u *linep,
1831 int col,
1832 int ch,
1833 int *prevcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834{
1835 --col;
1836#ifdef FEAT_MBYTE
1837 if (col > 0 && has_mbyte)
1838 col -= (*mb_head_off)(linep, linep + col);
1839#endif
1840 if (prevcol)
1841 *prevcol = col;
1842 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1843}
1844
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001845/*
1846 * Raw string start is found at linep[startpos.col - 1].
1847 * Return TRUE if the matching end can be found between startpos and endpos.
1848 */
1849 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001850find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos)
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001851{
1852 char_u *p;
1853 char_u *delim_copy;
1854 size_t delim_len;
1855 linenr_T lnum;
1856 int found = FALSE;
1857
1858 for (p = linep + startpos->col + 1; *p && *p != '('; ++p)
1859 ;
1860 delim_len = (p - linep) - startpos->col - 1;
Bram Moolenaar6ed535d2015-08-26 23:01:21 +02001861 delim_copy = vim_strnsave(linep + startpos->col + 1, (int)delim_len);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001862 if (delim_copy == NULL)
1863 return FALSE;
1864 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum)
1865 {
1866 char_u *line = ml_get(lnum);
1867
1868 for (p = line + (lnum == startpos->lnum
1869 ? startpos->col + 1 : 0); *p; ++p)
1870 {
1871 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col)
1872 break;
1873 if (*p == ')' && p[delim_len + 1] == '"'
1874 && STRNCMP(delim_copy, p + 1, delim_len) == 0)
1875 {
1876 found = TRUE;
1877 break;
1878 }
1879 }
1880 if (found)
1881 break;
1882 }
1883 vim_free(delim_copy);
1884 return found;
1885}
1886
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887/*
1888 * findmatchlimit -- find the matching paren or brace, if it exists within
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001889 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling
1890 * off the edge of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 *
1892 * "initc" is the character to find a match for. NUL means to find the
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001893 * character at or after the cursor. Special values:
1894 * '*' look for C-style comment / *
1895 * '/' look for C-style comment / *, ignoring comment-end
1896 * '#' look for preprocessor directives
1897 * 'R' look for raw string start: R"delim(text)delim" (only backwards)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 *
1899 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
1900 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
1901 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
1902 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001903 *
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001904 * "oap" is only used to set oap->motion_type for a linewise motion, it can be
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001905 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 */
1907
1908 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001909findmatchlimit(
1910 oparg_T *oap,
1911 int initc,
1912 int flags,
1913 int maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914{
1915 static pos_T pos; /* current search position */
1916 int findc = 0; /* matching brace */
1917 int c;
1918 int count = 0; /* cumulative number of braces */
1919 int backwards = FALSE; /* init for gcc */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001920 int raw_string = FALSE; /* search for raw string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 int inquote = FALSE; /* TRUE when inside quotes */
1922 char_u *linep; /* pointer to current line */
1923 char_u *ptr;
1924 int do_quotes; /* check for quotes in current line */
1925 int at_start; /* do_quotes value at start position */
1926 int hash_dir = 0; /* Direction searched for # things */
1927 int comment_dir = 0; /* Direction searched for comments */
1928 pos_T match_pos; /* Where last slash-star was found */
1929 int start_in_quotes; /* start position is in quotes */
1930 int traveled = 0; /* how far we've searched so far */
1931 int ignore_cend = FALSE; /* ignore comment end */
1932 int cpo_match; /* vi compatible matching */
1933 int cpo_bsl; /* don't recognize backslashes */
1934 int match_escaped = 0; /* search for escaped match */
1935 int dir; /* Direction to search */
1936 int comment_col = MAXCOL; /* start of / / comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001937#ifdef FEAT_LISP
1938 int lispcomm = FALSE; /* inside of Lisp-style comment */
1939 int lisp = curbuf->b_p_lisp; /* engage Lisp-specific hacks ;) */
1940#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941
1942 pos = curwin->w_cursor;
Bram Moolenaarc56c4592013-08-14 17:45:29 +02001943#ifdef FEAT_VIRTUALEDIT
1944 pos.coladd = 0;
1945#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 linep = ml_get(pos.lnum);
1947
1948 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
1949 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
1950
1951 /* Direction to search when initc is '/', '*' or '#' */
1952 if (flags & FM_BACKWARD)
1953 dir = BACKWARD;
1954 else if (flags & FM_FORWARD)
1955 dir = FORWARD;
1956 else
1957 dir = 0;
1958
1959 /*
1960 * if initc given, look in the table for the matching character
1961 * '/' and '*' are special cases: look for start or end of comment.
1962 * When '/' is used, we ignore running backwards into an star-slash, for
1963 * "[*" command, we just want to find any comment.
1964 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001965 if (initc == '/' || initc == '*' || initc == 'R')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 {
1967 comment_dir = dir;
1968 if (initc == '/')
1969 ignore_cend = TRUE;
1970 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001971 raw_string = (initc == 'R');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 initc = NUL;
1973 }
1974 else if (initc != '#' && initc != NUL)
1975 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001976 find_mps_values(&initc, &findc, &backwards, TRUE);
1977 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 return NULL;
1979 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 else
1981 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001982 /*
1983 * Either initc is '#', or no initc was given and we need to look
1984 * under the cursor.
1985 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 if (initc == '#')
1987 {
1988 hash_dir = dir;
1989 }
1990 else
1991 {
1992 /*
1993 * initc was not given, must look for something to match under
1994 * or near the cursor.
1995 * Only check for special things when 'cpo' doesn't have '%'.
1996 */
1997 if (!cpo_match)
1998 {
1999 /* Are we before or at #if, #else etc.? */
2000 ptr = skipwhite(linep);
2001 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
2002 {
2003 ptr = skipwhite(ptr + 1);
2004 if ( STRNCMP(ptr, "if", 2) == 0
2005 || STRNCMP(ptr, "endif", 5) == 0
2006 || STRNCMP(ptr, "el", 2) == 0)
2007 hash_dir = 1;
2008 }
2009
2010 /* Are we on a comment? */
2011 else if (linep[pos.col] == '/')
2012 {
2013 if (linep[pos.col + 1] == '*')
2014 {
2015 comment_dir = FORWARD;
2016 backwards = FALSE;
2017 pos.col++;
2018 }
2019 else if (pos.col > 0 && linep[pos.col - 1] == '*')
2020 {
2021 comment_dir = BACKWARD;
2022 backwards = TRUE;
2023 pos.col--;
2024 }
2025 }
2026 else if (linep[pos.col] == '*')
2027 {
2028 if (linep[pos.col + 1] == '/')
2029 {
2030 comment_dir = BACKWARD;
2031 backwards = TRUE;
2032 }
2033 else if (pos.col > 0 && linep[pos.col - 1] == '/')
2034 {
2035 comment_dir = FORWARD;
2036 backwards = FALSE;
2037 }
2038 }
2039 }
2040
2041 /*
2042 * If we are not on a comment or the # at the start of a line, then
2043 * look for brace anywhere on this line after the cursor.
2044 */
2045 if (!hash_dir && !comment_dir)
2046 {
2047 /*
2048 * Find the brace under or after the cursor.
2049 * If beyond the end of the line, use the last character in
2050 * the line.
2051 */
2052 if (linep[pos.col] == NUL && pos.col)
2053 --pos.col;
2054 for (;;)
2055 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002056 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 if (initc == NUL)
2058 break;
2059
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002060 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 if (findc)
2062 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002063 pos.col += MB_PTR2LEN(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 }
2065 if (!findc)
2066 {
2067 /* no brace in the line, maybe use " #if" then */
2068 if (!cpo_match && *skipwhite(linep) == '#')
2069 hash_dir = 1;
2070 else
2071 return NULL;
2072 }
2073 else if (!cpo_bsl)
2074 {
2075 int col, bslcnt = 0;
2076
2077 /* Set "match_escaped" if there are an odd number of
2078 * backslashes. */
2079 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2080 bslcnt++;
2081 match_escaped = (bslcnt & 1);
2082 }
2083 }
2084 }
2085 if (hash_dir)
2086 {
2087 /*
2088 * Look for matching #if, #else, #elif, or #endif
2089 */
2090 if (oap != NULL)
2091 oap->motion_type = MLINE; /* Linewise for this case only */
2092 if (initc != '#')
2093 {
2094 ptr = skipwhite(skipwhite(linep) + 1);
2095 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
2096 hash_dir = 1;
2097 else if (STRNCMP(ptr, "endif", 5) == 0)
2098 hash_dir = -1;
2099 else
2100 return NULL;
2101 }
2102 pos.col = 0;
2103 while (!got_int)
2104 {
2105 if (hash_dir > 0)
2106 {
2107 if (pos.lnum == curbuf->b_ml.ml_line_count)
2108 break;
2109 }
2110 else if (pos.lnum == 1)
2111 break;
2112 pos.lnum += hash_dir;
2113 linep = ml_get(pos.lnum);
2114 line_breakcheck(); /* check for CTRL-C typed */
2115 ptr = skipwhite(linep);
2116 if (*ptr != '#')
2117 continue;
2118 pos.col = (colnr_T) (ptr - linep);
2119 ptr = skipwhite(ptr + 1);
2120 if (hash_dir > 0)
2121 {
2122 if (STRNCMP(ptr, "if", 2) == 0)
2123 count++;
2124 else if (STRNCMP(ptr, "el", 2) == 0)
2125 {
2126 if (count == 0)
2127 return &pos;
2128 }
2129 else if (STRNCMP(ptr, "endif", 5) == 0)
2130 {
2131 if (count == 0)
2132 return &pos;
2133 count--;
2134 }
2135 }
2136 else
2137 {
2138 if (STRNCMP(ptr, "if", 2) == 0)
2139 {
2140 if (count == 0)
2141 return &pos;
2142 count--;
2143 }
2144 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
2145 {
2146 if (count == 0)
2147 return &pos;
2148 }
2149 else if (STRNCMP(ptr, "endif", 5) == 0)
2150 count++;
2151 }
2152 }
2153 return NULL;
2154 }
2155 }
2156
2157#ifdef FEAT_RIGHTLEFT
Bram Moolenaarabc97732007-08-08 20:49:37 +00002158 /* This is just guessing: when 'rightleft' is set, search for a matching
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 * paren/brace in the other direction. */
2160 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
2161 backwards = !backwards;
2162#endif
2163
2164 do_quotes = -1;
2165 start_in_quotes = MAYBE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002166 CLEAR_POS(&match_pos);
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002167
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 /* backward search: Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002169 if ((backwards && comment_dir)
2170#ifdef FEAT_LISP
2171 || lisp
2172#endif
2173 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002175#ifdef FEAT_LISP
2176 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
2177 lispcomm = TRUE; /* find match inside this comment */
2178#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 while (!got_int)
2180 {
2181 /*
2182 * Go to the next position, forward or backward. We could use
2183 * inc() and dec() here, but that is much slower
2184 */
2185 if (backwards)
2186 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002187#ifdef FEAT_LISP
2188 /* char to match is inside of comment, don't search outside */
2189 if (lispcomm && pos.col < (colnr_T)comment_col)
2190 break;
2191#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 if (pos.col == 0) /* at start of line, go to prev. one */
2193 {
2194 if (pos.lnum == 1) /* start of file */
2195 break;
2196 --pos.lnum;
2197
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002198 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 break;
2200
2201 linep = ml_get(pos.lnum);
2202 pos.col = (colnr_T)STRLEN(linep); /* pos.col on trailing NUL */
2203 do_quotes = -1;
2204 line_breakcheck();
2205
2206 /* Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002207 if (comment_dir
2208#ifdef FEAT_LISP
2209 || lisp
2210#endif
2211 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002213#ifdef FEAT_LISP
2214 /* skip comment */
2215 if (lisp && comment_col != MAXCOL)
2216 pos.col = comment_col;
2217#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 }
2219 else
2220 {
2221 --pos.col;
2222#ifdef FEAT_MBYTE
2223 if (has_mbyte)
2224 pos.col -= (*mb_head_off)(linep, linep + pos.col);
2225#endif
2226 }
2227 }
2228 else /* forward search */
2229 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002230 if (linep[pos.col] == NUL
2231 /* at end of line, go to next one */
2232#ifdef FEAT_LISP
2233 /* don't search for match in comment */
2234 || (lisp && comment_col != MAXCOL
2235 && pos.col == (colnr_T)comment_col)
2236#endif
2237 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002239 if (pos.lnum == curbuf->b_ml.ml_line_count /* end of file */
2240#ifdef FEAT_LISP
2241 /* line is exhausted and comment with it,
2242 * don't search for match in code */
2243 || lispcomm
2244#endif
2245 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 break;
2247 ++pos.lnum;
2248
2249 if (maxtravel && traveled++ > maxtravel)
2250 break;
2251
2252 linep = ml_get(pos.lnum);
2253 pos.col = 0;
2254 do_quotes = -1;
2255 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002256#ifdef FEAT_LISP
2257 if (lisp) /* find comment pos in new line */
2258 comment_col = check_linecomment(linep);
2259#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 }
2261 else
2262 {
2263#ifdef FEAT_MBYTE
2264 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002265 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 else
2267#endif
2268 ++pos.col;
2269 }
2270 }
2271
2272 /*
2273 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2274 */
2275 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2276 (linep[0] == '{' || linep[0] == '}'))
2277 {
2278 if (linep[0] == findc && count == 0) /* match! */
2279 return &pos;
2280 break; /* out of scope */
2281 }
2282
2283 if (comment_dir)
2284 {
2285 /* Note: comments do not nest, and we ignore quotes in them */
2286 /* TODO: ignore comment brackets inside strings */
2287 if (comment_dir == FORWARD)
2288 {
2289 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2290 {
2291 pos.col++;
2292 return &pos;
2293 }
2294 }
2295 else /* Searching backwards */
2296 {
2297 /*
2298 * A comment may contain / * or / /, it may also start or end
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002299 * with / * /. Ignore a / * after / / and after *.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 */
2301 if (pos.col == 0)
2302 continue;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002303 else if (raw_string)
2304 {
2305 if (linep[pos.col - 1] == 'R'
2306 && linep[pos.col] == '"'
2307 && vim_strchr(linep + pos.col + 1, '(') != NULL)
2308 {
2309 /* Possible start of raw string. Now that we have the
2310 * delimiter we can check if it ends before where we
2311 * started searching, or before the previously found
2312 * raw string start. */
2313 if (!find_rawstring_end(linep, &pos,
2314 count > 0 ? &match_pos : &curwin->w_cursor))
2315 {
2316 count++;
2317 match_pos = pos;
2318 match_pos.col--;
2319 }
2320 linep = ml_get(pos.lnum); /* may have been released */
2321 }
2322 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 else if ( linep[pos.col - 1] == '/'
2324 && linep[pos.col] == '*'
Bram Moolenaarf8c53d32017-11-12 15:36:38 +01002325 && (pos.col == 1 || linep[pos.col - 2] != '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 && (int)pos.col < comment_col)
2327 {
2328 count++;
2329 match_pos = pos;
2330 match_pos.col--;
2331 }
2332 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2333 {
2334 if (count > 0)
2335 pos = match_pos;
2336 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2337 && (int)pos.col <= comment_col)
2338 pos.col -= 2;
2339 else if (ignore_cend)
2340 continue;
2341 else
2342 return NULL;
2343 return &pos;
2344 }
2345 }
2346 continue;
2347 }
2348
2349 /*
2350 * If smart matching ('cpoptions' does not contain '%'), braces inside
2351 * of quotes are ignored, but only if there is an even number of
2352 * quotes in the line.
2353 */
2354 if (cpo_match)
2355 do_quotes = 0;
2356 else if (do_quotes == -1)
2357 {
2358 /*
2359 * Count the number of quotes in the line, skipping \" and '"'.
2360 * Watch out for "\\".
2361 */
2362 at_start = do_quotes;
2363 for (ptr = linep; *ptr; ++ptr)
2364 {
2365 if (ptr == linep + pos.col + backwards)
2366 at_start = (do_quotes & 1);
2367 if (*ptr == '"'
2368 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2369 ++do_quotes;
2370 if (*ptr == '\\' && ptr[1] != NUL)
2371 ++ptr;
2372 }
2373 do_quotes &= 1; /* result is 1 with even number of quotes */
2374
2375 /*
2376 * If we find an uneven count, check current line and previous
2377 * one for a '\' at the end.
2378 */
2379 if (!do_quotes)
2380 {
2381 inquote = FALSE;
2382 if (ptr[-1] == '\\')
2383 {
2384 do_quotes = 1;
2385 if (start_in_quotes == MAYBE)
2386 {
2387 /* Do we need to use at_start here? */
2388 inquote = TRUE;
2389 start_in_quotes = TRUE;
2390 }
2391 else if (backwards)
2392 inquote = TRUE;
2393 }
2394 if (pos.lnum > 1)
2395 {
2396 ptr = ml_get(pos.lnum - 1);
2397 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2398 {
2399 do_quotes = 1;
2400 if (start_in_quotes == MAYBE)
2401 {
2402 inquote = at_start;
2403 if (inquote)
2404 start_in_quotes = TRUE;
2405 }
2406 else if (!backwards)
2407 inquote = TRUE;
2408 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002409
2410 /* ml_get() only keeps one line, need to get linep again */
2411 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 }
2413 }
2414 }
2415 if (start_in_quotes == MAYBE)
2416 start_in_quotes = FALSE;
2417
2418 /*
2419 * If 'smartmatch' is set:
2420 * Things inside quotes are ignored by setting 'inquote'. If we
2421 * find a quote without a preceding '\' invert 'inquote'. At the
2422 * end of a line not ending in '\' we reset 'inquote'.
2423 *
2424 * In lines with an uneven number of quotes (without preceding '\')
2425 * we do not know which part to ignore. Therefore we only set
2426 * inquote if the number of quotes in a line is even, unless this
2427 * line or the previous one ends in a '\'. Complicated, isn't it?
2428 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002429 c = PTR2CHAR(linep + pos.col);
2430 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 {
2432 case NUL:
2433 /* at end of line without trailing backslash, reset inquote */
2434 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2435 {
2436 inquote = FALSE;
2437 start_in_quotes = FALSE;
2438 }
2439 break;
2440
2441 case '"':
2442 /* a quote that is preceded with an odd number of backslashes is
2443 * ignored */
2444 if (do_quotes)
2445 {
2446 int col;
2447
2448 for (col = pos.col - 1; col >= 0; --col)
2449 if (linep[col] != '\\')
2450 break;
2451 if ((((int)pos.col - 1 - col) & 1) == 0)
2452 {
2453 inquote = !inquote;
2454 start_in_quotes = FALSE;
2455 }
2456 }
2457 break;
2458
2459 /*
2460 * If smart matching ('cpoptions' does not contain '%'):
2461 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2462 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2463 * skipped, there is never a brace in them.
2464 * Ignore this when finding matches for `'.
2465 */
2466 case '\'':
2467 if (!cpo_match && initc != '\'' && findc != '\'')
2468 {
2469 if (backwards)
2470 {
2471 if (pos.col > 1)
2472 {
2473 if (linep[pos.col - 2] == '\'')
2474 {
2475 pos.col -= 2;
2476 break;
2477 }
2478 else if (linep[pos.col - 2] == '\\' &&
2479 pos.col > 2 && linep[pos.col - 3] == '\'')
2480 {
2481 pos.col -= 3;
2482 break;
2483 }
2484 }
2485 }
2486 else if (linep[pos.col + 1]) /* forward search */
2487 {
2488 if (linep[pos.col + 1] == '\\' &&
2489 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2490 {
2491 pos.col += 3;
2492 break;
2493 }
2494 else if (linep[pos.col + 2] == '\'')
2495 {
2496 pos.col += 2;
2497 break;
2498 }
2499 }
2500 }
2501 /* FALLTHROUGH */
2502
2503 default:
2504#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002505 /*
2506 * For Lisp skip over backslashed (), {} and [].
2507 * (actually, we skip #\( et al)
2508 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 if (curbuf->b_p_lisp
2510 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002511 && pos.col > 1
2512 && check_prevcol(linep, pos.col, '\\', NULL)
2513 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 break;
2515#endif
2516
2517 /* Check for match outside of quotes, and inside of
2518 * quotes when the start is also inside of quotes. */
2519 if ((!inquote || start_in_quotes == TRUE)
2520 && (c == initc || c == findc))
2521 {
2522 int col, bslcnt = 0;
2523
2524 if (!cpo_bsl)
2525 {
2526 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2527 bslcnt++;
2528 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00002529 /* Only accept a match when 'M' is in 'cpo' or when escaping
2530 * is what we expect. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2532 {
2533 if (c == initc)
2534 count++;
2535 else
2536 {
2537 if (count == 0)
2538 return &pos;
2539 count--;
2540 }
2541 }
2542 }
2543 }
2544 }
2545
2546 if (comment_dir == BACKWARD && count > 0)
2547 {
2548 pos = match_pos;
2549 return &pos;
2550 }
2551 return (pos_T *)NULL; /* never found it */
2552}
2553
2554/*
2555 * Check if line[] contains a / / comment.
2556 * Return MAXCOL if not, otherwise return the column.
2557 * TODO: skip strings.
2558 */
2559 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002560check_linecomment(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561{
2562 char_u *p;
2563
2564 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002565#ifdef FEAT_LISP
2566 /* skip Lispish one-line comments */
2567 if (curbuf->b_p_lisp)
2568 {
2569 if (vim_strchr(p, ';') != NULL) /* there may be comments */
2570 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002571 int in_str = FALSE; /* inside of string */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002572
2573 p = line; /* scan from start */
Bram Moolenaar520470a2005-06-16 21:59:56 +00002574 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002575 {
2576 if (*p == '"')
2577 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002578 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002579 {
2580 if (*(p - 1) != '\\') /* skip escaped quote */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002581 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002582 }
2583 else if (p == line || ((p - line) >= 2
2584 /* skip #\" form */
2585 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002586 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002587 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002588 else if (!in_str && ((p - line) < 2
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002589 || (*(p - 1) != '\\' && *(p - 2) != '#')))
2590 break; /* found! */
2591 ++p;
2592 }
2593 }
2594 else
2595 p = NULL;
2596 }
2597 else
2598#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599 while ((p = vim_strchr(p, '/')) != NULL)
2600 {
Bram Moolenaar78d4aba2008-01-01 14:43:35 +00002601 /* accept a double /, unless it's preceded with * and followed by *,
2602 * because * / / * is an end and start of a C comment */
2603 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 break;
2605 ++p;
2606 }
2607
2608 if (p == NULL)
2609 return MAXCOL;
2610 return (int)(p - line);
2611}
2612
2613/*
2614 * Move cursor briefly to character matching the one under the cursor.
2615 * Used for Insert mode and "r" command.
2616 * Show the match only if it is visible on the screen.
2617 * If there isn't a match, then beep.
2618 */
2619 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002620showmatch(
2621 int c) /* char to show match for */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622{
2623 pos_T *lpos, save_cursor;
2624 pos_T mpos;
2625 colnr_T vcol;
2626 long save_so;
2627 long save_siso;
2628#ifdef CURSOR_SHAPE
2629 int save_state;
2630#endif
2631 colnr_T save_dollar_vcol;
2632 char_u *p;
2633
2634 /*
2635 * Only show match for chars in the 'matchpairs' option.
2636 */
2637 /* 'matchpairs' is "x:y,x:y" */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002638 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 {
2640#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002641 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002642 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002643#endif
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002644 p += MB_PTR2LEN(p) + 1;
2645 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646#ifdef FEAT_RIGHTLEFT
2647 && !(curwin->w_p_rl ^ p_ri)
2648#endif
2649 )
2650 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002651 p += MB_PTR2LEN(p);
2652 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 return;
2654 }
2655
2656 if ((lpos = findmatch(NULL, NUL)) == NULL) /* no match, so beep */
Bram Moolenaar165bc692015-07-21 17:53:25 +02002657 vim_beep(BO_MATCH);
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002658 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 {
2660 if (!curwin->w_p_wrap)
2661 getvcol(curwin, lpos, NULL, &vcol, NULL);
2662 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
Bram Moolenaar02631462017-09-22 15:20:32 +02002663 && vcol < curwin->w_leftcol + curwin->w_width))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 {
2665 mpos = *lpos; /* save the pos, update_screen() may change it */
2666 save_cursor = curwin->w_cursor;
2667 save_so = p_so;
2668 save_siso = p_siso;
2669 /* Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2670 * stop displaying the "$". */
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002671 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2672 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 ++curwin->w_virtcol; /* do display ')' just before "$" */
2674 update_screen(VALID); /* show the new char first */
2675
2676 save_dollar_vcol = dollar_vcol;
2677#ifdef CURSOR_SHAPE
2678 save_state = State;
2679 State = SHOWMATCH;
2680 ui_cursor_shape(); /* may show different cursor shape */
2681#endif
2682 curwin->w_cursor = mpos; /* move to matching char */
2683 p_so = 0; /* don't use 'scrolloff' here */
2684 p_siso = 0; /* don't use 'sidescrolloff' here */
2685 showruler(FALSE);
2686 setcursor();
2687 cursor_on(); /* make sure that the cursor is shown */
Bram Moolenaara338adc2018-01-31 20:51:47 +01002688 out_flush_cursor(TRUE, FALSE);
2689
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 /* Restore dollar_vcol(), because setcursor() may call curs_rows()
2691 * which resets it if the matching position is in a previous line
2692 * and has a higher column number. */
2693 dollar_vcol = save_dollar_vcol;
2694
2695 /*
2696 * brief pause, unless 'm' is present in 'cpo' and a character is
2697 * available.
2698 */
2699 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
2700 ui_delay(p_mat * 100L, TRUE);
2701 else if (!char_avail())
2702 ui_delay(p_mat * 100L, FALSE);
2703 curwin->w_cursor = save_cursor; /* restore cursor position */
2704 p_so = save_so;
2705 p_siso = save_siso;
2706#ifdef CURSOR_SHAPE
2707 State = save_state;
2708 ui_cursor_shape(); /* may show different cursor shape */
2709#endif
2710 }
2711 }
2712}
2713
2714/*
Bram Moolenaar85160712018-06-19 18:27:41 +02002715 * Find the start of the next sentence, searching in the direction specified
2716 * by the "dir" argument. The cursor is positioned on the start of the next
2717 * sentence when found. If the next sentence is found, return OK. Return FAIL
2718 * otherwise. See ":h sentence" for the precise definition of a "sentence"
2719 * text object.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 */
2721 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002722findsent(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723{
2724 pos_T pos, tpos;
2725 int c;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002726 int (*func)(pos_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 int startlnum;
2728 int noskip = FALSE; /* do not skip blanks */
2729 int cpo_J;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002730 int found_dot;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731
2732 pos = curwin->w_cursor;
2733 if (dir == FORWARD)
2734 func = incl;
2735 else
2736 func = decl;
2737
2738 while (count--)
2739 {
2740 /*
2741 * if on an empty line, skip upto a non-empty line
2742 */
2743 if (gchar_pos(&pos) == NUL)
2744 {
2745 do
2746 if ((*func)(&pos) == -1)
2747 break;
2748 while (gchar_pos(&pos) == NUL);
2749 if (dir == FORWARD)
2750 goto found;
2751 }
2752 /*
2753 * if on the start of a paragraph or a section and searching forward,
2754 * go to the next line
2755 */
2756 else if (dir == FORWARD && pos.col == 0 &&
2757 startPS(pos.lnum, NUL, FALSE))
2758 {
2759 if (pos.lnum == curbuf->b_ml.ml_line_count)
2760 return FAIL;
2761 ++pos.lnum;
2762 goto found;
2763 }
2764 else if (dir == BACKWARD)
2765 decl(&pos);
2766
Bram Moolenaar85160712018-06-19 18:27:41 +02002767 // go back to the previous non-white non-punctuation character
Bram Moolenaardef9e822004-12-31 20:58:58 +00002768 found_dot = FALSE;
Bram Moolenaar85160712018-06-19 18:27:41 +02002769 while (c = gchar_pos(&pos), VIM_ISWHITE(c)
2770 || vim_strchr((char_u *)".!?)]\"'", c) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 {
Bram Moolenaar85160712018-06-19 18:27:41 +02002772 tpos = pos;
2773 if (decl(&tpos) == -1 || (LINEEMPTY(tpos.lnum) && dir == FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 break;
Bram Moolenaar85160712018-06-19 18:27:41 +02002775
2776 if (found_dot)
2777 break;
2778 if (vim_strchr((char_u *) ".!?", c) != NULL)
2779 found_dot = TRUE;
2780
2781 if (vim_strchr((char_u *) ")]\"'", c) != NULL
2782 && vim_strchr((char_u *) ".!?)]\"'", gchar_pos(&tpos)) == NULL)
2783 break;
2784
2785 decl(&pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 }
2787
2788 /* remember the line where the search started */
2789 startlnum = pos.lnum;
2790 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL;
2791
2792 for (;;) /* find end of sentence */
2793 {
2794 c = gchar_pos(&pos);
2795 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE)))
2796 {
2797 if (dir == BACKWARD && pos.lnum != startlnum)
2798 ++pos.lnum;
2799 break;
2800 }
2801 if (c == '.' || c == '!' || c == '?')
2802 {
2803 tpos = pos;
2804 do
2805 if ((c = inc(&tpos)) == -1)
2806 break;
2807 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos))
2808 != NULL);
2809 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL
2810 || (cpo_J && (c == ' ' && inc(&tpos) >= 0
2811 && gchar_pos(&tpos) == ' ')))
2812 {
2813 pos = tpos;
2814 if (gchar_pos(&pos) == NUL) /* skip NUL at EOL */
2815 inc(&pos);
2816 break;
2817 }
2818 }
2819 if ((*func)(&pos) == -1)
2820 {
2821 if (count)
2822 return FAIL;
2823 noskip = TRUE;
2824 break;
2825 }
2826 }
2827found:
2828 /* skip white space */
2829 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t'))
2830 if (incl(&pos) == -1)
2831 break;
2832 }
2833
2834 setpcmark();
2835 curwin->w_cursor = pos;
2836 return OK;
2837}
2838
2839/*
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002840 * Find the next paragraph or section in direction 'dir'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 * Paragraphs are currently supposed to be separated by empty lines.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002842 * If 'what' is NUL we go to the next paragraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 * If 'what' is '{' or '}' we go to the next section.
2844 * If 'both' is TRUE also stop at '}'.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002845 * Return TRUE if the next paragraph or section was found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 */
2847 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002848findpar(
2849 int *pincl, /* Return: TRUE if last char is to be included */
2850 int dir,
2851 long count,
2852 int what,
2853 int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854{
2855 linenr_T curr;
2856 int did_skip; /* TRUE after separating lines have been skipped */
2857 int first; /* TRUE on first line */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002858 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859#ifdef FEAT_FOLDING
2860 linenr_T fold_first; /* first line of a closed fold */
2861 linenr_T fold_last; /* last line of a closed fold */
2862 int fold_skipped; /* TRUE if a closed fold was skipped this
2863 iteration */
2864#endif
2865
2866 curr = curwin->w_cursor.lnum;
2867
2868 while (count--)
2869 {
2870 did_skip = FALSE;
2871 for (first = TRUE; ; first = FALSE)
2872 {
2873 if (*ml_get(curr) != NUL)
2874 did_skip = TRUE;
2875
2876#ifdef FEAT_FOLDING
2877 /* skip folded lines */
2878 fold_skipped = FALSE;
2879 if (first && hasFolding(curr, &fold_first, &fold_last))
2880 {
2881 curr = ((dir > 0) ? fold_last : fold_first) + dir;
2882 fold_skipped = TRUE;
2883 }
2884#endif
2885
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01002886 /* POSIX has its own ideas of what a paragraph boundary is and it
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002887 * doesn't match historical Vi: It also stops at a "{" in the
2888 * first column and at an empty line. */
2889 if (!first && did_skip && (startPS(curr, what, both)
2890 || (posix && what == NUL && *ml_get(curr) == '{')))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 break;
2892
2893#ifdef FEAT_FOLDING
2894 if (fold_skipped)
2895 curr -= dir;
2896#endif
2897 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count)
2898 {
2899 if (count)
2900 return FALSE;
2901 curr -= dir;
2902 break;
2903 }
2904 }
2905 }
2906 setpcmark();
2907 if (both && *ml_get(curr) == '}') /* include line with '}' */
2908 ++curr;
2909 curwin->w_cursor.lnum = curr;
2910 if (curr == curbuf->b_ml.ml_line_count && what != '}')
2911 {
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02002912 char_u *line = ml_get(curr);
2913
2914 /* Put the cursor on the last character in the last line and make the
2915 * motion inclusive. */
2916 if ((curwin->w_cursor.col = (colnr_T)STRLEN(line)) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 {
2918 --curwin->w_cursor.col;
Bram Moolenaarbf3d5802017-03-29 19:48:11 +02002919#ifdef FEAT_MBYTE
2920 curwin->w_cursor.col -=
2921 (*mb_head_off)(line, line + curwin->w_cursor.col);
2922#endif
Bram Moolenaar92d640f2005-09-05 22:11:52 +00002923 *pincl = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924 }
2925 }
2926 else
2927 curwin->w_cursor.col = 0;
2928 return TRUE;
2929}
2930
2931/*
2932 * check if the string 's' is a nroff macro that is in option 'opt'
2933 */
2934 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002935inmacro(char_u *opt, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936{
2937 char_u *macro;
2938
2939 for (macro = opt; macro[0]; ++macro)
2940 {
2941 /* Accept two characters in the option being equal to two characters
2942 * in the line. A space in the option matches with a space in the
2943 * line or the line having ended. */
2944 if ( (macro[0] == s[0]
2945 || (macro[0] == ' '
2946 && (s[0] == NUL || s[0] == ' ')))
2947 && (macro[1] == s[1]
2948 || ((macro[1] == NUL || macro[1] == ' ')
2949 && (s[0] == NUL || s[1] == NUL || s[1] == ' '))))
2950 break;
2951 ++macro;
2952 if (macro[0] == NUL)
2953 break;
2954 }
2955 return (macro[0] != NUL);
2956}
2957
2958/*
2959 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph.
2960 * If 'para' is '{' or '}' only check for sections.
2961 * If 'both' is TRUE also stop at '}'
2962 */
2963 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002964startPS(linenr_T lnum, int para, int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965{
2966 char_u *s;
2967
2968 s = ml_get(lnum);
2969 if (*s == para || *s == '\f' || (both && *s == '}'))
2970 return TRUE;
2971 if (*s == '.' && (inmacro(p_sections, s + 1) ||
2972 (!para && inmacro(p_para, s + 1))))
2973 return TRUE;
2974 return FALSE;
2975}
2976
2977/*
2978 * The following routines do the word searches performed by the 'w', 'W',
2979 * 'b', 'B', 'e', and 'E' commands.
2980 */
2981
2982/*
2983 * To perform these searches, characters are placed into one of three
2984 * classes, and transitions between classes determine word boundaries.
2985 *
2986 * The classes are:
2987 *
2988 * 0 - white space
2989 * 1 - punctuation
2990 * 2 or higher - keyword characters (letters, digits and underscore)
2991 */
2992
2993static int cls_bigword; /* TRUE for "W", "B" or "E" */
2994
2995/*
2996 * cls() - returns the class of character at curwin->w_cursor
2997 *
2998 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars
2999 * from class 2 and higher are reported as class 1 since only white space
3000 * boundaries are of interest.
3001 */
3002 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003003cls(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004{
3005 int c;
3006
3007 c = gchar_cursor();
3008#ifdef FEAT_FKMAP /* when 'akm' (Farsi mode), take care of Farsi blank */
3009 if (p_altkeymap && c == F_BLANK)
3010 return 0;
3011#endif
3012 if (c == ' ' || c == '\t' || c == NUL)
3013 return 0;
3014#ifdef FEAT_MBYTE
3015 if (enc_dbcs != 0 && c > 0xFF)
3016 {
3017 /* If cls_bigword, report multi-byte chars as class 1. */
3018 if (enc_dbcs == DBCS_KOR && cls_bigword)
3019 return 1;
3020
3021 /* process code leading/trailing bytes */
3022 return dbcs_class(((unsigned)c >> 8), (c & 0xFF));
3023 }
3024 if (enc_utf8)
3025 {
3026 c = utf_class(c);
3027 if (c != 0 && cls_bigword)
3028 return 1;
3029 return c;
3030 }
3031#endif
3032
3033 /* If cls_bigword is TRUE, report all non-blanks as class 1. */
3034 if (cls_bigword)
3035 return 1;
3036
3037 if (vim_iswordc(c))
3038 return 2;
3039 return 1;
3040}
3041
3042
3043/*
3044 * fwd_word(count, type, eol) - move forward one word
3045 *
3046 * Returns FAIL if the cursor was already at the end of the file.
3047 * If eol is TRUE, last word stops at end of line (for operators).
3048 */
3049 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003050fwd_word(
3051 long count,
3052 int bigword, /* "W", "E" or "B" */
3053 int eol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054{
3055 int sclass; /* starting class */
3056 int i;
3057 int last_line;
3058
3059#ifdef FEAT_VIRTUALEDIT
3060 curwin->w_cursor.coladd = 0;
3061#endif
3062 cls_bigword = bigword;
3063 while (--count >= 0)
3064 {
3065#ifdef FEAT_FOLDING
3066 /* When inside a range of folded lines, move to the last char of the
3067 * last line. */
3068 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3069 coladvance((colnr_T)MAXCOL);
3070#endif
3071 sclass = cls();
3072
3073 /*
3074 * We always move at least one character, unless on the last
3075 * character in the buffer.
3076 */
3077 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count);
3078 i = inc_cursor();
3079 if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */
3080 return FAIL;
Bram Moolenaar9a149792007-07-10 10:38:02 +00003081 if (i >= 1 && eol && count == 0) /* started at last char in line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 return OK;
3083
3084 /*
3085 * Go one char past end of current word (if any)
3086 */
3087 if (sclass != 0)
3088 while (cls() == sclass)
3089 {
3090 i = inc_cursor();
3091 if (i == -1 || (i >= 1 && eol && count == 0))
3092 return OK;
3093 }
3094
3095 /*
3096 * go to next non-white
3097 */
3098 while (cls() == 0)
3099 {
3100 /*
3101 * We'll stop if we land on a blank line
3102 */
3103 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL)
3104 break;
3105
3106 i = inc_cursor();
3107 if (i == -1 || (i >= 1 && eol && count == 0))
3108 return OK;
3109 }
3110 }
3111 return OK;
3112}
3113
3114/*
3115 * bck_word() - move backward 'count' words
3116 *
3117 * If stop is TRUE and we are already on the start of a word, move one less.
3118 *
3119 * Returns FAIL if top of the file was reached.
3120 */
3121 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003122bck_word(long count, int bigword, int stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123{
3124 int sclass; /* starting class */
3125
3126#ifdef FEAT_VIRTUALEDIT
3127 curwin->w_cursor.coladd = 0;
3128#endif
3129 cls_bigword = bigword;
3130 while (--count >= 0)
3131 {
3132#ifdef FEAT_FOLDING
3133 /* When inside a range of folded lines, move to the first char of the
3134 * first line. */
3135 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL))
3136 curwin->w_cursor.col = 0;
3137#endif
3138 sclass = cls();
3139 if (dec_cursor() == -1) /* started at start of file */
3140 return FAIL;
3141
3142 if (!stop || sclass == cls() || sclass == 0)
3143 {
3144 /*
3145 * Skip white space before the word.
3146 * Stop on an empty line.
3147 */
3148 while (cls() == 0)
3149 {
3150 if (curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003151 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 goto finished;
3153 if (dec_cursor() == -1) /* hit start of file, stop here */
3154 return OK;
3155 }
3156
3157 /*
3158 * Move backward to start of this word.
3159 */
3160 if (skip_chars(cls(), BACKWARD))
3161 return OK;
3162 }
3163
3164 inc_cursor(); /* overshot - forward one */
3165finished:
3166 stop = FALSE;
3167 }
3168 return OK;
3169}
3170
3171/*
3172 * end_word() - move to the end of the word
3173 *
3174 * There is an apparent bug in the 'e' motion of the real vi. At least on the
3175 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e'
3176 * motion crosses blank lines. When the real vi crosses a blank line in an
3177 * 'e' motion, the cursor is placed on the FIRST character of the next
3178 * non-blank line. The 'E' command, however, works correctly. Since this
3179 * appears to be a bug, I have not duplicated it here.
3180 *
3181 * Returns FAIL if end of the file was reached.
3182 *
3183 * If stop is TRUE and we are already on the end of a word, move one less.
3184 * If empty is TRUE stop on an empty line.
3185 */
3186 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003187end_word(
3188 long count,
3189 int bigword,
3190 int stop,
3191 int empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192{
3193 int sclass; /* starting class */
3194
3195#ifdef FEAT_VIRTUALEDIT
3196 curwin->w_cursor.coladd = 0;
3197#endif
3198 cls_bigword = bigword;
3199 while (--count >= 0)
3200 {
3201#ifdef FEAT_FOLDING
3202 /* When inside a range of folded lines, move to the last char of the
3203 * last line. */
3204 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3205 coladvance((colnr_T)MAXCOL);
3206#endif
3207 sclass = cls();
3208 if (inc_cursor() == -1)
3209 return FAIL;
3210
3211 /*
3212 * If we're in the middle of a word, we just have to move to the end
3213 * of it.
3214 */
3215 if (cls() == sclass && sclass != 0)
3216 {
3217 /*
3218 * Move forward to end of the current word
3219 */
3220 if (skip_chars(sclass, FORWARD))
3221 return FAIL;
3222 }
3223 else if (!stop || sclass == 0)
3224 {
3225 /*
3226 * We were at the end of a word. Go to the end of the next word.
3227 * First skip white space, if 'empty' is TRUE, stop at empty line.
3228 */
3229 while (cls() == 0)
3230 {
3231 if (empty && curwin->w_cursor.col == 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003232 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233 goto finished;
3234 if (inc_cursor() == -1) /* hit end of file, stop here */
3235 return FAIL;
3236 }
3237
3238 /*
3239 * Move forward to the end of this word.
3240 */
3241 if (skip_chars(cls(), FORWARD))
3242 return FAIL;
3243 }
3244 dec_cursor(); /* overshot - one char backward */
3245finished:
3246 stop = FALSE; /* we move only one word less */
3247 }
3248 return OK;
3249}
3250
3251/*
3252 * Move back to the end of the word.
3253 *
3254 * Returns FAIL if start of the file was reached.
3255 */
3256 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003257bckend_word(
3258 long count,
3259 int bigword, /* TRUE for "B" */
3260 int eol) /* TRUE: stop at end of line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261{
3262 int sclass; /* starting class */
3263 int i;
3264
3265#ifdef FEAT_VIRTUALEDIT
3266 curwin->w_cursor.coladd = 0;
3267#endif
3268 cls_bigword = bigword;
3269 while (--count >= 0)
3270 {
3271 sclass = cls();
3272 if ((i = dec_cursor()) == -1)
3273 return FAIL;
3274 if (eol && i == 1)
3275 return OK;
3276
3277 /*
3278 * Move backward to before the start of this word.
3279 */
3280 if (sclass != 0)
3281 {
3282 while (cls() == sclass)
3283 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3284 return OK;
3285 }
3286
3287 /*
3288 * Move backward to end of the previous word
3289 */
3290 while (cls() == 0)
3291 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003292 if (curwin->w_cursor.col == 0 && LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293 break;
3294 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3295 return OK;
3296 }
3297 }
3298 return OK;
3299}
3300
3301/*
3302 * Skip a row of characters of the same class.
3303 * Return TRUE when end-of-file reached, FALSE otherwise.
3304 */
3305 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003306skip_chars(int cclass, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307{
3308 while (cls() == cclass)
3309 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1)
3310 return TRUE;
3311 return FALSE;
3312}
3313
3314#ifdef FEAT_TEXTOBJ
3315/*
3316 * Go back to the start of the word or the start of white space
3317 */
3318 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003319back_in_line(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320{
3321 int sclass; /* starting class */
3322
3323 sclass = cls();
3324 for (;;)
3325 {
3326 if (curwin->w_cursor.col == 0) /* stop at start of line */
3327 break;
3328 dec_cursor();
3329 if (cls() != sclass) /* stop at start of word */
3330 {
3331 inc_cursor();
3332 break;
3333 }
3334 }
3335}
3336
3337 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003338find_first_blank(pos_T *posp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339{
3340 int c;
3341
3342 while (decl(posp) != -1)
3343 {
3344 c = gchar_pos(posp);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003345 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346 {
3347 incl(posp);
3348 break;
3349 }
3350 }
3351}
3352
3353/*
3354 * Skip count/2 sentences and count/2 separating white spaces.
3355 */
3356 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003357findsent_forward(
3358 long count,
3359 int at_start_sent) /* cursor is at start of sentence */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360{
3361 while (count--)
3362 {
3363 findsent(FORWARD, 1L);
3364 if (at_start_sent)
3365 find_first_blank(&curwin->w_cursor);
3366 if (count == 0 || at_start_sent)
3367 decl(&curwin->w_cursor);
3368 at_start_sent = !at_start_sent;
3369 }
3370}
3371
3372/*
3373 * Find word under cursor, cursor at end.
3374 * Used while an operator is pending, and in Visual mode.
3375 */
3376 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003377current_word(
3378 oparg_T *oap,
3379 long count,
3380 int include, /* TRUE: include word and white space */
3381 int bigword) /* FALSE == word, TRUE == WORD */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382{
3383 pos_T start_pos;
3384 pos_T pos;
3385 int inclusive = TRUE;
3386 int include_white = FALSE;
3387
3388 cls_bigword = bigword;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003389 CLEAR_POS(&start_pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 /* Correct cursor when 'selection' is exclusive */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003392 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393 dec_cursor();
3394
3395 /*
3396 * When Visual mode is not active, or when the VIsual area is only one
3397 * character, select the word and/or white space under the cursor.
3398 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003399 if (!VIsual_active || EQUAL_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 {
3401 /*
3402 * Go to start of current word or white space.
3403 */
3404 back_in_line();
3405 start_pos = curwin->w_cursor;
3406
3407 /*
3408 * If the start is on white space, and white space should be included
3409 * (" word"), or start is not on white space, and white space should
3410 * not be included ("word"), find end of word.
3411 */
3412 if ((cls() == 0) == include)
3413 {
3414 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3415 return FAIL;
3416 }
3417 else
3418 {
3419 /*
3420 * If the start is not on white space, and white space should be
3421 * included ("word "), or start is on white space and white
3422 * space should not be included (" "), find start of word.
3423 * If we end up in the first column of the next line (single char
3424 * word) back up to end of the line.
3425 */
3426 fwd_word(1L, bigword, TRUE);
3427 if (curwin->w_cursor.col == 0)
3428 decl(&curwin->w_cursor);
3429 else
3430 oneleft();
3431
3432 if (include)
3433 include_white = TRUE;
3434 }
3435
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 if (VIsual_active)
3437 {
3438 /* should do something when inclusive == FALSE ! */
3439 VIsual = start_pos;
3440 redraw_curbuf_later(INVERTED); /* update the inversion */
3441 }
3442 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 {
3444 oap->start = start_pos;
3445 oap->motion_type = MCHAR;
3446 }
3447 --count;
3448 }
3449
3450 /*
3451 * When count is still > 0, extend with more objects.
3452 */
3453 while (count > 0)
3454 {
3455 inclusive = TRUE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003456 if (VIsual_active && LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 {
3458 /*
3459 * In Visual mode, with cursor at start: move cursor back.
3460 */
3461 if (decl(&curwin->w_cursor) == -1)
3462 return FAIL;
3463 if (include != (cls() != 0))
3464 {
3465 if (bck_word(1L, bigword, TRUE) == FAIL)
3466 return FAIL;
3467 }
3468 else
3469 {
3470 if (bckend_word(1L, bigword, TRUE) == FAIL)
3471 return FAIL;
3472 (void)incl(&curwin->w_cursor);
3473 }
3474 }
3475 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476 {
3477 /*
3478 * Move cursor forward one word and/or white area.
3479 */
3480 if (incl(&curwin->w_cursor) == -1)
3481 return FAIL;
3482 if (include != (cls() == 0))
3483 {
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003484 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 return FAIL;
3486 /*
3487 * If end is just past a new-line, we don't want to include
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003488 * the first character on the line.
3489 * Put cursor on last char of white.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 */
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003491 if (oneleft() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 inclusive = FALSE;
3493 }
3494 else
3495 {
3496 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3497 return FAIL;
3498 }
3499 }
3500 --count;
3501 }
3502
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003503 if (include_white && (cls() != 0
3504 || (curwin->w_cursor.col == 0 && !inclusive)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 {
3506 /*
3507 * If we don't include white space at the end, move the start
3508 * to include some white space there. This makes "daw" work
3509 * better on the last word in a sentence (and "2daw" on last-but-one
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003510 * word). Also when "2daw" deletes "word." at the end of the line
3511 * (cursor is at start of next line).
3512 * But don't delete white space at start of line (indent).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 */
3514 pos = curwin->w_cursor; /* save cursor position */
3515 curwin->w_cursor = start_pos;
3516 if (oneleft() == OK)
3517 {
3518 back_in_line();
3519 if (cls() == 0 && curwin->w_cursor.col > 0)
3520 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003521 if (VIsual_active)
3522 VIsual = curwin->w_cursor;
3523 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524 oap->start = curwin->w_cursor;
3525 }
3526 }
3527 curwin->w_cursor = pos; /* put cursor back at end */
3528 }
3529
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 if (VIsual_active)
3531 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003532 if (*p_sel == 'e' && inclusive && LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 inc_cursor();
3534 if (VIsual_mode == 'V')
3535 {
3536 VIsual_mode = 'v';
3537 redraw_cmdline = TRUE; /* show mode later */
3538 }
3539 }
3540 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 oap->inclusive = inclusive;
3542
3543 return OK;
3544}
3545
3546/*
3547 * Find sentence(s) under the cursor, cursor at end.
3548 * When Visual active, extend it by one or more sentences.
3549 */
3550 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003551current_sent(oparg_T *oap, long count, int include)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552{
3553 pos_T start_pos;
3554 pos_T pos;
3555 int start_blank;
3556 int c;
3557 int at_start_sent;
3558 long ncount;
3559
3560 start_pos = curwin->w_cursor;
3561 pos = start_pos;
3562 findsent(FORWARD, 1L); /* Find start of next sentence. */
3563
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003565 * When the Visual area is bigger than one character: Extend it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003567 if (VIsual_active && !EQUAL_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568 {
3569extend:
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003570 if (LT_POS(start_pos, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 {
3572 /*
3573 * Cursor at start of Visual area.
3574 * Find out where we are:
3575 * - in the white space before a sentence
3576 * - in a sentence or just after it
3577 * - at the start of a sentence
3578 */
3579 at_start_sent = TRUE;
3580 decl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003581 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 {
3583 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003584 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585 {
3586 at_start_sent = FALSE;
3587 break;
3588 }
3589 incl(&pos);
3590 }
3591 if (!at_start_sent)
3592 {
3593 findsent(BACKWARD, 1L);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003594 if (EQUAL_POS(curwin->w_cursor, start_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595 at_start_sent = TRUE; /* exactly at start of sentence */
3596 else
3597 /* inside a sentence, go to its end (start of next) */
3598 findsent(FORWARD, 1L);
3599 }
3600 if (include) /* "as" gets twice as much as "is" */
3601 count *= 2;
3602 while (count--)
3603 {
3604 if (at_start_sent)
3605 find_first_blank(&curwin->w_cursor);
3606 c = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01003607 if (!at_start_sent || (!include && !VIM_ISWHITE(c)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 findsent(BACKWARD, 1L);
3609 at_start_sent = !at_start_sent;
3610 }
3611 }
3612 else
3613 {
3614 /*
3615 * Cursor at end of Visual area.
3616 * Find out where we are:
3617 * - just before a sentence
3618 * - just before or in the white space before a sentence
3619 * - in a sentence
3620 */
3621 incl(&pos);
3622 at_start_sent = TRUE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003623 /* not just before a sentence */
3624 if (!EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 {
3626 at_start_sent = FALSE;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003627 while (LT_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 {
3629 c = gchar_pos(&pos);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003630 if (!VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 {
3632 at_start_sent = TRUE;
3633 break;
3634 }
3635 incl(&pos);
3636 }
3637 if (at_start_sent) /* in the sentence */
3638 findsent(BACKWARD, 1L);
3639 else /* in/before white before a sentence */
3640 curwin->w_cursor = start_pos;
3641 }
3642
3643 if (include) /* "as" gets twice as much as "is" */
3644 count *= 2;
3645 findsent_forward(count, at_start_sent);
3646 if (*p_sel == 'e')
3647 ++curwin->w_cursor.col;
3648 }
3649 return OK;
3650 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651
3652 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003653 * If the cursor started on a blank, check if it is just before the start
3654 * of the next sentence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 */
Bram Moolenaar1c465442017-03-12 20:10:05 +01003656 while (c = gchar_pos(&pos), VIM_ISWHITE(c)) /* VIM_ISWHITE() is a macro */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 incl(&pos);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003658 if (EQUAL_POS(pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 {
3660 start_blank = TRUE;
3661 find_first_blank(&start_pos); /* go back to first blank */
3662 }
3663 else
3664 {
3665 start_blank = FALSE;
3666 findsent(BACKWARD, 1L);
3667 start_pos = curwin->w_cursor;
3668 }
3669 if (include)
3670 ncount = count * 2;
3671 else
3672 {
3673 ncount = count;
3674 if (start_blank)
3675 --ncount;
3676 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00003677 if (ncount > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 findsent_forward(ncount, TRUE);
3679 else
3680 decl(&curwin->w_cursor);
3681
3682 if (include)
3683 {
3684 /*
3685 * If the blank in front of the sentence is included, exclude the
3686 * blanks at the end of the sentence, go back to the first blank.
3687 * If there are no trailing blanks, try to include leading blanks.
3688 */
3689 if (start_blank)
3690 {
3691 find_first_blank(&curwin->w_cursor);
Bram Moolenaar1c465442017-03-12 20:10:05 +01003692 c = gchar_pos(&curwin->w_cursor); /* VIM_ISWHITE() is a macro */
3693 if (VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 decl(&curwin->w_cursor);
3695 }
Bram Moolenaar1c465442017-03-12 20:10:05 +01003696 else if (c = gchar_cursor(), !VIM_ISWHITE(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 find_first_blank(&start_pos);
3698 }
3699
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 if (VIsual_active)
3701 {
Bram Moolenaar641e2862012-07-25 15:06:34 +02003702 /* Avoid getting stuck with "is" on a single space before a sentence. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003703 if (EQUAL_POS(start_pos, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 goto extend;
3705 if (*p_sel == 'e')
3706 ++curwin->w_cursor.col;
3707 VIsual = start_pos;
3708 VIsual_mode = 'v';
Bram Moolenaar779f2fc2016-09-01 20:58:24 +02003709 redraw_cmdline = TRUE; /* show mode later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 redraw_curbuf_later(INVERTED); /* update the inversion */
3711 }
3712 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 {
3714 /* include a newline after the sentence, if there is one */
3715 if (incl(&curwin->w_cursor) == -1)
3716 oap->inclusive = TRUE;
3717 else
3718 oap->inclusive = FALSE;
3719 oap->start = start_pos;
3720 oap->motion_type = MCHAR;
3721 }
3722 return OK;
3723}
3724
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003725/*
3726 * Find block under the cursor, cursor at end.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003727 * "what" and "other" are two matching parenthesis/brace/etc.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003728 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003730current_block(
3731 oparg_T *oap,
3732 long count,
3733 int include, /* TRUE == include white space */
3734 int what, /* '(', '{', etc. */
3735 int other) /* ')', '}', etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736{
3737 pos_T old_pos;
3738 pos_T *pos = NULL;
3739 pos_T start_pos;
3740 pos_T *end_pos;
3741 pos_T old_start, old_end;
3742 char_u *save_cpo;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003743 int sol = FALSE; /* '{' at start of line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744
3745 old_pos = curwin->w_cursor;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003746 old_end = curwin->w_cursor; /* remember where we started */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 old_start = old_end;
3748
3749 /*
3750 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive.
3751 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003752 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 {
3754 setpcmark();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003755 if (what == '{') /* ignore indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 while (inindent(1))
3757 if (inc_cursor() != 0)
3758 break;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003759 if (gchar_cursor() == what)
3760 /* cursor on '(' or '{', move cursor just after it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 ++curwin->w_cursor.col;
3762 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003763 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 {
3765 old_start = VIsual;
3766 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3767 }
3768 else
3769 old_end = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770
3771 /*
3772 * Search backwards for unclosed '(', '{', etc..
3773 * Put this position in start_pos.
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003774 * Ignore quotes here. Keep the "M" flag in 'cpo', as that is what the
3775 * user wants.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 */
3777 save_cpo = p_cpo;
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003778 p_cpo = (char_u *)(vim_strchr(p_cpo, CPO_MATCHBSL) != NULL ? "%M" : "%");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 while (count-- > 0)
3780 {
3781 if ((pos = findmatch(NULL, what)) == NULL)
3782 break;
3783 curwin->w_cursor = *pos;
3784 start_pos = *pos; /* the findmatch for end_pos will overwrite *pos */
3785 }
3786 p_cpo = save_cpo;
3787
3788 /*
3789 * Search for matching ')', '}', etc.
3790 * Put this position in curwin->w_cursor.
3791 */
3792 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL)
3793 {
3794 curwin->w_cursor = old_pos;
3795 return FAIL;
3796 }
3797 curwin->w_cursor = *end_pos;
3798
3799 /*
3800 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE.
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003801 * If the ending '}', ')' or ']' is only preceded by indent, skip that
3802 * indent. But only if the resulting area is not smaller than what we
3803 * started with.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 */
3805 while (!include)
3806 {
3807 incl(&start_pos);
3808 sol = (curwin->w_cursor.col == 0);
3809 decl(&curwin->w_cursor);
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003810 while (inindent(1))
3811 {
3812 sol = TRUE;
3813 if (decl(&curwin->w_cursor) != 0)
3814 break;
3815 }
3816
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 /*
3818 * In Visual mode, when the resulting area is not bigger than what we
3819 * started with, extend it to the next block, and then exclude again.
3820 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003821 if (!LT_POS(start_pos, old_start) && !LT_POS(old_end, curwin->w_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 && VIsual_active)
3823 {
3824 curwin->w_cursor = old_start;
3825 decl(&curwin->w_cursor);
3826 if ((pos = findmatch(NULL, what)) == NULL)
3827 {
3828 curwin->w_cursor = old_pos;
3829 return FAIL;
3830 }
3831 start_pos = *pos;
3832 curwin->w_cursor = *pos;
3833 if ((end_pos = findmatch(NULL, other)) == NULL)
3834 {
3835 curwin->w_cursor = old_pos;
3836 return FAIL;
3837 }
3838 curwin->w_cursor = *end_pos;
3839 }
3840 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841 break;
3842 }
3843
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 if (VIsual_active)
3845 {
3846 if (*p_sel == 'e')
Bram Moolenaar8667d662015-09-01 18:27:49 +02003847 inc(&curwin->w_cursor);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003848 if (sol && gchar_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 inc(&curwin->w_cursor); /* include the line break */
3850 VIsual = start_pos;
3851 VIsual_mode = 'v';
3852 redraw_curbuf_later(INVERTED); /* update the inversion */
3853 showmode();
3854 }
3855 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 {
3857 oap->start = start_pos;
3858 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003859 oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 if (sol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 incl(&curwin->w_cursor);
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003862 else if (LTOREQ_POS(start_pos, curwin->w_cursor))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003863 /* Include the character under the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 oap->inclusive = TRUE;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003865 else
3866 /* End is before the start (no text in between <>, [], etc.): don't
3867 * operate on any text. */
3868 curwin->w_cursor = start_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 }
3870
3871 return OK;
3872}
3873
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003874/*
3875 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>".
3876 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>".
3877 */
3878 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003879in_html_tag(
3880 int end_tag)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003881{
3882 char_u *line = ml_get_curline();
3883 char_u *p;
3884 int c;
3885 int lc = NUL;
3886 pos_T pos;
3887
3888#ifdef FEAT_MBYTE
3889 if (enc_dbcs)
3890 {
3891 char_u *lp = NULL;
3892
3893 /* We search forward until the cursor, because searching backwards is
3894 * very slow for DBCS encodings. */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003895 for (p = line; p < line + curwin->w_cursor.col; MB_PTR_ADV(p))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003896 if (*p == '>' || *p == '<')
3897 {
3898 lc = *p;
3899 lp = p;
3900 }
3901 if (*p != '<') /* check for '<' under cursor */
3902 {
3903 if (lc != '<')
3904 return FALSE;
3905 p = lp;
3906 }
3907 }
3908 else
3909#endif
3910 {
3911 for (p = line + curwin->w_cursor.col; p > line; )
3912 {
3913 if (*p == '<') /* find '<' under/before cursor */
3914 break;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003915 MB_PTR_BACK(line, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003916 if (*p == '>') /* find '>' before cursor */
3917 break;
3918 }
3919 if (*p != '<')
3920 return FALSE;
3921 }
3922
3923 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003924 pos.col = (colnr_T)(p - line);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003925
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003926 MB_PTR_ADV(p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003927 if (end_tag)
3928 /* check that there is a '/' after the '<' */
3929 return *p == '/';
3930
3931 /* check that there is no '/' after the '<' */
3932 if (*p == '/')
3933 return FALSE;
3934
3935 /* check that the matching '>' is not preceded by '/' */
3936 for (;;)
3937 {
3938 if (inc(&pos) < 0)
3939 return FALSE;
3940 c = *ml_get_pos(&pos);
3941 if (c == '>')
3942 break;
3943 lc = c;
3944 }
3945 return lc != '/';
3946}
3947
3948/*
3949 * Find tag block under the cursor, cursor at end.
3950 */
3951 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003952current_tagblock(
3953 oparg_T *oap,
3954 long count_arg,
3955 int include) /* TRUE == include white space */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003956{
3957 long count = count_arg;
3958 long n;
3959 pos_T old_pos;
3960 pos_T start_pos;
3961 pos_T end_pos;
3962 pos_T old_start, old_end;
3963 char_u *spat, *epat;
3964 char_u *p;
3965 char_u *cp;
3966 int len;
3967 int r;
3968 int do_include = include;
3969 int save_p_ws = p_ws;
3970 int retval = FAIL;
Bram Moolenaarb6c27352015-03-05 19:57:49 +01003971 int is_inclusive = TRUE;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003972
3973 p_ws = FALSE;
3974
3975 old_pos = curwin->w_cursor;
3976 old_end = curwin->w_cursor; /* remember where we started */
3977 old_start = old_end;
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003978 if (!VIsual_active || *p_sel == 'e')
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003979 decl(&old_end); /* old_end is inclusive */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003980
3981 /*
Bram Moolenaar45360022005-07-21 21:08:21 +00003982 * If we start on "<aaa>" select that block.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003983 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003984 if (!VIsual_active || EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003985 {
3986 setpcmark();
3987
3988 /* ignore indent */
3989 while (inindent(1))
3990 if (inc_cursor() != 0)
3991 break;
3992
3993 if (in_html_tag(FALSE))
3994 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003995 /* cursor on start tag, move to its '>' */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003996 while (*ml_get_cursor() != '>')
3997 if (inc_cursor() < 0)
3998 break;
3999 }
4000 else if (in_html_tag(TRUE))
4001 {
4002 /* cursor on end tag, move to just before it */
4003 while (*ml_get_cursor() != '<')
4004 if (dec_cursor() < 0)
4005 break;
4006 dec_cursor();
4007 old_end = curwin->w_cursor;
4008 }
4009 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004010 else if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004011 {
4012 old_start = VIsual;
4013 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
4014 }
4015 else
4016 old_end = VIsual;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004017
4018again:
4019 /*
4020 * Search backwards for unclosed "<aaa>".
4021 * Put this position in start_pos.
4022 */
4023 for (n = 0; n < count; ++n)
4024 {
Bram Moolenaar45360022005-07-21 21:08:21 +00004025 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)",
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004026 (char_u *)"",
Bram Moolenaar48570482017-10-30 21:48:41 +01004027 (char_u *)"</[^>]*>", BACKWARD, NULL, 0,
Bram Moolenaar76929292008-01-06 19:07:36 +00004028 NULL, (linenr_T)0, 0L) <= 0)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004029 {
4030 curwin->w_cursor = old_pos;
4031 goto theend;
4032 }
4033 }
4034 start_pos = curwin->w_cursor;
4035
4036 /*
4037 * Search for matching "</aaa>". First isolate the "aaa".
4038 */
4039 inc_cursor();
4040 p = ml_get_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01004041 for (cp = p; *cp != NUL && *cp != '>' && !VIM_ISWHITE(*cp); MB_PTR_ADV(cp))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004042 ;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004043 len = (int)(cp - p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004044 if (len == 0)
4045 {
4046 curwin->w_cursor = old_pos;
4047 goto theend;
4048 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004049 spat = alloc(len + 31);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004050 epat = alloc(len + 9);
4051 if (spat == NULL || epat == NULL)
4052 {
4053 vim_free(spat);
4054 vim_free(epat);
4055 curwin->w_cursor = old_pos;
4056 goto theend;
4057 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01004058 sprintf((char *)spat, "<%.*s\\>\\%%(\\s\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004059 sprintf((char *)epat, "</%.*s>\\c", len, p);
4060
Bram Moolenaar48570482017-10-30 21:48:41 +01004061 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, NULL,
Bram Moolenaar76929292008-01-06 19:07:36 +00004062 0, NULL, (linenr_T)0, 0L);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004063
4064 vim_free(spat);
4065 vim_free(epat);
4066
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004067 if (r < 1 || LT_POS(curwin->w_cursor, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004068 {
4069 /* Can't find other end or it's before the previous end. Could be a
4070 * HTML tag that doesn't have a matching end. Search backwards for
4071 * another starting tag. */
4072 count = 1;
4073 curwin->w_cursor = start_pos;
4074 goto again;
4075 }
4076
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02004077 if (do_include)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004078 {
4079 /* Include up to the '>'. */
4080 while (*ml_get_cursor() != '>')
4081 if (inc_cursor() < 0)
4082 break;
4083 }
4084 else
4085 {
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004086 char_u *c = ml_get_cursor();
4087
4088 /* Exclude the '<' of the end tag.
4089 * If the closing tag is on new line, do not decrement cursor, but
4090 * make operation exclusive, so that the linefeed will be selected */
4091 if (*c == '<' && !VIsual_active && curwin->w_cursor.col == 0)
4092 /* do not decrement cursor */
4093 is_inclusive = FALSE;
4094 else if (*c == '<')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004095 dec_cursor();
4096 }
4097 end_pos = curwin->w_cursor;
4098
4099 if (!do_include)
4100 {
4101 /* Exclude the start tag. */
4102 curwin->w_cursor = start_pos;
4103 while (inc_cursor() >= 0)
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004104 if (*ml_get_cursor() == '>')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004105 {
4106 inc_cursor();
4107 start_pos = curwin->w_cursor;
4108 break;
4109 }
4110 curwin->w_cursor = end_pos;
4111
Bram Moolenaarb476cb72018-08-16 21:37:50 +02004112 // If we are in Visual mode and now have the same text as before set
4113 // "do_include" and try again.
4114 if (VIsual_active && EQUAL_POS(start_pos, old_start)
4115 && EQUAL_POS(end_pos, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004116 {
4117 do_include = TRUE;
4118 curwin->w_cursor = old_start;
4119 count = count_arg;
4120 goto again;
4121 }
4122 }
4123
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004124 if (VIsual_active)
4125 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004126 /* If the end is before the start there is no text between tags, select
4127 * the char under the cursor. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004128 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004129 curwin->w_cursor = start_pos;
4130 else if (*p_sel == 'e')
Bram Moolenaar8340dd92014-12-13 20:11:33 +01004131 inc_cursor();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004132 VIsual = start_pos;
4133 VIsual_mode = 'v';
4134 redraw_curbuf_later(INVERTED); /* update the inversion */
4135 showmode();
4136 }
4137 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004138 {
4139 oap->start = start_pos;
4140 oap->motion_type = MCHAR;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004141 if (LT_POS(end_pos, start_pos))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004142 {
4143 /* End is before the start: there is no text between tags; operate
4144 * on an empty area. */
4145 curwin->w_cursor = start_pos;
4146 oap->inclusive = FALSE;
4147 }
4148 else
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004149 oap->inclusive = is_inclusive;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004150 }
4151 retval = OK;
4152
4153theend:
4154 p_ws = save_p_ws;
4155 return retval;
4156}
4157
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004159current_par(
4160 oparg_T *oap,
4161 long count,
4162 int include, /* TRUE == include white space */
4163 int type) /* 'p' for paragraph, 'S' for section */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164{
4165 linenr_T start_lnum;
4166 linenr_T end_lnum;
4167 int white_in_front;
4168 int dir;
4169 int start_is_white;
4170 int prev_start_is_white;
4171 int retval = OK;
4172 int do_white = FALSE;
4173 int t;
4174 int i;
4175
4176 if (type == 'S') /* not implemented yet */
4177 return FAIL;
4178
4179 start_lnum = curwin->w_cursor.lnum;
4180
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 /*
4182 * When visual area is more than one line: extend it.
4183 */
4184 if (VIsual_active && start_lnum != VIsual.lnum)
4185 {
4186extend:
4187 if (start_lnum < VIsual.lnum)
4188 dir = BACKWARD;
4189 else
4190 dir = FORWARD;
4191 for (i = count; --i >= 0; )
4192 {
4193 if (start_lnum ==
4194 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
4195 {
4196 retval = FAIL;
4197 break;
4198 }
4199
4200 prev_start_is_white = -1;
4201 for (t = 0; t < 2; ++t)
4202 {
4203 start_lnum += dir;
4204 start_is_white = linewhite(start_lnum);
4205 if (prev_start_is_white == start_is_white)
4206 {
4207 start_lnum -= dir;
4208 break;
4209 }
4210 for (;;)
4211 {
4212 if (start_lnum == (dir == BACKWARD
4213 ? 1 : curbuf->b_ml.ml_line_count))
4214 break;
4215 if (start_is_white != linewhite(start_lnum + dir)
4216 || (!start_is_white
4217 && startPS(start_lnum + (dir > 0
4218 ? 1 : 0), 0, 0)))
4219 break;
4220 start_lnum += dir;
4221 }
4222 if (!include)
4223 break;
4224 if (start_lnum == (dir == BACKWARD
4225 ? 1 : curbuf->b_ml.ml_line_count))
4226 break;
4227 prev_start_is_white = start_is_white;
4228 }
4229 }
4230 curwin->w_cursor.lnum = start_lnum;
4231 curwin->w_cursor.col = 0;
4232 return retval;
4233 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234
4235 /*
4236 * First move back to the start_lnum of the paragraph or white lines
4237 */
4238 white_in_front = linewhite(start_lnum);
4239 while (start_lnum > 1)
4240 {
4241 if (white_in_front) /* stop at first white line */
4242 {
4243 if (!linewhite(start_lnum - 1))
4244 break;
4245 }
4246 else /* stop at first non-white line of start of paragraph */
4247 {
4248 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
4249 break;
4250 }
4251 --start_lnum;
4252 }
4253
4254 /*
4255 * Move past the end of any white lines.
4256 */
4257 end_lnum = start_lnum;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004258 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
4259 ++end_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260
4261 --end_lnum;
4262 i = count;
4263 if (!include && white_in_front)
4264 --i;
4265 while (i--)
4266 {
4267 if (end_lnum == curbuf->b_ml.ml_line_count)
4268 return FAIL;
4269
4270 if (!include)
4271 do_white = linewhite(end_lnum + 1);
4272
4273 if (include || !do_white)
4274 {
4275 ++end_lnum;
4276 /*
4277 * skip to end of paragraph
4278 */
4279 while (end_lnum < curbuf->b_ml.ml_line_count
4280 && !linewhite(end_lnum + 1)
4281 && !startPS(end_lnum + 1, 0, 0))
4282 ++end_lnum;
4283 }
4284
4285 if (i == 0 && white_in_front && include)
4286 break;
4287
4288 /*
4289 * skip to end of white lines after paragraph
4290 */
4291 if (include || do_white)
4292 while (end_lnum < curbuf->b_ml.ml_line_count
4293 && linewhite(end_lnum + 1))
4294 ++end_lnum;
4295 }
4296
4297 /*
4298 * If there are no empty lines at the end, try to find some empty lines at
4299 * the start (unless that has been done already).
4300 */
4301 if (!white_in_front && !linewhite(end_lnum) && include)
4302 while (start_lnum > 1 && linewhite(start_lnum - 1))
4303 --start_lnum;
4304
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305 if (VIsual_active)
4306 {
4307 /* Problem: when doing "Vipipip" nothing happens in a single white
4308 * line, we get stuck there. Trap this here. */
4309 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4310 goto extend;
Bram Moolenaar84b2a382017-02-17 11:40:00 +01004311 if (VIsual.lnum != start_lnum)
4312 {
4313 VIsual.lnum = start_lnum;
4314 VIsual.col = 0;
4315 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 VIsual_mode = 'V';
4317 redraw_curbuf_later(INVERTED); /* update the inversion */
4318 showmode();
4319 }
4320 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321 {
4322 oap->start.lnum = start_lnum;
4323 oap->start.col = 0;
4324 oap->motion_type = MLINE;
4325 }
4326 curwin->w_cursor.lnum = end_lnum;
4327 curwin->w_cursor.col = 0;
4328
4329 return OK;
4330}
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004331
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004332/*
4333 * Search quote char from string line[col].
4334 * Quote character escaped by one of the characters in "escape" is not counted
4335 * as a quote.
4336 * Returns column number of "quotechar" or -1 when not found.
4337 */
4338 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004339find_next_quote(
4340 char_u *line,
4341 int col,
4342 int quotechar,
4343 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004344{
4345 int c;
4346
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004347 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004348 {
4349 c = line[col];
4350 if (c == NUL)
4351 return -1;
4352 else if (escape != NULL && vim_strchr(escape, c))
4353 ++col;
4354 else if (c == quotechar)
4355 break;
4356#ifdef FEAT_MBYTE
4357 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004358 col += (*mb_ptr2len)(line + col);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004359 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004361 ++col;
4362 }
4363 return col;
4364}
4365
4366/*
4367 * Search backwards in "line" from column "col_start" to find "quotechar".
4368 * Quote character escaped by one of the characters in "escape" is not counted
4369 * as a quote.
4370 * Return the found column or zero.
4371 */
4372 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004373find_prev_quote(
4374 char_u *line,
4375 int col_start,
4376 int quotechar,
4377 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004378{
4379 int n;
4380
4381 while (col_start > 0)
4382 {
4383 --col_start;
4384#ifdef FEAT_MBYTE
4385 col_start -= (*mb_head_off)(line, line + col_start);
4386#endif
4387 n = 0;
4388 if (escape != NULL)
4389 while (col_start - n > 0 && vim_strchr(escape,
4390 line[col_start - n - 1]) != NULL)
4391 ++n;
4392 if (n & 1)
4393 col_start -= n; /* uneven number of escape chars, skip it */
4394 else if (line[col_start] == quotechar)
4395 break;
4396 }
4397 return col_start;
4398}
4399
4400/*
4401 * Find quote under the cursor, cursor at end.
4402 * Returns TRUE if found, else FALSE.
4403 */
4404 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004405current_quote(
4406 oparg_T *oap,
4407 long count,
4408 int include, /* TRUE == include quote char */
4409 int quotechar) /* Quote character */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004410{
4411 char_u *line = ml_get_curline();
4412 int col_end;
4413 int col_start = curwin->w_cursor.col;
4414 int inclusive = FALSE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004415 int vis_empty = TRUE; /* Visual selection <= 1 char */
4416 int vis_bef_curs = FALSE; /* Visual starts before cursor */
Bram Moolenaarab194812005-09-14 21:40:12 +00004417 int inside_quotes = FALSE; /* Looks like "i'" done before */
4418 int selected_quote = FALSE; /* Has quote inside selection */
4419 int i;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004420
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004421 /* Correct cursor when 'selection' is "exclusive". */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004422 if (VIsual_active)
4423 {
Bram Moolenaar46522af2017-02-18 23:12:01 +01004424 /* this only works within one line */
4425 if (VIsual.lnum != curwin->w_cursor.lnum)
4426 return FALSE;
4427
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004428 vis_bef_curs = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004429 if (*p_sel == 'e')
4430 {
4431 if (!vis_bef_curs)
4432 {
4433 /* VIsual needs to be start of Visual selection. */
4434 pos_T t = curwin->w_cursor;
4435
4436 curwin->w_cursor = VIsual;
4437 VIsual = t;
4438 vis_bef_curs = TRUE;
4439 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004440 dec_cursor();
Bram Moolenaarc5e2b042017-06-05 16:37:07 +02004441 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004442 vis_empty = EQUAL_POS(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004443 }
Bram Moolenaarab194812005-09-14 21:40:12 +00004444
4445 if (!vis_empty)
4446 {
4447 /* Check if the existing selection exactly spans the text inside
4448 * quotes. */
4449 if (vis_bef_curs)
4450 {
4451 inside_quotes = VIsual.col > 0
4452 && line[VIsual.col - 1] == quotechar
4453 && line[curwin->w_cursor.col] != NUL
4454 && line[curwin->w_cursor.col + 1] == quotechar;
4455 i = VIsual.col;
4456 col_end = curwin->w_cursor.col;
4457 }
4458 else
4459 {
4460 inside_quotes = curwin->w_cursor.col > 0
4461 && line[curwin->w_cursor.col - 1] == quotechar
4462 && line[VIsual.col] != NUL
4463 && line[VIsual.col + 1] == quotechar;
4464 i = curwin->w_cursor.col;
4465 col_end = VIsual.col;
4466 }
4467
4468 /* Find out if we have a quote in the selection. */
4469 while (i <= col_end)
4470 if (line[i++] == quotechar)
4471 {
4472 selected_quote = TRUE;
4473 break;
4474 }
4475 }
4476
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004477 if (!vis_empty && line[col_start] == quotechar)
4478 {
4479 /* Already selecting something and on a quote character. Find the
4480 * next quoted string. */
4481 if (vis_bef_curs)
4482 {
4483 /* Assume we are on a closing quote: move to after the next
4484 * opening quote. */
4485 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4486 if (col_start < 0)
4487 return FALSE;
4488 col_end = find_next_quote(line, col_start + 1, quotechar,
4489 curbuf->b_p_qe);
4490 if (col_end < 0)
4491 {
4492 /* We were on a starting quote perhaps? */
4493 col_end = col_start;
4494 col_start = curwin->w_cursor.col;
4495 }
4496 }
4497 else
4498 {
4499 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4500 if (line[col_end] != quotechar)
4501 return FALSE;
4502 col_start = find_prev_quote(line, col_end, quotechar,
4503 curbuf->b_p_qe);
4504 if (line[col_start] != quotechar)
4505 {
4506 /* We were on an ending quote perhaps? */
4507 col_start = col_end;
4508 col_end = curwin->w_cursor.col;
4509 }
4510 }
4511 }
4512 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004513
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004514 if (line[col_start] == quotechar || !vis_empty)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004515 {
4516 int first_col = col_start;
4517
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004518 if (!vis_empty)
4519 {
4520 if (vis_bef_curs)
4521 first_col = find_next_quote(line, col_start, quotechar, NULL);
4522 else
4523 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4524 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004525
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004526 /* The cursor is on a quote, we don't know if it's the opening or
4527 * closing quote. Search from the start of the line to find out.
4528 * Also do this when there is a Visual area, a' may leave the cursor
4529 * in between two strings. */
4530 col_start = 0;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004531 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004532 {
4533 /* Find open quote character. */
4534 col_start = find_next_quote(line, col_start, quotechar, NULL);
4535 if (col_start < 0 || col_start > first_col)
4536 return FALSE;
4537 /* Find close quote character. */
4538 col_end = find_next_quote(line, col_start + 1, quotechar,
4539 curbuf->b_p_qe);
4540 if (col_end < 0)
4541 return FALSE;
4542 /* If is cursor between start and end quote character, it is
4543 * target text object. */
4544 if (col_start <= first_col && first_col <= col_end)
4545 break;
4546 col_start = col_end + 1;
4547 }
4548 }
4549 else
4550 {
4551 /* Search backward for a starting quote. */
4552 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4553 if (line[col_start] != quotechar)
4554 {
4555 /* No quote before the cursor, look after the cursor. */
4556 col_start = find_next_quote(line, col_start, quotechar, NULL);
4557 if (col_start < 0)
4558 return FALSE;
4559 }
4560
4561 /* Find close quote character. */
4562 col_end = find_next_quote(line, col_start + 1, quotechar,
4563 curbuf->b_p_qe);
4564 if (col_end < 0)
4565 return FALSE;
4566 }
4567
4568 /* When "include" is TRUE, include spaces after closing quote or before
4569 * the starting quote. */
4570 if (include)
4571 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004572 if (VIM_ISWHITE(line[col_end + 1]))
4573 while (VIM_ISWHITE(line[col_end + 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004574 ++col_end;
4575 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004576 while (col_start > 0 && VIM_ISWHITE(line[col_start - 1]))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004577 --col_start;
4578 }
4579
Bram Moolenaarab194812005-09-14 21:40:12 +00004580 /* Set start position. After vi" another i" must include the ".
4581 * For v2i" include the quotes. */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004582 if (!include && count < 2 && (vis_empty || !inside_quotes))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004583 ++col_start;
4584 curwin->w_cursor.col = col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004585 if (VIsual_active)
4586 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004587 /* Set the start of the Visual area when the Visual area was empty, we
4588 * were just inside quotes or the Visual area didn't start at a quote
4589 * and didn't include a quote.
4590 */
4591 if (vis_empty
4592 || (vis_bef_curs
4593 && !selected_quote
4594 && (inside_quotes
4595 || (line[VIsual.col] != quotechar
4596 && (VIsual.col == 0
4597 || line[VIsual.col - 1] != quotechar)))))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004598 {
4599 VIsual = curwin->w_cursor;
4600 redraw_curbuf_later(INVERTED);
4601 }
4602 }
4603 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004604 {
4605 oap->start = curwin->w_cursor;
4606 oap->motion_type = MCHAR;
4607 }
4608
4609 /* Set end position. */
4610 curwin->w_cursor.col = col_end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004611 if ((include || count > 1 /* After vi" another i" must include the ". */
Bram Moolenaarab194812005-09-14 21:40:12 +00004612 || (!vis_empty && inside_quotes)
Bram Moolenaarab194812005-09-14 21:40:12 +00004613 ) && inc_cursor() == 2)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004614 inclusive = TRUE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004615 if (VIsual_active)
4616 {
4617 if (vis_empty || vis_bef_curs)
4618 {
4619 /* decrement cursor when 'selection' is not exclusive */
4620 if (*p_sel != 'e')
4621 dec_cursor();
4622 }
4623 else
4624 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004625 /* Cursor is at start of Visual area. Set the end of the Visual
4626 * area when it was just inside quotes or it didn't end at a
4627 * quote. */
4628 if (inside_quotes
4629 || (!selected_quote
4630 && line[VIsual.col] != quotechar
4631 && (line[VIsual.col] == NUL
4632 || line[VIsual.col + 1] != quotechar)))
4633 {
4634 dec_cursor();
4635 VIsual = curwin->w_cursor;
4636 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004637 curwin->w_cursor.col = col_start;
4638 }
4639 if (VIsual_mode == 'V')
4640 {
4641 VIsual_mode = 'v';
4642 redraw_cmdline = TRUE; /* show mode later */
4643 }
4644 }
4645 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004646 {
4647 /* Set inclusive and other oap's flags. */
4648 oap->inclusive = inclusive;
4649 }
4650
4651 return OK;
4652}
4653
4654#endif /* FEAT_TEXTOBJ */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004656static int is_one_char(char_u *pattern, int move, pos_T *cur, int direction);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004657
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004658/*
4659 * Find next search match under cursor, cursor at end.
4660 * Used while an operator is pending, and in Visual mode.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004661 */
4662 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004663current_search(
4664 long count,
4665 int forward) /* move forward or backwards */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004666{
4667 pos_T start_pos; /* position before the pattern */
4668 pos_T orig_pos; /* position of the cursor at beginning */
Bram Moolenaarbdb65792018-05-22 17:50:42 +02004669 pos_T first_match; /* position of first match */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004670 pos_T pos; /* position after the pattern */
4671 int i;
4672 int dir;
4673 int result; /* result of various function calls */
4674 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004675 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02004676 pos_T save_VIsual = VIsual;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004677 int one_char;
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004678 int direction = forward ? FORWARD : BACKWARD;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004679
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004680 /* wrapping should not occur */
4681 p_ws = FALSE;
4682
4683 /* Correct cursor when 'selection' is exclusive */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004684 if (VIsual_active && *p_sel == 'e' && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004685 dec_cursor();
4686
4687 if (VIsual_active)
4688 {
4689 orig_pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004690
4691 pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004692
4693 /* make sure, searching further will extend the match */
4694 if (VIsual_active)
4695 {
4696 if (forward)
4697 incl(&pos);
4698 else
4699 decl(&pos);
4700 }
4701 }
4702 else
Bram Moolenaar268a06c2016-04-21 09:07:01 +02004703 orig_pos = pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004704
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004705 /* Is the pattern is zero-width?, this time, don't care about the direction
4706 */
4707 one_char = is_one_char(spats[last_idx].pat, TRUE, &curwin->w_cursor,
4708 FORWARD);
Bram Moolenaare78495d2013-06-30 14:46:53 +02004709 if (one_char == -1)
Bram Moolenaarba2d44f2013-11-28 19:27:30 +01004710 {
4711 p_ws = old_p_ws;
4712 return FAIL; /* pattern not found */
4713 }
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004714
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004715 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004716 * The trick is to first search backwards and then search forward again,
4717 * so that a match at the current cursor position will be correctly
4718 * captured.
4719 */
4720 for (i = 0; i < 2; i++)
4721 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004722 if (forward)
4723 dir = i;
4724 else
4725 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004726
4727 flags = 0;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004728 if (!dir && !one_char)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004729 flags = SEARCH_END;
4730
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004731 result = searchit(curwin, curbuf, &pos, (dir ? FORWARD : BACKWARD),
4732 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004733 SEARCH_KEEP | flags, RE_SEARCH, 0, NULL, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004734
4735 /* First search may fail, but then start searching from the
4736 * beginning of the file (cursor might be on the search match)
4737 * except when Visual mode is active, so that extending the visual
4738 * selection works. */
4739 if (!result && i) /* not found, abort */
4740 {
4741 curwin->w_cursor = orig_pos;
4742 if (VIsual_active)
4743 VIsual = save_VIsual;
4744 p_ws = old_p_ws;
4745 return FAIL;
4746 }
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004747 else if (!i && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004748 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004749 if (forward)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004750 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004751 /* try again from start of buffer */
4752 CLEAR_POS(&pos);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004753 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004754 else
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004755 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004756 /* try again from end of buffer */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004757 /* searching backwards, so set pos to last line and col */
4758 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02004759 pos.col = (colnr_T)STRLEN(
4760 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004761 }
4762 }
Bram Moolenaarbdb65792018-05-22 17:50:42 +02004763 if (i == 0)
4764 first_match = pos;
Bram Moolenaarfcea03d2013-11-07 04:46:48 +01004765 p_ws = old_p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004766 }
4767
4768 start_pos = pos;
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004769 flags = forward ? SEARCH_END : SEARCH_START;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004770
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004771 /* Check again from the current cursor position,
4772 * since the next match might actually by only one char wide */
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004773 one_char = is_one_char(spats[last_idx].pat, FALSE, &pos, direction);
Bram Moolenaaradd8dce2017-06-05 19:56:04 +02004774 if (one_char < 0)
4775 /* search failed, abort */
4776 return FAIL;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004777
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004778 /* move to match, except for zero-width matches, in which case, we are
4779 * already on the next match */
Bram Moolenaare78495d2013-06-30 14:46:53 +02004780 if (!one_char)
Bram Moolenaarbdb65792018-05-22 17:50:42 +02004781 {
4782 p_ws = FALSE;
4783 for (i = 0; i < 2; i++)
4784 {
4785 result = searchit(curwin, curbuf, &pos, direction,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004786 spats[last_idx].pat, 0L, flags | SEARCH_KEEP, RE_SEARCH, 0,
4787 NULL, NULL);
Bram Moolenaarbdb65792018-05-22 17:50:42 +02004788 /* Search successfull, break out from the loop */
4789 if (result)
4790 break;
4791 /* search failed, try again from the last search position match */
4792 pos = first_match;
4793 }
4794 }
4795
4796 p_ws = old_p_ws;
4797 /* not found */
4798 if (!result)
4799 return FAIL;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004800
4801 if (!VIsual_active)
4802 VIsual = start_pos;
4803
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004804 curwin->w_cursor = pos;
4805 VIsual_active = TRUE;
4806 VIsual_mode = 'v';
4807
4808 if (VIsual_active)
4809 {
4810 redraw_curbuf_later(INVERTED); /* update the inversion */
Bram Moolenaar718f0072012-10-03 13:35:51 +02004811 if (*p_sel == 'e')
4812 {
4813 /* Correction for exclusive selection depends on the direction. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004814 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor))
Bram Moolenaar718f0072012-10-03 13:35:51 +02004815 inc_cursor();
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004816 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual))
Bram Moolenaar718f0072012-10-03 13:35:51 +02004817 inc(&VIsual);
4818 }
4819
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004820 }
4821
4822#ifdef FEAT_FOLDING
4823 if (fdo_flags & FDO_SEARCH && KeyTyped)
4824 foldOpenCursor();
4825#endif
4826
4827 may_start_select('c');
4828#ifdef FEAT_MOUSE
4829 setmouse();
4830#endif
4831#ifdef FEAT_CLIPBOARD
4832 /* Make sure the clipboard gets updated. Needed because start and
4833 * end are still the same, and the selection needs to be owned */
4834 clip_star.vmode = NUL;
4835#endif
4836 redraw_curbuf_later(INVERTED);
4837 showmode();
4838
4839 return OK;
4840}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004841
4842/*
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004843 * Check if the pattern is one character long or zero-width.
Bram Moolenaaradd8dce2017-06-05 19:56:04 +02004844 * If move is TRUE, check from the beginning of the buffer, else from position
4845 * "cur".
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004846 * "direction" is FORWARD or BACKWARD.
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004847 * Returns TRUE, FALSE or -1 for failure.
4848 */
4849 static int
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004850is_one_char(char_u *pattern, int move, pos_T *cur, int direction)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004851{
4852 regmmatch_T regmatch;
4853 int nmatched = 0;
4854 int result = -1;
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004855 pos_T pos;
4856 int save_called_emsg = called_emsg;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004857 int flag = 0;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004858
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004859 if (pattern == NULL)
4860 pattern = spats[last_idx].pat;
4861
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004862 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
4863 SEARCH_KEEP, &regmatch) == FAIL)
4864 return -1;
4865
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004866 /* init startcol correctly */
4867 regmatch.startpos[0].col = -1;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004868 /* move to match */
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004869 if (move)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004870 {
4871 CLEAR_POS(&pos);
4872 }
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004873 else
4874 {
Bram Moolenaaradd8dce2017-06-05 19:56:04 +02004875 pos = *cur;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004876 /* accept a match at the cursor position */
4877 flag = SEARCH_START;
4878 }
4879
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004880 if (searchit(curwin, curbuf, &pos, direction, pattern, 1,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004881 SEARCH_KEEP + flag, RE_SEARCH, 0, NULL, NULL) != FAIL)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004882 {
4883 /* Zero-width pattern should match somewhere, then we can check if
4884 * start and end are in the same position. */
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004885 called_emsg = FALSE;
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004886 do
4887 {
4888 regmatch.startpos[0].col++;
4889 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004890 pos.lnum, regmatch.startpos[0].col, NULL, NULL);
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004891 if (!nmatched)
4892 break;
Bram Moolenaar22ab5472017-09-26 12:28:45 +02004893 } while (direction == FORWARD ? regmatch.startpos[0].col < pos.col
4894 : regmatch.startpos[0].col > pos.col);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004895
4896 if (!called_emsg)
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004897 {
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004898 result = (nmatched != 0
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004899 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
4900 && regmatch.startpos[0].col == regmatch.endpos[0].col);
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004901 /* one char width */
4902 if (!result && inc(&pos) >= 0 && pos.col == regmatch.endpos[0].col)
4903 result = TRUE;
4904 }
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004905 }
4906
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004907 called_emsg |= save_called_emsg;
Bram Moolenaar473de612013-06-08 18:19:48 +02004908 vim_regfree(regmatch.regprog);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004909 return result;
4910}
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004911
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4913 || defined(PROTO)
4914/*
4915 * return TRUE if line 'lnum' is empty or has white chars only.
4916 */
4917 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004918linewhite(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919{
4920 char_u *p;
4921
4922 p = skipwhite(ml_get(lnum));
4923 return (*p == NUL);
4924}
4925#endif
4926
4927#if defined(FEAT_FIND_ID) || defined(PROTO)
4928/*
4929 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01004930 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004933find_pattern_in_path(
4934 char_u *ptr, /* pointer to search pattern */
4935 int dir UNUSED, /* direction of expansion */
4936 int len, /* length of search pattern */
4937 int whole, /* match whole words only */
4938 int skip_comments, /* don't match inside comments */
4939 int type, /* Type of search; are we looking for a type?
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 a macro? */
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004941 long count,
4942 int action, /* What to do when we find it */
4943 linenr_T start_lnum, /* first line to start searching */
4944 linenr_T end_lnum) /* last line for searching */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945{
4946 SearchedFile *files; /* Stack of included files */
4947 SearchedFile *bigger; /* When we need more space */
4948 int max_path_depth = 50;
4949 long match_count = 1;
4950
4951 char_u *pat;
4952 char_u *new_fname;
4953 char_u *curr_fname = curbuf->b_fname;
4954 char_u *prev_fname = NULL;
4955 linenr_T lnum;
4956 int depth;
4957 int depth_displayed; /* For type==CHECK_PATH */
4958 int old_files;
4959 int already_searched;
4960 char_u *file_line;
4961 char_u *line;
4962 char_u *p;
4963 char_u save_char;
4964 int define_matched;
4965 regmatch_T regmatch;
4966 regmatch_T incl_regmatch;
4967 regmatch_T def_regmatch;
4968 int matched = FALSE;
4969 int did_show = FALSE;
4970 int found = FALSE;
4971 int i;
4972 char_u *already = NULL;
4973 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004974 char_u *inc_opt = NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02004975#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 win_T *curwin_save = NULL;
4977#endif
4978
4979 regmatch.regprog = NULL;
4980 incl_regmatch.regprog = NULL;
4981 def_regmatch.regprog = NULL;
4982
4983 file_line = alloc(LSIZE);
4984 if (file_line == NULL)
4985 return;
4986
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 if (type != CHECK_PATH && type != FIND_DEFINE
4988#ifdef FEAT_INS_EXPAND
4989 /* when CONT_SOL is set compare "ptr" with the beginning of the line
4990 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004991 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992#endif
4993 )
4994 {
4995 pat = alloc(len + 5);
4996 if (pat == NULL)
4997 goto fpip_end;
4998 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
4999 /* ignore case according to p_ic, p_scs and pat */
5000 regmatch.rm_ic = ignorecase(pat);
5001 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
5002 vim_free(pat);
5003 if (regmatch.regprog == NULL)
5004 goto fpip_end;
5005 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005006 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
5007 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005009 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 if (incl_regmatch.regprog == NULL)
5011 goto fpip_end;
5012 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */
5013 }
5014 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
5015 {
5016 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
5017 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
5018 if (def_regmatch.regprog == NULL)
5019 goto fpip_end;
5020 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */
5021 }
5022 files = (SearchedFile *)lalloc_clear((long_u)
5023 (max_path_depth * sizeof(SearchedFile)), TRUE);
5024 if (files == NULL)
5025 goto fpip_end;
5026 old_files = max_path_depth;
5027 depth = depth_displayed = -1;
5028
5029 lnum = start_lnum;
5030 if (end_lnum > curbuf->b_ml.ml_line_count)
5031 end_lnum = curbuf->b_ml.ml_line_count;
5032 if (lnum > end_lnum) /* do at least one line */
5033 lnum = end_lnum;
5034 line = ml_get(lnum);
5035
5036 for (;;)
5037 {
5038 if (incl_regmatch.regprog != NULL
5039 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
5040 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005041 char_u *p_fname = (curr_fname == curbuf->b_fname)
5042 ? curbuf->b_ffname : curr_fname;
5043
5044 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
5045 /* Use text from '\zs' to '\ze' (or end) of 'include'. */
5046 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005047 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005048 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
5049 else
5050 /* Use text after match with 'include'. */
5051 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005052 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 already_searched = FALSE;
5054 if (new_fname != NULL)
5055 {
5056 /* Check whether we have already searched in this file */
5057 for (i = 0;; i++)
5058 {
5059 if (i == depth + 1)
5060 i = old_files;
5061 if (i == max_path_depth)
5062 break;
5063 if (fullpathcmp(new_fname, files[i].name, TRUE) & FPC_SAME)
5064 {
5065 if (type != CHECK_PATH &&
5066 action == ACTION_SHOW_ALL && files[i].matched)
5067 {
5068 msg_putchar('\n'); /* cursor below last one */
5069 if (!got_int) /* don't display if 'q'
5070 typed at "--more--"
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005071 message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 {
5073 msg_home_replace_hl(new_fname);
5074 MSG_PUTS(_(" (includes previously listed match)"));
5075 prev_fname = NULL;
5076 }
5077 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01005078 VIM_CLEAR(new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 already_searched = TRUE;
5080 break;
5081 }
5082 }
5083 }
5084
5085 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
5086 || (new_fname == NULL && !already_searched)))
5087 {
5088 if (did_show)
5089 msg_putchar('\n'); /* cursor below last one */
5090 else
5091 {
5092 gotocmdline(TRUE); /* cursor at status line */
5093 MSG_PUTS_TITLE(_("--- Included files "));
5094 if (action != ACTION_SHOW_ALL)
5095 MSG_PUTS_TITLE(_("not found "));
5096 MSG_PUTS_TITLE(_("in path ---\n"));
5097 }
5098 did_show = TRUE;
5099 while (depth_displayed < depth && !got_int)
5100 {
5101 ++depth_displayed;
5102 for (i = 0; i < depth_displayed; i++)
5103 MSG_PUTS(" ");
5104 msg_home_replace(files[depth_displayed].name);
5105 MSG_PUTS(" -->\n");
5106 }
5107 if (!got_int) /* don't display if 'q' typed
5108 for "--more--" message */
5109 {
5110 for (i = 0; i <= depth_displayed; i++)
5111 MSG_PUTS(" ");
5112 if (new_fname != NULL)
5113 {
5114 /* using "new_fname" is more reliable, e.g., when
5115 * 'includeexpr' is set. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005116 msg_outtrans_attr(new_fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 }
5118 else
5119 {
5120 /*
5121 * Isolate the file name.
5122 * Include the surrounding "" or <> if present.
5123 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005124 if (inc_opt != NULL
5125 && strstr((char *)inc_opt, "\\zs") != NULL)
5126 {
5127 /* pattern contains \zs, use the match */
5128 p = incl_regmatch.startp[0];
5129 i = (int)(incl_regmatch.endp[0]
5130 - incl_regmatch.startp[0]);
5131 }
5132 else
5133 {
5134 /* find the file name after the end of the match */
5135 for (p = incl_regmatch.endp[0];
5136 *p && !vim_isfilec(*p); p++)
5137 ;
5138 for (i = 0; vim_isfilec(p[i]); i++)
5139 ;
5140 }
5141
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 if (i == 0)
5143 {
5144 /* Nothing found, use the rest of the line. */
5145 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005146 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 }
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005148 /* Avoid checking before the start of the line, can
5149 * happen if \zs appears in the regexp. */
5150 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 {
5152 if (p[-1] == '"' || p[-1] == '<')
5153 {
5154 --p;
5155 ++i;
5156 }
5157 if (p[i] == '"' || p[i] == '>')
5158 ++i;
5159 }
5160 save_char = p[i];
5161 p[i] = NUL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01005162 msg_outtrans_attr(p, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163 p[i] = save_char;
5164 }
5165
5166 if (new_fname == NULL && action == ACTION_SHOW_ALL)
5167 {
5168 if (already_searched)
5169 MSG_PUTS(_(" (Already listed)"));
5170 else
5171 MSG_PUTS(_(" NOT FOUND"));
5172 }
5173 }
5174 out_flush(); /* output each line directly */
5175 }
5176
5177 if (new_fname != NULL)
5178 {
5179 /* Push the new file onto the file stack */
5180 if (depth + 1 == old_files)
5181 {
5182 bigger = (SearchedFile *)lalloc((long_u)(
5183 max_path_depth * 2 * sizeof(SearchedFile)), TRUE);
5184 if (bigger != NULL)
5185 {
5186 for (i = 0; i <= depth; i++)
5187 bigger[i] = files[i];
5188 for (i = depth + 1; i < old_files + max_path_depth; i++)
5189 {
5190 bigger[i].fp = NULL;
5191 bigger[i].name = NULL;
5192 bigger[i].lnum = 0;
5193 bigger[i].matched = FALSE;
5194 }
5195 for (i = old_files; i < max_path_depth; i++)
5196 bigger[i + max_path_depth] = files[i];
5197 old_files += max_path_depth;
5198 max_path_depth *= 2;
5199 vim_free(files);
5200 files = bigger;
5201 }
5202 }
5203 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
5204 == NULL)
5205 vim_free(new_fname);
5206 else
5207 {
5208 if (++depth == old_files)
5209 {
5210 /*
5211 * lalloc() for 'bigger' must have failed above. We
5212 * will forget one of our already visited files now.
5213 */
5214 vim_free(files[old_files].name);
5215 ++old_files;
5216 }
5217 files[depth].name = curr_fname = new_fname;
5218 files[depth].lnum = 0;
5219 files[depth].matched = FALSE;
5220#ifdef FEAT_INS_EXPAND
5221 if (action == ACTION_EXPAND)
5222 {
Bram Moolenaardf40adf2006-10-14 12:32:39 +00005223 msg_hist_off = TRUE; /* reset in msg_trunc_attr() */
Bram Moolenaar555b2802005-05-19 21:08:39 +00005224 vim_snprintf((char*)IObuff, IOSIZE,
5225 _("Scanning included file: %s"),
5226 (char *)new_fname);
Bram Moolenaar8820b482017-03-16 17:23:31 +01005227 msg_trunc_attr(IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228 }
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005229 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230#endif
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005231 if (p_verbose >= 5)
5232 {
5233 verbose_enter();
5234 smsg((char_u *)_("Searching included file %s"),
5235 (char *)new_fname);
5236 verbose_leave();
5237 }
5238
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239 }
5240 }
5241 }
5242 else
5243 {
5244 /*
5245 * Check if the line is a define (type == FIND_DEFINE)
5246 */
5247 p = line;
5248search_line:
5249 define_matched = FALSE;
5250 if (def_regmatch.regprog != NULL
5251 && vim_regexec(&def_regmatch, line, (colnr_T)0))
5252 {
5253 /*
5254 * Pattern must be first identifier after 'define', so skip
5255 * to that position before checking for match of pattern. Also
5256 * don't let it match beyond the end of this identifier.
5257 */
5258 p = def_regmatch.endp[0];
5259 while (*p && !vim_iswordc(*p))
5260 p++;
5261 define_matched = TRUE;
5262 }
5263
5264 /*
5265 * Look for a match. Don't do this if we are looking for a
5266 * define and this line didn't match define_prog above.
5267 */
5268 if (def_regmatch.regprog == NULL || define_matched)
5269 {
5270 if (define_matched
5271#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005272 || (compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273#endif
5274 )
5275 {
5276 /* compare the first "len" chars from "ptr" */
5277 startp = skipwhite(p);
5278 if (p_ic)
5279 matched = !MB_STRNICMP(startp, ptr, len);
5280 else
5281 matched = !STRNCMP(startp, ptr, len);
5282 if (matched && define_matched && whole
5283 && vim_iswordc(startp[len]))
5284 matched = FALSE;
5285 }
5286 else if (regmatch.regprog != NULL
5287 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
5288 {
5289 matched = TRUE;
5290 startp = regmatch.startp[0];
5291 /*
5292 * Check if the line is not a comment line (unless we are
5293 * looking for a define). A line starting with "# define"
5294 * is not considered to be a comment line.
5295 */
5296 if (!define_matched && skip_comments)
5297 {
5298#ifdef FEAT_COMMENTS
5299 if ((*line != '#' ||
5300 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02005301 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302 matched = FALSE;
5303
5304 /*
5305 * Also check for a "/ *" or "/ /" before the match.
5306 * Skips lines like "int backwards; / * normal index
5307 * * /" when looking for "normal".
5308 * Note: Doesn't skip "/ *" in comments.
5309 */
5310 p = skipwhite(line);
5311 if (matched
5312 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
5313#endif
5314 for (p = line; *p && p < startp; ++p)
5315 {
5316 if (matched
5317 && p[0] == '/'
5318 && (p[1] == '*' || p[1] == '/'))
5319 {
5320 matched = FALSE;
5321 /* After "//" all text is comment */
5322 if (p[1] == '/')
5323 break;
5324 ++p;
5325 }
5326 else if (!matched && p[0] == '*' && p[1] == '/')
5327 {
5328 /* Can find match after "* /". */
5329 matched = TRUE;
5330 ++p;
5331 }
5332 }
5333 }
5334 }
5335 }
5336 }
5337 if (matched)
5338 {
5339#ifdef FEAT_INS_EXPAND
5340 if (action == ACTION_EXPAND)
5341 {
5342 int reuse = 0;
5343 int add_r;
5344 char_u *aux;
5345
5346 if (depth == -1 && lnum == curwin->w_cursor.lnum)
5347 break;
5348 found = TRUE;
5349 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005350 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005352 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353 if (vim_iswordp(p))
5354 goto exit_matched;
5355 p = find_word_start(p);
5356 }
5357 p = find_word_end(p);
5358 i = (int)(p - aux);
5359
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005360 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005362 /* IOSIZE > compl_length, so the STRNCPY works */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00005364
5365 /* Get the next line: when "depth" < 0 from the current
5366 * buffer, otherwise from the included file. Jump to
5367 * exit_matched when past the last line. */
5368 if (depth < 0)
5369 {
5370 if (lnum >= end_lnum)
5371 goto exit_matched;
5372 line = ml_get(++lnum);
5373 }
5374 else if (vim_fgets(line = file_line,
5375 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 goto exit_matched;
5377
5378 /* we read a line, set "already" to check this "line" later
5379 * if depth >= 0 we'll increase files[depth].lnum far
5380 * bellow -- Acevedo */
5381 already = aux = p = skipwhite(line);
5382 p = find_word_start(p);
5383 p = find_word_end(p);
5384 if (p > aux)
5385 {
5386 if (*aux != ')' && IObuff[i-1] != TAB)
5387 {
5388 if (IObuff[i-1] != ' ')
5389 IObuff[i++] = ' ';
5390 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/
5391 if (p_js
5392 && (IObuff[i-2] == '.'
5393 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
5394 && (IObuff[i-2] == '?'
5395 || IObuff[i-2] == '!'))))
5396 IObuff[i++] = ' ';
5397 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005398 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399 if (p - aux >= IOSIZE - i)
5400 p = aux + IOSIZE - i - 1;
5401 STRNCPY(IObuff + i, aux, p - aux);
5402 i += (int)(p - aux);
5403 reuse |= CONT_S_IPOS;
5404 }
5405 IObuff[i] = NUL;
5406 aux = IObuff;
5407
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005408 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 goto exit_matched;
5410 }
5411
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005412 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 curr_fname == curbuf->b_fname ? NULL : curr_fname,
5414 dir, reuse);
5415 if (add_r == OK)
5416 /* if dir was BACKWARD then honor it just once */
5417 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005418 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005419 break;
5420 }
5421 else
5422#endif
5423 if (action == ACTION_SHOW_ALL)
5424 {
5425 found = TRUE;
5426 if (!did_show)
5427 gotocmdline(TRUE); /* cursor at status line */
5428 if (curr_fname != prev_fname)
5429 {
5430 if (did_show)
5431 msg_putchar('\n'); /* cursor below last one */
5432 if (!got_int) /* don't display if 'q' typed
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005433 at "--more--" message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434 msg_home_replace_hl(curr_fname);
5435 prev_fname = curr_fname;
5436 }
5437 did_show = TRUE;
5438 if (!got_int)
5439 show_pat_in_path(line, type, TRUE, action,
5440 (depth == -1) ? NULL : files[depth].fp,
5441 (depth == -1) ? &lnum : &files[depth].lnum,
5442 match_count++);
5443
5444 /* Set matched flag for this file and all the ones that
5445 * include it */
5446 for (i = 0; i <= depth; ++i)
5447 files[i].matched = TRUE;
5448 }
5449 else if (--count <= 0)
5450 {
5451 found = TRUE;
5452 if (depth == -1 && lnum == curwin->w_cursor.lnum
Bram Moolenaar4033c552017-09-16 20:54:51 +02005453#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 && g_do_tagpreview == 0
5455#endif
5456 )
5457 EMSG(_("E387: Match is on current line"));
5458 else if (action == ACTION_SHOW)
5459 {
5460 show_pat_in_path(line, type, did_show, action,
5461 (depth == -1) ? NULL : files[depth].fp,
5462 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
5463 did_show = TRUE;
5464 }
5465 else
5466 {
5467#ifdef FEAT_GUI
5468 need_mouse_correct = TRUE;
5469#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005470#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 /* ":psearch" uses the preview window */
5472 if (g_do_tagpreview != 0)
5473 {
5474 curwin_save = curwin;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005475 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 }
5477#endif
5478 if (action == ACTION_SPLIT)
5479 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 if (win_split(0, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005482 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 }
5484 if (depth == -1)
5485 {
5486 /* match in current file */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005487#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488 if (g_do_tagpreview != 0)
5489 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005490 if (!GETFILE_SUCCESS(getfile(
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005491 curwin_save->w_buffer->b_fnum, NULL,
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005492 NULL, TRUE, lnum, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 break; /* failed to jump to file */
5494 }
5495 else
5496#endif
5497 setpcmark();
5498 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02005499 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500 }
5501 else
5502 {
Bram Moolenaar8ad80de2017-06-05 16:01:59 +02005503 if (!GETFILE_SUCCESS(getfile(
5504 0, files[depth].name, NULL, TRUE,
5505 files[depth].lnum, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506 break; /* failed to jump to file */
5507 /* autocommands may have changed the lnum, we don't
5508 * want that here */
5509 curwin->w_cursor.lnum = files[depth].lnum;
5510 }
5511 }
5512 if (action != ACTION_SHOW)
5513 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005514 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 curwin->w_set_curswant = TRUE;
5516 }
5517
Bram Moolenaar4033c552017-09-16 20:54:51 +02005518#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005520 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 {
5522 /* Return cursor to where we were */
5523 validate_cursor();
5524 redraw_later(VALID);
5525 win_enter(curwin_save, TRUE);
5526 }
5527#endif
5528 break;
5529 }
5530#ifdef FEAT_INS_EXPAND
5531exit_matched:
5532#endif
5533 matched = FALSE;
5534 /* look for other matches in the rest of the line if we
5535 * are not at the end of it already */
5536 if (def_regmatch.regprog == NULL
5537#ifdef FEAT_INS_EXPAND
5538 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005539 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540#endif
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005541 && *startp != NUL
Bram Moolenaar94c465c2012-07-19 17:18:26 +02005542 && *(p = startp + MB_PTR2LEN(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 goto search_line;
5544 }
5545 line_breakcheck();
5546#ifdef FEAT_INS_EXPAND
5547 if (action == ACTION_EXPAND)
Bram Moolenaar472e8592016-10-15 17:06:47 +02005548 ins_compl_check_keys(30, FALSE);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005549 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550#else
5551 if (got_int)
5552#endif
5553 break;
5554
5555 /*
5556 * Read the next line. When reading an included file and encountering
5557 * end-of-file, close the file and continue in the file that included
5558 * it.
5559 */
5560 while (depth >= 0 && !already
5561 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5562 {
5563 fclose(files[depth].fp);
5564 --old_files;
5565 files[old_files].name = files[depth].name;
5566 files[old_files].matched = files[depth].matched;
5567 --depth;
5568 curr_fname = (depth == -1) ? curbuf->b_fname
5569 : files[depth].name;
5570 if (depth < depth_displayed)
5571 depth_displayed = depth;
5572 }
5573 if (depth >= 0) /* we could read the line */
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005574 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 files[depth].lnum++;
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005576 /* Remove any CR and LF from the line. */
5577 i = (int)STRLEN(line);
5578 if (i > 0 && line[i - 1] == '\n')
5579 line[--i] = NUL;
5580 if (i > 0 && line[i - 1] == '\r')
5581 line[--i] = NUL;
5582 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 else if (!already)
5584 {
5585 if (++lnum > end_lnum)
5586 break;
5587 line = ml_get(lnum);
5588 }
5589 already = NULL;
5590 }
5591 /* End of big for (;;) loop. */
5592
5593 /* Close any files that are still open. */
5594 for (i = 0; i <= depth; i++)
5595 {
5596 fclose(files[i].fp);
5597 vim_free(files[i].name);
5598 }
5599 for (i = old_files; i < max_path_depth; i++)
5600 vim_free(files[i].name);
5601 vim_free(files);
5602
5603 if (type == CHECK_PATH)
5604 {
5605 if (!did_show)
5606 {
5607 if (action != ACTION_SHOW_ALL)
5608 MSG(_("All included files were found"));
5609 else
5610 MSG(_("No included files"));
5611 }
5612 }
5613 else if (!found
5614#ifdef FEAT_INS_EXPAND
5615 && action != ACTION_EXPAND
5616#endif
5617 )
5618 {
5619#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005620 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621#else
5622 if (got_int)
5623#endif
5624 EMSG(_(e_interr));
5625 else if (type == FIND_DEFINE)
5626 EMSG(_("E388: Couldn't find definition"));
5627 else
5628 EMSG(_("E389: Couldn't find pattern"));
5629 }
5630 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5631 msg_end();
5632
5633fpip_end:
5634 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02005635 vim_regfree(regmatch.regprog);
5636 vim_regfree(incl_regmatch.regprog);
5637 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638}
5639
5640 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005641show_pat_in_path(
5642 char_u *line,
5643 int type,
5644 int did_show,
5645 int action,
5646 FILE *fp,
5647 linenr_T *lnum,
5648 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649{
5650 char_u *p;
5651
5652 if (did_show)
5653 msg_putchar('\n'); /* cursor below last one */
Bram Moolenaar91170f82006-05-05 21:15:17 +00005654 else if (!msg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655 gotocmdline(TRUE); /* cursor at status line */
5656 if (got_int) /* 'q' typed at "--more--" message */
5657 return;
5658 for (;;)
5659 {
5660 p = line + STRLEN(line) - 1;
5661 if (fp != NULL)
5662 {
5663 /* We used fgets(), so get rid of newline at end */
5664 if (p >= line && *p == '\n')
5665 --p;
5666 if (p >= line && *p == '\r')
5667 --p;
5668 *(p + 1) = NUL;
5669 }
5670 if (action == ACTION_SHOW_ALL)
5671 {
5672 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */
5673 msg_puts(IObuff);
5674 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */
5675 /* Highlight line numbers */
Bram Moolenaar8820b482017-03-16 17:23:31 +01005676 msg_puts_attr(IObuff, HL_ATTR(HLF_N));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 MSG_PUTS(" ");
5678 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005679 msg_prt_line(line, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005680 out_flush(); /* show one line at a time */
5681
5682 /* Definition continues until line that doesn't end with '\' */
5683 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5684 break;
5685
5686 if (fp != NULL)
5687 {
5688 if (vim_fgets(line, LSIZE, fp)) /* end of file */
5689 break;
5690 ++*lnum;
5691 }
5692 else
5693 {
5694 if (++*lnum > curbuf->b_ml.ml_line_count)
5695 break;
5696 line = ml_get(*lnum);
5697 }
5698 msg_putchar('\n');
5699 }
5700}
5701#endif
5702
5703#ifdef FEAT_VIMINFO
5704 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005705read_viminfo_search_pattern(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706{
5707 char_u *lp;
5708 int idx = -1;
5709 int magic = FALSE;
5710 int no_scs = FALSE;
5711 int off_line = FALSE;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005712 int off_end = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713 long off = 0;
5714 int setlast = FALSE;
5715#ifdef FEAT_SEARCH_EXTRA
5716 static int hlsearch_on = FALSE;
5717#endif
5718 char_u *val;
5719
5720 /*
5721 * Old line types:
5722 * "/pat", "&pat": search/subst. pat
5723 * "~/pat", "~&pat": last used search/subst. pat
5724 * New line types:
5725 * "~h", "~H": hlsearch highlighting off/on
5726 * "~<magic><smartcase><line><end><off><last><which>pat"
5727 * <magic>: 'm' off, 'M' on
5728 * <smartcase>: 's' off, 'S' on
5729 * <line>: 'L' line offset, 'l' char offset
5730 * <end>: 'E' from end, 'e' from start
5731 * <off>: decimal, offset
5732 * <last>: '~' last used pattern
5733 * <which>: '/' search pat, '&' subst. pat
5734 */
5735 lp = virp->vir_line;
5736 if (lp[0] == '~' && (lp[1] == 'm' || lp[1] == 'M')) /* new line type */
5737 {
5738 if (lp[1] == 'M') /* magic on */
5739 magic = TRUE;
5740 if (lp[2] == 's')
5741 no_scs = TRUE;
5742 if (lp[3] == 'L')
5743 off_line = TRUE;
5744 if (lp[4] == 'E')
Bram Moolenaared203462004-06-16 11:19:22 +00005745 off_end = SEARCH_END;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 lp += 5;
5747 off = getdigits(&lp);
5748 }
5749 if (lp[0] == '~') /* use this pattern for last-used pattern */
5750 {
5751 setlast = TRUE;
5752 lp++;
5753 }
5754 if (lp[0] == '/')
5755 idx = RE_SEARCH;
5756 else if (lp[0] == '&')
5757 idx = RE_SUBST;
5758#ifdef FEAT_SEARCH_EXTRA
5759 else if (lp[0] == 'h') /* ~h: 'hlsearch' highlighting off */
5760 hlsearch_on = FALSE;
5761 else if (lp[0] == 'H') /* ~H: 'hlsearch' highlighting on */
5762 hlsearch_on = TRUE;
5763#endif
5764 if (idx >= 0)
5765 {
5766 if (force || spats[idx].pat == NULL)
5767 {
5768 val = viminfo_readstring(virp, (int)(lp - virp->vir_line + 1),
5769 TRUE);
5770 if (val != NULL)
5771 {
5772 set_last_search_pat(val, idx, magic, setlast);
5773 vim_free(val);
5774 spats[idx].no_scs = no_scs;
5775 spats[idx].off.line = off_line;
5776 spats[idx].off.end = off_end;
5777 spats[idx].off.off = off;
5778#ifdef FEAT_SEARCH_EXTRA
5779 if (setlast)
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02005780 set_no_hlsearch(!hlsearch_on);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781#endif
5782 }
5783 }
5784 }
5785 return viminfo_readline(virp);
5786}
5787
5788 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005789write_viminfo_search_pattern(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790{
5791 if (get_viminfo_parameter('/') != 0)
5792 {
5793#ifdef FEAT_SEARCH_EXTRA
5794 fprintf(fp, "\n# hlsearch on (H) or off (h):\n~%c",
5795 (no_hlsearch || find_viminfo_parameter('h') != NULL) ? 'h' : 'H');
5796#endif
5797 wvsp_one(fp, RE_SEARCH, "", '/');
Bram Moolenaar9b228712008-07-18 10:05:58 +00005798 wvsp_one(fp, RE_SUBST, _("Substitute "), '&');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 }
5800}
5801
5802 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005803wvsp_one(
5804 FILE *fp, /* file to write to */
5805 int idx, /* spats[] index */
5806 char *s, /* search pat */
5807 int sc) /* dir char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808{
5809 if (spats[idx].pat != NULL)
5810 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005811 fprintf(fp, _("\n# Last %sSearch Pattern:\n~"), s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812 /* off.dir is not stored, it's reset to forward */
5813 fprintf(fp, "%c%c%c%c%ld%s%c",
5814 spats[idx].magic ? 'M' : 'm', /* magic */
5815 spats[idx].no_scs ? 's' : 'S', /* smartcase */
5816 spats[idx].off.line ? 'L' : 'l', /* line offset */
5817 spats[idx].off.end ? 'E' : 'e', /* offset from end */
5818 spats[idx].off.off, /* offset */
5819 last_idx == idx ? "~" : "", /* last used pat */
5820 sc);
5821 viminfo_writestring(fp, spats[idx].pat);
5822 }
5823}
5824#endif /* FEAT_VIMINFO */