blob: 1f1ba6a3fd3b6d5e654975bf9d6f0fa5c610d114 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 * search.c: code for normal mode searching commands
11 */
12
13#include "vim.h"
14
Bram Moolenaar071d4272004-06-13 20:20:40 +000015#ifdef FEAT_EVAL
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010016static void set_vv_searchforward(void);
17static int first_submatch(regmmatch_T *rp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010019static int check_prevcol(char_u *linep, int col, int ch, int *prevcol);
20static int inmacro(char_u *, char_u *);
21static int check_linecomment(char_u *line);
22static int cls(void);
23static int skip_chars(int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000024#ifdef FEAT_TEXTOBJ
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010025static void back_in_line(void);
26static void find_first_blank(pos_T *);
27static void findsent_forward(long count, int at_start_sent);
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#endif
29#ifdef FEAT_FIND_ID
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010030static void show_pat_in_path(char_u *, int,
31 int, int, FILE *, linenr_T *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +000032#endif
33#ifdef FEAT_VIMINFO
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010034static void wvsp_one(FILE *fp, int idx, char *s, int sc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000035#endif
36
Bram Moolenaar071d4272004-06-13 20:20:40 +000037/*
38 * This file contains various searching-related routines. These fall into
39 * three groups:
40 * 1. string searches (for /, ?, n, and N)
41 * 2. character searches within a single line (for f, F, t, T, etc)
42 * 3. "other" kinds of searches like the '%' command, and 'word' searches.
43 */
44
45/*
46 * String searches
47 *
48 * The string search functions are divided into two levels:
49 * lowest: searchit(); uses an pos_T for starting position and found match.
50 * Highest: do_search(); uses curwin->w_cursor; calls searchit().
51 *
52 * The last search pattern is remembered for repeating the same search.
53 * This pattern is shared between the :g, :s, ? and / commands.
54 * This is in search_regcomp().
55 *
56 * The actual string matching is done using a heavily modified version of
57 * Henry Spencer's regular expression library. See regexp.c.
58 */
59
60/* The offset for a search command is store in a soff struct */
61/* Note: only spats[0].off is really used */
62struct soffset
63{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000064 int dir; /* search direction, '/' or '?' */
Bram Moolenaar071d4272004-06-13 20:20:40 +000065 int line; /* search has line offset */
66 int end; /* search set cursor at end */
67 long off; /* line or char offset */
68};
69
70/* A search pattern and its attributes are stored in a spat struct */
71struct spat
72{
73 char_u *pat; /* the pattern (in allocated memory) or NULL */
74 int magic; /* magicness of the pattern */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020075 int no_scs; /* no smartcase for this pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +000076 struct soffset off;
77};
78
79/*
80 * Two search patterns are remembered: One for the :substitute command and
81 * one for other searches. last_idx points to the one that was used the last
82 * time.
83 */
84static struct spat spats[2] =
85{
86 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}}, /* last used search pat */
87 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}} /* last used substitute pat */
88};
89
90static int last_idx = 0; /* index in spats[] for RE_LAST */
91
Bram Moolenaardbd24b52015-08-11 14:26:19 +020092static char_u lastc[2] = {NUL, NUL}; /* last character searched for */
93static int lastcdir = FORWARD; /* last direction of character search */
94static int last_t_cmd = TRUE; /* last search t_cmd */
95#ifdef FEAT_MBYTE
96static char_u lastc_bytes[MB_MAXBYTES + 1];
97static int lastc_bytelen = 1; /* >1 for multi-byte char */
98#endif
99
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100#if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO)
101/* copy of spats[], for keeping the search patterns while executing autocmds */
102static struct spat saved_spats[2];
103static int saved_last_idx = 0;
104# ifdef FEAT_SEARCH_EXTRA
105static int saved_no_hlsearch = 0;
106# endif
107#endif
108
109static char_u *mr_pattern = NULL; /* pattern used by search_regcomp() */
110#ifdef FEAT_RIGHTLEFT
111static int mr_pattern_alloced = FALSE; /* mr_pattern was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112#endif
113
114#ifdef FEAT_FIND_ID
115/*
116 * Type used by find_pattern_in_path() to remember which included files have
117 * been searched already.
118 */
119typedef struct SearchedFile
120{
121 FILE *fp; /* File pointer */
122 char_u *name; /* Full name of file */
123 linenr_T lnum; /* Line we were up to in file */
124 int matched; /* Found a match in this file */
125} SearchedFile;
126#endif
127
128/*
129 * translate search pattern for vim_regcomp()
130 *
131 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd)
132 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command)
133 * pat_save == RE_BOTH: save pat in both patterns (:global command)
134 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL
Bram Moolenaarb8017e72007-05-10 18:59:07 +0000135 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136 * pat_use == RE_LAST: use last used pattern if "pat" is NULL
137 * options & SEARCH_HIS: put search string in history
138 * options & SEARCH_KEEP: keep previous search pattern
139 *
140 * returns FAIL if failed, OK otherwise.
141 */
142 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100143search_regcomp(
144 char_u *pat,
145 int pat_save,
146 int pat_use,
147 int options,
148 regmmatch_T *regmatch) /* return: pattern and ignore-case flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149{
150 int magic;
151 int i;
152
153 rc_did_emsg = FALSE;
154 magic = p_magic;
155
156 /*
157 * If no pattern given, use a previously defined pattern.
158 */
159 if (pat == NULL || *pat == NUL)
160 {
161 if (pat_use == RE_LAST)
162 i = last_idx;
163 else
164 i = pat_use;
165 if (spats[i].pat == NULL) /* pattern was never defined */
166 {
167 if (pat_use == RE_SUBST)
168 EMSG(_(e_nopresub));
169 else
170 EMSG(_(e_noprevre));
171 rc_did_emsg = TRUE;
172 return FAIL;
173 }
174 pat = spats[i].pat;
175 magic = spats[i].magic;
176 no_smartcase = spats[i].no_scs;
177 }
178#ifdef FEAT_CMDHIST
179 else if (options & SEARCH_HIS) /* put new pattern in history */
180 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
181#endif
182
183#ifdef FEAT_RIGHTLEFT
184 if (mr_pattern_alloced)
185 {
186 vim_free(mr_pattern);
187 mr_pattern_alloced = FALSE;
188 }
189
190 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
191 {
192 char_u *rev_pattern;
193
194 rev_pattern = reverse_text(pat);
195 if (rev_pattern == NULL)
196 mr_pattern = pat; /* out of memory, keep normal pattern. */
197 else
198 {
199 mr_pattern = rev_pattern;
200 mr_pattern_alloced = TRUE;
201 }
202 }
203 else
204#endif
205 mr_pattern = pat;
206
207 /*
208 * Save the currently used pattern in the appropriate place,
209 * unless the pattern should not be remembered.
210 */
Bram Moolenaar14177b72014-01-14 15:53:51 +0100211 if (!(options & SEARCH_KEEP) && !cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 {
213 /* search or global command */
214 if (pat_save == RE_SEARCH || pat_save == RE_BOTH)
215 save_re_pat(RE_SEARCH, pat, magic);
216 /* substitute or global command */
217 if (pat_save == RE_SUBST || pat_save == RE_BOTH)
218 save_re_pat(RE_SUBST, pat, magic);
219 }
220
221 regmatch->rmm_ic = ignorecase(pat);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +0000222 regmatch->rmm_maxcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
224 if (regmatch->regprog == NULL)
225 return FAIL;
226 return OK;
227}
228
229/*
230 * Get search pattern used by search_regcomp().
231 */
232 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100233get_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234{
235 return mr_pattern;
236}
237
Bram Moolenaarabc97732007-08-08 20:49:37 +0000238#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239/*
240 * Reverse text into allocated memory.
241 * Returns the allocated string, NULL when out of memory.
242 */
Bram Moolenaarabc97732007-08-08 20:49:37 +0000243 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100244reverse_text(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245{
246 unsigned len;
247 unsigned s_i, rev_i;
248 char_u *rev;
249
250 /*
251 * Reverse the pattern.
252 */
253 len = (unsigned)STRLEN(s);
254 rev = alloc(len + 1);
255 if (rev != NULL)
256 {
257 rev_i = len;
258 for (s_i = 0; s_i < len; ++s_i)
259 {
260# ifdef FEAT_MBYTE
261 if (has_mbyte)
262 {
263 int mb_len;
264
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000265 mb_len = (*mb_ptr2len)(s + s_i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266 rev_i -= mb_len;
267 mch_memmove(rev + rev_i, s + s_i, mb_len);
268 s_i += mb_len - 1;
269 }
270 else
271# endif
272 rev[--rev_i] = s[s_i];
273
274 }
275 rev[len] = NUL;
276 }
277 return rev;
278}
279#endif
280
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +0100281 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100282save_re_pat(int idx, char_u *pat, int magic)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283{
284 if (spats[idx].pat != pat)
285 {
286 vim_free(spats[idx].pat);
287 spats[idx].pat = vim_strsave(pat);
288 spats[idx].magic = magic;
289 spats[idx].no_scs = no_smartcase;
290 last_idx = idx;
291#ifdef FEAT_SEARCH_EXTRA
292 /* If 'hlsearch' set and search pat changed: need redraw. */
293 if (p_hls)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000294 redraw_all_later(SOME_VALID);
Bram Moolenaar8050efa2013-11-08 04:30:20 +0100295 SET_NO_HLSEARCH(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296#endif
297 }
298}
299
300#if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO)
301/*
302 * Save the search patterns, so they can be restored later.
303 * Used before/after executing autocommands and user functions.
304 */
305static int save_level = 0;
306
307 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100308save_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309{
310 if (save_level++ == 0)
311 {
312 saved_spats[0] = spats[0];
313 if (spats[0].pat != NULL)
314 saved_spats[0].pat = vim_strsave(spats[0].pat);
315 saved_spats[1] = spats[1];
316 if (spats[1].pat != NULL)
317 saved_spats[1].pat = vim_strsave(spats[1].pat);
318 saved_last_idx = last_idx;
319# ifdef FEAT_SEARCH_EXTRA
320 saved_no_hlsearch = no_hlsearch;
321# endif
322 }
323}
324
325 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100326restore_search_patterns(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327{
328 if (--save_level == 0)
329 {
330 vim_free(spats[0].pat);
331 spats[0] = saved_spats[0];
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000332#if defined(FEAT_EVAL)
333 set_vv_searchforward();
334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 vim_free(spats[1].pat);
336 spats[1] = saved_spats[1];
337 last_idx = saved_last_idx;
338# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar8050efa2013-11-08 04:30:20 +0100339 SET_NO_HLSEARCH(saved_no_hlsearch);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340# endif
341 }
342}
343#endif
344
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000345#if defined(EXITFREE) || defined(PROTO)
346 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100347free_search_patterns(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000348{
349 vim_free(spats[0].pat);
350 vim_free(spats[1].pat);
Bram Moolenaarf2427622009-04-22 16:45:21 +0000351
352# ifdef FEAT_RIGHTLEFT
353 if (mr_pattern_alloced)
354 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200355 vim_free(mr_pattern);
356 mr_pattern_alloced = FALSE;
357 mr_pattern = NULL;
Bram Moolenaarf2427622009-04-22 16:45:21 +0000358 }
359# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000360}
361#endif
362
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363/*
364 * Return TRUE when case should be ignored for search pattern "pat".
365 * Uses the 'ignorecase' and 'smartcase' options.
366 */
367 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100368ignorecase(char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369{
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200370 int ic = p_ic;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 if (ic && !no_smartcase && p_scs
373#ifdef FEAT_INS_EXPAND
374 && !(ctrl_x_mode && curbuf->b_p_inf)
375#endif
376 )
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200377 ic = !pat_has_uppercase(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 no_smartcase = FALSE;
379
380 return ic;
381}
382
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200383/*
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200384 * Return TRUE if pattern "pat" has an uppercase character.
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200385 */
386 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100387pat_has_uppercase(char_u *pat)
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200388{
389 char_u *p = pat;
390
391 while (*p != NUL)
392 {
393#ifdef FEAT_MBYTE
394 int l;
395
396 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
397 {
398 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
399 return TRUE;
400 p += l;
401 }
402 else
403#endif
404 if (*p == '\\')
405 {
406 if (p[1] == '_' && p[2] != NUL) /* skip "\_X" */
407 p += 3;
408 else if (p[1] == '%' && p[2] != NUL) /* skip "\%X" */
409 p += 3;
410 else if (p[1] != NUL) /* skip "\X" */
411 p += 2;
412 else
413 p += 1;
414 }
415 else if (MB_ISUPPER(*p))
416 return TRUE;
417 else
418 ++p;
419 }
420 return FALSE;
421}
422
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100424last_csearch(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200425{
426#ifdef FEAT_MBYTE
427 return lastc_bytes;
428#else
429 return lastc;
430#endif
431}
432
433 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100434last_csearch_forward(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200435{
436 return lastcdir == FORWARD;
437}
438
439 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100440last_csearch_until(void)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200441{
442 return last_t_cmd == TRUE;
443}
444
445 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100446set_last_csearch(int c, char_u *s UNUSED, int len UNUSED)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200447{
448 *lastc = c;
449#ifdef FEAT_MBYTE
450 lastc_bytelen = len;
451 if (len)
452 memcpy(lastc_bytes, s, len);
453 else
454 vim_memset(lastc_bytes, 0, sizeof(lastc_bytes));
455#endif
456}
457
458 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100459set_csearch_direction(int cdir)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200460{
461 lastcdir = cdir;
462}
463
464 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100465set_csearch_until(int t_cmd)
Bram Moolenaardbd24b52015-08-11 14:26:19 +0200466{
467 last_t_cmd = t_cmd;
468}
469
470 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100471last_search_pat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472{
473 return spats[last_idx].pat;
474}
475
476/*
477 * Reset search direction to forward. For "gd" and "gD" commands.
478 */
479 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100480reset_search_dir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481{
482 spats[0].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000483#if defined(FEAT_EVAL)
484 set_vv_searchforward();
485#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486}
487
488#if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
489/*
490 * Set the last search pattern. For ":let @/ =" and viminfo.
491 * Also set the saved search pattern, so that this works in an autocommand.
492 */
493 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100494set_last_search_pat(
495 char_u *s,
496 int idx,
497 int magic,
498 int setlast)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499{
500 vim_free(spats[idx].pat);
501 /* An empty string means that nothing should be matched. */
502 if (*s == NUL)
503 spats[idx].pat = NULL;
504 else
505 spats[idx].pat = vim_strsave(s);
506 spats[idx].magic = magic;
507 spats[idx].no_scs = FALSE;
508 spats[idx].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000509#if defined(FEAT_EVAL)
510 set_vv_searchforward();
511#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 spats[idx].off.line = FALSE;
513 spats[idx].off.end = FALSE;
514 spats[idx].off.off = 0;
515 if (setlast)
516 last_idx = idx;
517 if (save_level)
518 {
519 vim_free(saved_spats[idx].pat);
520 saved_spats[idx] = spats[0];
521 if (spats[idx].pat == NULL)
522 saved_spats[idx].pat = NULL;
523 else
524 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
525 saved_last_idx = last_idx;
526 }
527# ifdef FEAT_SEARCH_EXTRA
528 /* If 'hlsearch' set and search pat changed: need redraw. */
529 if (p_hls && idx == last_idx && !no_hlsearch)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000530 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531# endif
532}
533#endif
534
535#ifdef FEAT_SEARCH_EXTRA
536/*
537 * Get a regexp program for the last used search pattern.
538 * This is used for highlighting all matches in a window.
539 * Values returned in regmatch->regprog and regmatch->rmm_ic.
540 */
541 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100542last_pat_prog(regmmatch_T *regmatch)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543{
544 if (spats[last_idx].pat == NULL)
545 {
546 regmatch->regprog = NULL;
547 return;
548 }
549 ++emsg_off; /* So it doesn't beep if bad expr */
550 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
551 --emsg_off;
552}
553#endif
554
555/*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100556 * Lowest level search function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 * Search for 'count'th occurrence of pattern 'pat' in direction 'dir'.
558 * Start at position 'pos' and return the found position in 'pos'.
559 *
560 * if (options & SEARCH_MSG) == 0 don't give any messages
561 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
562 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
563 * if (options & SEARCH_HIS) put search pattern in history
564 * if (options & SEARCH_END) return position at end of match
565 * if (options & SEARCH_START) accept match at pos itself
566 * if (options & SEARCH_KEEP) keep previous search pattern
567 * if (options & SEARCH_FOLD) match only once in a closed fold
568 * if (options & SEARCH_PEEK) check for typed char, cancel search
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100569 * if (options & SEARCH_COL) start at pos->col instead of zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 *
571 * Return FAIL (zero) for failure, non-zero for success.
572 * When FEAT_EVAL is defined, returns the index of the first matching
573 * subpattern plus one; one if there was none.
574 */
575 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100576searchit(
577 win_T *win, /* window to search in; can be NULL for a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 buffer without a window! */
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100579 buf_T *buf,
580 pos_T *pos,
581 int dir,
582 char_u *pat,
583 long count,
584 int options,
585 int pat_use, /* which pattern to use when "pat" is empty */
586 linenr_T stop_lnum, /* stop after this line number when != 0 */
587 proftime_T *tm UNUSED) /* timeout limit or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588{
589 int found;
590 linenr_T lnum; /* no init to shut up Apollo cc */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100591 colnr_T col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 regmmatch_T regmatch;
593 char_u *ptr;
594 colnr_T matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595 lpos_T endpos;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000596 lpos_T matchpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 int loop;
598 pos_T start_pos;
599 int at_first_line;
600 int extra_col;
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200601 int start_char_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602 int match_ok;
603 long nmatched;
604 int submatch = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100605 int first_match = TRUE;
Bram Moolenaar280f1262006-01-30 00:14:18 +0000606 int save_called_emsg = called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607#ifdef FEAT_SEARCH_EXTRA
608 int break_loop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609#endif
610
611 if (search_regcomp(pat, RE_SEARCH, pat_use,
612 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
613 {
614 if ((options & SEARCH_MSG) && !rc_did_emsg)
615 EMSG2(_("E383: Invalid search string: %s"), mr_pattern);
616 return FAIL;
617 }
618
Bram Moolenaar280f1262006-01-30 00:14:18 +0000619 /*
620 * find the string
621 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 called_emsg = FALSE;
623 do /* loop for count */
624 {
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100625 /* When not accepting a match at the start position set "extra_col" to
626 * a non-zero value. Don't do that when starting at MAXCOL, since
627 * MAXCOL + 1 is zero. */
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200628 if (pos->col == MAXCOL)
629 start_char_len = 0;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100630#ifdef FEAT_MBYTE
631 /* Watch out for the "col" being MAXCOL - 2, used in a closed fold. */
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200632 else if (has_mbyte
633 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
634 && pos->col < MAXCOL - 2)
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100635 {
636 ptr = ml_get_buf(buf, pos->lnum, FALSE) + pos->col;
637 if (*ptr == NUL)
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200638 start_char_len = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100639 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200640 start_char_len = (*mb_ptr2len)(ptr);
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100641 }
642#endif
643 else
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200644 start_char_len = 1;
645 if (dir == FORWARD)
646 {
647 if (options & SEARCH_START)
648 extra_col = 0;
649 else
650 extra_col = start_char_len;
651 }
652 else
653 {
654 if (options & SEARCH_START)
655 extra_col = start_char_len;
656 else
657 extra_col = 0;
658 }
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100659
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 start_pos = *pos; /* remember start pos for detecting no match */
661 found = 0; /* default: not found */
662 at_first_line = TRUE; /* default: start in first line */
663 if (pos->lnum == 0) /* correct lnum for when starting in line 0 */
664 {
665 pos->lnum = 1;
666 pos->col = 0;
667 at_first_line = FALSE; /* not in first line now */
668 }
669
670 /*
671 * Start searching in current line, unless searching backwards and
672 * we're in column 0.
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000673 * If we are searching backwards, in column 0, and not including the
674 * current position, gain some efficiency by skipping back a line.
675 * Otherwise begin the search in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 */
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000677 if (dir == BACKWARD && start_pos.col == 0
678 && (options & SEARCH_START) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 {
680 lnum = pos->lnum - 1;
681 at_first_line = FALSE;
682 }
683 else
684 lnum = pos->lnum;
685
686 for (loop = 0; loop <= 1; ++loop) /* loop twice if 'wrapscan' set */
687 {
688 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
689 lnum += dir, at_first_line = FALSE)
690 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000691 /* Stop after checking "stop_lnum", if it's set. */
692 if (stop_lnum != 0 && (dir == FORWARD
693 ? lnum > stop_lnum : lnum < stop_lnum))
694 break;
Bram Moolenaar76929292008-01-06 19:07:36 +0000695#ifdef FEAT_RELTIME
696 /* Stop after passing the "tm" time limit. */
697 if (tm != NULL && profile_passed_limit(tm))
698 break;
699#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000700
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000702 * Look for a match somewhere in line "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703 */
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100704 col = at_first_line && (options & SEARCH_COL) ? pos->col
705 : (colnr_T)0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 nmatched = vim_regexec_multi(&regmatch, win, buf,
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100707 lnum, col,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000708#ifdef FEAT_RELTIME
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100709 tm
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000710#else
Bram Moolenaarad4d8a12015-12-28 19:20:36 +0100711 NULL
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000712#endif
713 );
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 /* Abort searching on an error (e.g., out of stack). */
715 if (called_emsg)
716 break;
717 if (nmatched > 0)
718 {
719 /* match may actually be in another line when using \zs */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000720 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 endpos = regmatch.endpos[0];
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000722#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723 submatch = first_submatch(&regmatch);
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000724#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000725 /* "lnum" may be past end of buffer for "\n\zs". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000726 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
727 ptr = (char_u *)"";
728 else
729 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730
731 /*
732 * Forward search in the first line: match should be after
733 * the start position. If not, continue at the end of the
734 * match (this is vi compatible) or on the next char.
735 */
736 if (dir == FORWARD && at_first_line)
737 {
738 match_ok = TRUE;
739 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000740 * When the match starts in a next line it's certainly
741 * past the start position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 * When match lands on a NUL the cursor will be put
743 * one back afterwards, compare with that position,
744 * otherwise "/$" will get stuck on end of line.
745 */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000746 while (matchpos.lnum == 0
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100747 && ((options & SEARCH_END) && first_match
Bram Moolenaar677ee682005-01-27 14:41:15 +0000748 ? (nmatched == 1
749 && (int)endpos.col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 < (int)start_pos.col + extra_col)
Bram Moolenaar677ee682005-01-27 14:41:15 +0000751 : ((int)matchpos.col
752 - (ptr[matchpos.col] == NUL)
753 < (int)start_pos.col + extra_col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 {
755 /*
756 * If vi-compatible searching, continue at the end
757 * of the match, otherwise continue one position
758 * forward.
759 */
760 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
761 {
762 if (nmatched > 1)
763 {
764 /* end is in next line, thus no match in
765 * this line */
766 match_ok = FALSE;
767 break;
768 }
769 matchcol = endpos.col;
770 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000771 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 && ptr[matchcol] != NUL)
773 {
774#ifdef FEAT_MBYTE
775 if (has_mbyte)
776 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000777 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 else
779#endif
780 ++matchcol;
781 }
782 }
783 else
784 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000785 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 if (ptr[matchcol] != NUL)
787 {
788#ifdef FEAT_MBYTE
789 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000790 matchcol += (*mb_ptr2len)(ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 + matchcol);
792 else
793#endif
794 ++matchcol;
795 }
796 }
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200797 if (matchcol == 0 && (options & SEARCH_START))
Bram Moolenaardb333a52013-03-19 15:27:48 +0100798 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 if (ptr[matchcol] == NUL
800 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000801 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000802 matchcol,
803#ifdef FEAT_RELTIME
804 tm
805#else
806 NULL
807#endif
808 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809 {
810 match_ok = FALSE;
811 break;
812 }
Bram Moolenaar677ee682005-01-27 14:41:15 +0000813 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 endpos = regmatch.endpos[0];
815# ifdef FEAT_EVAL
816 submatch = first_submatch(&regmatch);
817# endif
818
819 /* Need to get the line pointer again, a
820 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000821 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 }
823 if (!match_ok)
824 continue;
825 }
826 if (dir == BACKWARD)
827 {
828 /*
829 * Now, if there are multiple matches on this line,
830 * we have to get the last one. Or the last one before
831 * the cursor, if we're on that line.
832 * When putting the new cursor at the end, compare
833 * relative to the end of the match.
834 */
835 match_ok = FALSE;
836 for (;;)
837 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000838 /* Remember a position that is before the start
839 * position, we use it if it's the last match in
840 * the line. Always accept a position after
841 * wrapping around. */
842 if (loop
843 || ((options & SEARCH_END)
844 ? (lnum + regmatch.endpos[0].lnum
845 < start_pos.lnum
846 || (lnum + regmatch.endpos[0].lnum
847 == start_pos.lnum
848 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200849 < (int)start_pos.col
850 + extra_col))
Bram Moolenaar677ee682005-01-27 14:41:15 +0000851 : (lnum + regmatch.startpos[0].lnum
852 < start_pos.lnum
853 || (lnum + regmatch.startpos[0].lnum
854 == start_pos.lnum
855 && (int)regmatch.startpos[0].col
Bram Moolenaar5f1e68b2015-07-10 14:43:35 +0200856 < (int)start_pos.col
857 + extra_col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000860 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861 endpos = regmatch.endpos[0];
862# ifdef FEAT_EVAL
863 submatch = first_submatch(&regmatch);
864# endif
865 }
866 else
867 break;
868
869 /*
870 * We found a valid match, now check if there is
871 * another one after it.
872 * If vi-compatible searching, continue at the end
873 * of the match, otherwise continue one position
874 * forward.
875 */
876 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
877 {
878 if (nmatched > 1)
879 break;
880 matchcol = endpos.col;
881 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000882 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883 && ptr[matchcol] != NUL)
884 {
885#ifdef FEAT_MBYTE
886 if (has_mbyte)
887 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000888 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 else
890#endif
891 ++matchcol;
892 }
893 }
894 else
895 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000896 /* Stop when the match is in a next line. */
897 if (matchpos.lnum > 0)
898 break;
899 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 if (ptr[matchcol] != NUL)
901 {
902#ifdef FEAT_MBYTE
903 if (has_mbyte)
904 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000905 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 else
907#endif
908 ++matchcol;
909 }
910 }
911 if (ptr[matchcol] == NUL
912 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000913 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000914 matchcol,
915#ifdef FEAT_RELTIME
916 tm
917#else
918 NULL
919#endif
920 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 break;
922
923 /* Need to get the line pointer again, a
924 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000925 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 }
927
928 /*
929 * If there is only a match after the cursor, skip
930 * this match.
931 */
932 if (!match_ok)
933 continue;
934 }
935
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000936 /* With the SEARCH_END option move to the last character
937 * of the match. Don't do it for an empty match, end
938 * should be same as start then. */
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200939 if ((options & SEARCH_END) && !(options & SEARCH_NOOF)
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000940 && !(matchpos.lnum == endpos.lnum
941 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000943 /* For a match in the first column, set the position
944 * on the NUL in the previous line. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000945 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000946 pos->col = endpos.col;
947 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000948 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000949 if (pos->lnum > 1) /* just in case */
950 {
951 --pos->lnum;
952 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
953 pos->lnum, FALSE));
954 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000955 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000956 else
957 {
958 --pos->col;
959#ifdef FEAT_MBYTE
960 if (has_mbyte
961 && pos->lnum <= buf->b_ml.ml_line_count)
962 {
963 ptr = ml_get_buf(buf, pos->lnum, FALSE);
964 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
965 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000966#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000967 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 }
969 else
970 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000971 pos->lnum = lnum + matchpos.lnum;
972 pos->col = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 }
974#ifdef FEAT_VIRTUALEDIT
975 pos->coladd = 0;
976#endif
977 found = 1;
Bram Moolenaara3dfccc2014-11-27 17:29:56 +0100978 first_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979
980 /* Set variables used for 'incsearch' highlighting. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000981 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 search_match_endcol = endpos.col;
983 break;
984 }
985 line_breakcheck(); /* stop if ctrl-C typed */
986 if (got_int)
987 break;
988
989#ifdef FEAT_SEARCH_EXTRA
990 /* Cancel searching if a character was typed. Used for
991 * 'incsearch'. Don't check too often, that would slowdown
992 * searching too much. */
993 if ((options & SEARCH_PEEK)
994 && ((lnum - pos->lnum) & 0x3f) == 0
995 && char_avail())
996 {
997 break_loop = TRUE;
998 break;
999 }
1000#endif
1001
1002 if (loop && lnum == start_pos.lnum)
1003 break; /* if second loop, stop where started */
1004 }
1005 at_first_line = FALSE;
1006
1007 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001008 * Stop the search if wrapscan isn't set, "stop_lnum" is
1009 * specified, after an interrupt, after a match and after looping
1010 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011 */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001012 if (!p_ws || stop_lnum != 0 || got_int || called_emsg
Bram Moolenaar78a15312009-05-15 19:33:18 +00001013#ifdef FEAT_SEARCH_EXTRA
1014 || break_loop
1015#endif
1016 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017 break;
1018
1019 /*
1020 * If 'wrapscan' is set we continue at the other end of the file.
1021 * If 'shortmess' does not contain 's', we give a message.
1022 * This message is also remembered in keep_msg for when the screen
1023 * is redrawn. The keep_msg is cleared whenever another message is
1024 * written.
1025 */
1026 if (dir == BACKWARD) /* start second loop at the other end */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00001030 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
1031 give_warning((char_u *)_(dir == BACKWARD
1032 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00001034 if (got_int || called_emsg
1035#ifdef FEAT_SEARCH_EXTRA
1036 || break_loop
1037#endif
1038 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039 break;
1040 }
1041 while (--count > 0 && found); /* stop after count matches or no match */
1042
Bram Moolenaar473de612013-06-08 18:19:48 +02001043 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044
Bram Moolenaar280f1262006-01-30 00:14:18 +00001045 called_emsg |= save_called_emsg;
1046
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 if (!found) /* did not find it */
1048 {
1049 if (got_int)
1050 EMSG(_(e_interr));
1051 else if ((options & SEARCH_MSG) == SEARCH_MSG)
1052 {
1053 if (p_ws)
1054 EMSG2(_(e_patnotf2), mr_pattern);
1055 else if (lnum == 0)
1056 EMSG2(_("E384: search hit TOP without match for: %s"),
1057 mr_pattern);
1058 else
1059 EMSG2(_("E385: search hit BOTTOM without match for: %s"),
1060 mr_pattern);
1061 }
1062 return FAIL;
1063 }
1064
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001065 /* A pattern like "\n\zs" may go past the last line. */
1066 if (pos->lnum > buf->b_ml.ml_line_count)
1067 {
1068 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001069 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001070 if (pos->col > 0)
1071 --pos->col;
1072 }
1073
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 return submatch + 1;
1075}
1076
1077#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001078 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001079set_search_direction(int cdir)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001080{
1081 spats[0].off.dir = cdir;
1082}
1083
1084 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001085set_vv_searchforward(void)
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001086{
1087 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1088}
1089
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090/*
1091 * Return the number of the first subpat that matched.
Bram Moolenaarad4d8a12015-12-28 19:20:36 +01001092 * Return zero if none of them matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 */
1094 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001095first_submatch(regmmatch_T *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096{
1097 int submatch;
1098
1099 for (submatch = 1; ; ++submatch)
1100 {
1101 if (rp->startpos[submatch].lnum >= 0)
1102 break;
1103 if (submatch == 9)
1104 {
1105 submatch = 0;
1106 break;
1107 }
1108 }
1109 return submatch;
1110}
1111#endif
1112
1113/*
1114 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001115 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 * If 'dirc' is 0: use previous dir.
1117 * If 'pat' is NULL or empty : use previous string.
1118 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1119 * If 'options & SEARCH_ECHO': echo the search command and handle options
1120 * If 'options & SEARCH_MSG' : may give error message
1121 * If 'options & SEARCH_OPT' : interpret optional flags
1122 * If 'options & SEARCH_HIS' : put search pattern in history
1123 * If 'options & SEARCH_NOOF': don't add offset to position
1124 * If 'options & SEARCH_MARK': set previous context mark
1125 * If 'options & SEARCH_KEEP': keep previous search pattern
1126 * If 'options & SEARCH_START': accept match at curpos itself
1127 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1128 *
1129 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1130 * makes the movement linewise without moving the match position.
1131 *
Bram Moolenaarb6c27352015-03-05 19:57:49 +01001132 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 */
1134 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001135do_search(
1136 oparg_T *oap, /* can be NULL */
1137 int dirc, /* '/' or '?' */
1138 char_u *pat,
1139 long count,
1140 int options,
1141 proftime_T *tm) /* timeout limit or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142{
1143 pos_T pos; /* position of the last match */
1144 char_u *searchstr;
1145 struct soffset old_off;
1146 int retval; /* Return value */
1147 char_u *p;
1148 long c;
1149 char_u *dircp;
1150 char_u *strcopy = NULL;
1151 char_u *ps;
1152
1153 /*
1154 * A line offset is not remembered, this is vi compatible.
1155 */
1156 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1157 {
1158 spats[0].off.line = FALSE;
1159 spats[0].off.off = 0;
1160 }
1161
1162 /*
1163 * Save the values for when (options & SEARCH_KEEP) is used.
1164 * (there is no "if ()" around this because gcc wants them initialized)
1165 */
1166 old_off = spats[0].off;
1167
1168 pos = curwin->w_cursor; /* start searching at the cursor position */
1169
1170 /*
1171 * Find out the direction of the search.
1172 */
1173 if (dirc == 0)
1174 dirc = spats[0].off.dir;
1175 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001176 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001178#if defined(FEAT_EVAL)
1179 set_vv_searchforward();
1180#endif
1181 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 if (options & SEARCH_REV)
1183 {
1184#ifdef WIN32
1185 /* There is a bug in the Visual C++ 2.2 compiler which means that
1186 * dirc always ends up being '/' */
1187 dirc = (dirc == '/') ? '?' : '/';
1188#else
1189 if (dirc == '/')
1190 dirc = '?';
1191 else
1192 dirc = '/';
1193#endif
1194 }
1195
1196#ifdef FEAT_FOLDING
1197 /* If the cursor is in a closed fold, don't find another match in the same
1198 * fold. */
1199 if (dirc == '/')
1200 {
1201 if (hasFolding(pos.lnum, NULL, &pos.lnum))
1202 pos.col = MAXCOL - 2; /* avoid overflow when adding 1 */
1203 }
1204 else
1205 {
1206 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1207 pos.col = 0;
1208 }
1209#endif
1210
1211#ifdef FEAT_SEARCH_EXTRA
1212 /*
1213 * Turn 'hlsearch' highlighting back on.
1214 */
1215 if (no_hlsearch && !(options & SEARCH_KEEP))
1216 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001217 redraw_all_later(SOME_VALID);
Bram Moolenaar8050efa2013-11-08 04:30:20 +01001218 SET_NO_HLSEARCH(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 }
1220#endif
1221
1222 /*
1223 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1224 */
1225 for (;;)
1226 {
1227 searchstr = pat;
1228 dircp = NULL;
1229 /* use previous pattern */
1230 if (pat == NULL || *pat == NUL || *pat == dirc)
1231 {
1232 if (spats[RE_SEARCH].pat == NULL) /* no previous pattern */
1233 {
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001234 pat = spats[RE_SUBST].pat;
1235 if (pat == NULL)
1236 {
1237 EMSG(_(e_noprevre));
1238 retval = 0;
1239 goto end_do_search;
1240 }
1241 searchstr = pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001243 else
1244 {
1245 /* make search_regcomp() use spats[RE_SEARCH].pat */
1246 searchstr = (char_u *)"";
1247 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 }
1249
1250 if (pat != NULL && *pat != NUL) /* look for (new) offset */
1251 {
1252 /*
1253 * Find end of regular expression.
1254 * If there is a matching '/' or '?', toss it.
1255 */
1256 ps = strcopy;
1257 p = skip_regexp(pat, dirc, (int)p_magic, &strcopy);
1258 if (strcopy != ps)
1259 {
1260 /* made a copy of "pat" to change "\?" to "?" */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001261 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 pat = strcopy;
1263 searchstr = strcopy;
1264 }
1265 if (*p == dirc)
1266 {
1267 dircp = p; /* remember where we put the NUL */
1268 *p++ = NUL;
1269 }
1270 spats[0].off.line = FALSE;
1271 spats[0].off.end = FALSE;
1272 spats[0].off.off = 0;
1273 /*
1274 * Check for a line offset or a character offset.
1275 * For get_address (echo off) we don't check for a character
1276 * offset, because it is meaningless and the 's' could be a
1277 * substitute command.
1278 */
1279 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1280 spats[0].off.line = TRUE;
1281 else if ((options & SEARCH_OPT) &&
1282 (*p == 'e' || *p == 's' || *p == 'b'))
1283 {
1284 if (*p == 'e') /* end */
1285 spats[0].off.end = SEARCH_END;
1286 ++p;
1287 }
1288 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') /* got an offset */
1289 {
1290 /* 'nr' or '+nr' or '-nr' */
1291 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1292 spats[0].off.off = atol((char *)p);
1293 else if (*p == '-') /* single '-' */
1294 spats[0].off.off = -1;
1295 else /* single '+' */
1296 spats[0].off.off = 1;
1297 ++p;
1298 while (VIM_ISDIGIT(*p)) /* skip number */
1299 ++p;
1300 }
1301
1302 /* compute length of search command for get_address() */
1303 searchcmdlen += (int)(p - pat);
1304
1305 pat = p; /* put pat after search command */
1306 }
1307
1308 if ((options & SEARCH_ECHO) && messaging()
1309 && !cmd_silent && msg_silent == 0)
1310 {
1311 char_u *msgbuf;
1312 char_u *trunc;
1313
1314 if (*searchstr == NUL)
1315 p = spats[last_idx].pat;
1316 else
1317 p = searchstr;
1318 msgbuf = alloc((unsigned)(STRLEN(p) + 40));
1319 if (msgbuf != NULL)
1320 {
1321 msgbuf[0] = dirc;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001322#ifdef FEAT_MBYTE
1323 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1324 {
1325 /* Use a space to draw the composing char on. */
1326 msgbuf[1] = ' ';
1327 STRCPY(msgbuf + 2, p);
1328 }
1329 else
1330#endif
1331 STRCPY(msgbuf + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 if (spats[0].off.line || spats[0].off.end || spats[0].off.off)
1333 {
1334 p = msgbuf + STRLEN(msgbuf);
1335 *p++ = dirc;
1336 if (spats[0].off.end)
1337 *p++ = 'e';
1338 else if (!spats[0].off.line)
1339 *p++ = 's';
1340 if (spats[0].off.off > 0 || spats[0].off.line)
1341 *p++ = '+';
1342 if (spats[0].off.off != 0 || spats[0].off.line)
1343 sprintf((char *)p, "%ld", spats[0].off.off);
1344 else
1345 *p = NUL;
1346 }
1347
1348 msg_start();
Bram Moolenaara4a08382005-09-09 19:52:02 +00001349 trunc = msg_strtrunc(msgbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350
1351#ifdef FEAT_RIGHTLEFT
1352 /* The search pattern could be shown on the right in rightleft
1353 * mode, but the 'ruler' and 'showcmd' area use it too, thus
1354 * it would be blanked out again very soon. Show it on the
1355 * left, but do reverse the text. */
1356 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1357 {
1358 char_u *r;
1359
1360 r = reverse_text(trunc != NULL ? trunc : msgbuf);
1361 if (r != NULL)
1362 {
1363 vim_free(trunc);
1364 trunc = r;
1365 }
1366 }
1367#endif
1368 if (trunc != NULL)
1369 {
1370 msg_outtrans(trunc);
1371 vim_free(trunc);
1372 }
1373 else
1374 msg_outtrans(msgbuf);
1375 msg_clr_eos();
1376 msg_check();
1377 vim_free(msgbuf);
1378
1379 gotocmdline(FALSE);
1380 out_flush();
1381 msg_nowait = TRUE; /* don't wait for this message */
1382 }
1383 }
1384
1385 /*
1386 * If there is a character offset, subtract it from the current
1387 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001388 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 * This is not done for a line offset, because then we would not be vi
1390 * compatible.
1391 */
Bram Moolenaared203462004-06-16 11:19:22 +00001392 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 {
1394 if (spats[0].off.off > 0)
1395 {
1396 for (c = spats[0].off.off; c; --c)
1397 if (decl(&pos) == -1)
1398 break;
1399 if (c) /* at start of buffer */
1400 {
1401 pos.lnum = 0; /* allow lnum == 0 here */
1402 pos.col = MAXCOL;
1403 }
1404 }
1405 else
1406 {
1407 for (c = spats[0].off.off; c; ++c)
1408 if (incl(&pos) == -1)
1409 break;
1410 if (c) /* at end of buffer */
1411 {
1412 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1413 pos.col = 0;
1414 }
1415 }
1416 }
1417
1418#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
1419 if (p_altkeymap && curwin->w_p_rl)
1420 lrFswap(searchstr,0);
1421#endif
1422
1423 c = searchit(curwin, curbuf, &pos, dirc == '/' ? FORWARD : BACKWARD,
1424 searchstr, count, spats[0].off.end + (options &
1425 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1426 + SEARCH_MSG + SEARCH_START
1427 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001428 RE_LAST, (linenr_T)0, tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429
1430 if (dircp != NULL)
1431 *dircp = dirc; /* restore second '/' or '?' for normal_cmd() */
1432 if (c == FAIL)
1433 {
1434 retval = 0;
1435 goto end_do_search;
1436 }
1437 if (spats[0].off.end && oap != NULL)
1438 oap->inclusive = TRUE; /* 'e' includes last character */
1439
1440 retval = 1; /* pattern found */
1441
1442 /*
1443 * Add character and/or line offset
1444 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001445 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 {
1447 if (spats[0].off.line) /* Add the offset to the line number. */
1448 {
1449 c = pos.lnum + spats[0].off.off;
1450 if (c < 1)
1451 pos.lnum = 1;
1452 else if (c > curbuf->b_ml.ml_line_count)
1453 pos.lnum = curbuf->b_ml.ml_line_count;
1454 else
1455 pos.lnum = c;
1456 pos.col = 0;
1457
1458 retval = 2; /* pattern found, line offset added */
1459 }
Bram Moolenaared203462004-06-16 11:19:22 +00001460 else if (pos.col < MAXCOL - 2) /* just in case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461 {
1462 /* to the right, check for end of file */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001463 c = spats[0].off.off;
1464 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001466 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 if (incl(&pos) == -1)
1468 break;
1469 }
1470 /* to the left, check for start of file */
1471 else
1472 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001473 while (c++ < 0)
1474 if (decl(&pos) == -1)
1475 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 }
1477 }
1478 }
1479
1480 /*
1481 * The search command can be followed by a ';' to do another search.
1482 * For example: "/pat/;/foo/+3;?bar"
1483 * This is like doing another search command, except:
1484 * - The remembered direction '/' or '?' is from the first search.
1485 * - When an error happens the cursor isn't moved at all.
1486 * Don't do this when called by get_address() (it handles ';' itself).
1487 */
1488 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1489 break;
1490
1491 dirc = *++pat;
1492 if (dirc != '?' && dirc != '/')
1493 {
1494 retval = 0;
1495 EMSG(_("E386: Expected '?' or '/' after ';'"));
1496 goto end_do_search;
1497 }
1498 ++pat;
1499 }
1500
1501 if (options & SEARCH_MARK)
1502 setpcmark();
1503 curwin->w_cursor = pos;
1504 curwin->w_set_curswant = TRUE;
1505
1506end_do_search:
Bram Moolenaarac8400d2014-01-14 21:31:34 +01001507 if ((options & SEARCH_KEEP) || cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 spats[0].off = old_off;
1509 vim_free(strcopy);
1510
1511 return retval;
1512}
1513
1514#if defined(FEAT_INS_EXPAND) || defined(PROTO)
1515/*
1516 * search_for_exact_line(buf, pos, dir, pat)
1517 *
1518 * Search for a line starting with the given pattern (ignoring leading
1519 * white-space), starting from pos and going in direction dir. pos will
1520 * contain the position of the match found. Blank lines match only if
1521 * ADDING is set. if p_ic is set then the pattern must be in lowercase.
1522 * Return OK for success, or FAIL if no line found.
1523 */
1524 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001525search_for_exact_line(
1526 buf_T *buf,
1527 pos_T *pos,
1528 int dir,
1529 char_u *pat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530{
1531 linenr_T start = 0;
1532 char_u *ptr;
1533 char_u *p;
1534
1535 if (buf->b_ml.ml_line_count == 0)
1536 return FAIL;
1537 for (;;)
1538 {
1539 pos->lnum += dir;
1540 if (pos->lnum < 1)
1541 {
1542 if (p_ws)
1543 {
1544 pos->lnum = buf->b_ml.ml_line_count;
1545 if (!shortmess(SHM_SEARCH))
1546 give_warning((char_u *)_(top_bot_msg), TRUE);
1547 }
1548 else
1549 {
1550 pos->lnum = 1;
1551 break;
1552 }
1553 }
1554 else if (pos->lnum > buf->b_ml.ml_line_count)
1555 {
1556 if (p_ws)
1557 {
1558 pos->lnum = 1;
1559 if (!shortmess(SHM_SEARCH))
1560 give_warning((char_u *)_(bot_top_msg), TRUE);
1561 }
1562 else
1563 {
1564 pos->lnum = 1;
1565 break;
1566 }
1567 }
1568 if (pos->lnum == start)
1569 break;
1570 if (start == 0)
1571 start = pos->lnum;
1572 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1573 p = skipwhite(ptr);
1574 pos->col = (colnr_T) (p - ptr);
1575
1576 /* when adding lines the matching line may be empty but it is not
1577 * ignored because we are interested in the next line -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001578 if ((compl_cont_status & CONT_ADDING)
1579 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 {
1581 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1582 return OK;
1583 }
1584 else if (*p != NUL) /* ignore empty lines */
1585 { /* expanding lines or words */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001586 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1587 : STRNCMP(p, pat, compl_length)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 return OK;
1589 }
1590 }
1591 return FAIL;
1592}
1593#endif /* FEAT_INS_EXPAND */
1594
1595/*
1596 * Character Searches
1597 */
1598
1599/*
1600 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1601 * position of the character, otherwise move to just before the char.
1602 * Do this "cap->count1" times.
1603 * Return FAIL or OK.
1604 */
1605 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001606searchc(cmdarg_T *cap, int t_cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607{
1608 int c = cap->nchar; /* char to search for */
1609 int dir = cap->arg; /* TRUE for searching forward */
1610 long count = cap->count1; /* repeat count */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 int col;
1612 char_u *p;
1613 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001614 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615
1616 if (c != NUL) /* normal search: remember args for repeat */
1617 {
1618 if (!KeyStuffed) /* don't remember when redoing */
1619 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001620 *lastc = c;
1621 set_csearch_direction(dir);
1622 set_csearch_until(t_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623#ifdef FEAT_MBYTE
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001624 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 if (cap->ncharC1 != 0)
1626 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001627 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1,
1628 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 if (cap->ncharC2 != 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001630 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2,
1631 lastc_bytes + lastc_bytelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 }
1633#endif
1634 }
1635 }
1636 else /* repeat previous search */
1637 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001638 if (*lastc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 return FAIL;
1640 if (dir) /* repeat in opposite direction */
1641 dir = -lastcdir;
1642 else
1643 dir = lastcdir;
1644 t_cmd = last_t_cmd;
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001645 c = *lastc;
1646 /* For multi-byte re-use last lastc_bytes[] and lastc_bytelen. */
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001647
1648 /* Force a move of at least one char, so ";" and "," will move the
1649 * cursor, even if the cursor is right in front of char we are looking
1650 * at. */
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001651 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001652 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 }
1654
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001655 if (dir == BACKWARD)
1656 cap->oap->inclusive = FALSE;
1657 else
1658 cap->oap->inclusive = TRUE;
1659
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 p = ml_get_curline();
1661 col = curwin->w_cursor.col;
1662 len = (int)STRLEN(p);
1663
1664 while (count--)
1665 {
1666#ifdef FEAT_MBYTE
1667 if (has_mbyte)
1668 {
1669 for (;;)
1670 {
1671 if (dir > 0)
1672 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001673 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 if (col >= len)
1675 return FAIL;
1676 }
1677 else
1678 {
1679 if (col == 0)
1680 return FAIL;
1681 col -= (*mb_head_off)(p, p + col - 1) + 1;
1682 }
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001683 if (lastc_bytelen == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001685 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 break;
1687 }
1688 else
1689 {
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001690 if (vim_memcmp(p + col, lastc_bytes, lastc_bytelen) == 0 && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 break;
1692 }
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001693 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694 }
1695 }
1696 else
1697#endif
1698 {
1699 for (;;)
1700 {
1701 if ((col += dir) < 0 || col >= len)
1702 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001703 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001705 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706 }
1707 }
1708 }
1709
1710 if (t_cmd)
1711 {
1712 /* backup to before the character (possibly double-byte) */
1713 col -= dir;
1714#ifdef FEAT_MBYTE
1715 if (has_mbyte)
1716 {
1717 if (dir < 0)
Bram Moolenaardbd24b52015-08-11 14:26:19 +02001718 /* Landed on the search char which is lastc_bytelen long */
1719 col += lastc_bytelen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 else
1721 /* To previous char, which may be multi-byte. */
1722 col -= (*mb_head_off)(p, p + col);
1723 }
1724#endif
1725 }
1726 curwin->w_cursor.col = col;
1727
1728 return OK;
1729}
1730
1731/*
1732 * "Other" Searches
1733 */
1734
1735/*
1736 * findmatch - find the matching paren or brace
1737 *
1738 * Improvement over vi: Braces inside quotes are ignored.
1739 */
1740 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001741findmatch(oparg_T *oap, int initc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742{
1743 return findmatchlimit(oap, initc, 0, 0);
1744}
1745
1746/*
1747 * Return TRUE if the character before "linep[col]" equals "ch".
1748 * Return FALSE if "col" is zero.
1749 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1750 * is NULL.
1751 * Handles multibyte string correctly.
1752 */
1753 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001754check_prevcol(
1755 char_u *linep,
1756 int col,
1757 int ch,
1758 int *prevcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759{
1760 --col;
1761#ifdef FEAT_MBYTE
1762 if (col > 0 && has_mbyte)
1763 col -= (*mb_head_off)(linep, linep + col);
1764#endif
1765 if (prevcol)
1766 *prevcol = col;
1767 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1768}
1769
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001770static int find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001771
1772/*
1773 * Raw string start is found at linep[startpos.col - 1].
1774 * Return TRUE if the matching end can be found between startpos and endpos.
1775 */
1776 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001777find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos)
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001778{
1779 char_u *p;
1780 char_u *delim_copy;
1781 size_t delim_len;
1782 linenr_T lnum;
1783 int found = FALSE;
1784
1785 for (p = linep + startpos->col + 1; *p && *p != '('; ++p)
1786 ;
1787 delim_len = (p - linep) - startpos->col - 1;
Bram Moolenaar6ed535d2015-08-26 23:01:21 +02001788 delim_copy = vim_strnsave(linep + startpos->col + 1, (int)delim_len);
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001789 if (delim_copy == NULL)
1790 return FALSE;
1791 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum)
1792 {
1793 char_u *line = ml_get(lnum);
1794
1795 for (p = line + (lnum == startpos->lnum
1796 ? startpos->col + 1 : 0); *p; ++p)
1797 {
1798 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col)
1799 break;
1800 if (*p == ')' && p[delim_len + 1] == '"'
1801 && STRNCMP(delim_copy, p + 1, delim_len) == 0)
1802 {
1803 found = TRUE;
1804 break;
1805 }
1806 }
1807 if (found)
1808 break;
1809 }
1810 vim_free(delim_copy);
1811 return found;
1812}
1813
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814/*
1815 * findmatchlimit -- find the matching paren or brace, if it exists within
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001816 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling
1817 * off the edge of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 *
1819 * "initc" is the character to find a match for. NUL means to find the
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001820 * character at or after the cursor. Special values:
1821 * '*' look for C-style comment / *
1822 * '/' look for C-style comment / *, ignoring comment-end
1823 * '#' look for preprocessor directives
1824 * 'R' look for raw string start: R"delim(text)delim" (only backwards)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 *
1826 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
1827 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
1828 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
1829 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001830 *
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001831 * "oap" is only used to set oap->motion_type for a linewise motion, it can be
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001832 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 */
1834
1835 pos_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001836findmatchlimit(
1837 oparg_T *oap,
1838 int initc,
1839 int flags,
1840 int maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841{
1842 static pos_T pos; /* current search position */
1843 int findc = 0; /* matching brace */
1844 int c;
1845 int count = 0; /* cumulative number of braces */
1846 int backwards = FALSE; /* init for gcc */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001847 int raw_string = FALSE; /* search for raw string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 int inquote = FALSE; /* TRUE when inside quotes */
1849 char_u *linep; /* pointer to current line */
1850 char_u *ptr;
1851 int do_quotes; /* check for quotes in current line */
1852 int at_start; /* do_quotes value at start position */
1853 int hash_dir = 0; /* Direction searched for # things */
1854 int comment_dir = 0; /* Direction searched for comments */
1855 pos_T match_pos; /* Where last slash-star was found */
1856 int start_in_quotes; /* start position is in quotes */
1857 int traveled = 0; /* how far we've searched so far */
1858 int ignore_cend = FALSE; /* ignore comment end */
1859 int cpo_match; /* vi compatible matching */
1860 int cpo_bsl; /* don't recognize backslashes */
1861 int match_escaped = 0; /* search for escaped match */
1862 int dir; /* Direction to search */
1863 int comment_col = MAXCOL; /* start of / / comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001864#ifdef FEAT_LISP
1865 int lispcomm = FALSE; /* inside of Lisp-style comment */
1866 int lisp = curbuf->b_p_lisp; /* engage Lisp-specific hacks ;) */
1867#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868
1869 pos = curwin->w_cursor;
Bram Moolenaarc56c4592013-08-14 17:45:29 +02001870#ifdef FEAT_VIRTUALEDIT
1871 pos.coladd = 0;
1872#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 linep = ml_get(pos.lnum);
1874
1875 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
1876 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
1877
1878 /* Direction to search when initc is '/', '*' or '#' */
1879 if (flags & FM_BACKWARD)
1880 dir = BACKWARD;
1881 else if (flags & FM_FORWARD)
1882 dir = FORWARD;
1883 else
1884 dir = 0;
1885
1886 /*
1887 * if initc given, look in the table for the matching character
1888 * '/' and '*' are special cases: look for start or end of comment.
1889 * When '/' is used, we ignore running backwards into an star-slash, for
1890 * "[*" command, we just want to find any comment.
1891 */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001892 if (initc == '/' || initc == '*' || initc == 'R')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 {
1894 comment_dir = dir;
1895 if (initc == '/')
1896 ignore_cend = TRUE;
1897 backwards = (dir == FORWARD) ? FALSE : TRUE;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001898 raw_string = (initc == 'R');
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 initc = NUL;
1900 }
1901 else if (initc != '#' && initc != NUL)
1902 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001903 find_mps_values(&initc, &findc, &backwards, TRUE);
1904 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 return NULL;
1906 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 else
1908 {
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02001909 /*
1910 * Either initc is '#', or no initc was given and we need to look
1911 * under the cursor.
1912 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 if (initc == '#')
1914 {
1915 hash_dir = dir;
1916 }
1917 else
1918 {
1919 /*
1920 * initc was not given, must look for something to match under
1921 * or near the cursor.
1922 * Only check for special things when 'cpo' doesn't have '%'.
1923 */
1924 if (!cpo_match)
1925 {
1926 /* Are we before or at #if, #else etc.? */
1927 ptr = skipwhite(linep);
1928 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
1929 {
1930 ptr = skipwhite(ptr + 1);
1931 if ( STRNCMP(ptr, "if", 2) == 0
1932 || STRNCMP(ptr, "endif", 5) == 0
1933 || STRNCMP(ptr, "el", 2) == 0)
1934 hash_dir = 1;
1935 }
1936
1937 /* Are we on a comment? */
1938 else if (linep[pos.col] == '/')
1939 {
1940 if (linep[pos.col + 1] == '*')
1941 {
1942 comment_dir = FORWARD;
1943 backwards = FALSE;
1944 pos.col++;
1945 }
1946 else if (pos.col > 0 && linep[pos.col - 1] == '*')
1947 {
1948 comment_dir = BACKWARD;
1949 backwards = TRUE;
1950 pos.col--;
1951 }
1952 }
1953 else if (linep[pos.col] == '*')
1954 {
1955 if (linep[pos.col + 1] == '/')
1956 {
1957 comment_dir = BACKWARD;
1958 backwards = TRUE;
1959 }
1960 else if (pos.col > 0 && linep[pos.col - 1] == '/')
1961 {
1962 comment_dir = FORWARD;
1963 backwards = FALSE;
1964 }
1965 }
1966 }
1967
1968 /*
1969 * If we are not on a comment or the # at the start of a line, then
1970 * look for brace anywhere on this line after the cursor.
1971 */
1972 if (!hash_dir && !comment_dir)
1973 {
1974 /*
1975 * Find the brace under or after the cursor.
1976 * If beyond the end of the line, use the last character in
1977 * the line.
1978 */
1979 if (linep[pos.col] == NUL && pos.col)
1980 --pos.col;
1981 for (;;)
1982 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001983 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 if (initc == NUL)
1985 break;
1986
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001987 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 if (findc)
1989 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001990 pos.col += MB_PTR2LEN(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 }
1992 if (!findc)
1993 {
1994 /* no brace in the line, maybe use " #if" then */
1995 if (!cpo_match && *skipwhite(linep) == '#')
1996 hash_dir = 1;
1997 else
1998 return NULL;
1999 }
2000 else if (!cpo_bsl)
2001 {
2002 int col, bslcnt = 0;
2003
2004 /* Set "match_escaped" if there are an odd number of
2005 * backslashes. */
2006 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2007 bslcnt++;
2008 match_escaped = (bslcnt & 1);
2009 }
2010 }
2011 }
2012 if (hash_dir)
2013 {
2014 /*
2015 * Look for matching #if, #else, #elif, or #endif
2016 */
2017 if (oap != NULL)
2018 oap->motion_type = MLINE; /* Linewise for this case only */
2019 if (initc != '#')
2020 {
2021 ptr = skipwhite(skipwhite(linep) + 1);
2022 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
2023 hash_dir = 1;
2024 else if (STRNCMP(ptr, "endif", 5) == 0)
2025 hash_dir = -1;
2026 else
2027 return NULL;
2028 }
2029 pos.col = 0;
2030 while (!got_int)
2031 {
2032 if (hash_dir > 0)
2033 {
2034 if (pos.lnum == curbuf->b_ml.ml_line_count)
2035 break;
2036 }
2037 else if (pos.lnum == 1)
2038 break;
2039 pos.lnum += hash_dir;
2040 linep = ml_get(pos.lnum);
2041 line_breakcheck(); /* check for CTRL-C typed */
2042 ptr = skipwhite(linep);
2043 if (*ptr != '#')
2044 continue;
2045 pos.col = (colnr_T) (ptr - linep);
2046 ptr = skipwhite(ptr + 1);
2047 if (hash_dir > 0)
2048 {
2049 if (STRNCMP(ptr, "if", 2) == 0)
2050 count++;
2051 else if (STRNCMP(ptr, "el", 2) == 0)
2052 {
2053 if (count == 0)
2054 return &pos;
2055 }
2056 else if (STRNCMP(ptr, "endif", 5) == 0)
2057 {
2058 if (count == 0)
2059 return &pos;
2060 count--;
2061 }
2062 }
2063 else
2064 {
2065 if (STRNCMP(ptr, "if", 2) == 0)
2066 {
2067 if (count == 0)
2068 return &pos;
2069 count--;
2070 }
2071 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
2072 {
2073 if (count == 0)
2074 return &pos;
2075 }
2076 else if (STRNCMP(ptr, "endif", 5) == 0)
2077 count++;
2078 }
2079 }
2080 return NULL;
2081 }
2082 }
2083
2084#ifdef FEAT_RIGHTLEFT
Bram Moolenaarabc97732007-08-08 20:49:37 +00002085 /* This is just guessing: when 'rightleft' is set, search for a matching
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 * paren/brace in the other direction. */
2087 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
2088 backwards = !backwards;
2089#endif
2090
2091 do_quotes = -1;
2092 start_in_quotes = MAYBE;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00002093 clearpos(&match_pos);
2094
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 /* backward search: Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002096 if ((backwards && comment_dir)
2097#ifdef FEAT_LISP
2098 || lisp
2099#endif
2100 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002102#ifdef FEAT_LISP
2103 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
2104 lispcomm = TRUE; /* find match inside this comment */
2105#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106 while (!got_int)
2107 {
2108 /*
2109 * Go to the next position, forward or backward. We could use
2110 * inc() and dec() here, but that is much slower
2111 */
2112 if (backwards)
2113 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002114#ifdef FEAT_LISP
2115 /* char to match is inside of comment, don't search outside */
2116 if (lispcomm && pos.col < (colnr_T)comment_col)
2117 break;
2118#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 if (pos.col == 0) /* at start of line, go to prev. one */
2120 {
2121 if (pos.lnum == 1) /* start of file */
2122 break;
2123 --pos.lnum;
2124
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002125 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 break;
2127
2128 linep = ml_get(pos.lnum);
2129 pos.col = (colnr_T)STRLEN(linep); /* pos.col on trailing NUL */
2130 do_quotes = -1;
2131 line_breakcheck();
2132
2133 /* Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002134 if (comment_dir
2135#ifdef FEAT_LISP
2136 || lisp
2137#endif
2138 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002140#ifdef FEAT_LISP
2141 /* skip comment */
2142 if (lisp && comment_col != MAXCOL)
2143 pos.col = comment_col;
2144#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 }
2146 else
2147 {
2148 --pos.col;
2149#ifdef FEAT_MBYTE
2150 if (has_mbyte)
2151 pos.col -= (*mb_head_off)(linep, linep + pos.col);
2152#endif
2153 }
2154 }
2155 else /* forward search */
2156 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002157 if (linep[pos.col] == NUL
2158 /* at end of line, go to next one */
2159#ifdef FEAT_LISP
2160 /* don't search for match in comment */
2161 || (lisp && comment_col != MAXCOL
2162 && pos.col == (colnr_T)comment_col)
2163#endif
2164 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002166 if (pos.lnum == curbuf->b_ml.ml_line_count /* end of file */
2167#ifdef FEAT_LISP
2168 /* line is exhausted and comment with it,
2169 * don't search for match in code */
2170 || lispcomm
2171#endif
2172 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 break;
2174 ++pos.lnum;
2175
2176 if (maxtravel && traveled++ > maxtravel)
2177 break;
2178
2179 linep = ml_get(pos.lnum);
2180 pos.col = 0;
2181 do_quotes = -1;
2182 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002183#ifdef FEAT_LISP
2184 if (lisp) /* find comment pos in new line */
2185 comment_col = check_linecomment(linep);
2186#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 }
2188 else
2189 {
2190#ifdef FEAT_MBYTE
2191 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002192 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 else
2194#endif
2195 ++pos.col;
2196 }
2197 }
2198
2199 /*
2200 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2201 */
2202 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2203 (linep[0] == '{' || linep[0] == '}'))
2204 {
2205 if (linep[0] == findc && count == 0) /* match! */
2206 return &pos;
2207 break; /* out of scope */
2208 }
2209
2210 if (comment_dir)
2211 {
2212 /* Note: comments do not nest, and we ignore quotes in them */
2213 /* TODO: ignore comment brackets inside strings */
2214 if (comment_dir == FORWARD)
2215 {
2216 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2217 {
2218 pos.col++;
2219 return &pos;
2220 }
2221 }
2222 else /* Searching backwards */
2223 {
2224 /*
2225 * A comment may contain / * or / /, it may also start or end
2226 * with / * /. Ignore a / * after / /.
2227 */
2228 if (pos.col == 0)
2229 continue;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02002230 else if (raw_string)
2231 {
2232 if (linep[pos.col - 1] == 'R'
2233 && linep[pos.col] == '"'
2234 && vim_strchr(linep + pos.col + 1, '(') != NULL)
2235 {
2236 /* Possible start of raw string. Now that we have the
2237 * delimiter we can check if it ends before where we
2238 * started searching, or before the previously found
2239 * raw string start. */
2240 if (!find_rawstring_end(linep, &pos,
2241 count > 0 ? &match_pos : &curwin->w_cursor))
2242 {
2243 count++;
2244 match_pos = pos;
2245 match_pos.col--;
2246 }
2247 linep = ml_get(pos.lnum); /* may have been released */
2248 }
2249 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 else if ( linep[pos.col - 1] == '/'
2251 && linep[pos.col] == '*'
2252 && (int)pos.col < comment_col)
2253 {
2254 count++;
2255 match_pos = pos;
2256 match_pos.col--;
2257 }
2258 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2259 {
2260 if (count > 0)
2261 pos = match_pos;
2262 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2263 && (int)pos.col <= comment_col)
2264 pos.col -= 2;
2265 else if (ignore_cend)
2266 continue;
2267 else
2268 return NULL;
2269 return &pos;
2270 }
2271 }
2272 continue;
2273 }
2274
2275 /*
2276 * If smart matching ('cpoptions' does not contain '%'), braces inside
2277 * of quotes are ignored, but only if there is an even number of
2278 * quotes in the line.
2279 */
2280 if (cpo_match)
2281 do_quotes = 0;
2282 else if (do_quotes == -1)
2283 {
2284 /*
2285 * Count the number of quotes in the line, skipping \" and '"'.
2286 * Watch out for "\\".
2287 */
2288 at_start = do_quotes;
2289 for (ptr = linep; *ptr; ++ptr)
2290 {
2291 if (ptr == linep + pos.col + backwards)
2292 at_start = (do_quotes & 1);
2293 if (*ptr == '"'
2294 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2295 ++do_quotes;
2296 if (*ptr == '\\' && ptr[1] != NUL)
2297 ++ptr;
2298 }
2299 do_quotes &= 1; /* result is 1 with even number of quotes */
2300
2301 /*
2302 * If we find an uneven count, check current line and previous
2303 * one for a '\' at the end.
2304 */
2305 if (!do_quotes)
2306 {
2307 inquote = FALSE;
2308 if (ptr[-1] == '\\')
2309 {
2310 do_quotes = 1;
2311 if (start_in_quotes == MAYBE)
2312 {
2313 /* Do we need to use at_start here? */
2314 inquote = TRUE;
2315 start_in_quotes = TRUE;
2316 }
2317 else if (backwards)
2318 inquote = TRUE;
2319 }
2320 if (pos.lnum > 1)
2321 {
2322 ptr = ml_get(pos.lnum - 1);
2323 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2324 {
2325 do_quotes = 1;
2326 if (start_in_quotes == MAYBE)
2327 {
2328 inquote = at_start;
2329 if (inquote)
2330 start_in_quotes = TRUE;
2331 }
2332 else if (!backwards)
2333 inquote = TRUE;
2334 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002335
2336 /* ml_get() only keeps one line, need to get linep again */
2337 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 }
2339 }
2340 }
2341 if (start_in_quotes == MAYBE)
2342 start_in_quotes = FALSE;
2343
2344 /*
2345 * If 'smartmatch' is set:
2346 * Things inside quotes are ignored by setting 'inquote'. If we
2347 * find a quote without a preceding '\' invert 'inquote'. At the
2348 * end of a line not ending in '\' we reset 'inquote'.
2349 *
2350 * In lines with an uneven number of quotes (without preceding '\')
2351 * we do not know which part to ignore. Therefore we only set
2352 * inquote if the number of quotes in a line is even, unless this
2353 * line or the previous one ends in a '\'. Complicated, isn't it?
2354 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002355 c = PTR2CHAR(linep + pos.col);
2356 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 {
2358 case NUL:
2359 /* at end of line without trailing backslash, reset inquote */
2360 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2361 {
2362 inquote = FALSE;
2363 start_in_quotes = FALSE;
2364 }
2365 break;
2366
2367 case '"':
2368 /* a quote that is preceded with an odd number of backslashes is
2369 * ignored */
2370 if (do_quotes)
2371 {
2372 int col;
2373
2374 for (col = pos.col - 1; col >= 0; --col)
2375 if (linep[col] != '\\')
2376 break;
2377 if ((((int)pos.col - 1 - col) & 1) == 0)
2378 {
2379 inquote = !inquote;
2380 start_in_quotes = FALSE;
2381 }
2382 }
2383 break;
2384
2385 /*
2386 * If smart matching ('cpoptions' does not contain '%'):
2387 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2388 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2389 * skipped, there is never a brace in them.
2390 * Ignore this when finding matches for `'.
2391 */
2392 case '\'':
2393 if (!cpo_match && initc != '\'' && findc != '\'')
2394 {
2395 if (backwards)
2396 {
2397 if (pos.col > 1)
2398 {
2399 if (linep[pos.col - 2] == '\'')
2400 {
2401 pos.col -= 2;
2402 break;
2403 }
2404 else if (linep[pos.col - 2] == '\\' &&
2405 pos.col > 2 && linep[pos.col - 3] == '\'')
2406 {
2407 pos.col -= 3;
2408 break;
2409 }
2410 }
2411 }
2412 else if (linep[pos.col + 1]) /* forward search */
2413 {
2414 if (linep[pos.col + 1] == '\\' &&
2415 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2416 {
2417 pos.col += 3;
2418 break;
2419 }
2420 else if (linep[pos.col + 2] == '\'')
2421 {
2422 pos.col += 2;
2423 break;
2424 }
2425 }
2426 }
2427 /* FALLTHROUGH */
2428
2429 default:
2430#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002431 /*
2432 * For Lisp skip over backslashed (), {} and [].
2433 * (actually, we skip #\( et al)
2434 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 if (curbuf->b_p_lisp
2436 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002437 && pos.col > 1
2438 && check_prevcol(linep, pos.col, '\\', NULL)
2439 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 break;
2441#endif
2442
2443 /* Check for match outside of quotes, and inside of
2444 * quotes when the start is also inside of quotes. */
2445 if ((!inquote || start_in_quotes == TRUE)
2446 && (c == initc || c == findc))
2447 {
2448 int col, bslcnt = 0;
2449
2450 if (!cpo_bsl)
2451 {
2452 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2453 bslcnt++;
2454 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00002455 /* Only accept a match when 'M' is in 'cpo' or when escaping
2456 * is what we expect. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2458 {
2459 if (c == initc)
2460 count++;
2461 else
2462 {
2463 if (count == 0)
2464 return &pos;
2465 count--;
2466 }
2467 }
2468 }
2469 }
2470 }
2471
2472 if (comment_dir == BACKWARD && count > 0)
2473 {
2474 pos = match_pos;
2475 return &pos;
2476 }
2477 return (pos_T *)NULL; /* never found it */
2478}
2479
2480/*
2481 * Check if line[] contains a / / comment.
2482 * Return MAXCOL if not, otherwise return the column.
2483 * TODO: skip strings.
2484 */
2485 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002486check_linecomment(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487{
2488 char_u *p;
2489
2490 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002491#ifdef FEAT_LISP
2492 /* skip Lispish one-line comments */
2493 if (curbuf->b_p_lisp)
2494 {
2495 if (vim_strchr(p, ';') != NULL) /* there may be comments */
2496 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002497 int in_str = FALSE; /* inside of string */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002498
2499 p = line; /* scan from start */
Bram Moolenaar520470a2005-06-16 21:59:56 +00002500 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002501 {
2502 if (*p == '"')
2503 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002504 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002505 {
2506 if (*(p - 1) != '\\') /* skip escaped quote */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002507 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002508 }
2509 else if (p == line || ((p - line) >= 2
2510 /* skip #\" form */
2511 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002512 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002513 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002514 else if (!in_str && ((p - line) < 2
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002515 || (*(p - 1) != '\\' && *(p - 2) != '#')))
2516 break; /* found! */
2517 ++p;
2518 }
2519 }
2520 else
2521 p = NULL;
2522 }
2523 else
2524#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525 while ((p = vim_strchr(p, '/')) != NULL)
2526 {
Bram Moolenaar78d4aba2008-01-01 14:43:35 +00002527 /* accept a double /, unless it's preceded with * and followed by *,
2528 * because * / / * is an end and start of a C comment */
2529 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 break;
2531 ++p;
2532 }
2533
2534 if (p == NULL)
2535 return MAXCOL;
2536 return (int)(p - line);
2537}
2538
2539/*
2540 * Move cursor briefly to character matching the one under the cursor.
2541 * Used for Insert mode and "r" command.
2542 * Show the match only if it is visible on the screen.
2543 * If there isn't a match, then beep.
2544 */
2545 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002546showmatch(
2547 int c) /* char to show match for */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548{
2549 pos_T *lpos, save_cursor;
2550 pos_T mpos;
2551 colnr_T vcol;
2552 long save_so;
2553 long save_siso;
2554#ifdef CURSOR_SHAPE
2555 int save_state;
2556#endif
2557 colnr_T save_dollar_vcol;
2558 char_u *p;
2559
2560 /*
2561 * Only show match for chars in the 'matchpairs' option.
2562 */
2563 /* 'matchpairs' is "x:y,x:y" */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002564 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 {
2566#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002567 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002568 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002569#endif
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002570 p += MB_PTR2LEN(p) + 1;
2571 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572#ifdef FEAT_RIGHTLEFT
2573 && !(curwin->w_p_rl ^ p_ri)
2574#endif
2575 )
2576 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002577 p += MB_PTR2LEN(p);
2578 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 return;
2580 }
2581
2582 if ((lpos = findmatch(NULL, NUL)) == NULL) /* no match, so beep */
Bram Moolenaar165bc692015-07-21 17:53:25 +02002583 vim_beep(BO_MATCH);
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002584 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 {
2586 if (!curwin->w_p_wrap)
2587 getvcol(curwin, lpos, NULL, &vcol, NULL);
2588 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
2589 && vcol < curwin->w_leftcol + W_WIDTH(curwin)))
2590 {
2591 mpos = *lpos; /* save the pos, update_screen() may change it */
2592 save_cursor = curwin->w_cursor;
2593 save_so = p_so;
2594 save_siso = p_siso;
2595 /* Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2596 * stop displaying the "$". */
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002597 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2598 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599 ++curwin->w_virtcol; /* do display ')' just before "$" */
2600 update_screen(VALID); /* show the new char first */
2601
2602 save_dollar_vcol = dollar_vcol;
2603#ifdef CURSOR_SHAPE
2604 save_state = State;
2605 State = SHOWMATCH;
2606 ui_cursor_shape(); /* may show different cursor shape */
2607#endif
2608 curwin->w_cursor = mpos; /* move to matching char */
2609 p_so = 0; /* don't use 'scrolloff' here */
2610 p_siso = 0; /* don't use 'sidescrolloff' here */
2611 showruler(FALSE);
2612 setcursor();
2613 cursor_on(); /* make sure that the cursor is shown */
2614 out_flush();
2615#ifdef FEAT_GUI
2616 if (gui.in_use)
2617 {
2618 gui_update_cursor(TRUE, FALSE);
2619 gui_mch_flush();
2620 }
2621#endif
2622 /* Restore dollar_vcol(), because setcursor() may call curs_rows()
2623 * which resets it if the matching position is in a previous line
2624 * and has a higher column number. */
2625 dollar_vcol = save_dollar_vcol;
2626
2627 /*
2628 * brief pause, unless 'm' is present in 'cpo' and a character is
2629 * available.
2630 */
2631 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
2632 ui_delay(p_mat * 100L, TRUE);
2633 else if (!char_avail())
2634 ui_delay(p_mat * 100L, FALSE);
2635 curwin->w_cursor = save_cursor; /* restore cursor position */
2636 p_so = save_so;
2637 p_siso = save_siso;
2638#ifdef CURSOR_SHAPE
2639 State = save_state;
2640 ui_cursor_shape(); /* may show different cursor shape */
2641#endif
2642 }
2643 }
2644}
2645
2646/*
2647 * findsent(dir, count) - Find the start of the next sentence in direction
Bram Moolenaarebefac62005-12-28 22:39:57 +00002648 * "dir" Sentences are supposed to end in ".", "!" or "?" followed by white
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649 * space or a line break. Also stop at an empty line.
2650 * Return OK if the next sentence was found.
2651 */
2652 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002653findsent(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654{
2655 pos_T pos, tpos;
2656 int c;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002657 int (*func)(pos_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 int startlnum;
2659 int noskip = FALSE; /* do not skip blanks */
2660 int cpo_J;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002661 int found_dot;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662
2663 pos = curwin->w_cursor;
2664 if (dir == FORWARD)
2665 func = incl;
2666 else
2667 func = decl;
2668
2669 while (count--)
2670 {
2671 /*
2672 * if on an empty line, skip upto a non-empty line
2673 */
2674 if (gchar_pos(&pos) == NUL)
2675 {
2676 do
2677 if ((*func)(&pos) == -1)
2678 break;
2679 while (gchar_pos(&pos) == NUL);
2680 if (dir == FORWARD)
2681 goto found;
2682 }
2683 /*
2684 * if on the start of a paragraph or a section and searching forward,
2685 * go to the next line
2686 */
2687 else if (dir == FORWARD && pos.col == 0 &&
2688 startPS(pos.lnum, NUL, FALSE))
2689 {
2690 if (pos.lnum == curbuf->b_ml.ml_line_count)
2691 return FAIL;
2692 ++pos.lnum;
2693 goto found;
2694 }
2695 else if (dir == BACKWARD)
2696 decl(&pos);
2697
2698 /* go back to the previous non-blank char */
Bram Moolenaardef9e822004-12-31 20:58:58 +00002699 found_dot = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700 while ((c = gchar_pos(&pos)) == ' ' || c == '\t' ||
2701 (dir == BACKWARD && vim_strchr((char_u *)".!?)]\"'", c) != NULL))
2702 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00002703 if (vim_strchr((char_u *)".!?", c) != NULL)
2704 {
2705 /* Only skip over a '.', '!' and '?' once. */
2706 if (found_dot)
2707 break;
2708 found_dot = TRUE;
2709 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 if (decl(&pos) == -1)
2711 break;
2712 /* when going forward: Stop in front of empty line */
2713 if (lineempty(pos.lnum) && dir == FORWARD)
2714 {
2715 incl(&pos);
2716 goto found;
2717 }
2718 }
2719
2720 /* remember the line where the search started */
2721 startlnum = pos.lnum;
2722 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL;
2723
2724 for (;;) /* find end of sentence */
2725 {
2726 c = gchar_pos(&pos);
2727 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE)))
2728 {
2729 if (dir == BACKWARD && pos.lnum != startlnum)
2730 ++pos.lnum;
2731 break;
2732 }
2733 if (c == '.' || c == '!' || c == '?')
2734 {
2735 tpos = pos;
2736 do
2737 if ((c = inc(&tpos)) == -1)
2738 break;
2739 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos))
2740 != NULL);
2741 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL
2742 || (cpo_J && (c == ' ' && inc(&tpos) >= 0
2743 && gchar_pos(&tpos) == ' ')))
2744 {
2745 pos = tpos;
2746 if (gchar_pos(&pos) == NUL) /* skip NUL at EOL */
2747 inc(&pos);
2748 break;
2749 }
2750 }
2751 if ((*func)(&pos) == -1)
2752 {
2753 if (count)
2754 return FAIL;
2755 noskip = TRUE;
2756 break;
2757 }
2758 }
2759found:
2760 /* skip white space */
2761 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t'))
2762 if (incl(&pos) == -1)
2763 break;
2764 }
2765
2766 setpcmark();
2767 curwin->w_cursor = pos;
2768 return OK;
2769}
2770
2771/*
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002772 * Find the next paragraph or section in direction 'dir'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 * Paragraphs are currently supposed to be separated by empty lines.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002774 * If 'what' is NUL we go to the next paragraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 * If 'what' is '{' or '}' we go to the next section.
2776 * If 'both' is TRUE also stop at '}'.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002777 * Return TRUE if the next paragraph or section was found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 */
2779 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002780findpar(
2781 int *pincl, /* Return: TRUE if last char is to be included */
2782 int dir,
2783 long count,
2784 int what,
2785 int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786{
2787 linenr_T curr;
2788 int did_skip; /* TRUE after separating lines have been skipped */
2789 int first; /* TRUE on first line */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002790 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791#ifdef FEAT_FOLDING
2792 linenr_T fold_first; /* first line of a closed fold */
2793 linenr_T fold_last; /* last line of a closed fold */
2794 int fold_skipped; /* TRUE if a closed fold was skipped this
2795 iteration */
2796#endif
2797
2798 curr = curwin->w_cursor.lnum;
2799
2800 while (count--)
2801 {
2802 did_skip = FALSE;
2803 for (first = TRUE; ; first = FALSE)
2804 {
2805 if (*ml_get(curr) != NUL)
2806 did_skip = TRUE;
2807
2808#ifdef FEAT_FOLDING
2809 /* skip folded lines */
2810 fold_skipped = FALSE;
2811 if (first && hasFolding(curr, &fold_first, &fold_last))
2812 {
2813 curr = ((dir > 0) ? fold_last : fold_first) + dir;
2814 fold_skipped = TRUE;
2815 }
2816#endif
2817
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002818 /* POSIX has it's own ideas of what a paragraph boundary is and it
2819 * doesn't match historical Vi: It also stops at a "{" in the
2820 * first column and at an empty line. */
2821 if (!first && did_skip && (startPS(curr, what, both)
2822 || (posix && what == NUL && *ml_get(curr) == '{')))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 break;
2824
2825#ifdef FEAT_FOLDING
2826 if (fold_skipped)
2827 curr -= dir;
2828#endif
2829 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count)
2830 {
2831 if (count)
2832 return FALSE;
2833 curr -= dir;
2834 break;
2835 }
2836 }
2837 }
2838 setpcmark();
2839 if (both && *ml_get(curr) == '}') /* include line with '}' */
2840 ++curr;
2841 curwin->w_cursor.lnum = curr;
2842 if (curr == curbuf->b_ml.ml_line_count && what != '}')
2843 {
2844 if ((curwin->w_cursor.col = (colnr_T)STRLEN(ml_get(curr))) != 0)
2845 {
2846 --curwin->w_cursor.col;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00002847 *pincl = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848 }
2849 }
2850 else
2851 curwin->w_cursor.col = 0;
2852 return TRUE;
2853}
2854
2855/*
2856 * check if the string 's' is a nroff macro that is in option 'opt'
2857 */
2858 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002859inmacro(char_u *opt, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860{
2861 char_u *macro;
2862
2863 for (macro = opt; macro[0]; ++macro)
2864 {
2865 /* Accept two characters in the option being equal to two characters
2866 * in the line. A space in the option matches with a space in the
2867 * line or the line having ended. */
2868 if ( (macro[0] == s[0]
2869 || (macro[0] == ' '
2870 && (s[0] == NUL || s[0] == ' ')))
2871 && (macro[1] == s[1]
2872 || ((macro[1] == NUL || macro[1] == ' ')
2873 && (s[0] == NUL || s[1] == NUL || s[1] == ' '))))
2874 break;
2875 ++macro;
2876 if (macro[0] == NUL)
2877 break;
2878 }
2879 return (macro[0] != NUL);
2880}
2881
2882/*
2883 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph.
2884 * If 'para' is '{' or '}' only check for sections.
2885 * If 'both' is TRUE also stop at '}'
2886 */
2887 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002888startPS(linenr_T lnum, int para, int both)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889{
2890 char_u *s;
2891
2892 s = ml_get(lnum);
2893 if (*s == para || *s == '\f' || (both && *s == '}'))
2894 return TRUE;
2895 if (*s == '.' && (inmacro(p_sections, s + 1) ||
2896 (!para && inmacro(p_para, s + 1))))
2897 return TRUE;
2898 return FALSE;
2899}
2900
2901/*
2902 * The following routines do the word searches performed by the 'w', 'W',
2903 * 'b', 'B', 'e', and 'E' commands.
2904 */
2905
2906/*
2907 * To perform these searches, characters are placed into one of three
2908 * classes, and transitions between classes determine word boundaries.
2909 *
2910 * The classes are:
2911 *
2912 * 0 - white space
2913 * 1 - punctuation
2914 * 2 or higher - keyword characters (letters, digits and underscore)
2915 */
2916
2917static int cls_bigword; /* TRUE for "W", "B" or "E" */
2918
2919/*
2920 * cls() - returns the class of character at curwin->w_cursor
2921 *
2922 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars
2923 * from class 2 and higher are reported as class 1 since only white space
2924 * boundaries are of interest.
2925 */
2926 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002927cls(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928{
2929 int c;
2930
2931 c = gchar_cursor();
2932#ifdef FEAT_FKMAP /* when 'akm' (Farsi mode), take care of Farsi blank */
2933 if (p_altkeymap && c == F_BLANK)
2934 return 0;
2935#endif
2936 if (c == ' ' || c == '\t' || c == NUL)
2937 return 0;
2938#ifdef FEAT_MBYTE
2939 if (enc_dbcs != 0 && c > 0xFF)
2940 {
2941 /* If cls_bigword, report multi-byte chars as class 1. */
2942 if (enc_dbcs == DBCS_KOR && cls_bigword)
2943 return 1;
2944
2945 /* process code leading/trailing bytes */
2946 return dbcs_class(((unsigned)c >> 8), (c & 0xFF));
2947 }
2948 if (enc_utf8)
2949 {
2950 c = utf_class(c);
2951 if (c != 0 && cls_bigword)
2952 return 1;
2953 return c;
2954 }
2955#endif
2956
2957 /* If cls_bigword is TRUE, report all non-blanks as class 1. */
2958 if (cls_bigword)
2959 return 1;
2960
2961 if (vim_iswordc(c))
2962 return 2;
2963 return 1;
2964}
2965
2966
2967/*
2968 * fwd_word(count, type, eol) - move forward one word
2969 *
2970 * Returns FAIL if the cursor was already at the end of the file.
2971 * If eol is TRUE, last word stops at end of line (for operators).
2972 */
2973 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002974fwd_word(
2975 long count,
2976 int bigword, /* "W", "E" or "B" */
2977 int eol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978{
2979 int sclass; /* starting class */
2980 int i;
2981 int last_line;
2982
2983#ifdef FEAT_VIRTUALEDIT
2984 curwin->w_cursor.coladd = 0;
2985#endif
2986 cls_bigword = bigword;
2987 while (--count >= 0)
2988 {
2989#ifdef FEAT_FOLDING
2990 /* When inside a range of folded lines, move to the last char of the
2991 * last line. */
2992 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
2993 coladvance((colnr_T)MAXCOL);
2994#endif
2995 sclass = cls();
2996
2997 /*
2998 * We always move at least one character, unless on the last
2999 * character in the buffer.
3000 */
3001 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count);
3002 i = inc_cursor();
3003 if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */
3004 return FAIL;
Bram Moolenaar9a149792007-07-10 10:38:02 +00003005 if (i >= 1 && eol && count == 0) /* started at last char in line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006 return OK;
3007
3008 /*
3009 * Go one char past end of current word (if any)
3010 */
3011 if (sclass != 0)
3012 while (cls() == sclass)
3013 {
3014 i = inc_cursor();
3015 if (i == -1 || (i >= 1 && eol && count == 0))
3016 return OK;
3017 }
3018
3019 /*
3020 * go to next non-white
3021 */
3022 while (cls() == 0)
3023 {
3024 /*
3025 * We'll stop if we land on a blank line
3026 */
3027 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL)
3028 break;
3029
3030 i = inc_cursor();
3031 if (i == -1 || (i >= 1 && eol && count == 0))
3032 return OK;
3033 }
3034 }
3035 return OK;
3036}
3037
3038/*
3039 * bck_word() - move backward 'count' words
3040 *
3041 * If stop is TRUE and we are already on the start of a word, move one less.
3042 *
3043 * Returns FAIL if top of the file was reached.
3044 */
3045 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003046bck_word(long count, int bigword, int stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047{
3048 int sclass; /* starting class */
3049
3050#ifdef FEAT_VIRTUALEDIT
3051 curwin->w_cursor.coladd = 0;
3052#endif
3053 cls_bigword = bigword;
3054 while (--count >= 0)
3055 {
3056#ifdef FEAT_FOLDING
3057 /* When inside a range of folded lines, move to the first char of the
3058 * first line. */
3059 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL))
3060 curwin->w_cursor.col = 0;
3061#endif
3062 sclass = cls();
3063 if (dec_cursor() == -1) /* started at start of file */
3064 return FAIL;
3065
3066 if (!stop || sclass == cls() || sclass == 0)
3067 {
3068 /*
3069 * Skip white space before the word.
3070 * Stop on an empty line.
3071 */
3072 while (cls() == 0)
3073 {
3074 if (curwin->w_cursor.col == 0
3075 && lineempty(curwin->w_cursor.lnum))
3076 goto finished;
3077 if (dec_cursor() == -1) /* hit start of file, stop here */
3078 return OK;
3079 }
3080
3081 /*
3082 * Move backward to start of this word.
3083 */
3084 if (skip_chars(cls(), BACKWARD))
3085 return OK;
3086 }
3087
3088 inc_cursor(); /* overshot - forward one */
3089finished:
3090 stop = FALSE;
3091 }
3092 return OK;
3093}
3094
3095/*
3096 * end_word() - move to the end of the word
3097 *
3098 * There is an apparent bug in the 'e' motion of the real vi. At least on the
3099 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e'
3100 * motion crosses blank lines. When the real vi crosses a blank line in an
3101 * 'e' motion, the cursor is placed on the FIRST character of the next
3102 * non-blank line. The 'E' command, however, works correctly. Since this
3103 * appears to be a bug, I have not duplicated it here.
3104 *
3105 * Returns FAIL if end of the file was reached.
3106 *
3107 * If stop is TRUE and we are already on the end of a word, move one less.
3108 * If empty is TRUE stop on an empty line.
3109 */
3110 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003111end_word(
3112 long count,
3113 int bigword,
3114 int stop,
3115 int empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116{
3117 int sclass; /* starting class */
3118
3119#ifdef FEAT_VIRTUALEDIT
3120 curwin->w_cursor.coladd = 0;
3121#endif
3122 cls_bigword = bigword;
3123 while (--count >= 0)
3124 {
3125#ifdef FEAT_FOLDING
3126 /* When inside a range of folded lines, move to the last char of the
3127 * last line. */
3128 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3129 coladvance((colnr_T)MAXCOL);
3130#endif
3131 sclass = cls();
3132 if (inc_cursor() == -1)
3133 return FAIL;
3134
3135 /*
3136 * If we're in the middle of a word, we just have to move to the end
3137 * of it.
3138 */
3139 if (cls() == sclass && sclass != 0)
3140 {
3141 /*
3142 * Move forward to end of the current word
3143 */
3144 if (skip_chars(sclass, FORWARD))
3145 return FAIL;
3146 }
3147 else if (!stop || sclass == 0)
3148 {
3149 /*
3150 * We were at the end of a word. Go to the end of the next word.
3151 * First skip white space, if 'empty' is TRUE, stop at empty line.
3152 */
3153 while (cls() == 0)
3154 {
3155 if (empty && curwin->w_cursor.col == 0
3156 && lineempty(curwin->w_cursor.lnum))
3157 goto finished;
3158 if (inc_cursor() == -1) /* hit end of file, stop here */
3159 return FAIL;
3160 }
3161
3162 /*
3163 * Move forward to the end of this word.
3164 */
3165 if (skip_chars(cls(), FORWARD))
3166 return FAIL;
3167 }
3168 dec_cursor(); /* overshot - one char backward */
3169finished:
3170 stop = FALSE; /* we move only one word less */
3171 }
3172 return OK;
3173}
3174
3175/*
3176 * Move back to the end of the word.
3177 *
3178 * Returns FAIL if start of the file was reached.
3179 */
3180 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003181bckend_word(
3182 long count,
3183 int bigword, /* TRUE for "B" */
3184 int eol) /* TRUE: stop at end of line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185{
3186 int sclass; /* starting class */
3187 int i;
3188
3189#ifdef FEAT_VIRTUALEDIT
3190 curwin->w_cursor.coladd = 0;
3191#endif
3192 cls_bigword = bigword;
3193 while (--count >= 0)
3194 {
3195 sclass = cls();
3196 if ((i = dec_cursor()) == -1)
3197 return FAIL;
3198 if (eol && i == 1)
3199 return OK;
3200
3201 /*
3202 * Move backward to before the start of this word.
3203 */
3204 if (sclass != 0)
3205 {
3206 while (cls() == sclass)
3207 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3208 return OK;
3209 }
3210
3211 /*
3212 * Move backward to end of the previous word
3213 */
3214 while (cls() == 0)
3215 {
3216 if (curwin->w_cursor.col == 0 && lineempty(curwin->w_cursor.lnum))
3217 break;
3218 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3219 return OK;
3220 }
3221 }
3222 return OK;
3223}
3224
3225/*
3226 * Skip a row of characters of the same class.
3227 * Return TRUE when end-of-file reached, FALSE otherwise.
3228 */
3229 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003230skip_chars(int cclass, int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231{
3232 while (cls() == cclass)
3233 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1)
3234 return TRUE;
3235 return FALSE;
3236}
3237
3238#ifdef FEAT_TEXTOBJ
3239/*
3240 * Go back to the start of the word or the start of white space
3241 */
3242 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003243back_in_line(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244{
3245 int sclass; /* starting class */
3246
3247 sclass = cls();
3248 for (;;)
3249 {
3250 if (curwin->w_cursor.col == 0) /* stop at start of line */
3251 break;
3252 dec_cursor();
3253 if (cls() != sclass) /* stop at start of word */
3254 {
3255 inc_cursor();
3256 break;
3257 }
3258 }
3259}
3260
3261 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003262find_first_blank(pos_T *posp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263{
3264 int c;
3265
3266 while (decl(posp) != -1)
3267 {
3268 c = gchar_pos(posp);
3269 if (!vim_iswhite(c))
3270 {
3271 incl(posp);
3272 break;
3273 }
3274 }
3275}
3276
3277/*
3278 * Skip count/2 sentences and count/2 separating white spaces.
3279 */
3280 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003281findsent_forward(
3282 long count,
3283 int at_start_sent) /* cursor is at start of sentence */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284{
3285 while (count--)
3286 {
3287 findsent(FORWARD, 1L);
3288 if (at_start_sent)
3289 find_first_blank(&curwin->w_cursor);
3290 if (count == 0 || at_start_sent)
3291 decl(&curwin->w_cursor);
3292 at_start_sent = !at_start_sent;
3293 }
3294}
3295
3296/*
3297 * Find word under cursor, cursor at end.
3298 * Used while an operator is pending, and in Visual mode.
3299 */
3300 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003301current_word(
3302 oparg_T *oap,
3303 long count,
3304 int include, /* TRUE: include word and white space */
3305 int bigword) /* FALSE == word, TRUE == WORD */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306{
3307 pos_T start_pos;
3308 pos_T pos;
3309 int inclusive = TRUE;
3310 int include_white = FALSE;
3311
3312 cls_bigword = bigword;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003313 clearpos(&start_pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 /* Correct cursor when 'selection' is exclusive */
3316 if (VIsual_active && *p_sel == 'e' && lt(VIsual, curwin->w_cursor))
3317 dec_cursor();
3318
3319 /*
3320 * When Visual mode is not active, or when the VIsual area is only one
3321 * character, select the word and/or white space under the cursor.
3322 */
3323 if (!VIsual_active || equalpos(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 {
3325 /*
3326 * Go to start of current word or white space.
3327 */
3328 back_in_line();
3329 start_pos = curwin->w_cursor;
3330
3331 /*
3332 * If the start is on white space, and white space should be included
3333 * (" word"), or start is not on white space, and white space should
3334 * not be included ("word"), find end of word.
3335 */
3336 if ((cls() == 0) == include)
3337 {
3338 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3339 return FAIL;
3340 }
3341 else
3342 {
3343 /*
3344 * If the start is not on white space, and white space should be
3345 * included ("word "), or start is on white space and white
3346 * space should not be included (" "), find start of word.
3347 * If we end up in the first column of the next line (single char
3348 * word) back up to end of the line.
3349 */
3350 fwd_word(1L, bigword, TRUE);
3351 if (curwin->w_cursor.col == 0)
3352 decl(&curwin->w_cursor);
3353 else
3354 oneleft();
3355
3356 if (include)
3357 include_white = TRUE;
3358 }
3359
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360 if (VIsual_active)
3361 {
3362 /* should do something when inclusive == FALSE ! */
3363 VIsual = start_pos;
3364 redraw_curbuf_later(INVERTED); /* update the inversion */
3365 }
3366 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367 {
3368 oap->start = start_pos;
3369 oap->motion_type = MCHAR;
3370 }
3371 --count;
3372 }
3373
3374 /*
3375 * When count is still > 0, extend with more objects.
3376 */
3377 while (count > 0)
3378 {
3379 inclusive = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 if (VIsual_active && lt(curwin->w_cursor, VIsual))
3381 {
3382 /*
3383 * In Visual mode, with cursor at start: move cursor back.
3384 */
3385 if (decl(&curwin->w_cursor) == -1)
3386 return FAIL;
3387 if (include != (cls() != 0))
3388 {
3389 if (bck_word(1L, bigword, TRUE) == FAIL)
3390 return FAIL;
3391 }
3392 else
3393 {
3394 if (bckend_word(1L, bigword, TRUE) == FAIL)
3395 return FAIL;
3396 (void)incl(&curwin->w_cursor);
3397 }
3398 }
3399 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 {
3401 /*
3402 * Move cursor forward one word and/or white area.
3403 */
3404 if (incl(&curwin->w_cursor) == -1)
3405 return FAIL;
3406 if (include != (cls() == 0))
3407 {
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003408 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 return FAIL;
3410 /*
3411 * If end is just past a new-line, we don't want to include
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003412 * the first character on the line.
3413 * Put cursor on last char of white.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 */
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003415 if (oneleft() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 inclusive = FALSE;
3417 }
3418 else
3419 {
3420 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3421 return FAIL;
3422 }
3423 }
3424 --count;
3425 }
3426
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003427 if (include_white && (cls() != 0
3428 || (curwin->w_cursor.col == 0 && !inclusive)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 {
3430 /*
3431 * If we don't include white space at the end, move the start
3432 * to include some white space there. This makes "daw" work
3433 * better on the last word in a sentence (and "2daw" on last-but-one
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003434 * word). Also when "2daw" deletes "word." at the end of the line
3435 * (cursor is at start of next line).
3436 * But don't delete white space at start of line (indent).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 */
3438 pos = curwin->w_cursor; /* save cursor position */
3439 curwin->w_cursor = start_pos;
3440 if (oneleft() == OK)
3441 {
3442 back_in_line();
3443 if (cls() == 0 && curwin->w_cursor.col > 0)
3444 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 if (VIsual_active)
3446 VIsual = curwin->w_cursor;
3447 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 oap->start = curwin->w_cursor;
3449 }
3450 }
3451 curwin->w_cursor = pos; /* put cursor back at end */
3452 }
3453
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 if (VIsual_active)
3455 {
3456 if (*p_sel == 'e' && inclusive && ltoreq(VIsual, curwin->w_cursor))
3457 inc_cursor();
3458 if (VIsual_mode == 'V')
3459 {
3460 VIsual_mode = 'v';
3461 redraw_cmdline = TRUE; /* show mode later */
3462 }
3463 }
3464 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 oap->inclusive = inclusive;
3466
3467 return OK;
3468}
3469
3470/*
3471 * Find sentence(s) under the cursor, cursor at end.
3472 * When Visual active, extend it by one or more sentences.
3473 */
3474 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003475current_sent(oparg_T *oap, long count, int include)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476{
3477 pos_T start_pos;
3478 pos_T pos;
3479 int start_blank;
3480 int c;
3481 int at_start_sent;
3482 long ncount;
3483
3484 start_pos = curwin->w_cursor;
3485 pos = start_pos;
3486 findsent(FORWARD, 1L); /* Find start of next sentence. */
3487
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003489 * When the Visual area is bigger than one character: Extend it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 */
3491 if (VIsual_active && !equalpos(start_pos, VIsual))
3492 {
3493extend:
3494 if (lt(start_pos, VIsual))
3495 {
3496 /*
3497 * Cursor at start of Visual area.
3498 * Find out where we are:
3499 * - in the white space before a sentence
3500 * - in a sentence or just after it
3501 * - at the start of a sentence
3502 */
3503 at_start_sent = TRUE;
3504 decl(&pos);
3505 while (lt(pos, curwin->w_cursor))
3506 {
3507 c = gchar_pos(&pos);
3508 if (!vim_iswhite(c))
3509 {
3510 at_start_sent = FALSE;
3511 break;
3512 }
3513 incl(&pos);
3514 }
3515 if (!at_start_sent)
3516 {
3517 findsent(BACKWARD, 1L);
3518 if (equalpos(curwin->w_cursor, start_pos))
3519 at_start_sent = TRUE; /* exactly at start of sentence */
3520 else
3521 /* inside a sentence, go to its end (start of next) */
3522 findsent(FORWARD, 1L);
3523 }
3524 if (include) /* "as" gets twice as much as "is" */
3525 count *= 2;
3526 while (count--)
3527 {
3528 if (at_start_sent)
3529 find_first_blank(&curwin->w_cursor);
3530 c = gchar_cursor();
3531 if (!at_start_sent || (!include && !vim_iswhite(c)))
3532 findsent(BACKWARD, 1L);
3533 at_start_sent = !at_start_sent;
3534 }
3535 }
3536 else
3537 {
3538 /*
3539 * Cursor at end of Visual area.
3540 * Find out where we are:
3541 * - just before a sentence
3542 * - just before or in the white space before a sentence
3543 * - in a sentence
3544 */
3545 incl(&pos);
3546 at_start_sent = TRUE;
3547 if (!equalpos(pos, curwin->w_cursor)) /* not just before a sentence */
3548 {
3549 at_start_sent = FALSE;
3550 while (lt(pos, curwin->w_cursor))
3551 {
3552 c = gchar_pos(&pos);
3553 if (!vim_iswhite(c))
3554 {
3555 at_start_sent = TRUE;
3556 break;
3557 }
3558 incl(&pos);
3559 }
3560 if (at_start_sent) /* in the sentence */
3561 findsent(BACKWARD, 1L);
3562 else /* in/before white before a sentence */
3563 curwin->w_cursor = start_pos;
3564 }
3565
3566 if (include) /* "as" gets twice as much as "is" */
3567 count *= 2;
3568 findsent_forward(count, at_start_sent);
3569 if (*p_sel == 'e')
3570 ++curwin->w_cursor.col;
3571 }
3572 return OK;
3573 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574
3575 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003576 * If the cursor started on a blank, check if it is just before the start
3577 * of the next sentence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 */
3579 while (c = gchar_pos(&pos), vim_iswhite(c)) /* vim_iswhite() is a macro */
3580 incl(&pos);
3581 if (equalpos(pos, curwin->w_cursor))
3582 {
3583 start_blank = TRUE;
3584 find_first_blank(&start_pos); /* go back to first blank */
3585 }
3586 else
3587 {
3588 start_blank = FALSE;
3589 findsent(BACKWARD, 1L);
3590 start_pos = curwin->w_cursor;
3591 }
3592 if (include)
3593 ncount = count * 2;
3594 else
3595 {
3596 ncount = count;
3597 if (start_blank)
3598 --ncount;
3599 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00003600 if (ncount > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 findsent_forward(ncount, TRUE);
3602 else
3603 decl(&curwin->w_cursor);
3604
3605 if (include)
3606 {
3607 /*
3608 * If the blank in front of the sentence is included, exclude the
3609 * blanks at the end of the sentence, go back to the first blank.
3610 * If there are no trailing blanks, try to include leading blanks.
3611 */
3612 if (start_blank)
3613 {
3614 find_first_blank(&curwin->w_cursor);
3615 c = gchar_pos(&curwin->w_cursor); /* vim_iswhite() is a macro */
3616 if (vim_iswhite(c))
3617 decl(&curwin->w_cursor);
3618 }
3619 else if (c = gchar_cursor(), !vim_iswhite(c))
3620 find_first_blank(&start_pos);
3621 }
3622
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623 if (VIsual_active)
3624 {
Bram Moolenaar641e2862012-07-25 15:06:34 +02003625 /* Avoid getting stuck with "is" on a single space before a sentence. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 if (equalpos(start_pos, curwin->w_cursor))
3627 goto extend;
3628 if (*p_sel == 'e')
3629 ++curwin->w_cursor.col;
3630 VIsual = start_pos;
3631 VIsual_mode = 'v';
3632 redraw_curbuf_later(INVERTED); /* update the inversion */
3633 }
3634 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 {
3636 /* include a newline after the sentence, if there is one */
3637 if (incl(&curwin->w_cursor) == -1)
3638 oap->inclusive = TRUE;
3639 else
3640 oap->inclusive = FALSE;
3641 oap->start = start_pos;
3642 oap->motion_type = MCHAR;
3643 }
3644 return OK;
3645}
3646
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003647/*
3648 * Find block under the cursor, cursor at end.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003649 * "what" and "other" are two matching parenthesis/brace/etc.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003650 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003652current_block(
3653 oparg_T *oap,
3654 long count,
3655 int include, /* TRUE == include white space */
3656 int what, /* '(', '{', etc. */
3657 int other) /* ')', '}', etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658{
3659 pos_T old_pos;
3660 pos_T *pos = NULL;
3661 pos_T start_pos;
3662 pos_T *end_pos;
3663 pos_T old_start, old_end;
3664 char_u *save_cpo;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003665 int sol = FALSE; /* '{' at start of line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666
3667 old_pos = curwin->w_cursor;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003668 old_end = curwin->w_cursor; /* remember where we started */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 old_start = old_end;
3670
3671 /*
3672 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive.
3673 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 if (!VIsual_active || equalpos(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 {
3676 setpcmark();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003677 if (what == '{') /* ignore indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 while (inindent(1))
3679 if (inc_cursor() != 0)
3680 break;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003681 if (gchar_cursor() == what)
3682 /* cursor on '(' or '{', move cursor just after it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 ++curwin->w_cursor.col;
3684 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 else if (lt(VIsual, curwin->w_cursor))
3686 {
3687 old_start = VIsual;
3688 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3689 }
3690 else
3691 old_end = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692
3693 /*
3694 * Search backwards for unclosed '(', '{', etc..
3695 * Put this position in start_pos.
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003696 * Ignore quotes here. Keep the "M" flag in 'cpo', as that is what the
3697 * user wants.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 */
3699 save_cpo = p_cpo;
Bram Moolenaar438b64a2015-03-13 15:03:00 +01003700 p_cpo = (char_u *)(vim_strchr(p_cpo, CPO_MATCHBSL) != NULL ? "%M" : "%");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 while (count-- > 0)
3702 {
3703 if ((pos = findmatch(NULL, what)) == NULL)
3704 break;
3705 curwin->w_cursor = *pos;
3706 start_pos = *pos; /* the findmatch for end_pos will overwrite *pos */
3707 }
3708 p_cpo = save_cpo;
3709
3710 /*
3711 * Search for matching ')', '}', etc.
3712 * Put this position in curwin->w_cursor.
3713 */
3714 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL)
3715 {
3716 curwin->w_cursor = old_pos;
3717 return FAIL;
3718 }
3719 curwin->w_cursor = *end_pos;
3720
3721 /*
3722 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE.
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003723 * If the ending '}', ')' or ']' is only preceded by indent, skip that
3724 * indent. But only if the resulting area is not smaller than what we
3725 * started with.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 */
3727 while (!include)
3728 {
3729 incl(&start_pos);
3730 sol = (curwin->w_cursor.col == 0);
3731 decl(&curwin->w_cursor);
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003732 while (inindent(1))
3733 {
3734 sol = TRUE;
3735 if (decl(&curwin->w_cursor) != 0)
3736 break;
3737 }
3738
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 /*
3740 * In Visual mode, when the resulting area is not bigger than what we
3741 * started with, extend it to the next block, and then exclude again.
3742 */
3743 if (!lt(start_pos, old_start) && !lt(old_end, curwin->w_cursor)
3744 && VIsual_active)
3745 {
3746 curwin->w_cursor = old_start;
3747 decl(&curwin->w_cursor);
3748 if ((pos = findmatch(NULL, what)) == NULL)
3749 {
3750 curwin->w_cursor = old_pos;
3751 return FAIL;
3752 }
3753 start_pos = *pos;
3754 curwin->w_cursor = *pos;
3755 if ((end_pos = findmatch(NULL, other)) == NULL)
3756 {
3757 curwin->w_cursor = old_pos;
3758 return FAIL;
3759 }
3760 curwin->w_cursor = *end_pos;
3761 }
3762 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 break;
3764 }
3765
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 if (VIsual_active)
3767 {
3768 if (*p_sel == 'e')
Bram Moolenaar8667d662015-09-01 18:27:49 +02003769 inc(&curwin->w_cursor);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003770 if (sol && gchar_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 inc(&curwin->w_cursor); /* include the line break */
3772 VIsual = start_pos;
3773 VIsual_mode = 'v';
3774 redraw_curbuf_later(INVERTED); /* update the inversion */
3775 showmode();
3776 }
3777 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 {
3779 oap->start = start_pos;
3780 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003781 oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 if (sol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 incl(&curwin->w_cursor);
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003784 else if (ltoreq(start_pos, curwin->w_cursor))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003785 /* Include the character under the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 oap->inclusive = TRUE;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003787 else
3788 /* End is before the start (no text in between <>, [], etc.): don't
3789 * operate on any text. */
3790 curwin->w_cursor = start_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791 }
3792
3793 return OK;
3794}
3795
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003796static int in_html_tag(int);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003797
3798/*
3799 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>".
3800 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>".
3801 */
3802 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003803in_html_tag(
3804 int end_tag)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003805{
3806 char_u *line = ml_get_curline();
3807 char_u *p;
3808 int c;
3809 int lc = NUL;
3810 pos_T pos;
3811
3812#ifdef FEAT_MBYTE
3813 if (enc_dbcs)
3814 {
3815 char_u *lp = NULL;
3816
3817 /* We search forward until the cursor, because searching backwards is
3818 * very slow for DBCS encodings. */
3819 for (p = line; p < line + curwin->w_cursor.col; mb_ptr_adv(p))
3820 if (*p == '>' || *p == '<')
3821 {
3822 lc = *p;
3823 lp = p;
3824 }
3825 if (*p != '<') /* check for '<' under cursor */
3826 {
3827 if (lc != '<')
3828 return FALSE;
3829 p = lp;
3830 }
3831 }
3832 else
3833#endif
3834 {
3835 for (p = line + curwin->w_cursor.col; p > line; )
3836 {
3837 if (*p == '<') /* find '<' under/before cursor */
3838 break;
3839 mb_ptr_back(line, p);
3840 if (*p == '>') /* find '>' before cursor */
3841 break;
3842 }
3843 if (*p != '<')
3844 return FALSE;
3845 }
3846
3847 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003848 pos.col = (colnr_T)(p - line);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003849
3850 mb_ptr_adv(p);
3851 if (end_tag)
3852 /* check that there is a '/' after the '<' */
3853 return *p == '/';
3854
3855 /* check that there is no '/' after the '<' */
3856 if (*p == '/')
3857 return FALSE;
3858
3859 /* check that the matching '>' is not preceded by '/' */
3860 for (;;)
3861 {
3862 if (inc(&pos) < 0)
3863 return FALSE;
3864 c = *ml_get_pos(&pos);
3865 if (c == '>')
3866 break;
3867 lc = c;
3868 }
3869 return lc != '/';
3870}
3871
3872/*
3873 * Find tag block under the cursor, cursor at end.
3874 */
3875 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003876current_tagblock(
3877 oparg_T *oap,
3878 long count_arg,
3879 int include) /* TRUE == include white space */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003880{
3881 long count = count_arg;
3882 long n;
3883 pos_T old_pos;
3884 pos_T start_pos;
3885 pos_T end_pos;
3886 pos_T old_start, old_end;
3887 char_u *spat, *epat;
3888 char_u *p;
3889 char_u *cp;
3890 int len;
3891 int r;
3892 int do_include = include;
3893 int save_p_ws = p_ws;
3894 int retval = FAIL;
Bram Moolenaarb6c27352015-03-05 19:57:49 +01003895 int is_inclusive = TRUE;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003896
3897 p_ws = FALSE;
3898
3899 old_pos = curwin->w_cursor;
3900 old_end = curwin->w_cursor; /* remember where we started */
3901 old_start = old_end;
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003902 if (!VIsual_active || *p_sel == 'e')
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003903 decl(&old_end); /* old_end is inclusive */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003904
3905 /*
Bram Moolenaar45360022005-07-21 21:08:21 +00003906 * If we start on "<aaa>" select that block.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003907 */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003908 if (!VIsual_active || equalpos(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003909 {
3910 setpcmark();
3911
3912 /* ignore indent */
3913 while (inindent(1))
3914 if (inc_cursor() != 0)
3915 break;
3916
3917 if (in_html_tag(FALSE))
3918 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003919 /* cursor on start tag, move to its '>' */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003920 while (*ml_get_cursor() != '>')
3921 if (inc_cursor() < 0)
3922 break;
3923 }
3924 else if (in_html_tag(TRUE))
3925 {
3926 /* cursor on end tag, move to just before it */
3927 while (*ml_get_cursor() != '<')
3928 if (dec_cursor() < 0)
3929 break;
3930 dec_cursor();
3931 old_end = curwin->w_cursor;
3932 }
3933 }
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003934 else if (lt(VIsual, curwin->w_cursor))
3935 {
3936 old_start = VIsual;
3937 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3938 }
3939 else
3940 old_end = VIsual;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003941
3942again:
3943 /*
3944 * Search backwards for unclosed "<aaa>".
3945 * Put this position in start_pos.
3946 */
3947 for (n = 0; n < count; ++n)
3948 {
Bram Moolenaar45360022005-07-21 21:08:21 +00003949 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)",
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003950 (char_u *)"",
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003951 (char_u *)"</[^>]*>", BACKWARD, (char_u *)"", 0,
Bram Moolenaar76929292008-01-06 19:07:36 +00003952 NULL, (linenr_T)0, 0L) <= 0)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003953 {
3954 curwin->w_cursor = old_pos;
3955 goto theend;
3956 }
3957 }
3958 start_pos = curwin->w_cursor;
3959
3960 /*
3961 * Search for matching "</aaa>". First isolate the "aaa".
3962 */
3963 inc_cursor();
3964 p = ml_get_cursor();
3965 for (cp = p; *cp != NUL && *cp != '>' && !vim_iswhite(*cp); mb_ptr_adv(cp))
3966 ;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003967 len = (int)(cp - p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003968 if (len == 0)
3969 {
3970 curwin->w_cursor = old_pos;
3971 goto theend;
3972 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01003973 spat = alloc(len + 31);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003974 epat = alloc(len + 9);
3975 if (spat == NULL || epat == NULL)
3976 {
3977 vim_free(spat);
3978 vim_free(epat);
3979 curwin->w_cursor = old_pos;
3980 goto theend;
3981 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01003982 sprintf((char *)spat, "<%.*s\\>\\%%(\\s\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003983 sprintf((char *)epat, "</%.*s>\\c", len, p);
3984
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003985 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, (char_u *)"",
Bram Moolenaar76929292008-01-06 19:07:36 +00003986 0, NULL, (linenr_T)0, 0L);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003987
3988 vim_free(spat);
3989 vim_free(epat);
3990
3991 if (r < 1 || lt(curwin->w_cursor, old_end))
3992 {
3993 /* Can't find other end or it's before the previous end. Could be a
3994 * HTML tag that doesn't have a matching end. Search backwards for
3995 * another starting tag. */
3996 count = 1;
3997 curwin->w_cursor = start_pos;
3998 goto again;
3999 }
4000
4001 if (do_include || r < 1)
4002 {
4003 /* Include up to the '>'. */
4004 while (*ml_get_cursor() != '>')
4005 if (inc_cursor() < 0)
4006 break;
4007 }
4008 else
4009 {
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004010 char_u *c = ml_get_cursor();
4011
4012 /* Exclude the '<' of the end tag.
4013 * If the closing tag is on new line, do not decrement cursor, but
4014 * make operation exclusive, so that the linefeed will be selected */
4015 if (*c == '<' && !VIsual_active && curwin->w_cursor.col == 0)
4016 /* do not decrement cursor */
4017 is_inclusive = FALSE;
4018 else if (*c == '<')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004019 dec_cursor();
4020 }
4021 end_pos = curwin->w_cursor;
4022
4023 if (!do_include)
4024 {
4025 /* Exclude the start tag. */
4026 curwin->w_cursor = start_pos;
4027 while (inc_cursor() >= 0)
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004028 if (*ml_get_cursor() == '>')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004029 {
4030 inc_cursor();
4031 start_pos = curwin->w_cursor;
4032 break;
4033 }
4034 curwin->w_cursor = end_pos;
4035
Bram Moolenaar45360022005-07-21 21:08:21 +00004036 /* If we now have the same text as before reset "do_include" and try
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004037 * again. */
Bram Moolenaar45360022005-07-21 21:08:21 +00004038 if (equalpos(start_pos, old_start) && equalpos(end_pos, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004039 {
4040 do_include = TRUE;
4041 curwin->w_cursor = old_start;
4042 count = count_arg;
4043 goto again;
4044 }
4045 }
4046
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004047 if (VIsual_active)
4048 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004049 /* If the end is before the start there is no text between tags, select
4050 * the char under the cursor. */
4051 if (lt(end_pos, start_pos))
4052 curwin->w_cursor = start_pos;
4053 else if (*p_sel == 'e')
Bram Moolenaar8340dd92014-12-13 20:11:33 +01004054 inc_cursor();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004055 VIsual = start_pos;
4056 VIsual_mode = 'v';
4057 redraw_curbuf_later(INVERTED); /* update the inversion */
4058 showmode();
4059 }
4060 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004061 {
4062 oap->start = start_pos;
4063 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00004064 if (lt(end_pos, start_pos))
4065 {
4066 /* End is before the start: there is no text between tags; operate
4067 * on an empty area. */
4068 curwin->w_cursor = start_pos;
4069 oap->inclusive = FALSE;
4070 }
4071 else
Bram Moolenaarb6c27352015-03-05 19:57:49 +01004072 oap->inclusive = is_inclusive;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00004073 }
4074 retval = OK;
4075
4076theend:
4077 p_ws = save_p_ws;
4078 return retval;
4079}
4080
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004082current_par(
4083 oparg_T *oap,
4084 long count,
4085 int include, /* TRUE == include white space */
4086 int type) /* 'p' for paragraph, 'S' for section */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087{
4088 linenr_T start_lnum;
4089 linenr_T end_lnum;
4090 int white_in_front;
4091 int dir;
4092 int start_is_white;
4093 int prev_start_is_white;
4094 int retval = OK;
4095 int do_white = FALSE;
4096 int t;
4097 int i;
4098
4099 if (type == 'S') /* not implemented yet */
4100 return FAIL;
4101
4102 start_lnum = curwin->w_cursor.lnum;
4103
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 /*
4105 * When visual area is more than one line: extend it.
4106 */
4107 if (VIsual_active && start_lnum != VIsual.lnum)
4108 {
4109extend:
4110 if (start_lnum < VIsual.lnum)
4111 dir = BACKWARD;
4112 else
4113 dir = FORWARD;
4114 for (i = count; --i >= 0; )
4115 {
4116 if (start_lnum ==
4117 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
4118 {
4119 retval = FAIL;
4120 break;
4121 }
4122
4123 prev_start_is_white = -1;
4124 for (t = 0; t < 2; ++t)
4125 {
4126 start_lnum += dir;
4127 start_is_white = linewhite(start_lnum);
4128 if (prev_start_is_white == start_is_white)
4129 {
4130 start_lnum -= dir;
4131 break;
4132 }
4133 for (;;)
4134 {
4135 if (start_lnum == (dir == BACKWARD
4136 ? 1 : curbuf->b_ml.ml_line_count))
4137 break;
4138 if (start_is_white != linewhite(start_lnum + dir)
4139 || (!start_is_white
4140 && startPS(start_lnum + (dir > 0
4141 ? 1 : 0), 0, 0)))
4142 break;
4143 start_lnum += dir;
4144 }
4145 if (!include)
4146 break;
4147 if (start_lnum == (dir == BACKWARD
4148 ? 1 : curbuf->b_ml.ml_line_count))
4149 break;
4150 prev_start_is_white = start_is_white;
4151 }
4152 }
4153 curwin->w_cursor.lnum = start_lnum;
4154 curwin->w_cursor.col = 0;
4155 return retval;
4156 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157
4158 /*
4159 * First move back to the start_lnum of the paragraph or white lines
4160 */
4161 white_in_front = linewhite(start_lnum);
4162 while (start_lnum > 1)
4163 {
4164 if (white_in_front) /* stop at first white line */
4165 {
4166 if (!linewhite(start_lnum - 1))
4167 break;
4168 }
4169 else /* stop at first non-white line of start of paragraph */
4170 {
4171 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
4172 break;
4173 }
4174 --start_lnum;
4175 }
4176
4177 /*
4178 * Move past the end of any white lines.
4179 */
4180 end_lnum = start_lnum;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004181 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
4182 ++end_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183
4184 --end_lnum;
4185 i = count;
4186 if (!include && white_in_front)
4187 --i;
4188 while (i--)
4189 {
4190 if (end_lnum == curbuf->b_ml.ml_line_count)
4191 return FAIL;
4192
4193 if (!include)
4194 do_white = linewhite(end_lnum + 1);
4195
4196 if (include || !do_white)
4197 {
4198 ++end_lnum;
4199 /*
4200 * skip to end of paragraph
4201 */
4202 while (end_lnum < curbuf->b_ml.ml_line_count
4203 && !linewhite(end_lnum + 1)
4204 && !startPS(end_lnum + 1, 0, 0))
4205 ++end_lnum;
4206 }
4207
4208 if (i == 0 && white_in_front && include)
4209 break;
4210
4211 /*
4212 * skip to end of white lines after paragraph
4213 */
4214 if (include || do_white)
4215 while (end_lnum < curbuf->b_ml.ml_line_count
4216 && linewhite(end_lnum + 1))
4217 ++end_lnum;
4218 }
4219
4220 /*
4221 * If there are no empty lines at the end, try to find some empty lines at
4222 * the start (unless that has been done already).
4223 */
4224 if (!white_in_front && !linewhite(end_lnum) && include)
4225 while (start_lnum > 1 && linewhite(start_lnum - 1))
4226 --start_lnum;
4227
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 if (VIsual_active)
4229 {
4230 /* Problem: when doing "Vipipip" nothing happens in a single white
4231 * line, we get stuck there. Trap this here. */
4232 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4233 goto extend;
4234 VIsual.lnum = start_lnum;
4235 VIsual_mode = 'V';
4236 redraw_curbuf_later(INVERTED); /* update the inversion */
4237 showmode();
4238 }
4239 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 {
4241 oap->start.lnum = start_lnum;
4242 oap->start.col = 0;
4243 oap->motion_type = MLINE;
4244 }
4245 curwin->w_cursor.lnum = end_lnum;
4246 curwin->w_cursor.col = 0;
4247
4248 return OK;
4249}
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004250
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01004251static int find_next_quote(char_u *top_ptr, int col, int quotechar, char_u *escape);
4252static int find_prev_quote(char_u *line, int col_start, int quotechar, char_u *escape);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004253
4254/*
4255 * Search quote char from string line[col].
4256 * Quote character escaped by one of the characters in "escape" is not counted
4257 * as a quote.
4258 * Returns column number of "quotechar" or -1 when not found.
4259 */
4260 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004261find_next_quote(
4262 char_u *line,
4263 int col,
4264 int quotechar,
4265 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004266{
4267 int c;
4268
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004269 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004270 {
4271 c = line[col];
4272 if (c == NUL)
4273 return -1;
4274 else if (escape != NULL && vim_strchr(escape, c))
4275 ++col;
4276 else if (c == quotechar)
4277 break;
4278#ifdef FEAT_MBYTE
4279 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004280 col += (*mb_ptr2len)(line + col);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004281 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004283 ++col;
4284 }
4285 return col;
4286}
4287
4288/*
4289 * Search backwards in "line" from column "col_start" to find "quotechar".
4290 * Quote character escaped by one of the characters in "escape" is not counted
4291 * as a quote.
4292 * Return the found column or zero.
4293 */
4294 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004295find_prev_quote(
4296 char_u *line,
4297 int col_start,
4298 int quotechar,
4299 char_u *escape) /* escape characters, can be NULL */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004300{
4301 int n;
4302
4303 while (col_start > 0)
4304 {
4305 --col_start;
4306#ifdef FEAT_MBYTE
4307 col_start -= (*mb_head_off)(line, line + col_start);
4308#endif
4309 n = 0;
4310 if (escape != NULL)
4311 while (col_start - n > 0 && vim_strchr(escape,
4312 line[col_start - n - 1]) != NULL)
4313 ++n;
4314 if (n & 1)
4315 col_start -= n; /* uneven number of escape chars, skip it */
4316 else if (line[col_start] == quotechar)
4317 break;
4318 }
4319 return col_start;
4320}
4321
4322/*
4323 * Find quote under the cursor, cursor at end.
4324 * Returns TRUE if found, else FALSE.
4325 */
4326 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004327current_quote(
4328 oparg_T *oap,
4329 long count,
4330 int include, /* TRUE == include quote char */
4331 int quotechar) /* Quote character */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004332{
4333 char_u *line = ml_get_curline();
4334 int col_end;
4335 int col_start = curwin->w_cursor.col;
4336 int inclusive = FALSE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004337 int vis_empty = TRUE; /* Visual selection <= 1 char */
4338 int vis_bef_curs = FALSE; /* Visual starts before cursor */
Bram Moolenaarab194812005-09-14 21:40:12 +00004339 int inside_quotes = FALSE; /* Looks like "i'" done before */
4340 int selected_quote = FALSE; /* Has quote inside selection */
4341 int i;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004342
4343 /* Correct cursor when 'selection' is exclusive */
4344 if (VIsual_active)
4345 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004346 vis_bef_curs = lt(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004347 if (*p_sel == 'e' && vis_bef_curs)
4348 dec_cursor();
4349 vis_empty = equalpos(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004350 }
Bram Moolenaarab194812005-09-14 21:40:12 +00004351
4352 if (!vis_empty)
4353 {
4354 /* Check if the existing selection exactly spans the text inside
4355 * quotes. */
4356 if (vis_bef_curs)
4357 {
4358 inside_quotes = VIsual.col > 0
4359 && line[VIsual.col - 1] == quotechar
4360 && line[curwin->w_cursor.col] != NUL
4361 && line[curwin->w_cursor.col + 1] == quotechar;
4362 i = VIsual.col;
4363 col_end = curwin->w_cursor.col;
4364 }
4365 else
4366 {
4367 inside_quotes = curwin->w_cursor.col > 0
4368 && line[curwin->w_cursor.col - 1] == quotechar
4369 && line[VIsual.col] != NUL
4370 && line[VIsual.col + 1] == quotechar;
4371 i = curwin->w_cursor.col;
4372 col_end = VIsual.col;
4373 }
4374
4375 /* Find out if we have a quote in the selection. */
4376 while (i <= col_end)
4377 if (line[i++] == quotechar)
4378 {
4379 selected_quote = TRUE;
4380 break;
4381 }
4382 }
4383
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004384 if (!vis_empty && line[col_start] == quotechar)
4385 {
4386 /* Already selecting something and on a quote character. Find the
4387 * next quoted string. */
4388 if (vis_bef_curs)
4389 {
4390 /* Assume we are on a closing quote: move to after the next
4391 * opening quote. */
4392 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4393 if (col_start < 0)
4394 return FALSE;
4395 col_end = find_next_quote(line, col_start + 1, quotechar,
4396 curbuf->b_p_qe);
4397 if (col_end < 0)
4398 {
4399 /* We were on a starting quote perhaps? */
4400 col_end = col_start;
4401 col_start = curwin->w_cursor.col;
4402 }
4403 }
4404 else
4405 {
4406 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4407 if (line[col_end] != quotechar)
4408 return FALSE;
4409 col_start = find_prev_quote(line, col_end, quotechar,
4410 curbuf->b_p_qe);
4411 if (line[col_start] != quotechar)
4412 {
4413 /* We were on an ending quote perhaps? */
4414 col_start = col_end;
4415 col_end = curwin->w_cursor.col;
4416 }
4417 }
4418 }
4419 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004420
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004421 if (line[col_start] == quotechar || !vis_empty)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004422 {
4423 int first_col = col_start;
4424
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004425 if (!vis_empty)
4426 {
4427 if (vis_bef_curs)
4428 first_col = find_next_quote(line, col_start, quotechar, NULL);
4429 else
4430 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4431 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004432
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004433 /* The cursor is on a quote, we don't know if it's the opening or
4434 * closing quote. Search from the start of the line to find out.
4435 * Also do this when there is a Visual area, a' may leave the cursor
4436 * in between two strings. */
4437 col_start = 0;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004438 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004439 {
4440 /* Find open quote character. */
4441 col_start = find_next_quote(line, col_start, quotechar, NULL);
4442 if (col_start < 0 || col_start > first_col)
4443 return FALSE;
4444 /* Find close quote character. */
4445 col_end = find_next_quote(line, col_start + 1, quotechar,
4446 curbuf->b_p_qe);
4447 if (col_end < 0)
4448 return FALSE;
4449 /* If is cursor between start and end quote character, it is
4450 * target text object. */
4451 if (col_start <= first_col && first_col <= col_end)
4452 break;
4453 col_start = col_end + 1;
4454 }
4455 }
4456 else
4457 {
4458 /* Search backward for a starting quote. */
4459 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4460 if (line[col_start] != quotechar)
4461 {
4462 /* No quote before the cursor, look after the cursor. */
4463 col_start = find_next_quote(line, col_start, quotechar, NULL);
4464 if (col_start < 0)
4465 return FALSE;
4466 }
4467
4468 /* Find close quote character. */
4469 col_end = find_next_quote(line, col_start + 1, quotechar,
4470 curbuf->b_p_qe);
4471 if (col_end < 0)
4472 return FALSE;
4473 }
4474
4475 /* When "include" is TRUE, include spaces after closing quote or before
4476 * the starting quote. */
4477 if (include)
4478 {
4479 if (vim_iswhite(line[col_end + 1]))
4480 while (vim_iswhite(line[col_end + 1]))
4481 ++col_end;
4482 else
4483 while (col_start > 0 && vim_iswhite(line[col_start - 1]))
4484 --col_start;
4485 }
4486
Bram Moolenaarab194812005-09-14 21:40:12 +00004487 /* Set start position. After vi" another i" must include the ".
4488 * For v2i" include the quotes. */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004489 if (!include && count < 2 && (vis_empty || !inside_quotes))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004490 ++col_start;
4491 curwin->w_cursor.col = col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004492 if (VIsual_active)
4493 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004494 /* Set the start of the Visual area when the Visual area was empty, we
4495 * were just inside quotes or the Visual area didn't start at a quote
4496 * and didn't include a quote.
4497 */
4498 if (vis_empty
4499 || (vis_bef_curs
4500 && !selected_quote
4501 && (inside_quotes
4502 || (line[VIsual.col] != quotechar
4503 && (VIsual.col == 0
4504 || line[VIsual.col - 1] != quotechar)))))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004505 {
4506 VIsual = curwin->w_cursor;
4507 redraw_curbuf_later(INVERTED);
4508 }
4509 }
4510 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004511 {
4512 oap->start = curwin->w_cursor;
4513 oap->motion_type = MCHAR;
4514 }
4515
4516 /* Set end position. */
4517 curwin->w_cursor.col = col_end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004518 if ((include || count > 1 /* After vi" another i" must include the ". */
Bram Moolenaarab194812005-09-14 21:40:12 +00004519 || (!vis_empty && inside_quotes)
Bram Moolenaarab194812005-09-14 21:40:12 +00004520 ) && inc_cursor() == 2)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004521 inclusive = TRUE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004522 if (VIsual_active)
4523 {
4524 if (vis_empty || vis_bef_curs)
4525 {
4526 /* decrement cursor when 'selection' is not exclusive */
4527 if (*p_sel != 'e')
4528 dec_cursor();
4529 }
4530 else
4531 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004532 /* Cursor is at start of Visual area. Set the end of the Visual
4533 * area when it was just inside quotes or it didn't end at a
4534 * quote. */
4535 if (inside_quotes
4536 || (!selected_quote
4537 && line[VIsual.col] != quotechar
4538 && (line[VIsual.col] == NUL
4539 || line[VIsual.col + 1] != quotechar)))
4540 {
4541 dec_cursor();
4542 VIsual = curwin->w_cursor;
4543 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004544 curwin->w_cursor.col = col_start;
4545 }
4546 if (VIsual_mode == 'V')
4547 {
4548 VIsual_mode = 'v';
4549 redraw_cmdline = TRUE; /* show mode later */
4550 }
4551 }
4552 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004553 {
4554 /* Set inclusive and other oap's flags. */
4555 oap->inclusive = inclusive;
4556 }
4557
4558 return OK;
4559}
4560
4561#endif /* FEAT_TEXTOBJ */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01004563static int is_one_char(char_u *pattern, int move);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004564
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004565/*
4566 * Find next search match under cursor, cursor at end.
4567 * Used while an operator is pending, and in Visual mode.
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004568 */
4569 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004570current_search(
4571 long count,
4572 int forward) /* move forward or backwards */
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004573{
4574 pos_T start_pos; /* position before the pattern */
4575 pos_T orig_pos; /* position of the cursor at beginning */
4576 pos_T pos; /* position after the pattern */
4577 int i;
4578 int dir;
4579 int result; /* result of various function calls */
4580 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004581 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02004582 pos_T save_VIsual = VIsual;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004583 int one_char;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004584
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004585 /* wrapping should not occur */
4586 p_ws = FALSE;
4587
4588 /* Correct cursor when 'selection' is exclusive */
4589 if (VIsual_active && *p_sel == 'e' && lt(VIsual, curwin->w_cursor))
4590 dec_cursor();
4591
4592 if (VIsual_active)
4593 {
4594 orig_pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004595
4596 pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004597
4598 /* make sure, searching further will extend the match */
4599 if (VIsual_active)
4600 {
4601 if (forward)
4602 incl(&pos);
4603 else
4604 decl(&pos);
4605 }
4606 }
4607 else
Bram Moolenaar268a06c2016-04-21 09:07:01 +02004608 orig_pos = pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004609
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004610 /* Is the pattern is zero-width? */
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004611 one_char = is_one_char(spats[last_idx].pat, TRUE);
Bram Moolenaare78495d2013-06-30 14:46:53 +02004612 if (one_char == -1)
Bram Moolenaarba2d44f2013-11-28 19:27:30 +01004613 {
4614 p_ws = old_p_ws;
4615 return FAIL; /* pattern not found */
4616 }
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004617
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004618 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004619 * The trick is to first search backwards and then search forward again,
4620 * so that a match at the current cursor position will be correctly
4621 * captured.
4622 */
4623 for (i = 0; i < 2; i++)
4624 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004625 if (forward)
4626 dir = i;
4627 else
4628 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004629
4630 flags = 0;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004631 if (!dir && !one_char)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004632 flags = SEARCH_END;
4633
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004634 result = searchit(curwin, curbuf, &pos, (dir ? FORWARD : BACKWARD),
4635 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004636 SEARCH_KEEP | flags, RE_SEARCH, 0, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004637
4638 /* First search may fail, but then start searching from the
4639 * beginning of the file (cursor might be on the search match)
4640 * except when Visual mode is active, so that extending the visual
4641 * selection works. */
4642 if (!result && i) /* not found, abort */
4643 {
4644 curwin->w_cursor = orig_pos;
4645 if (VIsual_active)
4646 VIsual = save_VIsual;
4647 p_ws = old_p_ws;
4648 return FAIL;
4649 }
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004650 else if (!i && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004651 {
4652 if (forward) /* try again from start of buffer */
4653 {
4654 clearpos(&pos);
4655 }
4656 else /* try again from end of buffer */
4657 {
4658 /* searching backwards, so set pos to last line and col */
4659 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02004660 pos.col = (colnr_T)STRLEN(
4661 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004662 }
4663 }
Bram Moolenaarfcea03d2013-11-07 04:46:48 +01004664 p_ws = old_p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004665 }
4666
4667 start_pos = pos;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004668 flags = forward ? SEARCH_END : 0;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004669
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004670 /* Check again from the current cursor position,
4671 * since the next match might actually by only one char wide */
4672 one_char = is_one_char(spats[last_idx].pat, FALSE);
4673
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004674 /* move to match, except for zero-width matches, in which case, we are
4675 * already on the next match */
Bram Moolenaare78495d2013-06-30 14:46:53 +02004676 if (!one_char)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004677 result = searchit(curwin, curbuf, &pos, (forward ? FORWARD : BACKWARD),
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004678 spats[last_idx].pat, 0L, flags | SEARCH_KEEP, RE_SEARCH, 0, NULL);
4679
4680 if (!VIsual_active)
4681 VIsual = start_pos;
4682
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004683 curwin->w_cursor = pos;
4684 VIsual_active = TRUE;
4685 VIsual_mode = 'v';
4686
4687 if (VIsual_active)
4688 {
4689 redraw_curbuf_later(INVERTED); /* update the inversion */
Bram Moolenaar718f0072012-10-03 13:35:51 +02004690 if (*p_sel == 'e')
4691 {
4692 /* Correction for exclusive selection depends on the direction. */
4693 if (forward && ltoreq(VIsual, curwin->w_cursor))
4694 inc_cursor();
4695 else if (!forward && ltoreq(curwin->w_cursor, VIsual))
4696 inc(&VIsual);
4697 }
4698
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004699 }
4700
4701#ifdef FEAT_FOLDING
4702 if (fdo_flags & FDO_SEARCH && KeyTyped)
4703 foldOpenCursor();
4704#endif
4705
4706 may_start_select('c');
4707#ifdef FEAT_MOUSE
4708 setmouse();
4709#endif
4710#ifdef FEAT_CLIPBOARD
4711 /* Make sure the clipboard gets updated. Needed because start and
4712 * end are still the same, and the selection needs to be owned */
4713 clip_star.vmode = NUL;
4714#endif
4715 redraw_curbuf_later(INVERTED);
4716 showmode();
4717
4718 return OK;
4719}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004720
4721/*
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004722 * Check if the pattern is one character long or zero-width.
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004723 * If move is TRUE, check from the beginning of the buffer, else from the
4724 * current cursor position.
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004725 * Returns TRUE, FALSE or -1 for failure.
4726 */
4727 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004728is_one_char(char_u *pattern, int move)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004729{
4730 regmmatch_T regmatch;
4731 int nmatched = 0;
4732 int result = -1;
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004733 pos_T pos;
4734 int save_called_emsg = called_emsg;
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004735 int flag = 0;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004736
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004737 if (pattern == NULL)
4738 pattern = spats[last_idx].pat;
4739
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004740 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
4741 SEARCH_KEEP, &regmatch) == FAIL)
4742 return -1;
4743
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004744 /* init startcol correctly */
4745 regmatch.startpos[0].col = -1;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004746 /* move to match */
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004747 if (move)
4748 clearpos(&pos)
4749 else
4750 {
4751 pos = curwin->w_cursor;
4752 /* accept a match at the cursor position */
4753 flag = SEARCH_START;
4754 }
4755
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004756 if (searchit(curwin, curbuf, &pos, FORWARD, pattern, 1,
Bram Moolenaarb12db9f2014-12-13 22:00:22 +01004757 SEARCH_KEEP + flag, RE_SEARCH, 0, NULL) != FAIL)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004758 {
4759 /* Zero-width pattern should match somewhere, then we can check if
4760 * start and end are in the same position. */
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004761 called_emsg = FALSE;
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004762 do
4763 {
4764 regmatch.startpos[0].col++;
4765 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
4766 pos.lnum, regmatch.startpos[0].col, NULL);
4767 if (!nmatched)
4768 break;
4769 } while (regmatch.startpos[0].col < pos.col);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004770
4771 if (!called_emsg)
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004772 {
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004773 result = (nmatched != 0
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004774 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
4775 && regmatch.startpos[0].col == regmatch.endpos[0].col);
Bram Moolenaar6835dc62016-07-24 17:33:05 +02004776 /* one char width */
4777 if (!result && inc(&pos) >= 0 && pos.col == regmatch.endpos[0].col)
4778 result = TRUE;
4779 }
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004780 }
4781
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004782 called_emsg |= save_called_emsg;
Bram Moolenaar473de612013-06-08 18:19:48 +02004783 vim_regfree(regmatch.regprog);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004784 return result;
4785}
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004786
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4788 || defined(PROTO)
4789/*
4790 * return TRUE if line 'lnum' is empty or has white chars only.
4791 */
4792 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004793linewhite(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794{
4795 char_u *p;
4796
4797 p = skipwhite(ml_get(lnum));
4798 return (*p == NUL);
4799}
4800#endif
4801
4802#if defined(FEAT_FIND_ID) || defined(PROTO)
4803/*
4804 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01004805 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004808find_pattern_in_path(
4809 char_u *ptr, /* pointer to search pattern */
4810 int dir UNUSED, /* direction of expansion */
4811 int len, /* length of search pattern */
4812 int whole, /* match whole words only */
4813 int skip_comments, /* don't match inside comments */
4814 int type, /* Type of search; are we looking for a type?
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815 a macro? */
Bram Moolenaar764b23c2016-01-30 21:10:09 +01004816 long count,
4817 int action, /* What to do when we find it */
4818 linenr_T start_lnum, /* first line to start searching */
4819 linenr_T end_lnum) /* last line for searching */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820{
4821 SearchedFile *files; /* Stack of included files */
4822 SearchedFile *bigger; /* When we need more space */
4823 int max_path_depth = 50;
4824 long match_count = 1;
4825
4826 char_u *pat;
4827 char_u *new_fname;
4828 char_u *curr_fname = curbuf->b_fname;
4829 char_u *prev_fname = NULL;
4830 linenr_T lnum;
4831 int depth;
4832 int depth_displayed; /* For type==CHECK_PATH */
4833 int old_files;
4834 int already_searched;
4835 char_u *file_line;
4836 char_u *line;
4837 char_u *p;
4838 char_u save_char;
4839 int define_matched;
4840 regmatch_T regmatch;
4841 regmatch_T incl_regmatch;
4842 regmatch_T def_regmatch;
4843 int matched = FALSE;
4844 int did_show = FALSE;
4845 int found = FALSE;
4846 int i;
4847 char_u *already = NULL;
4848 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004849 char_u *inc_opt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4851 win_T *curwin_save = NULL;
4852#endif
4853
4854 regmatch.regprog = NULL;
4855 incl_regmatch.regprog = NULL;
4856 def_regmatch.regprog = NULL;
4857
4858 file_line = alloc(LSIZE);
4859 if (file_line == NULL)
4860 return;
4861
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862 if (type != CHECK_PATH && type != FIND_DEFINE
4863#ifdef FEAT_INS_EXPAND
4864 /* when CONT_SOL is set compare "ptr" with the beginning of the line
4865 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004866 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867#endif
4868 )
4869 {
4870 pat = alloc(len + 5);
4871 if (pat == NULL)
4872 goto fpip_end;
4873 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
4874 /* ignore case according to p_ic, p_scs and pat */
4875 regmatch.rm_ic = ignorecase(pat);
4876 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4877 vim_free(pat);
4878 if (regmatch.regprog == NULL)
4879 goto fpip_end;
4880 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004881 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
4882 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004884 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 if (incl_regmatch.regprog == NULL)
4886 goto fpip_end;
4887 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */
4888 }
4889 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
4890 {
4891 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
4892 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
4893 if (def_regmatch.regprog == NULL)
4894 goto fpip_end;
4895 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */
4896 }
4897 files = (SearchedFile *)lalloc_clear((long_u)
4898 (max_path_depth * sizeof(SearchedFile)), TRUE);
4899 if (files == NULL)
4900 goto fpip_end;
4901 old_files = max_path_depth;
4902 depth = depth_displayed = -1;
4903
4904 lnum = start_lnum;
4905 if (end_lnum > curbuf->b_ml.ml_line_count)
4906 end_lnum = curbuf->b_ml.ml_line_count;
4907 if (lnum > end_lnum) /* do at least one line */
4908 lnum = end_lnum;
4909 line = ml_get(lnum);
4910
4911 for (;;)
4912 {
4913 if (incl_regmatch.regprog != NULL
4914 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
4915 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004916 char_u *p_fname = (curr_fname == curbuf->b_fname)
4917 ? curbuf->b_ffname : curr_fname;
4918
4919 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
4920 /* Use text from '\zs' to '\ze' (or end) of 'include'. */
4921 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02004922 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004923 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
4924 else
4925 /* Use text after match with 'include'. */
4926 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004927 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 already_searched = FALSE;
4929 if (new_fname != NULL)
4930 {
4931 /* Check whether we have already searched in this file */
4932 for (i = 0;; i++)
4933 {
4934 if (i == depth + 1)
4935 i = old_files;
4936 if (i == max_path_depth)
4937 break;
4938 if (fullpathcmp(new_fname, files[i].name, TRUE) & FPC_SAME)
4939 {
4940 if (type != CHECK_PATH &&
4941 action == ACTION_SHOW_ALL && files[i].matched)
4942 {
4943 msg_putchar('\n'); /* cursor below last one */
4944 if (!got_int) /* don't display if 'q'
4945 typed at "--more--"
Bram Moolenaarfe81d452009-04-22 14:44:41 +00004946 message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 {
4948 msg_home_replace_hl(new_fname);
4949 MSG_PUTS(_(" (includes previously listed match)"));
4950 prev_fname = NULL;
4951 }
4952 }
4953 vim_free(new_fname);
4954 new_fname = NULL;
4955 already_searched = TRUE;
4956 break;
4957 }
4958 }
4959 }
4960
4961 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
4962 || (new_fname == NULL && !already_searched)))
4963 {
4964 if (did_show)
4965 msg_putchar('\n'); /* cursor below last one */
4966 else
4967 {
4968 gotocmdline(TRUE); /* cursor at status line */
4969 MSG_PUTS_TITLE(_("--- Included files "));
4970 if (action != ACTION_SHOW_ALL)
4971 MSG_PUTS_TITLE(_("not found "));
4972 MSG_PUTS_TITLE(_("in path ---\n"));
4973 }
4974 did_show = TRUE;
4975 while (depth_displayed < depth && !got_int)
4976 {
4977 ++depth_displayed;
4978 for (i = 0; i < depth_displayed; i++)
4979 MSG_PUTS(" ");
4980 msg_home_replace(files[depth_displayed].name);
4981 MSG_PUTS(" -->\n");
4982 }
4983 if (!got_int) /* don't display if 'q' typed
4984 for "--more--" message */
4985 {
4986 for (i = 0; i <= depth_displayed; i++)
4987 MSG_PUTS(" ");
4988 if (new_fname != NULL)
4989 {
4990 /* using "new_fname" is more reliable, e.g., when
4991 * 'includeexpr' is set. */
4992 msg_outtrans_attr(new_fname, hl_attr(HLF_D));
4993 }
4994 else
4995 {
4996 /*
4997 * Isolate the file name.
4998 * Include the surrounding "" or <> if present.
4999 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005000 if (inc_opt != NULL
5001 && strstr((char *)inc_opt, "\\zs") != NULL)
5002 {
5003 /* pattern contains \zs, use the match */
5004 p = incl_regmatch.startp[0];
5005 i = (int)(incl_regmatch.endp[0]
5006 - incl_regmatch.startp[0]);
5007 }
5008 else
5009 {
5010 /* find the file name after the end of the match */
5011 for (p = incl_regmatch.endp[0];
5012 *p && !vim_isfilec(*p); p++)
5013 ;
5014 for (i = 0; vim_isfilec(p[i]); i++)
5015 ;
5016 }
5017
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 if (i == 0)
5019 {
5020 /* Nothing found, use the rest of the line. */
5021 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005022 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 }
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02005024 /* Avoid checking before the start of the line, can
5025 * happen if \zs appears in the regexp. */
5026 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 {
5028 if (p[-1] == '"' || p[-1] == '<')
5029 {
5030 --p;
5031 ++i;
5032 }
5033 if (p[i] == '"' || p[i] == '>')
5034 ++i;
5035 }
5036 save_char = p[i];
5037 p[i] = NUL;
5038 msg_outtrans_attr(p, hl_attr(HLF_D));
5039 p[i] = save_char;
5040 }
5041
5042 if (new_fname == NULL && action == ACTION_SHOW_ALL)
5043 {
5044 if (already_searched)
5045 MSG_PUTS(_(" (Already listed)"));
5046 else
5047 MSG_PUTS(_(" NOT FOUND"));
5048 }
5049 }
5050 out_flush(); /* output each line directly */
5051 }
5052
5053 if (new_fname != NULL)
5054 {
5055 /* Push the new file onto the file stack */
5056 if (depth + 1 == old_files)
5057 {
5058 bigger = (SearchedFile *)lalloc((long_u)(
5059 max_path_depth * 2 * sizeof(SearchedFile)), TRUE);
5060 if (bigger != NULL)
5061 {
5062 for (i = 0; i <= depth; i++)
5063 bigger[i] = files[i];
5064 for (i = depth + 1; i < old_files + max_path_depth; i++)
5065 {
5066 bigger[i].fp = NULL;
5067 bigger[i].name = NULL;
5068 bigger[i].lnum = 0;
5069 bigger[i].matched = FALSE;
5070 }
5071 for (i = old_files; i < max_path_depth; i++)
5072 bigger[i + max_path_depth] = files[i];
5073 old_files += max_path_depth;
5074 max_path_depth *= 2;
5075 vim_free(files);
5076 files = bigger;
5077 }
5078 }
5079 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
5080 == NULL)
5081 vim_free(new_fname);
5082 else
5083 {
5084 if (++depth == old_files)
5085 {
5086 /*
5087 * lalloc() for 'bigger' must have failed above. We
5088 * will forget one of our already visited files now.
5089 */
5090 vim_free(files[old_files].name);
5091 ++old_files;
5092 }
5093 files[depth].name = curr_fname = new_fname;
5094 files[depth].lnum = 0;
5095 files[depth].matched = FALSE;
5096#ifdef FEAT_INS_EXPAND
5097 if (action == ACTION_EXPAND)
5098 {
Bram Moolenaardf40adf2006-10-14 12:32:39 +00005099 msg_hist_off = TRUE; /* reset in msg_trunc_attr() */
Bram Moolenaar555b2802005-05-19 21:08:39 +00005100 vim_snprintf((char*)IObuff, IOSIZE,
5101 _("Scanning included file: %s"),
5102 (char *)new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103 msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
5104 }
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005105 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106#endif
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005107 if (p_verbose >= 5)
5108 {
5109 verbose_enter();
5110 smsg((char_u *)_("Searching included file %s"),
5111 (char *)new_fname);
5112 verbose_leave();
5113 }
5114
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 }
5116 }
5117 }
5118 else
5119 {
5120 /*
5121 * Check if the line is a define (type == FIND_DEFINE)
5122 */
5123 p = line;
5124search_line:
5125 define_matched = FALSE;
5126 if (def_regmatch.regprog != NULL
5127 && vim_regexec(&def_regmatch, line, (colnr_T)0))
5128 {
5129 /*
5130 * Pattern must be first identifier after 'define', so skip
5131 * to that position before checking for match of pattern. Also
5132 * don't let it match beyond the end of this identifier.
5133 */
5134 p = def_regmatch.endp[0];
5135 while (*p && !vim_iswordc(*p))
5136 p++;
5137 define_matched = TRUE;
5138 }
5139
5140 /*
5141 * Look for a match. Don't do this if we are looking for a
5142 * define and this line didn't match define_prog above.
5143 */
5144 if (def_regmatch.regprog == NULL || define_matched)
5145 {
5146 if (define_matched
5147#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005148 || (compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149#endif
5150 )
5151 {
5152 /* compare the first "len" chars from "ptr" */
5153 startp = skipwhite(p);
5154 if (p_ic)
5155 matched = !MB_STRNICMP(startp, ptr, len);
5156 else
5157 matched = !STRNCMP(startp, ptr, len);
5158 if (matched && define_matched && whole
5159 && vim_iswordc(startp[len]))
5160 matched = FALSE;
5161 }
5162 else if (regmatch.regprog != NULL
5163 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
5164 {
5165 matched = TRUE;
5166 startp = regmatch.startp[0];
5167 /*
5168 * Check if the line is not a comment line (unless we are
5169 * looking for a define). A line starting with "# define"
5170 * is not considered to be a comment line.
5171 */
5172 if (!define_matched && skip_comments)
5173 {
5174#ifdef FEAT_COMMENTS
5175 if ((*line != '#' ||
5176 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02005177 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178 matched = FALSE;
5179
5180 /*
5181 * Also check for a "/ *" or "/ /" before the match.
5182 * Skips lines like "int backwards; / * normal index
5183 * * /" when looking for "normal".
5184 * Note: Doesn't skip "/ *" in comments.
5185 */
5186 p = skipwhite(line);
5187 if (matched
5188 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
5189#endif
5190 for (p = line; *p && p < startp; ++p)
5191 {
5192 if (matched
5193 && p[0] == '/'
5194 && (p[1] == '*' || p[1] == '/'))
5195 {
5196 matched = FALSE;
5197 /* After "//" all text is comment */
5198 if (p[1] == '/')
5199 break;
5200 ++p;
5201 }
5202 else if (!matched && p[0] == '*' && p[1] == '/')
5203 {
5204 /* Can find match after "* /". */
5205 matched = TRUE;
5206 ++p;
5207 }
5208 }
5209 }
5210 }
5211 }
5212 }
5213 if (matched)
5214 {
5215#ifdef FEAT_INS_EXPAND
5216 if (action == ACTION_EXPAND)
5217 {
5218 int reuse = 0;
5219 int add_r;
5220 char_u *aux;
5221
5222 if (depth == -1 && lnum == curwin->w_cursor.lnum)
5223 break;
5224 found = TRUE;
5225 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005226 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005228 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229 if (vim_iswordp(p))
5230 goto exit_matched;
5231 p = find_word_start(p);
5232 }
5233 p = find_word_end(p);
5234 i = (int)(p - aux);
5235
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005236 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005238 /* IOSIZE > compl_length, so the STRNCPY works */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00005240
5241 /* Get the next line: when "depth" < 0 from the current
5242 * buffer, otherwise from the included file. Jump to
5243 * exit_matched when past the last line. */
5244 if (depth < 0)
5245 {
5246 if (lnum >= end_lnum)
5247 goto exit_matched;
5248 line = ml_get(++lnum);
5249 }
5250 else if (vim_fgets(line = file_line,
5251 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252 goto exit_matched;
5253
5254 /* we read a line, set "already" to check this "line" later
5255 * if depth >= 0 we'll increase files[depth].lnum far
5256 * bellow -- Acevedo */
5257 already = aux = p = skipwhite(line);
5258 p = find_word_start(p);
5259 p = find_word_end(p);
5260 if (p > aux)
5261 {
5262 if (*aux != ')' && IObuff[i-1] != TAB)
5263 {
5264 if (IObuff[i-1] != ' ')
5265 IObuff[i++] = ' ';
5266 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/
5267 if (p_js
5268 && (IObuff[i-2] == '.'
5269 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
5270 && (IObuff[i-2] == '?'
5271 || IObuff[i-2] == '!'))))
5272 IObuff[i++] = ' ';
5273 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005274 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 if (p - aux >= IOSIZE - i)
5276 p = aux + IOSIZE - i - 1;
5277 STRNCPY(IObuff + i, aux, p - aux);
5278 i += (int)(p - aux);
5279 reuse |= CONT_S_IPOS;
5280 }
5281 IObuff[i] = NUL;
5282 aux = IObuff;
5283
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005284 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 goto exit_matched;
5286 }
5287
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005288 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289 curr_fname == curbuf->b_fname ? NULL : curr_fname,
5290 dir, reuse);
5291 if (add_r == OK)
5292 /* if dir was BACKWARD then honor it just once */
5293 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005294 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295 break;
5296 }
5297 else
5298#endif
5299 if (action == ACTION_SHOW_ALL)
5300 {
5301 found = TRUE;
5302 if (!did_show)
5303 gotocmdline(TRUE); /* cursor at status line */
5304 if (curr_fname != prev_fname)
5305 {
5306 if (did_show)
5307 msg_putchar('\n'); /* cursor below last one */
5308 if (!got_int) /* don't display if 'q' typed
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005309 at "--more--" message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310 msg_home_replace_hl(curr_fname);
5311 prev_fname = curr_fname;
5312 }
5313 did_show = TRUE;
5314 if (!got_int)
5315 show_pat_in_path(line, type, TRUE, action,
5316 (depth == -1) ? NULL : files[depth].fp,
5317 (depth == -1) ? &lnum : &files[depth].lnum,
5318 match_count++);
5319
5320 /* Set matched flag for this file and all the ones that
5321 * include it */
5322 for (i = 0; i <= depth; ++i)
5323 files[i].matched = TRUE;
5324 }
5325 else if (--count <= 0)
5326 {
5327 found = TRUE;
5328 if (depth == -1 && lnum == curwin->w_cursor.lnum
5329#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5330 && g_do_tagpreview == 0
5331#endif
5332 )
5333 EMSG(_("E387: Match is on current line"));
5334 else if (action == ACTION_SHOW)
5335 {
5336 show_pat_in_path(line, type, did_show, action,
5337 (depth == -1) ? NULL : files[depth].fp,
5338 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
5339 did_show = TRUE;
5340 }
5341 else
5342 {
5343#ifdef FEAT_GUI
5344 need_mouse_correct = TRUE;
5345#endif
5346#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5347 /* ":psearch" uses the preview window */
5348 if (g_do_tagpreview != 0)
5349 {
5350 curwin_save = curwin;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005351 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352 }
5353#endif
5354 if (action == ACTION_SPLIT)
5355 {
5356#ifdef FEAT_WINDOWS
5357 if (win_split(0, 0) == FAIL)
5358#endif
5359 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005360 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361 }
5362 if (depth == -1)
5363 {
5364 /* match in current file */
5365#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5366 if (g_do_tagpreview != 0)
5367 {
5368 if (getfile(0, curwin_save->w_buffer->b_fname,
5369 NULL, TRUE, lnum, FALSE) > 0)
5370 break; /* failed to jump to file */
5371 }
5372 else
5373#endif
5374 setpcmark();
5375 curwin->w_cursor.lnum = lnum;
5376 }
5377 else
5378 {
5379 if (getfile(0, files[depth].name, NULL, TRUE,
5380 files[depth].lnum, FALSE) > 0)
5381 break; /* failed to jump to file */
5382 /* autocommands may have changed the lnum, we don't
5383 * want that here */
5384 curwin->w_cursor.lnum = files[depth].lnum;
5385 }
5386 }
5387 if (action != ACTION_SHOW)
5388 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005389 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390 curwin->w_set_curswant = TRUE;
5391 }
5392
5393#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5394 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005395 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396 {
5397 /* Return cursor to where we were */
5398 validate_cursor();
5399 redraw_later(VALID);
5400 win_enter(curwin_save, TRUE);
5401 }
5402#endif
5403 break;
5404 }
5405#ifdef FEAT_INS_EXPAND
5406exit_matched:
5407#endif
5408 matched = FALSE;
5409 /* look for other matches in the rest of the line if we
5410 * are not at the end of it already */
5411 if (def_regmatch.regprog == NULL
5412#ifdef FEAT_INS_EXPAND
5413 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005414 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415#endif
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005416 && *startp != NUL
Bram Moolenaar94c465c2012-07-19 17:18:26 +02005417 && *(p = startp + MB_PTR2LEN(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 goto search_line;
5419 }
5420 line_breakcheck();
5421#ifdef FEAT_INS_EXPAND
5422 if (action == ACTION_EXPAND)
Bram Moolenaar572cb562005-08-05 21:35:02 +00005423 ins_compl_check_keys(30);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005424 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425#else
5426 if (got_int)
5427#endif
5428 break;
5429
5430 /*
5431 * Read the next line. When reading an included file and encountering
5432 * end-of-file, close the file and continue in the file that included
5433 * it.
5434 */
5435 while (depth >= 0 && !already
5436 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5437 {
5438 fclose(files[depth].fp);
5439 --old_files;
5440 files[old_files].name = files[depth].name;
5441 files[old_files].matched = files[depth].matched;
5442 --depth;
5443 curr_fname = (depth == -1) ? curbuf->b_fname
5444 : files[depth].name;
5445 if (depth < depth_displayed)
5446 depth_displayed = depth;
5447 }
5448 if (depth >= 0) /* we could read the line */
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005449 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450 files[depth].lnum++;
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005451 /* Remove any CR and LF from the line. */
5452 i = (int)STRLEN(line);
5453 if (i > 0 && line[i - 1] == '\n')
5454 line[--i] = NUL;
5455 if (i > 0 && line[i - 1] == '\r')
5456 line[--i] = NUL;
5457 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458 else if (!already)
5459 {
5460 if (++lnum > end_lnum)
5461 break;
5462 line = ml_get(lnum);
5463 }
5464 already = NULL;
5465 }
5466 /* End of big for (;;) loop. */
5467
5468 /* Close any files that are still open. */
5469 for (i = 0; i <= depth; i++)
5470 {
5471 fclose(files[i].fp);
5472 vim_free(files[i].name);
5473 }
5474 for (i = old_files; i < max_path_depth; i++)
5475 vim_free(files[i].name);
5476 vim_free(files);
5477
5478 if (type == CHECK_PATH)
5479 {
5480 if (!did_show)
5481 {
5482 if (action != ACTION_SHOW_ALL)
5483 MSG(_("All included files were found"));
5484 else
5485 MSG(_("No included files"));
5486 }
5487 }
5488 else if (!found
5489#ifdef FEAT_INS_EXPAND
5490 && action != ACTION_EXPAND
5491#endif
5492 )
5493 {
5494#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005495 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005496#else
5497 if (got_int)
5498#endif
5499 EMSG(_(e_interr));
5500 else if (type == FIND_DEFINE)
5501 EMSG(_("E388: Couldn't find definition"));
5502 else
5503 EMSG(_("E389: Couldn't find pattern"));
5504 }
5505 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5506 msg_end();
5507
5508fpip_end:
5509 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02005510 vim_regfree(regmatch.regprog);
5511 vim_regfree(incl_regmatch.regprog);
5512 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513}
5514
5515 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005516show_pat_in_path(
5517 char_u *line,
5518 int type,
5519 int did_show,
5520 int action,
5521 FILE *fp,
5522 linenr_T *lnum,
5523 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524{
5525 char_u *p;
5526
5527 if (did_show)
5528 msg_putchar('\n'); /* cursor below last one */
Bram Moolenaar91170f82006-05-05 21:15:17 +00005529 else if (!msg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530 gotocmdline(TRUE); /* cursor at status line */
5531 if (got_int) /* 'q' typed at "--more--" message */
5532 return;
5533 for (;;)
5534 {
5535 p = line + STRLEN(line) - 1;
5536 if (fp != NULL)
5537 {
5538 /* We used fgets(), so get rid of newline at end */
5539 if (p >= line && *p == '\n')
5540 --p;
5541 if (p >= line && *p == '\r')
5542 --p;
5543 *(p + 1) = NUL;
5544 }
5545 if (action == ACTION_SHOW_ALL)
5546 {
5547 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */
5548 msg_puts(IObuff);
5549 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */
5550 /* Highlight line numbers */
5551 msg_puts_attr(IObuff, hl_attr(HLF_N));
5552 MSG_PUTS(" ");
5553 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005554 msg_prt_line(line, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 out_flush(); /* show one line at a time */
5556
5557 /* Definition continues until line that doesn't end with '\' */
5558 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5559 break;
5560
5561 if (fp != NULL)
5562 {
5563 if (vim_fgets(line, LSIZE, fp)) /* end of file */
5564 break;
5565 ++*lnum;
5566 }
5567 else
5568 {
5569 if (++*lnum > curbuf->b_ml.ml_line_count)
5570 break;
5571 line = ml_get(*lnum);
5572 }
5573 msg_putchar('\n');
5574 }
5575}
5576#endif
5577
5578#ifdef FEAT_VIMINFO
5579 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005580read_viminfo_search_pattern(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581{
5582 char_u *lp;
5583 int idx = -1;
5584 int magic = FALSE;
5585 int no_scs = FALSE;
5586 int off_line = FALSE;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005587 int off_end = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588 long off = 0;
5589 int setlast = FALSE;
5590#ifdef FEAT_SEARCH_EXTRA
5591 static int hlsearch_on = FALSE;
5592#endif
5593 char_u *val;
5594
5595 /*
5596 * Old line types:
5597 * "/pat", "&pat": search/subst. pat
5598 * "~/pat", "~&pat": last used search/subst. pat
5599 * New line types:
5600 * "~h", "~H": hlsearch highlighting off/on
5601 * "~<magic><smartcase><line><end><off><last><which>pat"
5602 * <magic>: 'm' off, 'M' on
5603 * <smartcase>: 's' off, 'S' on
5604 * <line>: 'L' line offset, 'l' char offset
5605 * <end>: 'E' from end, 'e' from start
5606 * <off>: decimal, offset
5607 * <last>: '~' last used pattern
5608 * <which>: '/' search pat, '&' subst. pat
5609 */
5610 lp = virp->vir_line;
5611 if (lp[0] == '~' && (lp[1] == 'm' || lp[1] == 'M')) /* new line type */
5612 {
5613 if (lp[1] == 'M') /* magic on */
5614 magic = TRUE;
5615 if (lp[2] == 's')
5616 no_scs = TRUE;
5617 if (lp[3] == 'L')
5618 off_line = TRUE;
5619 if (lp[4] == 'E')
Bram Moolenaared203462004-06-16 11:19:22 +00005620 off_end = SEARCH_END;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 lp += 5;
5622 off = getdigits(&lp);
5623 }
5624 if (lp[0] == '~') /* use this pattern for last-used pattern */
5625 {
5626 setlast = TRUE;
5627 lp++;
5628 }
5629 if (lp[0] == '/')
5630 idx = RE_SEARCH;
5631 else if (lp[0] == '&')
5632 idx = RE_SUBST;
5633#ifdef FEAT_SEARCH_EXTRA
5634 else if (lp[0] == 'h') /* ~h: 'hlsearch' highlighting off */
5635 hlsearch_on = FALSE;
5636 else if (lp[0] == 'H') /* ~H: 'hlsearch' highlighting on */
5637 hlsearch_on = TRUE;
5638#endif
5639 if (idx >= 0)
5640 {
5641 if (force || spats[idx].pat == NULL)
5642 {
5643 val = viminfo_readstring(virp, (int)(lp - virp->vir_line + 1),
5644 TRUE);
5645 if (val != NULL)
5646 {
5647 set_last_search_pat(val, idx, magic, setlast);
5648 vim_free(val);
5649 spats[idx].no_scs = no_scs;
5650 spats[idx].off.line = off_line;
5651 spats[idx].off.end = off_end;
5652 spats[idx].off.off = off;
5653#ifdef FEAT_SEARCH_EXTRA
5654 if (setlast)
Bram Moolenaar8050efa2013-11-08 04:30:20 +01005655 {
5656 SET_NO_HLSEARCH(!hlsearch_on);
5657 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658#endif
5659 }
5660 }
5661 }
5662 return viminfo_readline(virp);
5663}
5664
5665 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005666write_viminfo_search_pattern(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005667{
5668 if (get_viminfo_parameter('/') != 0)
5669 {
5670#ifdef FEAT_SEARCH_EXTRA
5671 fprintf(fp, "\n# hlsearch on (H) or off (h):\n~%c",
5672 (no_hlsearch || find_viminfo_parameter('h') != NULL) ? 'h' : 'H');
5673#endif
5674 wvsp_one(fp, RE_SEARCH, "", '/');
Bram Moolenaar9b228712008-07-18 10:05:58 +00005675 wvsp_one(fp, RE_SUBST, _("Substitute "), '&');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005676 }
5677}
5678
5679 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01005680wvsp_one(
5681 FILE *fp, /* file to write to */
5682 int idx, /* spats[] index */
5683 char *s, /* search pat */
5684 int sc) /* dir char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685{
5686 if (spats[idx].pat != NULL)
5687 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005688 fprintf(fp, _("\n# Last %sSearch Pattern:\n~"), s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689 /* off.dir is not stored, it's reset to forward */
5690 fprintf(fp, "%c%c%c%c%ld%s%c",
5691 spats[idx].magic ? 'M' : 'm', /* magic */
5692 spats[idx].no_scs ? 's' : 'S', /* smartcase */
5693 spats[idx].off.line ? 'L' : 'l', /* line offset */
5694 spats[idx].off.end ? 'E' : 'e', /* offset from end */
5695 spats[idx].off.off, /* offset */
5696 last_idx == idx ? "~" : "", /* last used pat */
5697 sc);
5698 viminfo_writestring(fp, spats[idx].pat);
5699 }
5700}
5701#endif /* FEAT_VIMINFO */