blob: 283e77867ed32554bc7a18ffdfe3ac513ee5da96 [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
15static void save_re_pat __ARGS((int idx, char_u *pat, int magic));
16#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017static void set_vv_searchforward __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000018static int first_submatch __ARGS((regmmatch_T *rp));
19#endif
20static int check_prevcol __ARGS((char_u *linep, int col, int ch, int *prevcol));
21static int inmacro __ARGS((char_u *, char_u *));
22static int check_linecomment __ARGS((char_u *line));
23static int cls __ARGS((void));
24static int skip_chars __ARGS((int, int));
25#ifdef FEAT_TEXTOBJ
26static void back_in_line __ARGS((void));
27static void find_first_blank __ARGS((pos_T *));
28static void findsent_forward __ARGS((long count, int at_start_sent));
29#endif
30#ifdef FEAT_FIND_ID
31static void show_pat_in_path __ARGS((char_u *, int,
32 int, int, FILE *, linenr_T *, long));
33#endif
34#ifdef FEAT_VIMINFO
35static void wvsp_one __ARGS((FILE *fp, int idx, char *s, int sc));
36#endif
37
Bram Moolenaar071d4272004-06-13 20:20:40 +000038/*
39 * This file contains various searching-related routines. These fall into
40 * three groups:
41 * 1. string searches (for /, ?, n, and N)
42 * 2. character searches within a single line (for f, F, t, T, etc)
43 * 3. "other" kinds of searches like the '%' command, and 'word' searches.
44 */
45
46/*
47 * String searches
48 *
49 * The string search functions are divided into two levels:
50 * lowest: searchit(); uses an pos_T for starting position and found match.
51 * Highest: do_search(); uses curwin->w_cursor; calls searchit().
52 *
53 * The last search pattern is remembered for repeating the same search.
54 * This pattern is shared between the :g, :s, ? and / commands.
55 * This is in search_regcomp().
56 *
57 * The actual string matching is done using a heavily modified version of
58 * Henry Spencer's regular expression library. See regexp.c.
59 */
60
61/* The offset for a search command is store in a soff struct */
62/* Note: only spats[0].off is really used */
63struct soffset
64{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000065 int dir; /* search direction, '/' or '?' */
Bram Moolenaar071d4272004-06-13 20:20:40 +000066 int line; /* search has line offset */
67 int end; /* search set cursor at end */
68 long off; /* line or char offset */
69};
70
71/* A search pattern and its attributes are stored in a spat struct */
72struct spat
73{
74 char_u *pat; /* the pattern (in allocated memory) or NULL */
75 int magic; /* magicness of the pattern */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020076 int no_scs; /* no smartcase for this pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +000077 struct soffset off;
78};
79
80/*
81 * Two search patterns are remembered: One for the :substitute command and
82 * one for other searches. last_idx points to the one that was used the last
83 * time.
84 */
85static struct spat spats[2] =
86{
87 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}}, /* last used search pat */
88 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}} /* last used substitute pat */
89};
90
91static int last_idx = 0; /* index in spats[] for RE_LAST */
92
93#if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO)
94/* copy of spats[], for keeping the search patterns while executing autocmds */
95static struct spat saved_spats[2];
96static int saved_last_idx = 0;
97# ifdef FEAT_SEARCH_EXTRA
98static int saved_no_hlsearch = 0;
99# endif
100#endif
101
102static char_u *mr_pattern = NULL; /* pattern used by search_regcomp() */
103#ifdef FEAT_RIGHTLEFT
104static int mr_pattern_alloced = FALSE; /* mr_pattern was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105#endif
106
107#ifdef FEAT_FIND_ID
108/*
109 * Type used by find_pattern_in_path() to remember which included files have
110 * been searched already.
111 */
112typedef struct SearchedFile
113{
114 FILE *fp; /* File pointer */
115 char_u *name; /* Full name of file */
116 linenr_T lnum; /* Line we were up to in file */
117 int matched; /* Found a match in this file */
118} SearchedFile;
119#endif
120
121/*
122 * translate search pattern for vim_regcomp()
123 *
124 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd)
125 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command)
126 * pat_save == RE_BOTH: save pat in both patterns (:global command)
127 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL
Bram Moolenaarb8017e72007-05-10 18:59:07 +0000128 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129 * pat_use == RE_LAST: use last used pattern if "pat" is NULL
130 * options & SEARCH_HIS: put search string in history
131 * options & SEARCH_KEEP: keep previous search pattern
132 *
133 * returns FAIL if failed, OK otherwise.
134 */
135 int
136search_regcomp(pat, pat_save, pat_use, options, regmatch)
137 char_u *pat;
138 int pat_save;
139 int pat_use;
140 int options;
141 regmmatch_T *regmatch; /* return: pattern and ignore-case flag */
142{
143 int magic;
144 int i;
145
146 rc_did_emsg = FALSE;
147 magic = p_magic;
148
149 /*
150 * If no pattern given, use a previously defined pattern.
151 */
152 if (pat == NULL || *pat == NUL)
153 {
154 if (pat_use == RE_LAST)
155 i = last_idx;
156 else
157 i = pat_use;
158 if (spats[i].pat == NULL) /* pattern was never defined */
159 {
160 if (pat_use == RE_SUBST)
161 EMSG(_(e_nopresub));
162 else
163 EMSG(_(e_noprevre));
164 rc_did_emsg = TRUE;
165 return FAIL;
166 }
167 pat = spats[i].pat;
168 magic = spats[i].magic;
169 no_smartcase = spats[i].no_scs;
170 }
171#ifdef FEAT_CMDHIST
172 else if (options & SEARCH_HIS) /* put new pattern in history */
173 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
174#endif
175
176#ifdef FEAT_RIGHTLEFT
177 if (mr_pattern_alloced)
178 {
179 vim_free(mr_pattern);
180 mr_pattern_alloced = FALSE;
181 }
182
183 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
184 {
185 char_u *rev_pattern;
186
187 rev_pattern = reverse_text(pat);
188 if (rev_pattern == NULL)
189 mr_pattern = pat; /* out of memory, keep normal pattern. */
190 else
191 {
192 mr_pattern = rev_pattern;
193 mr_pattern_alloced = TRUE;
194 }
195 }
196 else
197#endif
198 mr_pattern = pat;
199
200 /*
201 * Save the currently used pattern in the appropriate place,
202 * unless the pattern should not be remembered.
203 */
Bram Moolenaar14177b72014-01-14 15:53:51 +0100204 if (!(options & SEARCH_KEEP) && !cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205 {
206 /* search or global command */
207 if (pat_save == RE_SEARCH || pat_save == RE_BOTH)
208 save_re_pat(RE_SEARCH, pat, magic);
209 /* substitute or global command */
210 if (pat_save == RE_SUBST || pat_save == RE_BOTH)
211 save_re_pat(RE_SUBST, pat, magic);
212 }
213
214 regmatch->rmm_ic = ignorecase(pat);
Bram Moolenaar3b56eb32005-07-11 22:40:32 +0000215 regmatch->rmm_maxcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
217 if (regmatch->regprog == NULL)
218 return FAIL;
219 return OK;
220}
221
222/*
223 * Get search pattern used by search_regcomp().
224 */
225 char_u *
226get_search_pat()
227{
228 return mr_pattern;
229}
230
Bram Moolenaarabc97732007-08-08 20:49:37 +0000231#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232/*
233 * Reverse text into allocated memory.
234 * Returns the allocated string, NULL when out of memory.
235 */
Bram Moolenaarabc97732007-08-08 20:49:37 +0000236 char_u *
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237reverse_text(s)
238 char_u *s;
239{
240 unsigned len;
241 unsigned s_i, rev_i;
242 char_u *rev;
243
244 /*
245 * Reverse the pattern.
246 */
247 len = (unsigned)STRLEN(s);
248 rev = alloc(len + 1);
249 if (rev != NULL)
250 {
251 rev_i = len;
252 for (s_i = 0; s_i < len; ++s_i)
253 {
254# ifdef FEAT_MBYTE
255 if (has_mbyte)
256 {
257 int mb_len;
258
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000259 mb_len = (*mb_ptr2len)(s + s_i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260 rev_i -= mb_len;
261 mch_memmove(rev + rev_i, s + s_i, mb_len);
262 s_i += mb_len - 1;
263 }
264 else
265# endif
266 rev[--rev_i] = s[s_i];
267
268 }
269 rev[len] = NUL;
270 }
271 return rev;
272}
273#endif
274
275 static void
276save_re_pat(idx, pat, magic)
277 int idx;
278 char_u *pat;
279 int magic;
280{
281 if (spats[idx].pat != pat)
282 {
283 vim_free(spats[idx].pat);
284 spats[idx].pat = vim_strsave(pat);
285 spats[idx].magic = magic;
286 spats[idx].no_scs = no_smartcase;
287 last_idx = idx;
288#ifdef FEAT_SEARCH_EXTRA
289 /* If 'hlsearch' set and search pat changed: need redraw. */
290 if (p_hls)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000291 redraw_all_later(SOME_VALID);
Bram Moolenaar8050efa2013-11-08 04:30:20 +0100292 SET_NO_HLSEARCH(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000293#endif
294 }
295}
296
297#if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO)
298/*
299 * Save the search patterns, so they can be restored later.
300 * Used before/after executing autocommands and user functions.
301 */
302static int save_level = 0;
303
304 void
305save_search_patterns()
306{
307 if (save_level++ == 0)
308 {
309 saved_spats[0] = spats[0];
310 if (spats[0].pat != NULL)
311 saved_spats[0].pat = vim_strsave(spats[0].pat);
312 saved_spats[1] = spats[1];
313 if (spats[1].pat != NULL)
314 saved_spats[1].pat = vim_strsave(spats[1].pat);
315 saved_last_idx = last_idx;
316# ifdef FEAT_SEARCH_EXTRA
317 saved_no_hlsearch = no_hlsearch;
318# endif
319 }
320}
321
322 void
323restore_search_patterns()
324{
325 if (--save_level == 0)
326 {
327 vim_free(spats[0].pat);
328 spats[0] = saved_spats[0];
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000329#if defined(FEAT_EVAL)
330 set_vv_searchforward();
331#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332 vim_free(spats[1].pat);
333 spats[1] = saved_spats[1];
334 last_idx = saved_last_idx;
335# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar8050efa2013-11-08 04:30:20 +0100336 SET_NO_HLSEARCH(saved_no_hlsearch);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337# endif
338 }
339}
340#endif
341
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000342#if defined(EXITFREE) || defined(PROTO)
343 void
344free_search_patterns()
345{
346 vim_free(spats[0].pat);
347 vim_free(spats[1].pat);
Bram Moolenaarf2427622009-04-22 16:45:21 +0000348
349# ifdef FEAT_RIGHTLEFT
350 if (mr_pattern_alloced)
351 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200352 vim_free(mr_pattern);
353 mr_pattern_alloced = FALSE;
354 mr_pattern = NULL;
Bram Moolenaarf2427622009-04-22 16:45:21 +0000355 }
356# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000357}
358#endif
359
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360/*
361 * Return TRUE when case should be ignored for search pattern "pat".
362 * Uses the 'ignorecase' and 'smartcase' options.
363 */
364 int
365ignorecase(pat)
366 char_u *pat;
367{
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200368 int ic = p_ic;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370 if (ic && !no_smartcase && p_scs
371#ifdef FEAT_INS_EXPAND
372 && !(ctrl_x_mode && curbuf->b_p_inf)
373#endif
374 )
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200375 ic = !pat_has_uppercase(pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 no_smartcase = FALSE;
377
378 return ic;
379}
380
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200381/*
382 * Return TRUE if patter "pat" has an uppercase character.
383 */
384 int
385pat_has_uppercase(pat)
386 char_u *pat;
387{
388 char_u *p = pat;
389
390 while (*p != NUL)
391 {
392#ifdef FEAT_MBYTE
393 int l;
394
395 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
396 {
397 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
398 return TRUE;
399 p += l;
400 }
401 else
402#endif
403 if (*p == '\\')
404 {
405 if (p[1] == '_' && p[2] != NUL) /* skip "\_X" */
406 p += 3;
407 else if (p[1] == '%' && p[2] != NUL) /* skip "\%X" */
408 p += 3;
409 else if (p[1] != NUL) /* skip "\X" */
410 p += 2;
411 else
412 p += 1;
413 }
414 else if (MB_ISUPPER(*p))
415 return TRUE;
416 else
417 ++p;
418 }
419 return FALSE;
420}
421
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422 char_u *
423last_search_pat()
424{
425 return spats[last_idx].pat;
426}
427
428/*
429 * Reset search direction to forward. For "gd" and "gD" commands.
430 */
431 void
432reset_search_dir()
433{
434 spats[0].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000435#if defined(FEAT_EVAL)
436 set_vv_searchforward();
437#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438}
439
440#if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
441/*
442 * Set the last search pattern. For ":let @/ =" and viminfo.
443 * Also set the saved search pattern, so that this works in an autocommand.
444 */
445 void
446set_last_search_pat(s, idx, magic, setlast)
447 char_u *s;
448 int idx;
449 int magic;
450 int setlast;
451{
452 vim_free(spats[idx].pat);
453 /* An empty string means that nothing should be matched. */
454 if (*s == NUL)
455 spats[idx].pat = NULL;
456 else
457 spats[idx].pat = vim_strsave(s);
458 spats[idx].magic = magic;
459 spats[idx].no_scs = FALSE;
460 spats[idx].off.dir = '/';
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000461#if defined(FEAT_EVAL)
462 set_vv_searchforward();
463#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 spats[idx].off.line = FALSE;
465 spats[idx].off.end = FALSE;
466 spats[idx].off.off = 0;
467 if (setlast)
468 last_idx = idx;
469 if (save_level)
470 {
471 vim_free(saved_spats[idx].pat);
472 saved_spats[idx] = spats[0];
473 if (spats[idx].pat == NULL)
474 saved_spats[idx].pat = NULL;
475 else
476 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
477 saved_last_idx = last_idx;
478 }
479# ifdef FEAT_SEARCH_EXTRA
480 /* If 'hlsearch' set and search pat changed: need redraw. */
481 if (p_hls && idx == last_idx && !no_hlsearch)
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +0000482 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483# endif
484}
485#endif
486
487#ifdef FEAT_SEARCH_EXTRA
488/*
489 * Get a regexp program for the last used search pattern.
490 * This is used for highlighting all matches in a window.
491 * Values returned in regmatch->regprog and regmatch->rmm_ic.
492 */
493 void
494last_pat_prog(regmatch)
495 regmmatch_T *regmatch;
496{
497 if (spats[last_idx].pat == NULL)
498 {
499 regmatch->regprog = NULL;
500 return;
501 }
502 ++emsg_off; /* So it doesn't beep if bad expr */
503 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
504 --emsg_off;
505}
506#endif
507
508/*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100509 * Lowest level search function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 * Search for 'count'th occurrence of pattern 'pat' in direction 'dir'.
511 * Start at position 'pos' and return the found position in 'pos'.
512 *
513 * if (options & SEARCH_MSG) == 0 don't give any messages
514 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
515 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
516 * if (options & SEARCH_HIS) put search pattern in history
517 * if (options & SEARCH_END) return position at end of match
518 * if (options & SEARCH_START) accept match at pos itself
519 * if (options & SEARCH_KEEP) keep previous search pattern
520 * if (options & SEARCH_FOLD) match only once in a closed fold
521 * if (options & SEARCH_PEEK) check for typed char, cancel search
522 *
523 * Return FAIL (zero) for failure, non-zero for success.
524 * When FEAT_EVAL is defined, returns the index of the first matching
525 * subpattern plus one; one if there was none.
526 */
527 int
Bram Moolenaar76929292008-01-06 19:07:36 +0000528searchit(win, buf, pos, dir, pat, count, options, pat_use, stop_lnum, tm)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 win_T *win; /* window to search in; can be NULL for a
530 buffer without a window! */
531 buf_T *buf;
532 pos_T *pos;
533 int dir;
534 char_u *pat;
535 long count;
536 int options;
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000537 int pat_use; /* which pattern to use when "pat" is empty */
538 linenr_T stop_lnum; /* stop after this line number when != 0 */
Bram Moolenaar78a15312009-05-15 19:33:18 +0000539 proftime_T *tm UNUSED; /* timeout limit or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540{
541 int found;
542 linenr_T lnum; /* no init to shut up Apollo cc */
543 regmmatch_T regmatch;
544 char_u *ptr;
545 colnr_T matchcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 lpos_T endpos;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000547 lpos_T matchpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 int loop;
549 pos_T start_pos;
550 int at_first_line;
551 int extra_col;
552 int match_ok;
553 long nmatched;
554 int submatch = 0;
Bram Moolenaar280f1262006-01-30 00:14:18 +0000555 int save_called_emsg = called_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556#ifdef FEAT_SEARCH_EXTRA
557 int break_loop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558#endif
559
560 if (search_regcomp(pat, RE_SEARCH, pat_use,
561 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
562 {
563 if ((options & SEARCH_MSG) && !rc_did_emsg)
564 EMSG2(_("E383: Invalid search string: %s"), mr_pattern);
565 return FAIL;
566 }
567
Bram Moolenaaraad86642008-03-10 20:34:59 +0000568 /* When not accepting a match at the start position set "extra_col" to a
569 * non-zero value. Don't do that when starting at MAXCOL, since MAXCOL +
570 * 1 is zero. */
571 if ((options & SEARCH_START) || pos->col == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 extra_col = 0;
573#ifdef FEAT_MBYTE
574 /* Watch out for the "col" being MAXCOL - 2, used in a closed fold. */
Bram Moolenaar55b7b7e2013-01-23 16:43:11 +0100575 else if (dir != BACKWARD && has_mbyte
576 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 && pos->col < MAXCOL - 2)
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000578 {
579 ptr = ml_get_buf(buf, pos->lnum, FALSE) + pos->col;
580 if (*ptr == NUL)
581 extra_col = 1;
582 else
583 extra_col = (*mb_ptr2len)(ptr);
584 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585#endif
586 else
587 extra_col = 1;
588
Bram Moolenaar280f1262006-01-30 00:14:18 +0000589 /*
590 * find the string
591 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 called_emsg = FALSE;
593 do /* loop for count */
594 {
595 start_pos = *pos; /* remember start pos for detecting no match */
596 found = 0; /* default: not found */
597 at_first_line = TRUE; /* default: start in first line */
598 if (pos->lnum == 0) /* correct lnum for when starting in line 0 */
599 {
600 pos->lnum = 1;
601 pos->col = 0;
602 at_first_line = FALSE; /* not in first line now */
603 }
604
605 /*
606 * Start searching in current line, unless searching backwards and
607 * we're in column 0.
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000608 * If we are searching backwards, in column 0, and not including the
609 * current position, gain some efficiency by skipping back a line.
610 * Otherwise begin the search in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 */
Bram Moolenaar7a42fa32007-07-10 11:28:55 +0000612 if (dir == BACKWARD && start_pos.col == 0
613 && (options & SEARCH_START) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614 {
615 lnum = pos->lnum - 1;
616 at_first_line = FALSE;
617 }
618 else
619 lnum = pos->lnum;
620
621 for (loop = 0; loop <= 1; ++loop) /* loop twice if 'wrapscan' set */
622 {
623 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
624 lnum += dir, at_first_line = FALSE)
625 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000626 /* Stop after checking "stop_lnum", if it's set. */
627 if (stop_lnum != 0 && (dir == FORWARD
628 ? lnum > stop_lnum : lnum < stop_lnum))
629 break;
Bram Moolenaar76929292008-01-06 19:07:36 +0000630#ifdef FEAT_RELTIME
631 /* Stop after passing the "tm" time limit. */
632 if (tm != NULL && profile_passed_limit(tm))
633 break;
634#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000635
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000637 * Look for a match somewhere in line "lnum".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 nmatched = vim_regexec_multi(&regmatch, win, buf,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000640 lnum, (colnr_T)0,
641#ifdef FEAT_RELTIME
642 tm
643#else
644 NULL
645#endif
646 );
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647 /* Abort searching on an error (e.g., out of stack). */
648 if (called_emsg)
649 break;
650 if (nmatched > 0)
651 {
652 /* match may actually be in another line when using \zs */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000653 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 endpos = regmatch.endpos[0];
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000655#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 submatch = first_submatch(&regmatch);
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000657#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000658 /* "lnum" may be past end of buffer for "\n\zs". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000659 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
660 ptr = (char_u *)"";
661 else
662 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663
664 /*
665 * Forward search in the first line: match should be after
666 * the start position. If not, continue at the end of the
667 * match (this is vi compatible) or on the next char.
668 */
669 if (dir == FORWARD && at_first_line)
670 {
671 match_ok = TRUE;
672 /*
Bram Moolenaar677ee682005-01-27 14:41:15 +0000673 * When the match starts in a next line it's certainly
674 * past the start position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 * When match lands on a NUL the cursor will be put
676 * one back afterwards, compare with that position,
677 * otherwise "/$" will get stuck on end of line.
678 */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000679 while (matchpos.lnum == 0
680 && ((options & SEARCH_END)
681 ? (nmatched == 1
682 && (int)endpos.col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 < (int)start_pos.col + extra_col)
Bram Moolenaar677ee682005-01-27 14:41:15 +0000684 : ((int)matchpos.col
685 - (ptr[matchpos.col] == NUL)
686 < (int)start_pos.col + extra_col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 {
688 /*
689 * If vi-compatible searching, continue at the end
690 * of the match, otherwise continue one position
691 * forward.
692 */
693 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
694 {
695 if (nmatched > 1)
696 {
697 /* end is in next line, thus no match in
698 * this line */
699 match_ok = FALSE;
700 break;
701 }
702 matchcol = endpos.col;
703 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000704 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 && ptr[matchcol] != NUL)
706 {
707#ifdef FEAT_MBYTE
708 if (has_mbyte)
709 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000710 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 else
712#endif
713 ++matchcol;
714 }
715 }
716 else
717 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000718 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 if (ptr[matchcol] != NUL)
720 {
721#ifdef FEAT_MBYTE
722 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000723 matchcol += (*mb_ptr2len)(ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 + matchcol);
725 else
726#endif
727 ++matchcol;
728 }
729 }
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200730 if (matchcol == 0 && (options & SEARCH_START))
Bram Moolenaardb333a52013-03-19 15:27:48 +0100731 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 if (ptr[matchcol] == NUL
733 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000734 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000735 matchcol,
736#ifdef FEAT_RELTIME
737 tm
738#else
739 NULL
740#endif
741 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 {
743 match_ok = FALSE;
744 break;
745 }
Bram Moolenaar677ee682005-01-27 14:41:15 +0000746 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 endpos = regmatch.endpos[0];
748# ifdef FEAT_EVAL
749 submatch = first_submatch(&regmatch);
750# endif
751
752 /* Need to get the line pointer again, a
753 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000754 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 }
756 if (!match_ok)
757 continue;
758 }
759 if (dir == BACKWARD)
760 {
761 /*
762 * Now, if there are multiple matches on this line,
763 * we have to get the last one. Or the last one before
764 * the cursor, if we're on that line.
765 * When putting the new cursor at the end, compare
766 * relative to the end of the match.
767 */
768 match_ok = FALSE;
769 for (;;)
770 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000771 /* Remember a position that is before the start
772 * position, we use it if it's the last match in
773 * the line. Always accept a position after
774 * wrapping around. */
775 if (loop
776 || ((options & SEARCH_END)
777 ? (lnum + regmatch.endpos[0].lnum
778 < start_pos.lnum
779 || (lnum + regmatch.endpos[0].lnum
780 == start_pos.lnum
781 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 + extra_col
Bram Moolenaar677ee682005-01-27 14:41:15 +0000783 <= (int)start_pos.col))
784 : (lnum + regmatch.startpos[0].lnum
785 < start_pos.lnum
786 || (lnum + regmatch.startpos[0].lnum
787 == start_pos.lnum
788 && (int)regmatch.startpos[0].col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 + extra_col
Bram Moolenaar677ee682005-01-27 14:41:15 +0000790 <= (int)start_pos.col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000793 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 endpos = regmatch.endpos[0];
795# ifdef FEAT_EVAL
796 submatch = first_submatch(&regmatch);
797# endif
798 }
799 else
800 break;
801
802 /*
803 * We found a valid match, now check if there is
804 * another one after it.
805 * If vi-compatible searching, continue at the end
806 * of the match, otherwise continue one position
807 * forward.
808 */
809 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
810 {
811 if (nmatched > 1)
812 break;
813 matchcol = endpos.col;
814 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000815 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 && ptr[matchcol] != NUL)
817 {
818#ifdef FEAT_MBYTE
819 if (has_mbyte)
820 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000821 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 else
823#endif
824 ++matchcol;
825 }
826 }
827 else
828 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000829 /* Stop when the match is in a next line. */
830 if (matchpos.lnum > 0)
831 break;
832 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 if (ptr[matchcol] != NUL)
834 {
835#ifdef FEAT_MBYTE
836 if (has_mbyte)
837 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000838 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 else
840#endif
841 ++matchcol;
842 }
843 }
844 if (ptr[matchcol] == NUL
845 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000846 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000847 matchcol,
848#ifdef FEAT_RELTIME
849 tm
850#else
851 NULL
852#endif
853 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 break;
855
856 /* Need to get the line pointer again, a
857 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000858 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 }
860
861 /*
862 * If there is only a match after the cursor, skip
863 * this match.
864 */
865 if (!match_ok)
866 continue;
867 }
868
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000869 /* With the SEARCH_END option move to the last character
870 * of the match. Don't do it for an empty match, end
871 * should be same as start then. */
Bram Moolenaar7bcb30e2013-04-03 21:14:29 +0200872 if ((options & SEARCH_END) && !(options & SEARCH_NOOF)
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000873 && !(matchpos.lnum == endpos.lnum
874 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000876 /* For a match in the first column, set the position
877 * on the NUL in the previous line. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000878 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000879 pos->col = endpos.col;
880 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000881 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000882 if (pos->lnum > 1) /* just in case */
883 {
884 --pos->lnum;
885 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
886 pos->lnum, FALSE));
887 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000888 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000889 else
890 {
891 --pos->col;
892#ifdef FEAT_MBYTE
893 if (has_mbyte
894 && pos->lnum <= buf->b_ml.ml_line_count)
895 {
896 ptr = ml_get_buf(buf, pos->lnum, FALSE);
897 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
898 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000899#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000900 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 }
902 else
903 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000904 pos->lnum = lnum + matchpos.lnum;
905 pos->col = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 }
907#ifdef FEAT_VIRTUALEDIT
908 pos->coladd = 0;
909#endif
910 found = 1;
911
912 /* Set variables used for 'incsearch' highlighting. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000913 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 search_match_endcol = endpos.col;
915 break;
916 }
917 line_breakcheck(); /* stop if ctrl-C typed */
918 if (got_int)
919 break;
920
921#ifdef FEAT_SEARCH_EXTRA
922 /* Cancel searching if a character was typed. Used for
923 * 'incsearch'. Don't check too often, that would slowdown
924 * searching too much. */
925 if ((options & SEARCH_PEEK)
926 && ((lnum - pos->lnum) & 0x3f) == 0
927 && char_avail())
928 {
929 break_loop = TRUE;
930 break;
931 }
932#endif
933
934 if (loop && lnum == start_pos.lnum)
935 break; /* if second loop, stop where started */
936 }
937 at_first_line = FALSE;
938
939 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000940 * Stop the search if wrapscan isn't set, "stop_lnum" is
941 * specified, after an interrupt, after a match and after looping
942 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 */
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000944 if (!p_ws || stop_lnum != 0 || got_int || called_emsg
Bram Moolenaar78a15312009-05-15 19:33:18 +0000945#ifdef FEAT_SEARCH_EXTRA
946 || break_loop
947#endif
948 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 break;
950
951 /*
952 * If 'wrapscan' is set we continue at the other end of the file.
953 * If 'shortmess' does not contain 's', we give a message.
954 * This message is also remembered in keep_msg for when the screen
955 * is redrawn. The keep_msg is cleared whenever another message is
956 * written.
957 */
958 if (dir == BACKWARD) /* start second loop at the other end */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +0000962 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
963 give_warning((char_u *)_(dir == BACKWARD
964 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 }
Bram Moolenaar78a15312009-05-15 19:33:18 +0000966 if (got_int || called_emsg
967#ifdef FEAT_SEARCH_EXTRA
968 || break_loop
969#endif
970 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 break;
972 }
973 while (--count > 0 && found); /* stop after count matches or no match */
974
Bram Moolenaar473de612013-06-08 18:19:48 +0200975 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976
Bram Moolenaar280f1262006-01-30 00:14:18 +0000977 called_emsg |= save_called_emsg;
978
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979 if (!found) /* did not find it */
980 {
981 if (got_int)
982 EMSG(_(e_interr));
983 else if ((options & SEARCH_MSG) == SEARCH_MSG)
984 {
985 if (p_ws)
986 EMSG2(_(e_patnotf2), mr_pattern);
987 else if (lnum == 0)
988 EMSG2(_("E384: search hit TOP without match for: %s"),
989 mr_pattern);
990 else
991 EMSG2(_("E385: search hit BOTTOM without match for: %s"),
992 mr_pattern);
993 }
994 return FAIL;
995 }
996
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000997 /* A pattern like "\n\zs" may go past the last line. */
998 if (pos->lnum > buf->b_ml.ml_line_count)
999 {
1000 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001001 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001002 if (pos->col > 0)
1003 --pos->col;
1004 }
1005
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006 return submatch + 1;
1007}
1008
1009#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001010 void
1011set_search_direction(cdir)
1012 int cdir;
1013{
1014 spats[0].off.dir = cdir;
1015}
1016
1017 static void
1018set_vv_searchforward()
1019{
1020 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1021}
1022
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023/*
1024 * Return the number of the first subpat that matched.
1025 */
1026 static int
1027first_submatch(rp)
1028 regmmatch_T *rp;
1029{
1030 int submatch;
1031
1032 for (submatch = 1; ; ++submatch)
1033 {
1034 if (rp->startpos[submatch].lnum >= 0)
1035 break;
1036 if (submatch == 9)
1037 {
1038 submatch = 0;
1039 break;
1040 }
1041 }
1042 return submatch;
1043}
1044#endif
1045
1046/*
1047 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001048 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049 * If 'dirc' is 0: use previous dir.
1050 * If 'pat' is NULL or empty : use previous string.
1051 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1052 * If 'options & SEARCH_ECHO': echo the search command and handle options
1053 * If 'options & SEARCH_MSG' : may give error message
1054 * If 'options & SEARCH_OPT' : interpret optional flags
1055 * If 'options & SEARCH_HIS' : put search pattern in history
1056 * If 'options & SEARCH_NOOF': don't add offset to position
1057 * If 'options & SEARCH_MARK': set previous context mark
1058 * If 'options & SEARCH_KEEP': keep previous search pattern
1059 * If 'options & SEARCH_START': accept match at curpos itself
1060 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1061 *
1062 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1063 * makes the movement linewise without moving the match position.
1064 *
1065 * return 0 for failure, 1 for found, 2 for found and line offset added
1066 */
1067 int
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001068do_search(oap, dirc, pat, count, options, tm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 oparg_T *oap; /* can be NULL */
1070 int dirc; /* '/' or '?' */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001071 char_u *pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 long count;
1073 int options;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001074 proftime_T *tm; /* timeout limit or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075{
1076 pos_T pos; /* position of the last match */
1077 char_u *searchstr;
1078 struct soffset old_off;
1079 int retval; /* Return value */
1080 char_u *p;
1081 long c;
1082 char_u *dircp;
1083 char_u *strcopy = NULL;
1084 char_u *ps;
1085
1086 /*
1087 * A line offset is not remembered, this is vi compatible.
1088 */
1089 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1090 {
1091 spats[0].off.line = FALSE;
1092 spats[0].off.off = 0;
1093 }
1094
1095 /*
1096 * Save the values for when (options & SEARCH_KEEP) is used.
1097 * (there is no "if ()" around this because gcc wants them initialized)
1098 */
1099 old_off = spats[0].off;
1100
1101 pos = curwin->w_cursor; /* start searching at the cursor position */
1102
1103 /*
1104 * Find out the direction of the search.
1105 */
1106 if (dirc == 0)
1107 dirc = spats[0].off.dir;
1108 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001109 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001111#if defined(FEAT_EVAL)
1112 set_vv_searchforward();
1113#endif
1114 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 if (options & SEARCH_REV)
1116 {
1117#ifdef WIN32
1118 /* There is a bug in the Visual C++ 2.2 compiler which means that
1119 * dirc always ends up being '/' */
1120 dirc = (dirc == '/') ? '?' : '/';
1121#else
1122 if (dirc == '/')
1123 dirc = '?';
1124 else
1125 dirc = '/';
1126#endif
1127 }
1128
1129#ifdef FEAT_FOLDING
1130 /* If the cursor is in a closed fold, don't find another match in the same
1131 * fold. */
1132 if (dirc == '/')
1133 {
1134 if (hasFolding(pos.lnum, NULL, &pos.lnum))
1135 pos.col = MAXCOL - 2; /* avoid overflow when adding 1 */
1136 }
1137 else
1138 {
1139 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1140 pos.col = 0;
1141 }
1142#endif
1143
1144#ifdef FEAT_SEARCH_EXTRA
1145 /*
1146 * Turn 'hlsearch' highlighting back on.
1147 */
1148 if (no_hlsearch && !(options & SEARCH_KEEP))
1149 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001150 redraw_all_later(SOME_VALID);
Bram Moolenaar8050efa2013-11-08 04:30:20 +01001151 SET_NO_HLSEARCH(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 }
1153#endif
1154
1155 /*
1156 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1157 */
1158 for (;;)
1159 {
1160 searchstr = pat;
1161 dircp = NULL;
1162 /* use previous pattern */
1163 if (pat == NULL || *pat == NUL || *pat == dirc)
1164 {
1165 if (spats[RE_SEARCH].pat == NULL) /* no previous pattern */
1166 {
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001167 pat = spats[RE_SUBST].pat;
1168 if (pat == NULL)
1169 {
1170 EMSG(_(e_noprevre));
1171 retval = 0;
1172 goto end_do_search;
1173 }
1174 searchstr = pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001176 else
1177 {
1178 /* make search_regcomp() use spats[RE_SEARCH].pat */
1179 searchstr = (char_u *)"";
1180 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 }
1182
1183 if (pat != NULL && *pat != NUL) /* look for (new) offset */
1184 {
1185 /*
1186 * Find end of regular expression.
1187 * If there is a matching '/' or '?', toss it.
1188 */
1189 ps = strcopy;
1190 p = skip_regexp(pat, dirc, (int)p_magic, &strcopy);
1191 if (strcopy != ps)
1192 {
1193 /* made a copy of "pat" to change "\?" to "?" */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001194 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 pat = strcopy;
1196 searchstr = strcopy;
1197 }
1198 if (*p == dirc)
1199 {
1200 dircp = p; /* remember where we put the NUL */
1201 *p++ = NUL;
1202 }
1203 spats[0].off.line = FALSE;
1204 spats[0].off.end = FALSE;
1205 spats[0].off.off = 0;
1206 /*
1207 * Check for a line offset or a character offset.
1208 * For get_address (echo off) we don't check for a character
1209 * offset, because it is meaningless and the 's' could be a
1210 * substitute command.
1211 */
1212 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1213 spats[0].off.line = TRUE;
1214 else if ((options & SEARCH_OPT) &&
1215 (*p == 'e' || *p == 's' || *p == 'b'))
1216 {
1217 if (*p == 'e') /* end */
1218 spats[0].off.end = SEARCH_END;
1219 ++p;
1220 }
1221 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') /* got an offset */
1222 {
1223 /* 'nr' or '+nr' or '-nr' */
1224 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1225 spats[0].off.off = atol((char *)p);
1226 else if (*p == '-') /* single '-' */
1227 spats[0].off.off = -1;
1228 else /* single '+' */
1229 spats[0].off.off = 1;
1230 ++p;
1231 while (VIM_ISDIGIT(*p)) /* skip number */
1232 ++p;
1233 }
1234
1235 /* compute length of search command for get_address() */
1236 searchcmdlen += (int)(p - pat);
1237
1238 pat = p; /* put pat after search command */
1239 }
1240
1241 if ((options & SEARCH_ECHO) && messaging()
1242 && !cmd_silent && msg_silent == 0)
1243 {
1244 char_u *msgbuf;
1245 char_u *trunc;
1246
1247 if (*searchstr == NUL)
1248 p = spats[last_idx].pat;
1249 else
1250 p = searchstr;
1251 msgbuf = alloc((unsigned)(STRLEN(p) + 40));
1252 if (msgbuf != NULL)
1253 {
1254 msgbuf[0] = dirc;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001255#ifdef FEAT_MBYTE
1256 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1257 {
1258 /* Use a space to draw the composing char on. */
1259 msgbuf[1] = ' ';
1260 STRCPY(msgbuf + 2, p);
1261 }
1262 else
1263#endif
1264 STRCPY(msgbuf + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 if (spats[0].off.line || spats[0].off.end || spats[0].off.off)
1266 {
1267 p = msgbuf + STRLEN(msgbuf);
1268 *p++ = dirc;
1269 if (spats[0].off.end)
1270 *p++ = 'e';
1271 else if (!spats[0].off.line)
1272 *p++ = 's';
1273 if (spats[0].off.off > 0 || spats[0].off.line)
1274 *p++ = '+';
1275 if (spats[0].off.off != 0 || spats[0].off.line)
1276 sprintf((char *)p, "%ld", spats[0].off.off);
1277 else
1278 *p = NUL;
1279 }
1280
1281 msg_start();
Bram Moolenaara4a08382005-09-09 19:52:02 +00001282 trunc = msg_strtrunc(msgbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283
1284#ifdef FEAT_RIGHTLEFT
1285 /* The search pattern could be shown on the right in rightleft
1286 * mode, but the 'ruler' and 'showcmd' area use it too, thus
1287 * it would be blanked out again very soon. Show it on the
1288 * left, but do reverse the text. */
1289 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1290 {
1291 char_u *r;
1292
1293 r = reverse_text(trunc != NULL ? trunc : msgbuf);
1294 if (r != NULL)
1295 {
1296 vim_free(trunc);
1297 trunc = r;
1298 }
1299 }
1300#endif
1301 if (trunc != NULL)
1302 {
1303 msg_outtrans(trunc);
1304 vim_free(trunc);
1305 }
1306 else
1307 msg_outtrans(msgbuf);
1308 msg_clr_eos();
1309 msg_check();
1310 vim_free(msgbuf);
1311
1312 gotocmdline(FALSE);
1313 out_flush();
1314 msg_nowait = TRUE; /* don't wait for this message */
1315 }
1316 }
1317
1318 /*
1319 * If there is a character offset, subtract it from the current
1320 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001321 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 * This is not done for a line offset, because then we would not be vi
1323 * compatible.
1324 */
Bram Moolenaared203462004-06-16 11:19:22 +00001325 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 {
1327 if (spats[0].off.off > 0)
1328 {
1329 for (c = spats[0].off.off; c; --c)
1330 if (decl(&pos) == -1)
1331 break;
1332 if (c) /* at start of buffer */
1333 {
1334 pos.lnum = 0; /* allow lnum == 0 here */
1335 pos.col = MAXCOL;
1336 }
1337 }
1338 else
1339 {
1340 for (c = spats[0].off.off; c; ++c)
1341 if (incl(&pos) == -1)
1342 break;
1343 if (c) /* at end of buffer */
1344 {
1345 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1346 pos.col = 0;
1347 }
1348 }
1349 }
1350
1351#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
1352 if (p_altkeymap && curwin->w_p_rl)
1353 lrFswap(searchstr,0);
1354#endif
1355
1356 c = searchit(curwin, curbuf, &pos, dirc == '/' ? FORWARD : BACKWARD,
1357 searchstr, count, spats[0].off.end + (options &
1358 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1359 + SEARCH_MSG + SEARCH_START
1360 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001361 RE_LAST, (linenr_T)0, tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362
1363 if (dircp != NULL)
1364 *dircp = dirc; /* restore second '/' or '?' for normal_cmd() */
1365 if (c == FAIL)
1366 {
1367 retval = 0;
1368 goto end_do_search;
1369 }
1370 if (spats[0].off.end && oap != NULL)
1371 oap->inclusive = TRUE; /* 'e' includes last character */
1372
1373 retval = 1; /* pattern found */
1374
1375 /*
1376 * Add character and/or line offset
1377 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001378 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 {
1380 if (spats[0].off.line) /* Add the offset to the line number. */
1381 {
1382 c = pos.lnum + spats[0].off.off;
1383 if (c < 1)
1384 pos.lnum = 1;
1385 else if (c > curbuf->b_ml.ml_line_count)
1386 pos.lnum = curbuf->b_ml.ml_line_count;
1387 else
1388 pos.lnum = c;
1389 pos.col = 0;
1390
1391 retval = 2; /* pattern found, line offset added */
1392 }
Bram Moolenaared203462004-06-16 11:19:22 +00001393 else if (pos.col < MAXCOL - 2) /* just in case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 {
1395 /* to the right, check for end of file */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001396 c = spats[0].off.off;
1397 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001399 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 if (incl(&pos) == -1)
1401 break;
1402 }
1403 /* to the left, check for start of file */
1404 else
1405 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001406 while (c++ < 0)
1407 if (decl(&pos) == -1)
1408 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 }
1410 }
1411 }
1412
1413 /*
1414 * The search command can be followed by a ';' to do another search.
1415 * For example: "/pat/;/foo/+3;?bar"
1416 * This is like doing another search command, except:
1417 * - The remembered direction '/' or '?' is from the first search.
1418 * - When an error happens the cursor isn't moved at all.
1419 * Don't do this when called by get_address() (it handles ';' itself).
1420 */
1421 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1422 break;
1423
1424 dirc = *++pat;
1425 if (dirc != '?' && dirc != '/')
1426 {
1427 retval = 0;
1428 EMSG(_("E386: Expected '?' or '/' after ';'"));
1429 goto end_do_search;
1430 }
1431 ++pat;
1432 }
1433
1434 if (options & SEARCH_MARK)
1435 setpcmark();
1436 curwin->w_cursor = pos;
1437 curwin->w_set_curswant = TRUE;
1438
1439end_do_search:
Bram Moolenaarac8400d2014-01-14 21:31:34 +01001440 if ((options & SEARCH_KEEP) || cmdmod.keeppatterns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 spats[0].off = old_off;
1442 vim_free(strcopy);
1443
1444 return retval;
1445}
1446
1447#if defined(FEAT_INS_EXPAND) || defined(PROTO)
1448/*
1449 * search_for_exact_line(buf, pos, dir, pat)
1450 *
1451 * Search for a line starting with the given pattern (ignoring leading
1452 * white-space), starting from pos and going in direction dir. pos will
1453 * contain the position of the match found. Blank lines match only if
1454 * ADDING is set. if p_ic is set then the pattern must be in lowercase.
1455 * Return OK for success, or FAIL if no line found.
1456 */
1457 int
1458search_for_exact_line(buf, pos, dir, pat)
1459 buf_T *buf;
1460 pos_T *pos;
1461 int dir;
1462 char_u *pat;
1463{
1464 linenr_T start = 0;
1465 char_u *ptr;
1466 char_u *p;
1467
1468 if (buf->b_ml.ml_line_count == 0)
1469 return FAIL;
1470 for (;;)
1471 {
1472 pos->lnum += dir;
1473 if (pos->lnum < 1)
1474 {
1475 if (p_ws)
1476 {
1477 pos->lnum = buf->b_ml.ml_line_count;
1478 if (!shortmess(SHM_SEARCH))
1479 give_warning((char_u *)_(top_bot_msg), TRUE);
1480 }
1481 else
1482 {
1483 pos->lnum = 1;
1484 break;
1485 }
1486 }
1487 else if (pos->lnum > buf->b_ml.ml_line_count)
1488 {
1489 if (p_ws)
1490 {
1491 pos->lnum = 1;
1492 if (!shortmess(SHM_SEARCH))
1493 give_warning((char_u *)_(bot_top_msg), TRUE);
1494 }
1495 else
1496 {
1497 pos->lnum = 1;
1498 break;
1499 }
1500 }
1501 if (pos->lnum == start)
1502 break;
1503 if (start == 0)
1504 start = pos->lnum;
1505 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1506 p = skipwhite(ptr);
1507 pos->col = (colnr_T) (p - ptr);
1508
1509 /* when adding lines the matching line may be empty but it is not
1510 * ignored because we are interested in the next line -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001511 if ((compl_cont_status & CONT_ADDING)
1512 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 {
1514 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1515 return OK;
1516 }
1517 else if (*p != NUL) /* ignore empty lines */
1518 { /* expanding lines or words */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001519 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1520 : STRNCMP(p, pat, compl_length)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 return OK;
1522 }
1523 }
1524 return FAIL;
1525}
1526#endif /* FEAT_INS_EXPAND */
1527
1528/*
1529 * Character Searches
1530 */
1531
1532/*
1533 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1534 * position of the character, otherwise move to just before the char.
1535 * Do this "cap->count1" times.
1536 * Return FAIL or OK.
1537 */
1538 int
1539searchc(cap, t_cmd)
1540 cmdarg_T *cap;
1541 int t_cmd;
1542{
1543 int c = cap->nchar; /* char to search for */
1544 int dir = cap->arg; /* TRUE for searching forward */
1545 long count = cap->count1; /* repeat count */
1546 static int lastc = NUL; /* last character searched for */
1547 static int lastcdir; /* last direction of character search */
1548 static int last_t_cmd; /* last search t_cmd */
1549 int col;
1550 char_u *p;
1551 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001552 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553#ifdef FEAT_MBYTE
Bram Moolenaar81340392012-06-06 16:12:59 +02001554 static char_u bytes[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 static int bytelen = 1; /* >1 for multi-byte char */
1556#endif
1557
1558 if (c != NUL) /* normal search: remember args for repeat */
1559 {
1560 if (!KeyStuffed) /* don't remember when redoing */
1561 {
1562 lastc = c;
1563 lastcdir = dir;
1564 last_t_cmd = t_cmd;
1565#ifdef FEAT_MBYTE
1566 bytelen = (*mb_char2bytes)(c, bytes);
1567 if (cap->ncharC1 != 0)
1568 {
1569 bytelen += (*mb_char2bytes)(cap->ncharC1, bytes + bytelen);
1570 if (cap->ncharC2 != 0)
1571 bytelen += (*mb_char2bytes)(cap->ncharC2, bytes + bytelen);
1572 }
1573#endif
1574 }
1575 }
1576 else /* repeat previous search */
1577 {
1578 if (lastc == NUL)
1579 return FAIL;
1580 if (dir) /* repeat in opposite direction */
1581 dir = -lastcdir;
1582 else
1583 dir = lastcdir;
1584 t_cmd = last_t_cmd;
1585 c = lastc;
1586 /* For multi-byte re-use last bytes[] and bytelen. */
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001587
1588 /* Force a move of at least one char, so ";" and "," will move the
1589 * cursor, even if the cursor is right in front of char we are looking
1590 * at. */
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001591 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001592 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 }
1594
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001595 if (dir == BACKWARD)
1596 cap->oap->inclusive = FALSE;
1597 else
1598 cap->oap->inclusive = TRUE;
1599
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 p = ml_get_curline();
1601 col = curwin->w_cursor.col;
1602 len = (int)STRLEN(p);
1603
1604 while (count--)
1605 {
1606#ifdef FEAT_MBYTE
1607 if (has_mbyte)
1608 {
1609 for (;;)
1610 {
1611 if (dir > 0)
1612 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001613 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 if (col >= len)
1615 return FAIL;
1616 }
1617 else
1618 {
1619 if (col == 0)
1620 return FAIL;
1621 col -= (*mb_head_off)(p, p + col - 1) + 1;
1622 }
1623 if (bytelen == 1)
1624 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001625 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626 break;
1627 }
1628 else
1629 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001630 if (vim_memcmp(p + col, bytes, bytelen) == 0 && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 break;
1632 }
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001633 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 }
1635 }
1636 else
1637#endif
1638 {
1639 for (;;)
1640 {
1641 if ((col += dir) < 0 || col >= len)
1642 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001643 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001645 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 }
1647 }
1648 }
1649
1650 if (t_cmd)
1651 {
1652 /* backup to before the character (possibly double-byte) */
1653 col -= dir;
1654#ifdef FEAT_MBYTE
1655 if (has_mbyte)
1656 {
1657 if (dir < 0)
1658 /* Landed on the search char which is bytelen long */
1659 col += bytelen - 1;
1660 else
1661 /* To previous char, which may be multi-byte. */
1662 col -= (*mb_head_off)(p, p + col);
1663 }
1664#endif
1665 }
1666 curwin->w_cursor.col = col;
1667
1668 return OK;
1669}
1670
1671/*
1672 * "Other" Searches
1673 */
1674
1675/*
1676 * findmatch - find the matching paren or brace
1677 *
1678 * Improvement over vi: Braces inside quotes are ignored.
1679 */
1680 pos_T *
1681findmatch(oap, initc)
1682 oparg_T *oap;
1683 int initc;
1684{
1685 return findmatchlimit(oap, initc, 0, 0);
1686}
1687
1688/*
1689 * Return TRUE if the character before "linep[col]" equals "ch".
1690 * Return FALSE if "col" is zero.
1691 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1692 * is NULL.
1693 * Handles multibyte string correctly.
1694 */
1695 static int
1696check_prevcol(linep, col, ch, prevcol)
1697 char_u *linep;
1698 int col;
1699 int ch;
1700 int *prevcol;
1701{
1702 --col;
1703#ifdef FEAT_MBYTE
1704 if (col > 0 && has_mbyte)
1705 col -= (*mb_head_off)(linep, linep + col);
1706#endif
1707 if (prevcol)
1708 *prevcol = col;
1709 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1710}
1711
1712/*
1713 * findmatchlimit -- find the matching paren or brace, if it exists within
1714 * maxtravel lines of here. A maxtravel of 0 means search until falling off
1715 * the edge of the file.
1716 *
1717 * "initc" is the character to find a match for. NUL means to find the
1718 * character at or after the cursor.
1719 *
1720 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
1721 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
1722 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
1723 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001724 *
1725 * "oap" is only used to set oap->motion_type for a linewise motion, it be
1726 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 */
1728
1729 pos_T *
1730findmatchlimit(oap, initc, flags, maxtravel)
1731 oparg_T *oap;
1732 int initc;
1733 int flags;
1734 int maxtravel;
1735{
1736 static pos_T pos; /* current search position */
1737 int findc = 0; /* matching brace */
1738 int c;
1739 int count = 0; /* cumulative number of braces */
1740 int backwards = FALSE; /* init for gcc */
1741 int inquote = FALSE; /* TRUE when inside quotes */
1742 char_u *linep; /* pointer to current line */
1743 char_u *ptr;
1744 int do_quotes; /* check for quotes in current line */
1745 int at_start; /* do_quotes value at start position */
1746 int hash_dir = 0; /* Direction searched for # things */
1747 int comment_dir = 0; /* Direction searched for comments */
1748 pos_T match_pos; /* Where last slash-star was found */
1749 int start_in_quotes; /* start position is in quotes */
1750 int traveled = 0; /* how far we've searched so far */
1751 int ignore_cend = FALSE; /* ignore comment end */
1752 int cpo_match; /* vi compatible matching */
1753 int cpo_bsl; /* don't recognize backslashes */
1754 int match_escaped = 0; /* search for escaped match */
1755 int dir; /* Direction to search */
1756 int comment_col = MAXCOL; /* start of / / comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001757#ifdef FEAT_LISP
1758 int lispcomm = FALSE; /* inside of Lisp-style comment */
1759 int lisp = curbuf->b_p_lisp; /* engage Lisp-specific hacks ;) */
1760#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761
1762 pos = curwin->w_cursor;
Bram Moolenaarc56c4592013-08-14 17:45:29 +02001763#ifdef FEAT_VIRTUALEDIT
1764 pos.coladd = 0;
1765#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766 linep = ml_get(pos.lnum);
1767
1768 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
1769 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
1770
1771 /* Direction to search when initc is '/', '*' or '#' */
1772 if (flags & FM_BACKWARD)
1773 dir = BACKWARD;
1774 else if (flags & FM_FORWARD)
1775 dir = FORWARD;
1776 else
1777 dir = 0;
1778
1779 /*
1780 * if initc given, look in the table for the matching character
1781 * '/' and '*' are special cases: look for start or end of comment.
1782 * When '/' is used, we ignore running backwards into an star-slash, for
1783 * "[*" command, we just want to find any comment.
1784 */
1785 if (initc == '/' || initc == '*')
1786 {
1787 comment_dir = dir;
1788 if (initc == '/')
1789 ignore_cend = TRUE;
1790 backwards = (dir == FORWARD) ? FALSE : TRUE;
1791 initc = NUL;
1792 }
1793 else if (initc != '#' && initc != NUL)
1794 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001795 find_mps_values(&initc, &findc, &backwards, TRUE);
1796 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 return NULL;
1798 }
1799 /*
1800 * Either initc is '#', or no initc was given and we need to look under the
1801 * cursor.
1802 */
1803 else
1804 {
1805 if (initc == '#')
1806 {
1807 hash_dir = dir;
1808 }
1809 else
1810 {
1811 /*
1812 * initc was not given, must look for something to match under
1813 * or near the cursor.
1814 * Only check for special things when 'cpo' doesn't have '%'.
1815 */
1816 if (!cpo_match)
1817 {
1818 /* Are we before or at #if, #else etc.? */
1819 ptr = skipwhite(linep);
1820 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
1821 {
1822 ptr = skipwhite(ptr + 1);
1823 if ( STRNCMP(ptr, "if", 2) == 0
1824 || STRNCMP(ptr, "endif", 5) == 0
1825 || STRNCMP(ptr, "el", 2) == 0)
1826 hash_dir = 1;
1827 }
1828
1829 /* Are we on a comment? */
1830 else if (linep[pos.col] == '/')
1831 {
1832 if (linep[pos.col + 1] == '*')
1833 {
1834 comment_dir = FORWARD;
1835 backwards = FALSE;
1836 pos.col++;
1837 }
1838 else if (pos.col > 0 && linep[pos.col - 1] == '*')
1839 {
1840 comment_dir = BACKWARD;
1841 backwards = TRUE;
1842 pos.col--;
1843 }
1844 }
1845 else if (linep[pos.col] == '*')
1846 {
1847 if (linep[pos.col + 1] == '/')
1848 {
1849 comment_dir = BACKWARD;
1850 backwards = TRUE;
1851 }
1852 else if (pos.col > 0 && linep[pos.col - 1] == '/')
1853 {
1854 comment_dir = FORWARD;
1855 backwards = FALSE;
1856 }
1857 }
1858 }
1859
1860 /*
1861 * If we are not on a comment or the # at the start of a line, then
1862 * look for brace anywhere on this line after the cursor.
1863 */
1864 if (!hash_dir && !comment_dir)
1865 {
1866 /*
1867 * Find the brace under or after the cursor.
1868 * If beyond the end of the line, use the last character in
1869 * the line.
1870 */
1871 if (linep[pos.col] == NUL && pos.col)
1872 --pos.col;
1873 for (;;)
1874 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001875 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 if (initc == NUL)
1877 break;
1878
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001879 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 if (findc)
1881 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001882 pos.col += MB_PTR2LEN(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 }
1884 if (!findc)
1885 {
1886 /* no brace in the line, maybe use " #if" then */
1887 if (!cpo_match && *skipwhite(linep) == '#')
1888 hash_dir = 1;
1889 else
1890 return NULL;
1891 }
1892 else if (!cpo_bsl)
1893 {
1894 int col, bslcnt = 0;
1895
1896 /* Set "match_escaped" if there are an odd number of
1897 * backslashes. */
1898 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
1899 bslcnt++;
1900 match_escaped = (bslcnt & 1);
1901 }
1902 }
1903 }
1904 if (hash_dir)
1905 {
1906 /*
1907 * Look for matching #if, #else, #elif, or #endif
1908 */
1909 if (oap != NULL)
1910 oap->motion_type = MLINE; /* Linewise for this case only */
1911 if (initc != '#')
1912 {
1913 ptr = skipwhite(skipwhite(linep) + 1);
1914 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
1915 hash_dir = 1;
1916 else if (STRNCMP(ptr, "endif", 5) == 0)
1917 hash_dir = -1;
1918 else
1919 return NULL;
1920 }
1921 pos.col = 0;
1922 while (!got_int)
1923 {
1924 if (hash_dir > 0)
1925 {
1926 if (pos.lnum == curbuf->b_ml.ml_line_count)
1927 break;
1928 }
1929 else if (pos.lnum == 1)
1930 break;
1931 pos.lnum += hash_dir;
1932 linep = ml_get(pos.lnum);
1933 line_breakcheck(); /* check for CTRL-C typed */
1934 ptr = skipwhite(linep);
1935 if (*ptr != '#')
1936 continue;
1937 pos.col = (colnr_T) (ptr - linep);
1938 ptr = skipwhite(ptr + 1);
1939 if (hash_dir > 0)
1940 {
1941 if (STRNCMP(ptr, "if", 2) == 0)
1942 count++;
1943 else if (STRNCMP(ptr, "el", 2) == 0)
1944 {
1945 if (count == 0)
1946 return &pos;
1947 }
1948 else if (STRNCMP(ptr, "endif", 5) == 0)
1949 {
1950 if (count == 0)
1951 return &pos;
1952 count--;
1953 }
1954 }
1955 else
1956 {
1957 if (STRNCMP(ptr, "if", 2) == 0)
1958 {
1959 if (count == 0)
1960 return &pos;
1961 count--;
1962 }
1963 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
1964 {
1965 if (count == 0)
1966 return &pos;
1967 }
1968 else if (STRNCMP(ptr, "endif", 5) == 0)
1969 count++;
1970 }
1971 }
1972 return NULL;
1973 }
1974 }
1975
1976#ifdef FEAT_RIGHTLEFT
Bram Moolenaarabc97732007-08-08 20:49:37 +00001977 /* This is just guessing: when 'rightleft' is set, search for a matching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 * paren/brace in the other direction. */
1979 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
1980 backwards = !backwards;
1981#endif
1982
1983 do_quotes = -1;
1984 start_in_quotes = MAYBE;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001985 clearpos(&match_pos);
1986
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 /* backward search: Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001988 if ((backwards && comment_dir)
1989#ifdef FEAT_LISP
1990 || lisp
1991#endif
1992 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001994#ifdef FEAT_LISP
1995 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
1996 lispcomm = TRUE; /* find match inside this comment */
1997#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 while (!got_int)
1999 {
2000 /*
2001 * Go to the next position, forward or backward. We could use
2002 * inc() and dec() here, but that is much slower
2003 */
2004 if (backwards)
2005 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002006#ifdef FEAT_LISP
2007 /* char to match is inside of comment, don't search outside */
2008 if (lispcomm && pos.col < (colnr_T)comment_col)
2009 break;
2010#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 if (pos.col == 0) /* at start of line, go to prev. one */
2012 {
2013 if (pos.lnum == 1) /* start of file */
2014 break;
2015 --pos.lnum;
2016
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002017 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 break;
2019
2020 linep = ml_get(pos.lnum);
2021 pos.col = (colnr_T)STRLEN(linep); /* pos.col on trailing NUL */
2022 do_quotes = -1;
2023 line_breakcheck();
2024
2025 /* Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002026 if (comment_dir
2027#ifdef FEAT_LISP
2028 || lisp
2029#endif
2030 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002032#ifdef FEAT_LISP
2033 /* skip comment */
2034 if (lisp && comment_col != MAXCOL)
2035 pos.col = comment_col;
2036#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 }
2038 else
2039 {
2040 --pos.col;
2041#ifdef FEAT_MBYTE
2042 if (has_mbyte)
2043 pos.col -= (*mb_head_off)(linep, linep + pos.col);
2044#endif
2045 }
2046 }
2047 else /* forward search */
2048 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002049 if (linep[pos.col] == NUL
2050 /* at end of line, go to next one */
2051#ifdef FEAT_LISP
2052 /* don't search for match in comment */
2053 || (lisp && comment_col != MAXCOL
2054 && pos.col == (colnr_T)comment_col)
2055#endif
2056 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002058 if (pos.lnum == curbuf->b_ml.ml_line_count /* end of file */
2059#ifdef FEAT_LISP
2060 /* line is exhausted and comment with it,
2061 * don't search for match in code */
2062 || lispcomm
2063#endif
2064 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 break;
2066 ++pos.lnum;
2067
2068 if (maxtravel && traveled++ > maxtravel)
2069 break;
2070
2071 linep = ml_get(pos.lnum);
2072 pos.col = 0;
2073 do_quotes = -1;
2074 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002075#ifdef FEAT_LISP
2076 if (lisp) /* find comment pos in new line */
2077 comment_col = check_linecomment(linep);
2078#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 }
2080 else
2081 {
2082#ifdef FEAT_MBYTE
2083 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002084 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 else
2086#endif
2087 ++pos.col;
2088 }
2089 }
2090
2091 /*
2092 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2093 */
2094 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2095 (linep[0] == '{' || linep[0] == '}'))
2096 {
2097 if (linep[0] == findc && count == 0) /* match! */
2098 return &pos;
2099 break; /* out of scope */
2100 }
2101
2102 if (comment_dir)
2103 {
2104 /* Note: comments do not nest, and we ignore quotes in them */
2105 /* TODO: ignore comment brackets inside strings */
2106 if (comment_dir == FORWARD)
2107 {
2108 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2109 {
2110 pos.col++;
2111 return &pos;
2112 }
2113 }
2114 else /* Searching backwards */
2115 {
2116 /*
2117 * A comment may contain / * or / /, it may also start or end
2118 * with / * /. Ignore a / * after / /.
2119 */
2120 if (pos.col == 0)
2121 continue;
2122 else if ( linep[pos.col - 1] == '/'
2123 && linep[pos.col] == '*'
2124 && (int)pos.col < comment_col)
2125 {
2126 count++;
2127 match_pos = pos;
2128 match_pos.col--;
2129 }
2130 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2131 {
2132 if (count > 0)
2133 pos = match_pos;
2134 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2135 && (int)pos.col <= comment_col)
2136 pos.col -= 2;
2137 else if (ignore_cend)
2138 continue;
2139 else
2140 return NULL;
2141 return &pos;
2142 }
2143 }
2144 continue;
2145 }
2146
2147 /*
2148 * If smart matching ('cpoptions' does not contain '%'), braces inside
2149 * of quotes are ignored, but only if there is an even number of
2150 * quotes in the line.
2151 */
2152 if (cpo_match)
2153 do_quotes = 0;
2154 else if (do_quotes == -1)
2155 {
2156 /*
2157 * Count the number of quotes in the line, skipping \" and '"'.
2158 * Watch out for "\\".
2159 */
2160 at_start = do_quotes;
2161 for (ptr = linep; *ptr; ++ptr)
2162 {
2163 if (ptr == linep + pos.col + backwards)
2164 at_start = (do_quotes & 1);
2165 if (*ptr == '"'
2166 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2167 ++do_quotes;
2168 if (*ptr == '\\' && ptr[1] != NUL)
2169 ++ptr;
2170 }
2171 do_quotes &= 1; /* result is 1 with even number of quotes */
2172
2173 /*
2174 * If we find an uneven count, check current line and previous
2175 * one for a '\' at the end.
2176 */
2177 if (!do_quotes)
2178 {
2179 inquote = FALSE;
2180 if (ptr[-1] == '\\')
2181 {
2182 do_quotes = 1;
2183 if (start_in_quotes == MAYBE)
2184 {
2185 /* Do we need to use at_start here? */
2186 inquote = TRUE;
2187 start_in_quotes = TRUE;
2188 }
2189 else if (backwards)
2190 inquote = TRUE;
2191 }
2192 if (pos.lnum > 1)
2193 {
2194 ptr = ml_get(pos.lnum - 1);
2195 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2196 {
2197 do_quotes = 1;
2198 if (start_in_quotes == MAYBE)
2199 {
2200 inquote = at_start;
2201 if (inquote)
2202 start_in_quotes = TRUE;
2203 }
2204 else if (!backwards)
2205 inquote = TRUE;
2206 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002207
2208 /* ml_get() only keeps one line, need to get linep again */
2209 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 }
2211 }
2212 }
2213 if (start_in_quotes == MAYBE)
2214 start_in_quotes = FALSE;
2215
2216 /*
2217 * If 'smartmatch' is set:
2218 * Things inside quotes are ignored by setting 'inquote'. If we
2219 * find a quote without a preceding '\' invert 'inquote'. At the
2220 * end of a line not ending in '\' we reset 'inquote'.
2221 *
2222 * In lines with an uneven number of quotes (without preceding '\')
2223 * we do not know which part to ignore. Therefore we only set
2224 * inquote if the number of quotes in a line is even, unless this
2225 * line or the previous one ends in a '\'. Complicated, isn't it?
2226 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002227 c = PTR2CHAR(linep + pos.col);
2228 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 {
2230 case NUL:
2231 /* at end of line without trailing backslash, reset inquote */
2232 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2233 {
2234 inquote = FALSE;
2235 start_in_quotes = FALSE;
2236 }
2237 break;
2238
2239 case '"':
2240 /* a quote that is preceded with an odd number of backslashes is
2241 * ignored */
2242 if (do_quotes)
2243 {
2244 int col;
2245
2246 for (col = pos.col - 1; col >= 0; --col)
2247 if (linep[col] != '\\')
2248 break;
2249 if ((((int)pos.col - 1 - col) & 1) == 0)
2250 {
2251 inquote = !inquote;
2252 start_in_quotes = FALSE;
2253 }
2254 }
2255 break;
2256
2257 /*
2258 * If smart matching ('cpoptions' does not contain '%'):
2259 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2260 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2261 * skipped, there is never a brace in them.
2262 * Ignore this when finding matches for `'.
2263 */
2264 case '\'':
2265 if (!cpo_match && initc != '\'' && findc != '\'')
2266 {
2267 if (backwards)
2268 {
2269 if (pos.col > 1)
2270 {
2271 if (linep[pos.col - 2] == '\'')
2272 {
2273 pos.col -= 2;
2274 break;
2275 }
2276 else if (linep[pos.col - 2] == '\\' &&
2277 pos.col > 2 && linep[pos.col - 3] == '\'')
2278 {
2279 pos.col -= 3;
2280 break;
2281 }
2282 }
2283 }
2284 else if (linep[pos.col + 1]) /* forward search */
2285 {
2286 if (linep[pos.col + 1] == '\\' &&
2287 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2288 {
2289 pos.col += 3;
2290 break;
2291 }
2292 else if (linep[pos.col + 2] == '\'')
2293 {
2294 pos.col += 2;
2295 break;
2296 }
2297 }
2298 }
2299 /* FALLTHROUGH */
2300
2301 default:
2302#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002303 /*
2304 * For Lisp skip over backslashed (), {} and [].
2305 * (actually, we skip #\( et al)
2306 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 if (curbuf->b_p_lisp
2308 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002309 && pos.col > 1
2310 && check_prevcol(linep, pos.col, '\\', NULL)
2311 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 break;
2313#endif
2314
2315 /* Check for match outside of quotes, and inside of
2316 * quotes when the start is also inside of quotes. */
2317 if ((!inquote || start_in_quotes == TRUE)
2318 && (c == initc || c == findc))
2319 {
2320 int col, bslcnt = 0;
2321
2322 if (!cpo_bsl)
2323 {
2324 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2325 bslcnt++;
2326 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00002327 /* Only accept a match when 'M' is in 'cpo' or when escaping
2328 * is what we expect. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2330 {
2331 if (c == initc)
2332 count++;
2333 else
2334 {
2335 if (count == 0)
2336 return &pos;
2337 count--;
2338 }
2339 }
2340 }
2341 }
2342 }
2343
2344 if (comment_dir == BACKWARD && count > 0)
2345 {
2346 pos = match_pos;
2347 return &pos;
2348 }
2349 return (pos_T *)NULL; /* never found it */
2350}
2351
2352/*
2353 * Check if line[] contains a / / comment.
2354 * Return MAXCOL if not, otherwise return the column.
2355 * TODO: skip strings.
2356 */
2357 static int
2358check_linecomment(line)
2359 char_u *line;
2360{
2361 char_u *p;
2362
2363 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002364#ifdef FEAT_LISP
2365 /* skip Lispish one-line comments */
2366 if (curbuf->b_p_lisp)
2367 {
2368 if (vim_strchr(p, ';') != NULL) /* there may be comments */
2369 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002370 int in_str = FALSE; /* inside of string */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002371
2372 p = line; /* scan from start */
Bram Moolenaar520470a2005-06-16 21:59:56 +00002373 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002374 {
2375 if (*p == '"')
2376 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002377 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002378 {
2379 if (*(p - 1) != '\\') /* skip escaped quote */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002380 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002381 }
2382 else if (p == line || ((p - line) >= 2
2383 /* skip #\" form */
2384 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002385 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002386 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002387 else if (!in_str && ((p - line) < 2
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002388 || (*(p - 1) != '\\' && *(p - 2) != '#')))
2389 break; /* found! */
2390 ++p;
2391 }
2392 }
2393 else
2394 p = NULL;
2395 }
2396 else
2397#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 while ((p = vim_strchr(p, '/')) != NULL)
2399 {
Bram Moolenaar78d4aba2008-01-01 14:43:35 +00002400 /* accept a double /, unless it's preceded with * and followed by *,
2401 * because * / / * is an end and start of a C comment */
2402 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 break;
2404 ++p;
2405 }
2406
2407 if (p == NULL)
2408 return MAXCOL;
2409 return (int)(p - line);
2410}
2411
2412/*
2413 * Move cursor briefly to character matching the one under the cursor.
2414 * Used for Insert mode and "r" command.
2415 * Show the match only if it is visible on the screen.
2416 * If there isn't a match, then beep.
2417 */
2418 void
2419showmatch(c)
2420 int c; /* char to show match for */
2421{
2422 pos_T *lpos, save_cursor;
2423 pos_T mpos;
2424 colnr_T vcol;
2425 long save_so;
2426 long save_siso;
2427#ifdef CURSOR_SHAPE
2428 int save_state;
2429#endif
2430 colnr_T save_dollar_vcol;
2431 char_u *p;
2432
2433 /*
2434 * Only show match for chars in the 'matchpairs' option.
2435 */
2436 /* 'matchpairs' is "x:y,x:y" */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002437 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 {
2439#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002440 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002441 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002442#endif
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002443 p += MB_PTR2LEN(p) + 1;
2444 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445#ifdef FEAT_RIGHTLEFT
2446 && !(curwin->w_p_rl ^ p_ri)
2447#endif
2448 )
2449 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002450 p += MB_PTR2LEN(p);
2451 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 return;
2453 }
2454
2455 if ((lpos = findmatch(NULL, NUL)) == NULL) /* no match, so beep */
2456 vim_beep();
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002457 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 {
2459 if (!curwin->w_p_wrap)
2460 getvcol(curwin, lpos, NULL, &vcol, NULL);
2461 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
2462 && vcol < curwin->w_leftcol + W_WIDTH(curwin)))
2463 {
2464 mpos = *lpos; /* save the pos, update_screen() may change it */
2465 save_cursor = curwin->w_cursor;
2466 save_so = p_so;
2467 save_siso = p_siso;
2468 /* Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2469 * stop displaying the "$". */
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002470 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2471 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 ++curwin->w_virtcol; /* do display ')' just before "$" */
2473 update_screen(VALID); /* show the new char first */
2474
2475 save_dollar_vcol = dollar_vcol;
2476#ifdef CURSOR_SHAPE
2477 save_state = State;
2478 State = SHOWMATCH;
2479 ui_cursor_shape(); /* may show different cursor shape */
2480#endif
2481 curwin->w_cursor = mpos; /* move to matching char */
2482 p_so = 0; /* don't use 'scrolloff' here */
2483 p_siso = 0; /* don't use 'sidescrolloff' here */
2484 showruler(FALSE);
2485 setcursor();
2486 cursor_on(); /* make sure that the cursor is shown */
2487 out_flush();
2488#ifdef FEAT_GUI
2489 if (gui.in_use)
2490 {
2491 gui_update_cursor(TRUE, FALSE);
2492 gui_mch_flush();
2493 }
2494#endif
2495 /* Restore dollar_vcol(), because setcursor() may call curs_rows()
2496 * which resets it if the matching position is in a previous line
2497 * and has a higher column number. */
2498 dollar_vcol = save_dollar_vcol;
2499
2500 /*
2501 * brief pause, unless 'm' is present in 'cpo' and a character is
2502 * available.
2503 */
2504 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
2505 ui_delay(p_mat * 100L, TRUE);
2506 else if (!char_avail())
2507 ui_delay(p_mat * 100L, FALSE);
2508 curwin->w_cursor = save_cursor; /* restore cursor position */
2509 p_so = save_so;
2510 p_siso = save_siso;
2511#ifdef CURSOR_SHAPE
2512 State = save_state;
2513 ui_cursor_shape(); /* may show different cursor shape */
2514#endif
2515 }
2516 }
2517}
2518
2519/*
2520 * findsent(dir, count) - Find the start of the next sentence in direction
Bram Moolenaarebefac62005-12-28 22:39:57 +00002521 * "dir" Sentences are supposed to end in ".", "!" or "?" followed by white
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 * space or a line break. Also stop at an empty line.
2523 * Return OK if the next sentence was found.
2524 */
2525 int
2526findsent(dir, count)
2527 int dir;
2528 long count;
2529{
2530 pos_T pos, tpos;
2531 int c;
2532 int (*func) __ARGS((pos_T *));
2533 int startlnum;
2534 int noskip = FALSE; /* do not skip blanks */
2535 int cpo_J;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002536 int found_dot;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537
2538 pos = curwin->w_cursor;
2539 if (dir == FORWARD)
2540 func = incl;
2541 else
2542 func = decl;
2543
2544 while (count--)
2545 {
2546 /*
2547 * if on an empty line, skip upto a non-empty line
2548 */
2549 if (gchar_pos(&pos) == NUL)
2550 {
2551 do
2552 if ((*func)(&pos) == -1)
2553 break;
2554 while (gchar_pos(&pos) == NUL);
2555 if (dir == FORWARD)
2556 goto found;
2557 }
2558 /*
2559 * if on the start of a paragraph or a section and searching forward,
2560 * go to the next line
2561 */
2562 else if (dir == FORWARD && pos.col == 0 &&
2563 startPS(pos.lnum, NUL, FALSE))
2564 {
2565 if (pos.lnum == curbuf->b_ml.ml_line_count)
2566 return FAIL;
2567 ++pos.lnum;
2568 goto found;
2569 }
2570 else if (dir == BACKWARD)
2571 decl(&pos);
2572
2573 /* go back to the previous non-blank char */
Bram Moolenaardef9e822004-12-31 20:58:58 +00002574 found_dot = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 while ((c = gchar_pos(&pos)) == ' ' || c == '\t' ||
2576 (dir == BACKWARD && vim_strchr((char_u *)".!?)]\"'", c) != NULL))
2577 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00002578 if (vim_strchr((char_u *)".!?", c) != NULL)
2579 {
2580 /* Only skip over a '.', '!' and '?' once. */
2581 if (found_dot)
2582 break;
2583 found_dot = TRUE;
2584 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 if (decl(&pos) == -1)
2586 break;
2587 /* when going forward: Stop in front of empty line */
2588 if (lineempty(pos.lnum) && dir == FORWARD)
2589 {
2590 incl(&pos);
2591 goto found;
2592 }
2593 }
2594
2595 /* remember the line where the search started */
2596 startlnum = pos.lnum;
2597 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL;
2598
2599 for (;;) /* find end of sentence */
2600 {
2601 c = gchar_pos(&pos);
2602 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE)))
2603 {
2604 if (dir == BACKWARD && pos.lnum != startlnum)
2605 ++pos.lnum;
2606 break;
2607 }
2608 if (c == '.' || c == '!' || c == '?')
2609 {
2610 tpos = pos;
2611 do
2612 if ((c = inc(&tpos)) == -1)
2613 break;
2614 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos))
2615 != NULL);
2616 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL
2617 || (cpo_J && (c == ' ' && inc(&tpos) >= 0
2618 && gchar_pos(&tpos) == ' ')))
2619 {
2620 pos = tpos;
2621 if (gchar_pos(&pos) == NUL) /* skip NUL at EOL */
2622 inc(&pos);
2623 break;
2624 }
2625 }
2626 if ((*func)(&pos) == -1)
2627 {
2628 if (count)
2629 return FAIL;
2630 noskip = TRUE;
2631 break;
2632 }
2633 }
2634found:
2635 /* skip white space */
2636 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t'))
2637 if (incl(&pos) == -1)
2638 break;
2639 }
2640
2641 setpcmark();
2642 curwin->w_cursor = pos;
2643 return OK;
2644}
2645
2646/*
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002647 * Find the next paragraph or section in direction 'dir'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 * Paragraphs are currently supposed to be separated by empty lines.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002649 * If 'what' is NUL we go to the next paragraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650 * If 'what' is '{' or '}' we go to the next section.
2651 * If 'both' is TRUE also stop at '}'.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002652 * Return TRUE if the next paragraph or section was found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 */
2654 int
Bram Moolenaar92d640f2005-09-05 22:11:52 +00002655findpar(pincl, dir, count, what, both)
2656 int *pincl; /* Return: TRUE if last char is to be included */
2657 int dir;
2658 long count;
2659 int what;
2660 int both;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661{
2662 linenr_T curr;
2663 int did_skip; /* TRUE after separating lines have been skipped */
2664 int first; /* TRUE on first line */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002665 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666#ifdef FEAT_FOLDING
2667 linenr_T fold_first; /* first line of a closed fold */
2668 linenr_T fold_last; /* last line of a closed fold */
2669 int fold_skipped; /* TRUE if a closed fold was skipped this
2670 iteration */
2671#endif
2672
2673 curr = curwin->w_cursor.lnum;
2674
2675 while (count--)
2676 {
2677 did_skip = FALSE;
2678 for (first = TRUE; ; first = FALSE)
2679 {
2680 if (*ml_get(curr) != NUL)
2681 did_skip = TRUE;
2682
2683#ifdef FEAT_FOLDING
2684 /* skip folded lines */
2685 fold_skipped = FALSE;
2686 if (first && hasFolding(curr, &fold_first, &fold_last))
2687 {
2688 curr = ((dir > 0) ? fold_last : fold_first) + dir;
2689 fold_skipped = TRUE;
2690 }
2691#endif
2692
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002693 /* POSIX has it's own ideas of what a paragraph boundary is and it
2694 * doesn't match historical Vi: It also stops at a "{" in the
2695 * first column and at an empty line. */
2696 if (!first && did_skip && (startPS(curr, what, both)
2697 || (posix && what == NUL && *ml_get(curr) == '{')))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 break;
2699
2700#ifdef FEAT_FOLDING
2701 if (fold_skipped)
2702 curr -= dir;
2703#endif
2704 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count)
2705 {
2706 if (count)
2707 return FALSE;
2708 curr -= dir;
2709 break;
2710 }
2711 }
2712 }
2713 setpcmark();
2714 if (both && *ml_get(curr) == '}') /* include line with '}' */
2715 ++curr;
2716 curwin->w_cursor.lnum = curr;
2717 if (curr == curbuf->b_ml.ml_line_count && what != '}')
2718 {
2719 if ((curwin->w_cursor.col = (colnr_T)STRLEN(ml_get(curr))) != 0)
2720 {
2721 --curwin->w_cursor.col;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00002722 *pincl = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 }
2724 }
2725 else
2726 curwin->w_cursor.col = 0;
2727 return TRUE;
2728}
2729
2730/*
2731 * check if the string 's' is a nroff macro that is in option 'opt'
2732 */
2733 static int
2734inmacro(opt, s)
2735 char_u *opt;
2736 char_u *s;
2737{
2738 char_u *macro;
2739
2740 for (macro = opt; macro[0]; ++macro)
2741 {
2742 /* Accept two characters in the option being equal to two characters
2743 * in the line. A space in the option matches with a space in the
2744 * line or the line having ended. */
2745 if ( (macro[0] == s[0]
2746 || (macro[0] == ' '
2747 && (s[0] == NUL || s[0] == ' ')))
2748 && (macro[1] == s[1]
2749 || ((macro[1] == NUL || macro[1] == ' ')
2750 && (s[0] == NUL || s[1] == NUL || s[1] == ' '))))
2751 break;
2752 ++macro;
2753 if (macro[0] == NUL)
2754 break;
2755 }
2756 return (macro[0] != NUL);
2757}
2758
2759/*
2760 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph.
2761 * If 'para' is '{' or '}' only check for sections.
2762 * If 'both' is TRUE also stop at '}'
2763 */
2764 int
2765startPS(lnum, para, both)
2766 linenr_T lnum;
2767 int para;
2768 int both;
2769{
2770 char_u *s;
2771
2772 s = ml_get(lnum);
2773 if (*s == para || *s == '\f' || (both && *s == '}'))
2774 return TRUE;
2775 if (*s == '.' && (inmacro(p_sections, s + 1) ||
2776 (!para && inmacro(p_para, s + 1))))
2777 return TRUE;
2778 return FALSE;
2779}
2780
2781/*
2782 * The following routines do the word searches performed by the 'w', 'W',
2783 * 'b', 'B', 'e', and 'E' commands.
2784 */
2785
2786/*
2787 * To perform these searches, characters are placed into one of three
2788 * classes, and transitions between classes determine word boundaries.
2789 *
2790 * The classes are:
2791 *
2792 * 0 - white space
2793 * 1 - punctuation
2794 * 2 or higher - keyword characters (letters, digits and underscore)
2795 */
2796
2797static int cls_bigword; /* TRUE for "W", "B" or "E" */
2798
2799/*
2800 * cls() - returns the class of character at curwin->w_cursor
2801 *
2802 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars
2803 * from class 2 and higher are reported as class 1 since only white space
2804 * boundaries are of interest.
2805 */
2806 static int
2807cls()
2808{
2809 int c;
2810
2811 c = gchar_cursor();
2812#ifdef FEAT_FKMAP /* when 'akm' (Farsi mode), take care of Farsi blank */
2813 if (p_altkeymap && c == F_BLANK)
2814 return 0;
2815#endif
2816 if (c == ' ' || c == '\t' || c == NUL)
2817 return 0;
2818#ifdef FEAT_MBYTE
2819 if (enc_dbcs != 0 && c > 0xFF)
2820 {
2821 /* If cls_bigword, report multi-byte chars as class 1. */
2822 if (enc_dbcs == DBCS_KOR && cls_bigword)
2823 return 1;
2824
2825 /* process code leading/trailing bytes */
2826 return dbcs_class(((unsigned)c >> 8), (c & 0xFF));
2827 }
2828 if (enc_utf8)
2829 {
2830 c = utf_class(c);
2831 if (c != 0 && cls_bigword)
2832 return 1;
2833 return c;
2834 }
2835#endif
2836
2837 /* If cls_bigword is TRUE, report all non-blanks as class 1. */
2838 if (cls_bigword)
2839 return 1;
2840
2841 if (vim_iswordc(c))
2842 return 2;
2843 return 1;
2844}
2845
2846
2847/*
2848 * fwd_word(count, type, eol) - move forward one word
2849 *
2850 * Returns FAIL if the cursor was already at the end of the file.
2851 * If eol is TRUE, last word stops at end of line (for operators).
2852 */
2853 int
2854fwd_word(count, bigword, eol)
2855 long count;
2856 int bigword; /* "W", "E" or "B" */
2857 int eol;
2858{
2859 int sclass; /* starting class */
2860 int i;
2861 int last_line;
2862
2863#ifdef FEAT_VIRTUALEDIT
2864 curwin->w_cursor.coladd = 0;
2865#endif
2866 cls_bigword = bigword;
2867 while (--count >= 0)
2868 {
2869#ifdef FEAT_FOLDING
2870 /* When inside a range of folded lines, move to the last char of the
2871 * last line. */
2872 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
2873 coladvance((colnr_T)MAXCOL);
2874#endif
2875 sclass = cls();
2876
2877 /*
2878 * We always move at least one character, unless on the last
2879 * character in the buffer.
2880 */
2881 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count);
2882 i = inc_cursor();
2883 if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */
2884 return FAIL;
Bram Moolenaar9a149792007-07-10 10:38:02 +00002885 if (i >= 1 && eol && count == 0) /* started at last char in line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 return OK;
2887
2888 /*
2889 * Go one char past end of current word (if any)
2890 */
2891 if (sclass != 0)
2892 while (cls() == sclass)
2893 {
2894 i = inc_cursor();
2895 if (i == -1 || (i >= 1 && eol && count == 0))
2896 return OK;
2897 }
2898
2899 /*
2900 * go to next non-white
2901 */
2902 while (cls() == 0)
2903 {
2904 /*
2905 * We'll stop if we land on a blank line
2906 */
2907 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL)
2908 break;
2909
2910 i = inc_cursor();
2911 if (i == -1 || (i >= 1 && eol && count == 0))
2912 return OK;
2913 }
2914 }
2915 return OK;
2916}
2917
2918/*
2919 * bck_word() - move backward 'count' words
2920 *
2921 * If stop is TRUE and we are already on the start of a word, move one less.
2922 *
2923 * Returns FAIL if top of the file was reached.
2924 */
2925 int
2926bck_word(count, bigword, stop)
2927 long count;
2928 int bigword;
2929 int stop;
2930{
2931 int sclass; /* starting class */
2932
2933#ifdef FEAT_VIRTUALEDIT
2934 curwin->w_cursor.coladd = 0;
2935#endif
2936 cls_bigword = bigword;
2937 while (--count >= 0)
2938 {
2939#ifdef FEAT_FOLDING
2940 /* When inside a range of folded lines, move to the first char of the
2941 * first line. */
2942 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL))
2943 curwin->w_cursor.col = 0;
2944#endif
2945 sclass = cls();
2946 if (dec_cursor() == -1) /* started at start of file */
2947 return FAIL;
2948
2949 if (!stop || sclass == cls() || sclass == 0)
2950 {
2951 /*
2952 * Skip white space before the word.
2953 * Stop on an empty line.
2954 */
2955 while (cls() == 0)
2956 {
2957 if (curwin->w_cursor.col == 0
2958 && lineempty(curwin->w_cursor.lnum))
2959 goto finished;
2960 if (dec_cursor() == -1) /* hit start of file, stop here */
2961 return OK;
2962 }
2963
2964 /*
2965 * Move backward to start of this word.
2966 */
2967 if (skip_chars(cls(), BACKWARD))
2968 return OK;
2969 }
2970
2971 inc_cursor(); /* overshot - forward one */
2972finished:
2973 stop = FALSE;
2974 }
2975 return OK;
2976}
2977
2978/*
2979 * end_word() - move to the end of the word
2980 *
2981 * There is an apparent bug in the 'e' motion of the real vi. At least on the
2982 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e'
2983 * motion crosses blank lines. When the real vi crosses a blank line in an
2984 * 'e' motion, the cursor is placed on the FIRST character of the next
2985 * non-blank line. The 'E' command, however, works correctly. Since this
2986 * appears to be a bug, I have not duplicated it here.
2987 *
2988 * Returns FAIL if end of the file was reached.
2989 *
2990 * If stop is TRUE and we are already on the end of a word, move one less.
2991 * If empty is TRUE stop on an empty line.
2992 */
2993 int
2994end_word(count, bigword, stop, empty)
2995 long count;
2996 int bigword;
2997 int stop;
2998 int empty;
2999{
3000 int sclass; /* starting class */
3001
3002#ifdef FEAT_VIRTUALEDIT
3003 curwin->w_cursor.coladd = 0;
3004#endif
3005 cls_bigword = bigword;
3006 while (--count >= 0)
3007 {
3008#ifdef FEAT_FOLDING
3009 /* When inside a range of folded lines, move to the last char of the
3010 * last line. */
3011 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3012 coladvance((colnr_T)MAXCOL);
3013#endif
3014 sclass = cls();
3015 if (inc_cursor() == -1)
3016 return FAIL;
3017
3018 /*
3019 * If we're in the middle of a word, we just have to move to the end
3020 * of it.
3021 */
3022 if (cls() == sclass && sclass != 0)
3023 {
3024 /*
3025 * Move forward to end of the current word
3026 */
3027 if (skip_chars(sclass, FORWARD))
3028 return FAIL;
3029 }
3030 else if (!stop || sclass == 0)
3031 {
3032 /*
3033 * We were at the end of a word. Go to the end of the next word.
3034 * First skip white space, if 'empty' is TRUE, stop at empty line.
3035 */
3036 while (cls() == 0)
3037 {
3038 if (empty && curwin->w_cursor.col == 0
3039 && lineempty(curwin->w_cursor.lnum))
3040 goto finished;
3041 if (inc_cursor() == -1) /* hit end of file, stop here */
3042 return FAIL;
3043 }
3044
3045 /*
3046 * Move forward to the end of this word.
3047 */
3048 if (skip_chars(cls(), FORWARD))
3049 return FAIL;
3050 }
3051 dec_cursor(); /* overshot - one char backward */
3052finished:
3053 stop = FALSE; /* we move only one word less */
3054 }
3055 return OK;
3056}
3057
3058/*
3059 * Move back to the end of the word.
3060 *
3061 * Returns FAIL if start of the file was reached.
3062 */
3063 int
3064bckend_word(count, bigword, eol)
3065 long count;
3066 int bigword; /* TRUE for "B" */
3067 int eol; /* TRUE: stop at end of line. */
3068{
3069 int sclass; /* starting class */
3070 int i;
3071
3072#ifdef FEAT_VIRTUALEDIT
3073 curwin->w_cursor.coladd = 0;
3074#endif
3075 cls_bigword = bigword;
3076 while (--count >= 0)
3077 {
3078 sclass = cls();
3079 if ((i = dec_cursor()) == -1)
3080 return FAIL;
3081 if (eol && i == 1)
3082 return OK;
3083
3084 /*
3085 * Move backward to before the start of this word.
3086 */
3087 if (sclass != 0)
3088 {
3089 while (cls() == sclass)
3090 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3091 return OK;
3092 }
3093
3094 /*
3095 * Move backward to end of the previous word
3096 */
3097 while (cls() == 0)
3098 {
3099 if (curwin->w_cursor.col == 0 && lineempty(curwin->w_cursor.lnum))
3100 break;
3101 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3102 return OK;
3103 }
3104 }
3105 return OK;
3106}
3107
3108/*
3109 * Skip a row of characters of the same class.
3110 * Return TRUE when end-of-file reached, FALSE otherwise.
3111 */
3112 static int
3113skip_chars(cclass, dir)
3114 int cclass;
3115 int dir;
3116{
3117 while (cls() == cclass)
3118 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1)
3119 return TRUE;
3120 return FALSE;
3121}
3122
3123#ifdef FEAT_TEXTOBJ
3124/*
3125 * Go back to the start of the word or the start of white space
3126 */
3127 static void
3128back_in_line()
3129{
3130 int sclass; /* starting class */
3131
3132 sclass = cls();
3133 for (;;)
3134 {
3135 if (curwin->w_cursor.col == 0) /* stop at start of line */
3136 break;
3137 dec_cursor();
3138 if (cls() != sclass) /* stop at start of word */
3139 {
3140 inc_cursor();
3141 break;
3142 }
3143 }
3144}
3145
3146 static void
3147find_first_blank(posp)
3148 pos_T *posp;
3149{
3150 int c;
3151
3152 while (decl(posp) != -1)
3153 {
3154 c = gchar_pos(posp);
3155 if (!vim_iswhite(c))
3156 {
3157 incl(posp);
3158 break;
3159 }
3160 }
3161}
3162
3163/*
3164 * Skip count/2 sentences and count/2 separating white spaces.
3165 */
3166 static void
3167findsent_forward(count, at_start_sent)
3168 long count;
3169 int at_start_sent; /* cursor is at start of sentence */
3170{
3171 while (count--)
3172 {
3173 findsent(FORWARD, 1L);
3174 if (at_start_sent)
3175 find_first_blank(&curwin->w_cursor);
3176 if (count == 0 || at_start_sent)
3177 decl(&curwin->w_cursor);
3178 at_start_sent = !at_start_sent;
3179 }
3180}
3181
3182/*
3183 * Find word under cursor, cursor at end.
3184 * Used while an operator is pending, and in Visual mode.
3185 */
3186 int
3187current_word(oap, count, include, bigword)
3188 oparg_T *oap;
3189 long count;
3190 int include; /* TRUE: include word and white space */
3191 int bigword; /* FALSE == word, TRUE == WORD */
3192{
3193 pos_T start_pos;
3194 pos_T pos;
3195 int inclusive = TRUE;
3196 int include_white = FALSE;
3197
3198 cls_bigword = bigword;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003199 clearpos(&start_pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 /* Correct cursor when 'selection' is exclusive */
3202 if (VIsual_active && *p_sel == 'e' && lt(VIsual, curwin->w_cursor))
3203 dec_cursor();
3204
3205 /*
3206 * When Visual mode is not active, or when the VIsual area is only one
3207 * character, select the word and/or white space under the cursor.
3208 */
3209 if (!VIsual_active || equalpos(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 {
3211 /*
3212 * Go to start of current word or white space.
3213 */
3214 back_in_line();
3215 start_pos = curwin->w_cursor;
3216
3217 /*
3218 * If the start is on white space, and white space should be included
3219 * (" word"), or start is not on white space, and white space should
3220 * not be included ("word"), find end of word.
3221 */
3222 if ((cls() == 0) == include)
3223 {
3224 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3225 return FAIL;
3226 }
3227 else
3228 {
3229 /*
3230 * If the start is not on white space, and white space should be
3231 * included ("word "), or start is on white space and white
3232 * space should not be included (" "), find start of word.
3233 * If we end up in the first column of the next line (single char
3234 * word) back up to end of the line.
3235 */
3236 fwd_word(1L, bigword, TRUE);
3237 if (curwin->w_cursor.col == 0)
3238 decl(&curwin->w_cursor);
3239 else
3240 oneleft();
3241
3242 if (include)
3243 include_white = TRUE;
3244 }
3245
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246 if (VIsual_active)
3247 {
3248 /* should do something when inclusive == FALSE ! */
3249 VIsual = start_pos;
3250 redraw_curbuf_later(INVERTED); /* update the inversion */
3251 }
3252 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 {
3254 oap->start = start_pos;
3255 oap->motion_type = MCHAR;
3256 }
3257 --count;
3258 }
3259
3260 /*
3261 * When count is still > 0, extend with more objects.
3262 */
3263 while (count > 0)
3264 {
3265 inclusive = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 if (VIsual_active && lt(curwin->w_cursor, VIsual))
3267 {
3268 /*
3269 * In Visual mode, with cursor at start: move cursor back.
3270 */
3271 if (decl(&curwin->w_cursor) == -1)
3272 return FAIL;
3273 if (include != (cls() != 0))
3274 {
3275 if (bck_word(1L, bigword, TRUE) == FAIL)
3276 return FAIL;
3277 }
3278 else
3279 {
3280 if (bckend_word(1L, bigword, TRUE) == FAIL)
3281 return FAIL;
3282 (void)incl(&curwin->w_cursor);
3283 }
3284 }
3285 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286 {
3287 /*
3288 * Move cursor forward one word and/or white area.
3289 */
3290 if (incl(&curwin->w_cursor) == -1)
3291 return FAIL;
3292 if (include != (cls() == 0))
3293 {
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003294 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 return FAIL;
3296 /*
3297 * If end is just past a new-line, we don't want to include
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003298 * the first character on the line.
3299 * Put cursor on last char of white.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 */
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003301 if (oneleft() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302 inclusive = FALSE;
3303 }
3304 else
3305 {
3306 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3307 return FAIL;
3308 }
3309 }
3310 --count;
3311 }
3312
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003313 if (include_white && (cls() != 0
3314 || (curwin->w_cursor.col == 0 && !inclusive)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 {
3316 /*
3317 * If we don't include white space at the end, move the start
3318 * to include some white space there. This makes "daw" work
3319 * better on the last word in a sentence (and "2daw" on last-but-one
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003320 * word). Also when "2daw" deletes "word." at the end of the line
3321 * (cursor is at start of next line).
3322 * But don't delete white space at start of line (indent).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 */
3324 pos = curwin->w_cursor; /* save cursor position */
3325 curwin->w_cursor = start_pos;
3326 if (oneleft() == OK)
3327 {
3328 back_in_line();
3329 if (cls() == 0 && curwin->w_cursor.col > 0)
3330 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 if (VIsual_active)
3332 VIsual = curwin->w_cursor;
3333 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334 oap->start = curwin->w_cursor;
3335 }
3336 }
3337 curwin->w_cursor = pos; /* put cursor back at end */
3338 }
3339
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 if (VIsual_active)
3341 {
3342 if (*p_sel == 'e' && inclusive && ltoreq(VIsual, curwin->w_cursor))
3343 inc_cursor();
3344 if (VIsual_mode == 'V')
3345 {
3346 VIsual_mode = 'v';
3347 redraw_cmdline = TRUE; /* show mode later */
3348 }
3349 }
3350 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 oap->inclusive = inclusive;
3352
3353 return OK;
3354}
3355
3356/*
3357 * Find sentence(s) under the cursor, cursor at end.
3358 * When Visual active, extend it by one or more sentences.
3359 */
3360 int
3361current_sent(oap, count, include)
3362 oparg_T *oap;
3363 long count;
3364 int include;
3365{
3366 pos_T start_pos;
3367 pos_T pos;
3368 int start_blank;
3369 int c;
3370 int at_start_sent;
3371 long ncount;
3372
3373 start_pos = curwin->w_cursor;
3374 pos = start_pos;
3375 findsent(FORWARD, 1L); /* Find start of next sentence. */
3376
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003378 * When the Visual area is bigger than one character: Extend it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 */
3380 if (VIsual_active && !equalpos(start_pos, VIsual))
3381 {
3382extend:
3383 if (lt(start_pos, VIsual))
3384 {
3385 /*
3386 * Cursor at start of Visual area.
3387 * Find out where we are:
3388 * - in the white space before a sentence
3389 * - in a sentence or just after it
3390 * - at the start of a sentence
3391 */
3392 at_start_sent = TRUE;
3393 decl(&pos);
3394 while (lt(pos, curwin->w_cursor))
3395 {
3396 c = gchar_pos(&pos);
3397 if (!vim_iswhite(c))
3398 {
3399 at_start_sent = FALSE;
3400 break;
3401 }
3402 incl(&pos);
3403 }
3404 if (!at_start_sent)
3405 {
3406 findsent(BACKWARD, 1L);
3407 if (equalpos(curwin->w_cursor, start_pos))
3408 at_start_sent = TRUE; /* exactly at start of sentence */
3409 else
3410 /* inside a sentence, go to its end (start of next) */
3411 findsent(FORWARD, 1L);
3412 }
3413 if (include) /* "as" gets twice as much as "is" */
3414 count *= 2;
3415 while (count--)
3416 {
3417 if (at_start_sent)
3418 find_first_blank(&curwin->w_cursor);
3419 c = gchar_cursor();
3420 if (!at_start_sent || (!include && !vim_iswhite(c)))
3421 findsent(BACKWARD, 1L);
3422 at_start_sent = !at_start_sent;
3423 }
3424 }
3425 else
3426 {
3427 /*
3428 * Cursor at end of Visual area.
3429 * Find out where we are:
3430 * - just before a sentence
3431 * - just before or in the white space before a sentence
3432 * - in a sentence
3433 */
3434 incl(&pos);
3435 at_start_sent = TRUE;
3436 if (!equalpos(pos, curwin->w_cursor)) /* not just before a sentence */
3437 {
3438 at_start_sent = FALSE;
3439 while (lt(pos, curwin->w_cursor))
3440 {
3441 c = gchar_pos(&pos);
3442 if (!vim_iswhite(c))
3443 {
3444 at_start_sent = TRUE;
3445 break;
3446 }
3447 incl(&pos);
3448 }
3449 if (at_start_sent) /* in the sentence */
3450 findsent(BACKWARD, 1L);
3451 else /* in/before white before a sentence */
3452 curwin->w_cursor = start_pos;
3453 }
3454
3455 if (include) /* "as" gets twice as much as "is" */
3456 count *= 2;
3457 findsent_forward(count, at_start_sent);
3458 if (*p_sel == 'e')
3459 ++curwin->w_cursor.col;
3460 }
3461 return OK;
3462 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463
3464 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003465 * If the cursor started on a blank, check if it is just before the start
3466 * of the next sentence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467 */
3468 while (c = gchar_pos(&pos), vim_iswhite(c)) /* vim_iswhite() is a macro */
3469 incl(&pos);
3470 if (equalpos(pos, curwin->w_cursor))
3471 {
3472 start_blank = TRUE;
3473 find_first_blank(&start_pos); /* go back to first blank */
3474 }
3475 else
3476 {
3477 start_blank = FALSE;
3478 findsent(BACKWARD, 1L);
3479 start_pos = curwin->w_cursor;
3480 }
3481 if (include)
3482 ncount = count * 2;
3483 else
3484 {
3485 ncount = count;
3486 if (start_blank)
3487 --ncount;
3488 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00003489 if (ncount > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 findsent_forward(ncount, TRUE);
3491 else
3492 decl(&curwin->w_cursor);
3493
3494 if (include)
3495 {
3496 /*
3497 * If the blank in front of the sentence is included, exclude the
3498 * blanks at the end of the sentence, go back to the first blank.
3499 * If there are no trailing blanks, try to include leading blanks.
3500 */
3501 if (start_blank)
3502 {
3503 find_first_blank(&curwin->w_cursor);
3504 c = gchar_pos(&curwin->w_cursor); /* vim_iswhite() is a macro */
3505 if (vim_iswhite(c))
3506 decl(&curwin->w_cursor);
3507 }
3508 else if (c = gchar_cursor(), !vim_iswhite(c))
3509 find_first_blank(&start_pos);
3510 }
3511
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 if (VIsual_active)
3513 {
Bram Moolenaar641e2862012-07-25 15:06:34 +02003514 /* Avoid getting stuck with "is" on a single space before a sentence. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515 if (equalpos(start_pos, curwin->w_cursor))
3516 goto extend;
3517 if (*p_sel == 'e')
3518 ++curwin->w_cursor.col;
3519 VIsual = start_pos;
3520 VIsual_mode = 'v';
3521 redraw_curbuf_later(INVERTED); /* update the inversion */
3522 }
3523 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524 {
3525 /* include a newline after the sentence, if there is one */
3526 if (incl(&curwin->w_cursor) == -1)
3527 oap->inclusive = TRUE;
3528 else
3529 oap->inclusive = FALSE;
3530 oap->start = start_pos;
3531 oap->motion_type = MCHAR;
3532 }
3533 return OK;
3534}
3535
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003536/*
3537 * Find block under the cursor, cursor at end.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003538 * "what" and "other" are two matching parenthesis/brace/etc.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003539 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 int
3541current_block(oap, count, include, what, other)
3542 oparg_T *oap;
3543 long count;
3544 int include; /* TRUE == include white space */
3545 int what; /* '(', '{', etc. */
3546 int other; /* ')', '}', etc. */
3547{
3548 pos_T old_pos;
3549 pos_T *pos = NULL;
3550 pos_T start_pos;
3551 pos_T *end_pos;
3552 pos_T old_start, old_end;
3553 char_u *save_cpo;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003554 int sol = FALSE; /* '{' at start of line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555
3556 old_pos = curwin->w_cursor;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003557 old_end = curwin->w_cursor; /* remember where we started */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 old_start = old_end;
3559
3560 /*
3561 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive.
3562 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 if (!VIsual_active || equalpos(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 {
3565 setpcmark();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003566 if (what == '{') /* ignore indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 while (inindent(1))
3568 if (inc_cursor() != 0)
3569 break;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003570 if (gchar_cursor() == what)
3571 /* cursor on '(' or '{', move cursor just after it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 ++curwin->w_cursor.col;
3573 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 else if (lt(VIsual, curwin->w_cursor))
3575 {
3576 old_start = VIsual;
3577 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3578 }
3579 else
3580 old_end = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581
3582 /*
3583 * Search backwards for unclosed '(', '{', etc..
3584 * Put this position in start_pos.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003585 * Ignore quotes here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 */
3587 save_cpo = p_cpo;
3588 p_cpo = (char_u *)"%";
3589 while (count-- > 0)
3590 {
3591 if ((pos = findmatch(NULL, what)) == NULL)
3592 break;
3593 curwin->w_cursor = *pos;
3594 start_pos = *pos; /* the findmatch for end_pos will overwrite *pos */
3595 }
3596 p_cpo = save_cpo;
3597
3598 /*
3599 * Search for matching ')', '}', etc.
3600 * Put this position in curwin->w_cursor.
3601 */
3602 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL)
3603 {
3604 curwin->w_cursor = old_pos;
3605 return FAIL;
3606 }
3607 curwin->w_cursor = *end_pos;
3608
3609 /*
3610 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE.
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003611 * If the ending '}', ')' or ']' is only preceded by indent, skip that
3612 * indent. But only if the resulting area is not smaller than what we
3613 * started with.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 */
3615 while (!include)
3616 {
3617 incl(&start_pos);
3618 sol = (curwin->w_cursor.col == 0);
3619 decl(&curwin->w_cursor);
Bram Moolenaar7a54a902014-06-17 13:50:13 +02003620 while (inindent(1))
3621 {
3622 sol = TRUE;
3623 if (decl(&curwin->w_cursor) != 0)
3624 break;
3625 }
3626
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 /*
3628 * In Visual mode, when the resulting area is not bigger than what we
3629 * started with, extend it to the next block, and then exclude again.
3630 */
3631 if (!lt(start_pos, old_start) && !lt(old_end, curwin->w_cursor)
3632 && VIsual_active)
3633 {
3634 curwin->w_cursor = old_start;
3635 decl(&curwin->w_cursor);
3636 if ((pos = findmatch(NULL, what)) == NULL)
3637 {
3638 curwin->w_cursor = old_pos;
3639 return FAIL;
3640 }
3641 start_pos = *pos;
3642 curwin->w_cursor = *pos;
3643 if ((end_pos = findmatch(NULL, other)) == NULL)
3644 {
3645 curwin->w_cursor = old_pos;
3646 return FAIL;
3647 }
3648 curwin->w_cursor = *end_pos;
3649 }
3650 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 break;
3652 }
3653
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654 if (VIsual_active)
3655 {
3656 if (*p_sel == 'e')
3657 ++curwin->w_cursor.col;
Bram Moolenaara5792f52005-11-23 21:25:05 +00003658 if (sol && gchar_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 inc(&curwin->w_cursor); /* include the line break */
3660 VIsual = start_pos;
3661 VIsual_mode = 'v';
3662 redraw_curbuf_later(INVERTED); /* update the inversion */
3663 showmode();
3664 }
3665 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 {
3667 oap->start = start_pos;
3668 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003669 oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 if (sol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671 incl(&curwin->w_cursor);
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003672 else if (ltoreq(start_pos, curwin->w_cursor))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003673 /* Include the character under the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 oap->inclusive = TRUE;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003675 else
3676 /* End is before the start (no text in between <>, [], etc.): don't
3677 * operate on any text. */
3678 curwin->w_cursor = start_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 }
3680
3681 return OK;
3682}
3683
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003684static int in_html_tag __ARGS((int));
3685
3686/*
3687 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>".
3688 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>".
3689 */
3690 static int
3691in_html_tag(end_tag)
3692 int end_tag;
3693{
3694 char_u *line = ml_get_curline();
3695 char_u *p;
3696 int c;
3697 int lc = NUL;
3698 pos_T pos;
3699
3700#ifdef FEAT_MBYTE
3701 if (enc_dbcs)
3702 {
3703 char_u *lp = NULL;
3704
3705 /* We search forward until the cursor, because searching backwards is
3706 * very slow for DBCS encodings. */
3707 for (p = line; p < line + curwin->w_cursor.col; mb_ptr_adv(p))
3708 if (*p == '>' || *p == '<')
3709 {
3710 lc = *p;
3711 lp = p;
3712 }
3713 if (*p != '<') /* check for '<' under cursor */
3714 {
3715 if (lc != '<')
3716 return FALSE;
3717 p = lp;
3718 }
3719 }
3720 else
3721#endif
3722 {
3723 for (p = line + curwin->w_cursor.col; p > line; )
3724 {
3725 if (*p == '<') /* find '<' under/before cursor */
3726 break;
3727 mb_ptr_back(line, p);
3728 if (*p == '>') /* find '>' before cursor */
3729 break;
3730 }
3731 if (*p != '<')
3732 return FALSE;
3733 }
3734
3735 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003736 pos.col = (colnr_T)(p - line);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003737
3738 mb_ptr_adv(p);
3739 if (end_tag)
3740 /* check that there is a '/' after the '<' */
3741 return *p == '/';
3742
3743 /* check that there is no '/' after the '<' */
3744 if (*p == '/')
3745 return FALSE;
3746
3747 /* check that the matching '>' is not preceded by '/' */
3748 for (;;)
3749 {
3750 if (inc(&pos) < 0)
3751 return FALSE;
3752 c = *ml_get_pos(&pos);
3753 if (c == '>')
3754 break;
3755 lc = c;
3756 }
3757 return lc != '/';
3758}
3759
3760/*
3761 * Find tag block under the cursor, cursor at end.
3762 */
3763 int
3764current_tagblock(oap, count_arg, include)
3765 oparg_T *oap;
3766 long count_arg;
3767 int include; /* TRUE == include white space */
3768{
3769 long count = count_arg;
3770 long n;
3771 pos_T old_pos;
3772 pos_T start_pos;
3773 pos_T end_pos;
3774 pos_T old_start, old_end;
3775 char_u *spat, *epat;
3776 char_u *p;
3777 char_u *cp;
3778 int len;
3779 int r;
3780 int do_include = include;
3781 int save_p_ws = p_ws;
3782 int retval = FAIL;
3783
3784 p_ws = FALSE;
3785
3786 old_pos = curwin->w_cursor;
3787 old_end = curwin->w_cursor; /* remember where we started */
3788 old_start = old_end;
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003789 if (!VIsual_active || *p_sel == 'e')
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003790 decl(&old_end); /* old_end is inclusive */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003791
3792 /*
Bram Moolenaar45360022005-07-21 21:08:21 +00003793 * If we start on "<aaa>" select that block.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003794 */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003795 if (!VIsual_active || equalpos(VIsual, curwin->w_cursor))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003796 {
3797 setpcmark();
3798
3799 /* ignore indent */
3800 while (inindent(1))
3801 if (inc_cursor() != 0)
3802 break;
3803
3804 if (in_html_tag(FALSE))
3805 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003806 /* cursor on start tag, move to its '>' */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003807 while (*ml_get_cursor() != '>')
3808 if (inc_cursor() < 0)
3809 break;
3810 }
3811 else if (in_html_tag(TRUE))
3812 {
3813 /* cursor on end tag, move to just before it */
3814 while (*ml_get_cursor() != '<')
3815 if (dec_cursor() < 0)
3816 break;
3817 dec_cursor();
3818 old_end = curwin->w_cursor;
3819 }
3820 }
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003821 else if (lt(VIsual, curwin->w_cursor))
3822 {
3823 old_start = VIsual;
3824 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3825 }
3826 else
3827 old_end = VIsual;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003828
3829again:
3830 /*
3831 * Search backwards for unclosed "<aaa>".
3832 * Put this position in start_pos.
3833 */
3834 for (n = 0; n < count; ++n)
3835 {
Bram Moolenaar45360022005-07-21 21:08:21 +00003836 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)",
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003837 (char_u *)"",
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003838 (char_u *)"</[^>]*>", BACKWARD, (char_u *)"", 0,
Bram Moolenaar76929292008-01-06 19:07:36 +00003839 NULL, (linenr_T)0, 0L) <= 0)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003840 {
3841 curwin->w_cursor = old_pos;
3842 goto theend;
3843 }
3844 }
3845 start_pos = curwin->w_cursor;
3846
3847 /*
3848 * Search for matching "</aaa>". First isolate the "aaa".
3849 */
3850 inc_cursor();
3851 p = ml_get_cursor();
3852 for (cp = p; *cp != NUL && *cp != '>' && !vim_iswhite(*cp); mb_ptr_adv(cp))
3853 ;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003854 len = (int)(cp - p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003855 if (len == 0)
3856 {
3857 curwin->w_cursor = old_pos;
3858 goto theend;
3859 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01003860 spat = alloc(len + 31);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003861 epat = alloc(len + 9);
3862 if (spat == NULL || epat == NULL)
3863 {
3864 vim_free(spat);
3865 vim_free(epat);
3866 curwin->w_cursor = old_pos;
3867 goto theend;
3868 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01003869 sprintf((char *)spat, "<%.*s\\>\\%%(\\s\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003870 sprintf((char *)epat, "</%.*s>\\c", len, p);
3871
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003872 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, (char_u *)"",
Bram Moolenaar76929292008-01-06 19:07:36 +00003873 0, NULL, (linenr_T)0, 0L);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003874
3875 vim_free(spat);
3876 vim_free(epat);
3877
3878 if (r < 1 || lt(curwin->w_cursor, old_end))
3879 {
3880 /* Can't find other end or it's before the previous end. Could be a
3881 * HTML tag that doesn't have a matching end. Search backwards for
3882 * another starting tag. */
3883 count = 1;
3884 curwin->w_cursor = start_pos;
3885 goto again;
3886 }
3887
3888 if (do_include || r < 1)
3889 {
3890 /* Include up to the '>'. */
3891 while (*ml_get_cursor() != '>')
3892 if (inc_cursor() < 0)
3893 break;
3894 }
3895 else
3896 {
3897 /* Exclude the '<' of the end tag. */
3898 if (*ml_get_cursor() == '<')
3899 dec_cursor();
3900 }
3901 end_pos = curwin->w_cursor;
3902
3903 if (!do_include)
3904 {
3905 /* Exclude the start tag. */
3906 curwin->w_cursor = start_pos;
3907 while (inc_cursor() >= 0)
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003908 if (*ml_get_cursor() == '>')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003909 {
3910 inc_cursor();
3911 start_pos = curwin->w_cursor;
3912 break;
3913 }
3914 curwin->w_cursor = end_pos;
3915
Bram Moolenaar45360022005-07-21 21:08:21 +00003916 /* If we now have the same text as before reset "do_include" and try
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003917 * again. */
Bram Moolenaar45360022005-07-21 21:08:21 +00003918 if (equalpos(start_pos, old_start) && equalpos(end_pos, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003919 {
3920 do_include = TRUE;
3921 curwin->w_cursor = old_start;
3922 count = count_arg;
3923 goto again;
3924 }
3925 }
3926
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003927 if (VIsual_active)
3928 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003929 /* If the end is before the start there is no text between tags, select
3930 * the char under the cursor. */
3931 if (lt(end_pos, start_pos))
3932 curwin->w_cursor = start_pos;
3933 else if (*p_sel == 'e')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003934 ++curwin->w_cursor.col;
3935 VIsual = start_pos;
3936 VIsual_mode = 'v';
3937 redraw_curbuf_later(INVERTED); /* update the inversion */
3938 showmode();
3939 }
3940 else
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003941 {
3942 oap->start = start_pos;
3943 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003944 if (lt(end_pos, start_pos))
3945 {
3946 /* End is before the start: there is no text between tags; operate
3947 * on an empty area. */
3948 curwin->w_cursor = start_pos;
3949 oap->inclusive = FALSE;
3950 }
3951 else
3952 oap->inclusive = TRUE;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003953 }
3954 retval = OK;
3955
3956theend:
3957 p_ws = save_p_ws;
3958 return retval;
3959}
3960
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 int
3962current_par(oap, count, include, type)
3963 oparg_T *oap;
3964 long count;
3965 int include; /* TRUE == include white space */
3966 int type; /* 'p' for paragraph, 'S' for section */
3967{
3968 linenr_T start_lnum;
3969 linenr_T end_lnum;
3970 int white_in_front;
3971 int dir;
3972 int start_is_white;
3973 int prev_start_is_white;
3974 int retval = OK;
3975 int do_white = FALSE;
3976 int t;
3977 int i;
3978
3979 if (type == 'S') /* not implemented yet */
3980 return FAIL;
3981
3982 start_lnum = curwin->w_cursor.lnum;
3983
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 /*
3985 * When visual area is more than one line: extend it.
3986 */
3987 if (VIsual_active && start_lnum != VIsual.lnum)
3988 {
3989extend:
3990 if (start_lnum < VIsual.lnum)
3991 dir = BACKWARD;
3992 else
3993 dir = FORWARD;
3994 for (i = count; --i >= 0; )
3995 {
3996 if (start_lnum ==
3997 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
3998 {
3999 retval = FAIL;
4000 break;
4001 }
4002
4003 prev_start_is_white = -1;
4004 for (t = 0; t < 2; ++t)
4005 {
4006 start_lnum += dir;
4007 start_is_white = linewhite(start_lnum);
4008 if (prev_start_is_white == start_is_white)
4009 {
4010 start_lnum -= dir;
4011 break;
4012 }
4013 for (;;)
4014 {
4015 if (start_lnum == (dir == BACKWARD
4016 ? 1 : curbuf->b_ml.ml_line_count))
4017 break;
4018 if (start_is_white != linewhite(start_lnum + dir)
4019 || (!start_is_white
4020 && startPS(start_lnum + (dir > 0
4021 ? 1 : 0), 0, 0)))
4022 break;
4023 start_lnum += dir;
4024 }
4025 if (!include)
4026 break;
4027 if (start_lnum == (dir == BACKWARD
4028 ? 1 : curbuf->b_ml.ml_line_count))
4029 break;
4030 prev_start_is_white = start_is_white;
4031 }
4032 }
4033 curwin->w_cursor.lnum = start_lnum;
4034 curwin->w_cursor.col = 0;
4035 return retval;
4036 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037
4038 /*
4039 * First move back to the start_lnum of the paragraph or white lines
4040 */
4041 white_in_front = linewhite(start_lnum);
4042 while (start_lnum > 1)
4043 {
4044 if (white_in_front) /* stop at first white line */
4045 {
4046 if (!linewhite(start_lnum - 1))
4047 break;
4048 }
4049 else /* stop at first non-white line of start of paragraph */
4050 {
4051 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
4052 break;
4053 }
4054 --start_lnum;
4055 }
4056
4057 /*
4058 * Move past the end of any white lines.
4059 */
4060 end_lnum = start_lnum;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004061 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
4062 ++end_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063
4064 --end_lnum;
4065 i = count;
4066 if (!include && white_in_front)
4067 --i;
4068 while (i--)
4069 {
4070 if (end_lnum == curbuf->b_ml.ml_line_count)
4071 return FAIL;
4072
4073 if (!include)
4074 do_white = linewhite(end_lnum + 1);
4075
4076 if (include || !do_white)
4077 {
4078 ++end_lnum;
4079 /*
4080 * skip to end of paragraph
4081 */
4082 while (end_lnum < curbuf->b_ml.ml_line_count
4083 && !linewhite(end_lnum + 1)
4084 && !startPS(end_lnum + 1, 0, 0))
4085 ++end_lnum;
4086 }
4087
4088 if (i == 0 && white_in_front && include)
4089 break;
4090
4091 /*
4092 * skip to end of white lines after paragraph
4093 */
4094 if (include || do_white)
4095 while (end_lnum < curbuf->b_ml.ml_line_count
4096 && linewhite(end_lnum + 1))
4097 ++end_lnum;
4098 }
4099
4100 /*
4101 * If there are no empty lines at the end, try to find some empty lines at
4102 * the start (unless that has been done already).
4103 */
4104 if (!white_in_front && !linewhite(end_lnum) && include)
4105 while (start_lnum > 1 && linewhite(start_lnum - 1))
4106 --start_lnum;
4107
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 if (VIsual_active)
4109 {
4110 /* Problem: when doing "Vipipip" nothing happens in a single white
4111 * line, we get stuck there. Trap this here. */
4112 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4113 goto extend;
4114 VIsual.lnum = start_lnum;
4115 VIsual_mode = 'V';
4116 redraw_curbuf_later(INVERTED); /* update the inversion */
4117 showmode();
4118 }
4119 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 {
4121 oap->start.lnum = start_lnum;
4122 oap->start.col = 0;
4123 oap->motion_type = MLINE;
4124 }
4125 curwin->w_cursor.lnum = end_lnum;
4126 curwin->w_cursor.col = 0;
4127
4128 return OK;
4129}
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004130
4131static int find_next_quote __ARGS((char_u *top_ptr, int col, int quotechar, char_u *escape));
4132static int find_prev_quote __ARGS((char_u *line, int col_start, int quotechar, char_u *escape));
4133
4134/*
4135 * Search quote char from string line[col].
4136 * Quote character escaped by one of the characters in "escape" is not counted
4137 * as a quote.
4138 * Returns column number of "quotechar" or -1 when not found.
4139 */
4140 static int
4141find_next_quote(line, col, quotechar, escape)
4142 char_u *line;
4143 int col;
4144 int quotechar;
4145 char_u *escape; /* escape characters, can be NULL */
4146{
4147 int c;
4148
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004149 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004150 {
4151 c = line[col];
4152 if (c == NUL)
4153 return -1;
4154 else if (escape != NULL && vim_strchr(escape, c))
4155 ++col;
4156 else if (c == quotechar)
4157 break;
4158#ifdef FEAT_MBYTE
4159 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004160 col += (*mb_ptr2len)(line + col);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004161 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004163 ++col;
4164 }
4165 return col;
4166}
4167
4168/*
4169 * Search backwards in "line" from column "col_start" to find "quotechar".
4170 * Quote character escaped by one of the characters in "escape" is not counted
4171 * as a quote.
4172 * Return the found column or zero.
4173 */
4174 static int
4175find_prev_quote(line, col_start, quotechar, escape)
4176 char_u *line;
4177 int col_start;
4178 int quotechar;
4179 char_u *escape; /* escape characters, can be NULL */
4180{
4181 int n;
4182
4183 while (col_start > 0)
4184 {
4185 --col_start;
4186#ifdef FEAT_MBYTE
4187 col_start -= (*mb_head_off)(line, line + col_start);
4188#endif
4189 n = 0;
4190 if (escape != NULL)
4191 while (col_start - n > 0 && vim_strchr(escape,
4192 line[col_start - n - 1]) != NULL)
4193 ++n;
4194 if (n & 1)
4195 col_start -= n; /* uneven number of escape chars, skip it */
4196 else if (line[col_start] == quotechar)
4197 break;
4198 }
4199 return col_start;
4200}
4201
4202/*
4203 * Find quote under the cursor, cursor at end.
4204 * Returns TRUE if found, else FALSE.
4205 */
4206 int
4207current_quote(oap, count, include, quotechar)
4208 oparg_T *oap;
Bram Moolenaarab194812005-09-14 21:40:12 +00004209 long count;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004210 int include; /* TRUE == include quote char */
4211 int quotechar; /* Quote character */
4212{
4213 char_u *line = ml_get_curline();
4214 int col_end;
4215 int col_start = curwin->w_cursor.col;
4216 int inclusive = FALSE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004217 int vis_empty = TRUE; /* Visual selection <= 1 char */
4218 int vis_bef_curs = FALSE; /* Visual starts before cursor */
Bram Moolenaarab194812005-09-14 21:40:12 +00004219 int inside_quotes = FALSE; /* Looks like "i'" done before */
4220 int selected_quote = FALSE; /* Has quote inside selection */
4221 int i;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004222
4223 /* Correct cursor when 'selection' is exclusive */
4224 if (VIsual_active)
4225 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004226 vis_bef_curs = lt(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004227 if (*p_sel == 'e' && vis_bef_curs)
4228 dec_cursor();
4229 vis_empty = equalpos(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004230 }
Bram Moolenaarab194812005-09-14 21:40:12 +00004231
4232 if (!vis_empty)
4233 {
4234 /* Check if the existing selection exactly spans the text inside
4235 * quotes. */
4236 if (vis_bef_curs)
4237 {
4238 inside_quotes = VIsual.col > 0
4239 && line[VIsual.col - 1] == quotechar
4240 && line[curwin->w_cursor.col] != NUL
4241 && line[curwin->w_cursor.col + 1] == quotechar;
4242 i = VIsual.col;
4243 col_end = curwin->w_cursor.col;
4244 }
4245 else
4246 {
4247 inside_quotes = curwin->w_cursor.col > 0
4248 && line[curwin->w_cursor.col - 1] == quotechar
4249 && line[VIsual.col] != NUL
4250 && line[VIsual.col + 1] == quotechar;
4251 i = curwin->w_cursor.col;
4252 col_end = VIsual.col;
4253 }
4254
4255 /* Find out if we have a quote in the selection. */
4256 while (i <= col_end)
4257 if (line[i++] == quotechar)
4258 {
4259 selected_quote = TRUE;
4260 break;
4261 }
4262 }
4263
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004264 if (!vis_empty && line[col_start] == quotechar)
4265 {
4266 /* Already selecting something and on a quote character. Find the
4267 * next quoted string. */
4268 if (vis_bef_curs)
4269 {
4270 /* Assume we are on a closing quote: move to after the next
4271 * opening quote. */
4272 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4273 if (col_start < 0)
4274 return FALSE;
4275 col_end = find_next_quote(line, col_start + 1, quotechar,
4276 curbuf->b_p_qe);
4277 if (col_end < 0)
4278 {
4279 /* We were on a starting quote perhaps? */
4280 col_end = col_start;
4281 col_start = curwin->w_cursor.col;
4282 }
4283 }
4284 else
4285 {
4286 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4287 if (line[col_end] != quotechar)
4288 return FALSE;
4289 col_start = find_prev_quote(line, col_end, quotechar,
4290 curbuf->b_p_qe);
4291 if (line[col_start] != quotechar)
4292 {
4293 /* We were on an ending quote perhaps? */
4294 col_start = col_end;
4295 col_end = curwin->w_cursor.col;
4296 }
4297 }
4298 }
4299 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004300
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004301 if (line[col_start] == quotechar || !vis_empty)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004302 {
4303 int first_col = col_start;
4304
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004305 if (!vis_empty)
4306 {
4307 if (vis_bef_curs)
4308 first_col = find_next_quote(line, col_start, quotechar, NULL);
4309 else
4310 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4311 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004312
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004313 /* The cursor is on a quote, we don't know if it's the opening or
4314 * closing quote. Search from the start of the line to find out.
4315 * Also do this when there is a Visual area, a' may leave the cursor
4316 * in between two strings. */
4317 col_start = 0;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004318 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004319 {
4320 /* Find open quote character. */
4321 col_start = find_next_quote(line, col_start, quotechar, NULL);
4322 if (col_start < 0 || col_start > first_col)
4323 return FALSE;
4324 /* Find close quote character. */
4325 col_end = find_next_quote(line, col_start + 1, quotechar,
4326 curbuf->b_p_qe);
4327 if (col_end < 0)
4328 return FALSE;
4329 /* If is cursor between start and end quote character, it is
4330 * target text object. */
4331 if (col_start <= first_col && first_col <= col_end)
4332 break;
4333 col_start = col_end + 1;
4334 }
4335 }
4336 else
4337 {
4338 /* Search backward for a starting quote. */
4339 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4340 if (line[col_start] != quotechar)
4341 {
4342 /* No quote before the cursor, look after the cursor. */
4343 col_start = find_next_quote(line, col_start, quotechar, NULL);
4344 if (col_start < 0)
4345 return FALSE;
4346 }
4347
4348 /* Find close quote character. */
4349 col_end = find_next_quote(line, col_start + 1, quotechar,
4350 curbuf->b_p_qe);
4351 if (col_end < 0)
4352 return FALSE;
4353 }
4354
4355 /* When "include" is TRUE, include spaces after closing quote or before
4356 * the starting quote. */
4357 if (include)
4358 {
4359 if (vim_iswhite(line[col_end + 1]))
4360 while (vim_iswhite(line[col_end + 1]))
4361 ++col_end;
4362 else
4363 while (col_start > 0 && vim_iswhite(line[col_start - 1]))
4364 --col_start;
4365 }
4366
Bram Moolenaarab194812005-09-14 21:40:12 +00004367 /* Set start position. After vi" another i" must include the ".
4368 * For v2i" include the quotes. */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004369 if (!include && count < 2 && (vis_empty || !inside_quotes))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004370 ++col_start;
4371 curwin->w_cursor.col = col_start;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004372 if (VIsual_active)
4373 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004374 /* Set the start of the Visual area when the Visual area was empty, we
4375 * were just inside quotes or the Visual area didn't start at a quote
4376 * and didn't include a quote.
4377 */
4378 if (vis_empty
4379 || (vis_bef_curs
4380 && !selected_quote
4381 && (inside_quotes
4382 || (line[VIsual.col] != quotechar
4383 && (VIsual.col == 0
4384 || line[VIsual.col - 1] != quotechar)))))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004385 {
4386 VIsual = curwin->w_cursor;
4387 redraw_curbuf_later(INVERTED);
4388 }
4389 }
4390 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004391 {
4392 oap->start = curwin->w_cursor;
4393 oap->motion_type = MCHAR;
4394 }
4395
4396 /* Set end position. */
4397 curwin->w_cursor.col = col_end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004398 if ((include || count > 1 /* After vi" another i" must include the ". */
Bram Moolenaarab194812005-09-14 21:40:12 +00004399 || (!vis_empty && inside_quotes)
Bram Moolenaarab194812005-09-14 21:40:12 +00004400 ) && inc_cursor() == 2)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004401 inclusive = TRUE;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004402 if (VIsual_active)
4403 {
4404 if (vis_empty || vis_bef_curs)
4405 {
4406 /* decrement cursor when 'selection' is not exclusive */
4407 if (*p_sel != 'e')
4408 dec_cursor();
4409 }
4410 else
4411 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004412 /* Cursor is at start of Visual area. Set the end of the Visual
4413 * area when it was just inside quotes or it didn't end at a
4414 * quote. */
4415 if (inside_quotes
4416 || (!selected_quote
4417 && line[VIsual.col] != quotechar
4418 && (line[VIsual.col] == NUL
4419 || line[VIsual.col + 1] != quotechar)))
4420 {
4421 dec_cursor();
4422 VIsual = curwin->w_cursor;
4423 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004424 curwin->w_cursor.col = col_start;
4425 }
4426 if (VIsual_mode == 'V')
4427 {
4428 VIsual_mode = 'v';
4429 redraw_cmdline = TRUE; /* show mode later */
4430 }
4431 }
4432 else
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004433 {
4434 /* Set inclusive and other oap's flags. */
4435 oap->inclusive = inclusive;
4436 }
4437
4438 return OK;
4439}
4440
4441#endif /* FEAT_TEXTOBJ */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442
Bram Moolenaare78495d2013-06-30 14:46:53 +02004443static int is_one_char __ARGS((char_u *pattern));
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004444
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004445/*
4446 * Find next search match under cursor, cursor at end.
4447 * Used while an operator is pending, and in Visual mode.
4448 * TODO: redo only works when used in operator pending mode
4449 */
4450 int
4451current_search(count, forward)
4452 long count;
4453 int forward; /* move forward or backwards */
4454{
4455 pos_T start_pos; /* position before the pattern */
4456 pos_T orig_pos; /* position of the cursor at beginning */
4457 pos_T pos; /* position after the pattern */
4458 int i;
4459 int dir;
4460 int result; /* result of various function calls */
4461 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004462 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02004463 pos_T save_VIsual = VIsual;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004464 int one_char;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004465
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004466 /* wrapping should not occur */
4467 p_ws = FALSE;
4468
4469 /* Correct cursor when 'selection' is exclusive */
4470 if (VIsual_active && *p_sel == 'e' && lt(VIsual, curwin->w_cursor))
4471 dec_cursor();
4472
4473 if (VIsual_active)
4474 {
4475 orig_pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004476
4477 pos = curwin->w_cursor;
4478 start_pos = VIsual;
4479
4480 /* make sure, searching further will extend the match */
4481 if (VIsual_active)
4482 {
4483 if (forward)
4484 incl(&pos);
4485 else
4486 decl(&pos);
4487 }
4488 }
4489 else
4490 orig_pos = pos = start_pos = curwin->w_cursor;
4491
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004492 /* Is the pattern is zero-width? */
Bram Moolenaare78495d2013-06-30 14:46:53 +02004493 one_char = is_one_char(spats[last_idx].pat);
4494 if (one_char == -1)
Bram Moolenaarba2d44f2013-11-28 19:27:30 +01004495 {
4496 p_ws = old_p_ws;
4497 return FAIL; /* pattern not found */
4498 }
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004499
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004500 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004501 * The trick is to first search backwards and then search forward again,
4502 * so that a match at the current cursor position will be correctly
4503 * captured.
4504 */
4505 for (i = 0; i < 2; i++)
4506 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004507 if (forward)
4508 dir = i;
4509 else
4510 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004511
4512 flags = 0;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004513 if (!dir && !one_char)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004514 flags = SEARCH_END;
4515
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004516 result = searchit(curwin, curbuf, &pos, (dir ? FORWARD : BACKWARD),
4517 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004518 SEARCH_KEEP | flags, RE_SEARCH, 0, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004519
4520 /* First search may fail, but then start searching from the
4521 * beginning of the file (cursor might be on the search match)
4522 * except when Visual mode is active, so that extending the visual
4523 * selection works. */
4524 if (!result && i) /* not found, abort */
4525 {
4526 curwin->w_cursor = orig_pos;
4527 if (VIsual_active)
4528 VIsual = save_VIsual;
4529 p_ws = old_p_ws;
4530 return FAIL;
4531 }
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004532 else if (!i && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004533 {
4534 if (forward) /* try again from start of buffer */
4535 {
4536 clearpos(&pos);
4537 }
4538 else /* try again from end of buffer */
4539 {
4540 /* searching backwards, so set pos to last line and col */
4541 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02004542 pos.col = (colnr_T)STRLEN(
4543 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004544 }
4545 }
Bram Moolenaarfcea03d2013-11-07 04:46:48 +01004546 p_ws = old_p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004547 }
4548
4549 start_pos = pos;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004550 flags = forward ? SEARCH_END : 0;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004551
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004552 /* move to match, except for zero-width matches, in which case, we are
4553 * already on the next match */
Bram Moolenaare78495d2013-06-30 14:46:53 +02004554 if (!one_char)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004555 result = searchit(curwin, curbuf, &pos, (forward ? FORWARD : BACKWARD),
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004556 spats[last_idx].pat, 0L, flags | SEARCH_KEEP, RE_SEARCH, 0, NULL);
4557
4558 if (!VIsual_active)
4559 VIsual = start_pos;
4560
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004561 curwin->w_cursor = pos;
4562 VIsual_active = TRUE;
4563 VIsual_mode = 'v';
4564
4565 if (VIsual_active)
4566 {
4567 redraw_curbuf_later(INVERTED); /* update the inversion */
Bram Moolenaar718f0072012-10-03 13:35:51 +02004568 if (*p_sel == 'e')
4569 {
4570 /* Correction for exclusive selection depends on the direction. */
4571 if (forward && ltoreq(VIsual, curwin->w_cursor))
4572 inc_cursor();
4573 else if (!forward && ltoreq(curwin->w_cursor, VIsual))
4574 inc(&VIsual);
4575 }
4576
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004577 }
4578
4579#ifdef FEAT_FOLDING
4580 if (fdo_flags & FDO_SEARCH && KeyTyped)
4581 foldOpenCursor();
4582#endif
4583
4584 may_start_select('c');
4585#ifdef FEAT_MOUSE
4586 setmouse();
4587#endif
4588#ifdef FEAT_CLIPBOARD
4589 /* Make sure the clipboard gets updated. Needed because start and
4590 * end are still the same, and the selection needs to be owned */
4591 clip_star.vmode = NUL;
4592#endif
4593 redraw_curbuf_later(INVERTED);
4594 showmode();
4595
4596 return OK;
4597}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004598
4599/*
Bram Moolenaare78495d2013-06-30 14:46:53 +02004600 * Check if the pattern is one character or zero-width.
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004601 * Returns TRUE, FALSE or -1 for failure.
4602 */
4603 static int
Bram Moolenaare78495d2013-06-30 14:46:53 +02004604is_one_char(pattern)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004605 char_u *pattern;
4606{
4607 regmmatch_T regmatch;
4608 int nmatched = 0;
4609 int result = -1;
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004610 pos_T pos;
4611 int save_called_emsg = called_emsg;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004612
4613 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
4614 SEARCH_KEEP, &regmatch) == FAIL)
4615 return -1;
4616
4617 /* move to match */
4618 clearpos(&pos);
4619 if (searchit(curwin, curbuf, &pos, FORWARD, spats[last_idx].pat, 1,
4620 SEARCH_KEEP, RE_SEARCH, 0, NULL) != FAIL)
4621 {
4622 /* Zero-width pattern should match somewhere, then we can check if
4623 * start and end are in the same position. */
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004624 called_emsg = FALSE;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004625 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
4626 pos.lnum, (colnr_T)0, NULL);
4627
4628 if (!called_emsg)
4629 result = (nmatched != 0
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004630 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
4631 && regmatch.startpos[0].col == regmatch.endpos[0].col);
Bram Moolenaare78495d2013-06-30 14:46:53 +02004632
Bram Moolenaar4c7cb6b2013-10-02 21:55:02 +02004633 if (!result && inc(&pos) >= 0 && pos.col == regmatch.endpos[0].col)
4634 result = TRUE;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004635 }
4636
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004637 called_emsg |= save_called_emsg;
Bram Moolenaar473de612013-06-08 18:19:48 +02004638 vim_regfree(regmatch.regprog);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004639 return result;
4640}
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004641
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4643 || defined(PROTO)
4644/*
4645 * return TRUE if line 'lnum' is empty or has white chars only.
4646 */
4647 int
4648linewhite(lnum)
4649 linenr_T lnum;
4650{
4651 char_u *p;
4652
4653 p = skipwhite(ml_get(lnum));
4654 return (*p == NUL);
4655}
4656#endif
4657
4658#if defined(FEAT_FIND_ID) || defined(PROTO)
4659/*
4660 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01004661 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 void
4664find_pattern_in_path(ptr, dir, len, whole, skip_comments,
4665 type, count, action, start_lnum, end_lnum)
4666 char_u *ptr; /* pointer to search pattern */
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004667 int dir UNUSED; /* direction of expansion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668 int len; /* length of search pattern */
4669 int whole; /* match whole words only */
4670 int skip_comments; /* don't match inside comments */
4671 int type; /* Type of search; are we looking for a type?
4672 a macro? */
4673 long count;
4674 int action; /* What to do when we find it */
4675 linenr_T start_lnum; /* first line to start searching */
4676 linenr_T end_lnum; /* last line for searching */
4677{
4678 SearchedFile *files; /* Stack of included files */
4679 SearchedFile *bigger; /* When we need more space */
4680 int max_path_depth = 50;
4681 long match_count = 1;
4682
4683 char_u *pat;
4684 char_u *new_fname;
4685 char_u *curr_fname = curbuf->b_fname;
4686 char_u *prev_fname = NULL;
4687 linenr_T lnum;
4688 int depth;
4689 int depth_displayed; /* For type==CHECK_PATH */
4690 int old_files;
4691 int already_searched;
4692 char_u *file_line;
4693 char_u *line;
4694 char_u *p;
4695 char_u save_char;
4696 int define_matched;
4697 regmatch_T regmatch;
4698 regmatch_T incl_regmatch;
4699 regmatch_T def_regmatch;
4700 int matched = FALSE;
4701 int did_show = FALSE;
4702 int found = FALSE;
4703 int i;
4704 char_u *already = NULL;
4705 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004706 char_u *inc_opt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4708 win_T *curwin_save = NULL;
4709#endif
4710
4711 regmatch.regprog = NULL;
4712 incl_regmatch.regprog = NULL;
4713 def_regmatch.regprog = NULL;
4714
4715 file_line = alloc(LSIZE);
4716 if (file_line == NULL)
4717 return;
4718
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 if (type != CHECK_PATH && type != FIND_DEFINE
4720#ifdef FEAT_INS_EXPAND
4721 /* when CONT_SOL is set compare "ptr" with the beginning of the line
4722 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004723 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724#endif
4725 )
4726 {
4727 pat = alloc(len + 5);
4728 if (pat == NULL)
4729 goto fpip_end;
4730 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
4731 /* ignore case according to p_ic, p_scs and pat */
4732 regmatch.rm_ic = ignorecase(pat);
4733 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4734 vim_free(pat);
4735 if (regmatch.regprog == NULL)
4736 goto fpip_end;
4737 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004738 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
4739 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004741 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 if (incl_regmatch.regprog == NULL)
4743 goto fpip_end;
4744 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */
4745 }
4746 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
4747 {
4748 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
4749 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
4750 if (def_regmatch.regprog == NULL)
4751 goto fpip_end;
4752 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */
4753 }
4754 files = (SearchedFile *)lalloc_clear((long_u)
4755 (max_path_depth * sizeof(SearchedFile)), TRUE);
4756 if (files == NULL)
4757 goto fpip_end;
4758 old_files = max_path_depth;
4759 depth = depth_displayed = -1;
4760
4761 lnum = start_lnum;
4762 if (end_lnum > curbuf->b_ml.ml_line_count)
4763 end_lnum = curbuf->b_ml.ml_line_count;
4764 if (lnum > end_lnum) /* do at least one line */
4765 lnum = end_lnum;
4766 line = ml_get(lnum);
4767
4768 for (;;)
4769 {
4770 if (incl_regmatch.regprog != NULL
4771 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
4772 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004773 char_u *p_fname = (curr_fname == curbuf->b_fname)
4774 ? curbuf->b_ffname : curr_fname;
4775
4776 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
4777 /* Use text from '\zs' to '\ze' (or end) of 'include'. */
4778 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02004779 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004780 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
4781 else
4782 /* Use text after match with 'include'. */
4783 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004784 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785 already_searched = FALSE;
4786 if (new_fname != NULL)
4787 {
4788 /* Check whether we have already searched in this file */
4789 for (i = 0;; i++)
4790 {
4791 if (i == depth + 1)
4792 i = old_files;
4793 if (i == max_path_depth)
4794 break;
4795 if (fullpathcmp(new_fname, files[i].name, TRUE) & FPC_SAME)
4796 {
4797 if (type != CHECK_PATH &&
4798 action == ACTION_SHOW_ALL && files[i].matched)
4799 {
4800 msg_putchar('\n'); /* cursor below last one */
4801 if (!got_int) /* don't display if 'q'
4802 typed at "--more--"
Bram Moolenaarfe81d452009-04-22 14:44:41 +00004803 message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 {
4805 msg_home_replace_hl(new_fname);
4806 MSG_PUTS(_(" (includes previously listed match)"));
4807 prev_fname = NULL;
4808 }
4809 }
4810 vim_free(new_fname);
4811 new_fname = NULL;
4812 already_searched = TRUE;
4813 break;
4814 }
4815 }
4816 }
4817
4818 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
4819 || (new_fname == NULL && !already_searched)))
4820 {
4821 if (did_show)
4822 msg_putchar('\n'); /* cursor below last one */
4823 else
4824 {
4825 gotocmdline(TRUE); /* cursor at status line */
4826 MSG_PUTS_TITLE(_("--- Included files "));
4827 if (action != ACTION_SHOW_ALL)
4828 MSG_PUTS_TITLE(_("not found "));
4829 MSG_PUTS_TITLE(_("in path ---\n"));
4830 }
4831 did_show = TRUE;
4832 while (depth_displayed < depth && !got_int)
4833 {
4834 ++depth_displayed;
4835 for (i = 0; i < depth_displayed; i++)
4836 MSG_PUTS(" ");
4837 msg_home_replace(files[depth_displayed].name);
4838 MSG_PUTS(" -->\n");
4839 }
4840 if (!got_int) /* don't display if 'q' typed
4841 for "--more--" message */
4842 {
4843 for (i = 0; i <= depth_displayed; i++)
4844 MSG_PUTS(" ");
4845 if (new_fname != NULL)
4846 {
4847 /* using "new_fname" is more reliable, e.g., when
4848 * 'includeexpr' is set. */
4849 msg_outtrans_attr(new_fname, hl_attr(HLF_D));
4850 }
4851 else
4852 {
4853 /*
4854 * Isolate the file name.
4855 * Include the surrounding "" or <> if present.
4856 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02004857 if (inc_opt != NULL
4858 && strstr((char *)inc_opt, "\\zs") != NULL)
4859 {
4860 /* pattern contains \zs, use the match */
4861 p = incl_regmatch.startp[0];
4862 i = (int)(incl_regmatch.endp[0]
4863 - incl_regmatch.startp[0]);
4864 }
4865 else
4866 {
4867 /* find the file name after the end of the match */
4868 for (p = incl_regmatch.endp[0];
4869 *p && !vim_isfilec(*p); p++)
4870 ;
4871 for (i = 0; vim_isfilec(p[i]); i++)
4872 ;
4873 }
4874
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 if (i == 0)
4876 {
4877 /* Nothing found, use the rest of the line. */
4878 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004879 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880 }
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02004881 /* Avoid checking before the start of the line, can
4882 * happen if \zs appears in the regexp. */
4883 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884 {
4885 if (p[-1] == '"' || p[-1] == '<')
4886 {
4887 --p;
4888 ++i;
4889 }
4890 if (p[i] == '"' || p[i] == '>')
4891 ++i;
4892 }
4893 save_char = p[i];
4894 p[i] = NUL;
4895 msg_outtrans_attr(p, hl_attr(HLF_D));
4896 p[i] = save_char;
4897 }
4898
4899 if (new_fname == NULL && action == ACTION_SHOW_ALL)
4900 {
4901 if (already_searched)
4902 MSG_PUTS(_(" (Already listed)"));
4903 else
4904 MSG_PUTS(_(" NOT FOUND"));
4905 }
4906 }
4907 out_flush(); /* output each line directly */
4908 }
4909
4910 if (new_fname != NULL)
4911 {
4912 /* Push the new file onto the file stack */
4913 if (depth + 1 == old_files)
4914 {
4915 bigger = (SearchedFile *)lalloc((long_u)(
4916 max_path_depth * 2 * sizeof(SearchedFile)), TRUE);
4917 if (bigger != NULL)
4918 {
4919 for (i = 0; i <= depth; i++)
4920 bigger[i] = files[i];
4921 for (i = depth + 1; i < old_files + max_path_depth; i++)
4922 {
4923 bigger[i].fp = NULL;
4924 bigger[i].name = NULL;
4925 bigger[i].lnum = 0;
4926 bigger[i].matched = FALSE;
4927 }
4928 for (i = old_files; i < max_path_depth; i++)
4929 bigger[i + max_path_depth] = files[i];
4930 old_files += max_path_depth;
4931 max_path_depth *= 2;
4932 vim_free(files);
4933 files = bigger;
4934 }
4935 }
4936 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
4937 == NULL)
4938 vim_free(new_fname);
4939 else
4940 {
4941 if (++depth == old_files)
4942 {
4943 /*
4944 * lalloc() for 'bigger' must have failed above. We
4945 * will forget one of our already visited files now.
4946 */
4947 vim_free(files[old_files].name);
4948 ++old_files;
4949 }
4950 files[depth].name = curr_fname = new_fname;
4951 files[depth].lnum = 0;
4952 files[depth].matched = FALSE;
4953#ifdef FEAT_INS_EXPAND
4954 if (action == ACTION_EXPAND)
4955 {
Bram Moolenaardf40adf2006-10-14 12:32:39 +00004956 msg_hist_off = TRUE; /* reset in msg_trunc_attr() */
Bram Moolenaar555b2802005-05-19 21:08:39 +00004957 vim_snprintf((char*)IObuff, IOSIZE,
4958 _("Scanning included file: %s"),
4959 (char *)new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
4961 }
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00004962 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963#endif
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00004964 if (p_verbose >= 5)
4965 {
4966 verbose_enter();
4967 smsg((char_u *)_("Searching included file %s"),
4968 (char *)new_fname);
4969 verbose_leave();
4970 }
4971
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 }
4973 }
4974 }
4975 else
4976 {
4977 /*
4978 * Check if the line is a define (type == FIND_DEFINE)
4979 */
4980 p = line;
4981search_line:
4982 define_matched = FALSE;
4983 if (def_regmatch.regprog != NULL
4984 && vim_regexec(&def_regmatch, line, (colnr_T)0))
4985 {
4986 /*
4987 * Pattern must be first identifier after 'define', so skip
4988 * to that position before checking for match of pattern. Also
4989 * don't let it match beyond the end of this identifier.
4990 */
4991 p = def_regmatch.endp[0];
4992 while (*p && !vim_iswordc(*p))
4993 p++;
4994 define_matched = TRUE;
4995 }
4996
4997 /*
4998 * Look for a match. Don't do this if we are looking for a
4999 * define and this line didn't match define_prog above.
5000 */
5001 if (def_regmatch.regprog == NULL || define_matched)
5002 {
5003 if (define_matched
5004#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005005 || (compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006#endif
5007 )
5008 {
5009 /* compare the first "len" chars from "ptr" */
5010 startp = skipwhite(p);
5011 if (p_ic)
5012 matched = !MB_STRNICMP(startp, ptr, len);
5013 else
5014 matched = !STRNCMP(startp, ptr, len);
5015 if (matched && define_matched && whole
5016 && vim_iswordc(startp[len]))
5017 matched = FALSE;
5018 }
5019 else if (regmatch.regprog != NULL
5020 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
5021 {
5022 matched = TRUE;
5023 startp = regmatch.startp[0];
5024 /*
5025 * Check if the line is not a comment line (unless we are
5026 * looking for a define). A line starting with "# define"
5027 * is not considered to be a comment line.
5028 */
5029 if (!define_matched && skip_comments)
5030 {
5031#ifdef FEAT_COMMENTS
5032 if ((*line != '#' ||
5033 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02005034 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 matched = FALSE;
5036
5037 /*
5038 * Also check for a "/ *" or "/ /" before the match.
5039 * Skips lines like "int backwards; / * normal index
5040 * * /" when looking for "normal".
5041 * Note: Doesn't skip "/ *" in comments.
5042 */
5043 p = skipwhite(line);
5044 if (matched
5045 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
5046#endif
5047 for (p = line; *p && p < startp; ++p)
5048 {
5049 if (matched
5050 && p[0] == '/'
5051 && (p[1] == '*' || p[1] == '/'))
5052 {
5053 matched = FALSE;
5054 /* After "//" all text is comment */
5055 if (p[1] == '/')
5056 break;
5057 ++p;
5058 }
5059 else if (!matched && p[0] == '*' && p[1] == '/')
5060 {
5061 /* Can find match after "* /". */
5062 matched = TRUE;
5063 ++p;
5064 }
5065 }
5066 }
5067 }
5068 }
5069 }
5070 if (matched)
5071 {
5072#ifdef FEAT_INS_EXPAND
5073 if (action == ACTION_EXPAND)
5074 {
5075 int reuse = 0;
5076 int add_r;
5077 char_u *aux;
5078
5079 if (depth == -1 && lnum == curwin->w_cursor.lnum)
5080 break;
5081 found = TRUE;
5082 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005083 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005085 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086 if (vim_iswordp(p))
5087 goto exit_matched;
5088 p = find_word_start(p);
5089 }
5090 p = find_word_end(p);
5091 i = (int)(p - aux);
5092
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005093 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005095 /* IOSIZE > compl_length, so the STRNCPY works */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00005097
5098 /* Get the next line: when "depth" < 0 from the current
5099 * buffer, otherwise from the included file. Jump to
5100 * exit_matched when past the last line. */
5101 if (depth < 0)
5102 {
5103 if (lnum >= end_lnum)
5104 goto exit_matched;
5105 line = ml_get(++lnum);
5106 }
5107 else if (vim_fgets(line = file_line,
5108 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 goto exit_matched;
5110
5111 /* we read a line, set "already" to check this "line" later
5112 * if depth >= 0 we'll increase files[depth].lnum far
5113 * bellow -- Acevedo */
5114 already = aux = p = skipwhite(line);
5115 p = find_word_start(p);
5116 p = find_word_end(p);
5117 if (p > aux)
5118 {
5119 if (*aux != ')' && IObuff[i-1] != TAB)
5120 {
5121 if (IObuff[i-1] != ' ')
5122 IObuff[i++] = ' ';
5123 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/
5124 if (p_js
5125 && (IObuff[i-2] == '.'
5126 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
5127 && (IObuff[i-2] == '?'
5128 || IObuff[i-2] == '!'))))
5129 IObuff[i++] = ' ';
5130 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005131 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 if (p - aux >= IOSIZE - i)
5133 p = aux + IOSIZE - i - 1;
5134 STRNCPY(IObuff + i, aux, p - aux);
5135 i += (int)(p - aux);
5136 reuse |= CONT_S_IPOS;
5137 }
5138 IObuff[i] = NUL;
5139 aux = IObuff;
5140
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005141 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 goto exit_matched;
5143 }
5144
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005145 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 curr_fname == curbuf->b_fname ? NULL : curr_fname,
5147 dir, reuse);
5148 if (add_r == OK)
5149 /* if dir was BACKWARD then honor it just once */
5150 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005151 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 break;
5153 }
5154 else
5155#endif
5156 if (action == ACTION_SHOW_ALL)
5157 {
5158 found = TRUE;
5159 if (!did_show)
5160 gotocmdline(TRUE); /* cursor at status line */
5161 if (curr_fname != prev_fname)
5162 {
5163 if (did_show)
5164 msg_putchar('\n'); /* cursor below last one */
5165 if (!got_int) /* don't display if 'q' typed
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005166 at "--more--" message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167 msg_home_replace_hl(curr_fname);
5168 prev_fname = curr_fname;
5169 }
5170 did_show = TRUE;
5171 if (!got_int)
5172 show_pat_in_path(line, type, TRUE, action,
5173 (depth == -1) ? NULL : files[depth].fp,
5174 (depth == -1) ? &lnum : &files[depth].lnum,
5175 match_count++);
5176
5177 /* Set matched flag for this file and all the ones that
5178 * include it */
5179 for (i = 0; i <= depth; ++i)
5180 files[i].matched = TRUE;
5181 }
5182 else if (--count <= 0)
5183 {
5184 found = TRUE;
5185 if (depth == -1 && lnum == curwin->w_cursor.lnum
5186#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5187 && g_do_tagpreview == 0
5188#endif
5189 )
5190 EMSG(_("E387: Match is on current line"));
5191 else if (action == ACTION_SHOW)
5192 {
5193 show_pat_in_path(line, type, did_show, action,
5194 (depth == -1) ? NULL : files[depth].fp,
5195 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
5196 did_show = TRUE;
5197 }
5198 else
5199 {
5200#ifdef FEAT_GUI
5201 need_mouse_correct = TRUE;
5202#endif
5203#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5204 /* ":psearch" uses the preview window */
5205 if (g_do_tagpreview != 0)
5206 {
5207 curwin_save = curwin;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005208 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209 }
5210#endif
5211 if (action == ACTION_SPLIT)
5212 {
5213#ifdef FEAT_WINDOWS
5214 if (win_split(0, 0) == FAIL)
5215#endif
5216 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005217 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218 }
5219 if (depth == -1)
5220 {
5221 /* match in current file */
5222#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5223 if (g_do_tagpreview != 0)
5224 {
5225 if (getfile(0, curwin_save->w_buffer->b_fname,
5226 NULL, TRUE, lnum, FALSE) > 0)
5227 break; /* failed to jump to file */
5228 }
5229 else
5230#endif
5231 setpcmark();
5232 curwin->w_cursor.lnum = lnum;
5233 }
5234 else
5235 {
5236 if (getfile(0, files[depth].name, NULL, TRUE,
5237 files[depth].lnum, FALSE) > 0)
5238 break; /* failed to jump to file */
5239 /* autocommands may have changed the lnum, we don't
5240 * want that here */
5241 curwin->w_cursor.lnum = files[depth].lnum;
5242 }
5243 }
5244 if (action != ACTION_SHOW)
5245 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005246 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247 curwin->w_set_curswant = TRUE;
5248 }
5249
5250#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5251 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005252 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 {
5254 /* Return cursor to where we were */
5255 validate_cursor();
5256 redraw_later(VALID);
5257 win_enter(curwin_save, TRUE);
5258 }
5259#endif
5260 break;
5261 }
5262#ifdef FEAT_INS_EXPAND
5263exit_matched:
5264#endif
5265 matched = FALSE;
5266 /* look for other matches in the rest of the line if we
5267 * are not at the end of it already */
5268 if (def_regmatch.regprog == NULL
5269#ifdef FEAT_INS_EXPAND
5270 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005271 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272#endif
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005273 && *startp != NUL
Bram Moolenaar94c465c2012-07-19 17:18:26 +02005274 && *(p = startp + MB_PTR2LEN(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 goto search_line;
5276 }
5277 line_breakcheck();
5278#ifdef FEAT_INS_EXPAND
5279 if (action == ACTION_EXPAND)
Bram Moolenaar572cb562005-08-05 21:35:02 +00005280 ins_compl_check_keys(30);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005281 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282#else
5283 if (got_int)
5284#endif
5285 break;
5286
5287 /*
5288 * Read the next line. When reading an included file and encountering
5289 * end-of-file, close the file and continue in the file that included
5290 * it.
5291 */
5292 while (depth >= 0 && !already
5293 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5294 {
5295 fclose(files[depth].fp);
5296 --old_files;
5297 files[old_files].name = files[depth].name;
5298 files[old_files].matched = files[depth].matched;
5299 --depth;
5300 curr_fname = (depth == -1) ? curbuf->b_fname
5301 : files[depth].name;
5302 if (depth < depth_displayed)
5303 depth_displayed = depth;
5304 }
5305 if (depth >= 0) /* we could read the line */
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005306 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 files[depth].lnum++;
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005308 /* Remove any CR and LF from the line. */
5309 i = (int)STRLEN(line);
5310 if (i > 0 && line[i - 1] == '\n')
5311 line[--i] = NUL;
5312 if (i > 0 && line[i - 1] == '\r')
5313 line[--i] = NUL;
5314 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 else if (!already)
5316 {
5317 if (++lnum > end_lnum)
5318 break;
5319 line = ml_get(lnum);
5320 }
5321 already = NULL;
5322 }
5323 /* End of big for (;;) loop. */
5324
5325 /* Close any files that are still open. */
5326 for (i = 0; i <= depth; i++)
5327 {
5328 fclose(files[i].fp);
5329 vim_free(files[i].name);
5330 }
5331 for (i = old_files; i < max_path_depth; i++)
5332 vim_free(files[i].name);
5333 vim_free(files);
5334
5335 if (type == CHECK_PATH)
5336 {
5337 if (!did_show)
5338 {
5339 if (action != ACTION_SHOW_ALL)
5340 MSG(_("All included files were found"));
5341 else
5342 MSG(_("No included files"));
5343 }
5344 }
5345 else if (!found
5346#ifdef FEAT_INS_EXPAND
5347 && action != ACTION_EXPAND
5348#endif
5349 )
5350 {
5351#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005352 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353#else
5354 if (got_int)
5355#endif
5356 EMSG(_(e_interr));
5357 else if (type == FIND_DEFINE)
5358 EMSG(_("E388: Couldn't find definition"));
5359 else
5360 EMSG(_("E389: Couldn't find pattern"));
5361 }
5362 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5363 msg_end();
5364
5365fpip_end:
5366 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02005367 vim_regfree(regmatch.regprog);
5368 vim_regfree(incl_regmatch.regprog);
5369 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370}
5371
5372 static void
5373show_pat_in_path(line, type, did_show, action, fp, lnum, count)
5374 char_u *line;
5375 int type;
5376 int did_show;
5377 int action;
5378 FILE *fp;
5379 linenr_T *lnum;
5380 long count;
5381{
5382 char_u *p;
5383
5384 if (did_show)
5385 msg_putchar('\n'); /* cursor below last one */
Bram Moolenaar91170f82006-05-05 21:15:17 +00005386 else if (!msg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387 gotocmdline(TRUE); /* cursor at status line */
5388 if (got_int) /* 'q' typed at "--more--" message */
5389 return;
5390 for (;;)
5391 {
5392 p = line + STRLEN(line) - 1;
5393 if (fp != NULL)
5394 {
5395 /* We used fgets(), so get rid of newline at end */
5396 if (p >= line && *p == '\n')
5397 --p;
5398 if (p >= line && *p == '\r')
5399 --p;
5400 *(p + 1) = NUL;
5401 }
5402 if (action == ACTION_SHOW_ALL)
5403 {
5404 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */
5405 msg_puts(IObuff);
5406 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */
5407 /* Highlight line numbers */
5408 msg_puts_attr(IObuff, hl_attr(HLF_N));
5409 MSG_PUTS(" ");
5410 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005411 msg_prt_line(line, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 out_flush(); /* show one line at a time */
5413
5414 /* Definition continues until line that doesn't end with '\' */
5415 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5416 break;
5417
5418 if (fp != NULL)
5419 {
5420 if (vim_fgets(line, LSIZE, fp)) /* end of file */
5421 break;
5422 ++*lnum;
5423 }
5424 else
5425 {
5426 if (++*lnum > curbuf->b_ml.ml_line_count)
5427 break;
5428 line = ml_get(*lnum);
5429 }
5430 msg_putchar('\n');
5431 }
5432}
5433#endif
5434
5435#ifdef FEAT_VIMINFO
5436 int
5437read_viminfo_search_pattern(virp, force)
5438 vir_T *virp;
5439 int force;
5440{
5441 char_u *lp;
5442 int idx = -1;
5443 int magic = FALSE;
5444 int no_scs = FALSE;
5445 int off_line = FALSE;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005446 int off_end = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447 long off = 0;
5448 int setlast = FALSE;
5449#ifdef FEAT_SEARCH_EXTRA
5450 static int hlsearch_on = FALSE;
5451#endif
5452 char_u *val;
5453
5454 /*
5455 * Old line types:
5456 * "/pat", "&pat": search/subst. pat
5457 * "~/pat", "~&pat": last used search/subst. pat
5458 * New line types:
5459 * "~h", "~H": hlsearch highlighting off/on
5460 * "~<magic><smartcase><line><end><off><last><which>pat"
5461 * <magic>: 'm' off, 'M' on
5462 * <smartcase>: 's' off, 'S' on
5463 * <line>: 'L' line offset, 'l' char offset
5464 * <end>: 'E' from end, 'e' from start
5465 * <off>: decimal, offset
5466 * <last>: '~' last used pattern
5467 * <which>: '/' search pat, '&' subst. pat
5468 */
5469 lp = virp->vir_line;
5470 if (lp[0] == '~' && (lp[1] == 'm' || lp[1] == 'M')) /* new line type */
5471 {
5472 if (lp[1] == 'M') /* magic on */
5473 magic = TRUE;
5474 if (lp[2] == 's')
5475 no_scs = TRUE;
5476 if (lp[3] == 'L')
5477 off_line = TRUE;
5478 if (lp[4] == 'E')
Bram Moolenaared203462004-06-16 11:19:22 +00005479 off_end = SEARCH_END;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 lp += 5;
5481 off = getdigits(&lp);
5482 }
5483 if (lp[0] == '~') /* use this pattern for last-used pattern */
5484 {
5485 setlast = TRUE;
5486 lp++;
5487 }
5488 if (lp[0] == '/')
5489 idx = RE_SEARCH;
5490 else if (lp[0] == '&')
5491 idx = RE_SUBST;
5492#ifdef FEAT_SEARCH_EXTRA
5493 else if (lp[0] == 'h') /* ~h: 'hlsearch' highlighting off */
5494 hlsearch_on = FALSE;
5495 else if (lp[0] == 'H') /* ~H: 'hlsearch' highlighting on */
5496 hlsearch_on = TRUE;
5497#endif
5498 if (idx >= 0)
5499 {
5500 if (force || spats[idx].pat == NULL)
5501 {
5502 val = viminfo_readstring(virp, (int)(lp - virp->vir_line + 1),
5503 TRUE);
5504 if (val != NULL)
5505 {
5506 set_last_search_pat(val, idx, magic, setlast);
5507 vim_free(val);
5508 spats[idx].no_scs = no_scs;
5509 spats[idx].off.line = off_line;
5510 spats[idx].off.end = off_end;
5511 spats[idx].off.off = off;
5512#ifdef FEAT_SEARCH_EXTRA
5513 if (setlast)
Bram Moolenaar8050efa2013-11-08 04:30:20 +01005514 {
5515 SET_NO_HLSEARCH(!hlsearch_on);
5516 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517#endif
5518 }
5519 }
5520 }
5521 return viminfo_readline(virp);
5522}
5523
5524 void
5525write_viminfo_search_pattern(fp)
5526 FILE *fp;
5527{
5528 if (get_viminfo_parameter('/') != 0)
5529 {
5530#ifdef FEAT_SEARCH_EXTRA
5531 fprintf(fp, "\n# hlsearch on (H) or off (h):\n~%c",
5532 (no_hlsearch || find_viminfo_parameter('h') != NULL) ? 'h' : 'H');
5533#endif
5534 wvsp_one(fp, RE_SEARCH, "", '/');
Bram Moolenaar9b228712008-07-18 10:05:58 +00005535 wvsp_one(fp, RE_SUBST, _("Substitute "), '&');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 }
5537}
5538
5539 static void
5540wvsp_one(fp, idx, s, sc)
5541 FILE *fp; /* file to write to */
5542 int idx; /* spats[] index */
5543 char *s; /* search pat */
5544 int sc; /* dir char */
5545{
5546 if (spats[idx].pat != NULL)
5547 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005548 fprintf(fp, _("\n# Last %sSearch Pattern:\n~"), s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549 /* off.dir is not stored, it's reset to forward */
5550 fprintf(fp, "%c%c%c%c%ld%s%c",
5551 spats[idx].magic ? 'M' : 'm', /* magic */
5552 spats[idx].no_scs ? 's' : 'S', /* smartcase */
5553 spats[idx].off.line ? 'L' : 'l', /* line offset */
5554 spats[idx].off.end ? 'E' : 'e', /* offset from end */
5555 spats[idx].off.off, /* offset */
5556 last_idx == idx ? "~" : "", /* last used pat */
5557 sc);
5558 viminfo_writestring(fp, spats[idx].pat);
5559 }
5560}
5561#endif /* FEAT_VIMINFO */