blob: 5d02dd9e3344df060df27503570c87ebd0bb83e4 [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 */
204 if (!(options & SEARCH_KEEP))
205 {
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 Moolenaar071d4272004-06-13 20:20:40 +0000292 no_hlsearch = FALSE;
293#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
336 no_hlsearch = saved_no_hlsearch;
337# 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/*
509 * lowest level search function.
510 * 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 Moolenaar071d4272004-06-13 20:20:40 +00001151 no_hlsearch = FALSE;
1152 }
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:
1440 if (options & SEARCH_KEEP)
1441 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
3201#ifdef FEAT_VISUAL
3202 /* Correct cursor when 'selection' is exclusive */
3203 if (VIsual_active && *p_sel == 'e' && lt(VIsual, curwin->w_cursor))
3204 dec_cursor();
3205
3206 /*
3207 * When Visual mode is not active, or when the VIsual area is only one
3208 * character, select the word and/or white space under the cursor.
3209 */
3210 if (!VIsual_active || equalpos(curwin->w_cursor, VIsual))
3211#endif
3212 {
3213 /*
3214 * Go to start of current word or white space.
3215 */
3216 back_in_line();
3217 start_pos = curwin->w_cursor;
3218
3219 /*
3220 * If the start is on white space, and white space should be included
3221 * (" word"), or start is not on white space, and white space should
3222 * not be included ("word"), find end of word.
3223 */
3224 if ((cls() == 0) == include)
3225 {
3226 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3227 return FAIL;
3228 }
3229 else
3230 {
3231 /*
3232 * If the start is not on white space, and white space should be
3233 * included ("word "), or start is on white space and white
3234 * space should not be included (" "), find start of word.
3235 * If we end up in the first column of the next line (single char
3236 * word) back up to end of the line.
3237 */
3238 fwd_word(1L, bigword, TRUE);
3239 if (curwin->w_cursor.col == 0)
3240 decl(&curwin->w_cursor);
3241 else
3242 oneleft();
3243
3244 if (include)
3245 include_white = TRUE;
3246 }
3247
3248#ifdef FEAT_VISUAL
3249 if (VIsual_active)
3250 {
3251 /* should do something when inclusive == FALSE ! */
3252 VIsual = start_pos;
3253 redraw_curbuf_later(INVERTED); /* update the inversion */
3254 }
3255 else
3256#endif
3257 {
3258 oap->start = start_pos;
3259 oap->motion_type = MCHAR;
3260 }
3261 --count;
3262 }
3263
3264 /*
3265 * When count is still > 0, extend with more objects.
3266 */
3267 while (count > 0)
3268 {
3269 inclusive = TRUE;
3270#ifdef FEAT_VISUAL
3271 if (VIsual_active && lt(curwin->w_cursor, VIsual))
3272 {
3273 /*
3274 * In Visual mode, with cursor at start: move cursor back.
3275 */
3276 if (decl(&curwin->w_cursor) == -1)
3277 return FAIL;
3278 if (include != (cls() != 0))
3279 {
3280 if (bck_word(1L, bigword, TRUE) == FAIL)
3281 return FAIL;
3282 }
3283 else
3284 {
3285 if (bckend_word(1L, bigword, TRUE) == FAIL)
3286 return FAIL;
3287 (void)incl(&curwin->w_cursor);
3288 }
3289 }
3290 else
3291#endif
3292 {
3293 /*
3294 * Move cursor forward one word and/or white area.
3295 */
3296 if (incl(&curwin->w_cursor) == -1)
3297 return FAIL;
3298 if (include != (cls() == 0))
3299 {
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003300 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 return FAIL;
3302 /*
3303 * If end is just past a new-line, we don't want to include
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003304 * the first character on the line.
3305 * Put cursor on last char of white.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306 */
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003307 if (oneleft() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308 inclusive = FALSE;
3309 }
3310 else
3311 {
3312 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3313 return FAIL;
3314 }
3315 }
3316 --count;
3317 }
3318
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003319 if (include_white && (cls() != 0
3320 || (curwin->w_cursor.col == 0 && !inclusive)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 {
3322 /*
3323 * If we don't include white space at the end, move the start
3324 * to include some white space there. This makes "daw" work
3325 * better on the last word in a sentence (and "2daw" on last-but-one
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003326 * word). Also when "2daw" deletes "word." at the end of the line
3327 * (cursor is at start of next line).
3328 * But don't delete white space at start of line (indent).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329 */
3330 pos = curwin->w_cursor; /* save cursor position */
3331 curwin->w_cursor = start_pos;
3332 if (oneleft() == OK)
3333 {
3334 back_in_line();
3335 if (cls() == 0 && curwin->w_cursor.col > 0)
3336 {
3337#ifdef FEAT_VISUAL
3338 if (VIsual_active)
3339 VIsual = curwin->w_cursor;
3340 else
3341#endif
3342 oap->start = curwin->w_cursor;
3343 }
3344 }
3345 curwin->w_cursor = pos; /* put cursor back at end */
3346 }
3347
3348#ifdef FEAT_VISUAL
3349 if (VIsual_active)
3350 {
3351 if (*p_sel == 'e' && inclusive && ltoreq(VIsual, curwin->w_cursor))
3352 inc_cursor();
3353 if (VIsual_mode == 'V')
3354 {
3355 VIsual_mode = 'v';
3356 redraw_cmdline = TRUE; /* show mode later */
3357 }
3358 }
3359 else
3360#endif
3361 oap->inclusive = inclusive;
3362
3363 return OK;
3364}
3365
3366/*
3367 * Find sentence(s) under the cursor, cursor at end.
3368 * When Visual active, extend it by one or more sentences.
3369 */
3370 int
3371current_sent(oap, count, include)
3372 oparg_T *oap;
3373 long count;
3374 int include;
3375{
3376 pos_T start_pos;
3377 pos_T pos;
3378 int start_blank;
3379 int c;
3380 int at_start_sent;
3381 long ncount;
3382
3383 start_pos = curwin->w_cursor;
3384 pos = start_pos;
3385 findsent(FORWARD, 1L); /* Find start of next sentence. */
3386
3387#ifdef FEAT_VISUAL
3388 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003389 * When the Visual area is bigger than one character: Extend it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390 */
3391 if (VIsual_active && !equalpos(start_pos, VIsual))
3392 {
3393extend:
3394 if (lt(start_pos, VIsual))
3395 {
3396 /*
3397 * Cursor at start of Visual area.
3398 * Find out where we are:
3399 * - in the white space before a sentence
3400 * - in a sentence or just after it
3401 * - at the start of a sentence
3402 */
3403 at_start_sent = TRUE;
3404 decl(&pos);
3405 while (lt(pos, curwin->w_cursor))
3406 {
3407 c = gchar_pos(&pos);
3408 if (!vim_iswhite(c))
3409 {
3410 at_start_sent = FALSE;
3411 break;
3412 }
3413 incl(&pos);
3414 }
3415 if (!at_start_sent)
3416 {
3417 findsent(BACKWARD, 1L);
3418 if (equalpos(curwin->w_cursor, start_pos))
3419 at_start_sent = TRUE; /* exactly at start of sentence */
3420 else
3421 /* inside a sentence, go to its end (start of next) */
3422 findsent(FORWARD, 1L);
3423 }
3424 if (include) /* "as" gets twice as much as "is" */
3425 count *= 2;
3426 while (count--)
3427 {
3428 if (at_start_sent)
3429 find_first_blank(&curwin->w_cursor);
3430 c = gchar_cursor();
3431 if (!at_start_sent || (!include && !vim_iswhite(c)))
3432 findsent(BACKWARD, 1L);
3433 at_start_sent = !at_start_sent;
3434 }
3435 }
3436 else
3437 {
3438 /*
3439 * Cursor at end of Visual area.
3440 * Find out where we are:
3441 * - just before a sentence
3442 * - just before or in the white space before a sentence
3443 * - in a sentence
3444 */
3445 incl(&pos);
3446 at_start_sent = TRUE;
3447 if (!equalpos(pos, curwin->w_cursor)) /* not just before a sentence */
3448 {
3449 at_start_sent = FALSE;
3450 while (lt(pos, curwin->w_cursor))
3451 {
3452 c = gchar_pos(&pos);
3453 if (!vim_iswhite(c))
3454 {
3455 at_start_sent = TRUE;
3456 break;
3457 }
3458 incl(&pos);
3459 }
3460 if (at_start_sent) /* in the sentence */
3461 findsent(BACKWARD, 1L);
3462 else /* in/before white before a sentence */
3463 curwin->w_cursor = start_pos;
3464 }
3465
3466 if (include) /* "as" gets twice as much as "is" */
3467 count *= 2;
3468 findsent_forward(count, at_start_sent);
3469 if (*p_sel == 'e')
3470 ++curwin->w_cursor.col;
3471 }
3472 return OK;
3473 }
3474#endif
3475
3476 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003477 * If the cursor started on a blank, check if it is just before the start
3478 * of the next sentence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479 */
3480 while (c = gchar_pos(&pos), vim_iswhite(c)) /* vim_iswhite() is a macro */
3481 incl(&pos);
3482 if (equalpos(pos, curwin->w_cursor))
3483 {
3484 start_blank = TRUE;
3485 find_first_blank(&start_pos); /* go back to first blank */
3486 }
3487 else
3488 {
3489 start_blank = FALSE;
3490 findsent(BACKWARD, 1L);
3491 start_pos = curwin->w_cursor;
3492 }
3493 if (include)
3494 ncount = count * 2;
3495 else
3496 {
3497 ncount = count;
3498 if (start_blank)
3499 --ncount;
3500 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00003501 if (ncount > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 findsent_forward(ncount, TRUE);
3503 else
3504 decl(&curwin->w_cursor);
3505
3506 if (include)
3507 {
3508 /*
3509 * If the blank in front of the sentence is included, exclude the
3510 * blanks at the end of the sentence, go back to the first blank.
3511 * If there are no trailing blanks, try to include leading blanks.
3512 */
3513 if (start_blank)
3514 {
3515 find_first_blank(&curwin->w_cursor);
3516 c = gchar_pos(&curwin->w_cursor); /* vim_iswhite() is a macro */
3517 if (vim_iswhite(c))
3518 decl(&curwin->w_cursor);
3519 }
3520 else if (c = gchar_cursor(), !vim_iswhite(c))
3521 find_first_blank(&start_pos);
3522 }
3523
3524#ifdef FEAT_VISUAL
3525 if (VIsual_active)
3526 {
Bram Moolenaar641e2862012-07-25 15:06:34 +02003527 /* Avoid getting stuck with "is" on a single space before a sentence. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528 if (equalpos(start_pos, curwin->w_cursor))
3529 goto extend;
3530 if (*p_sel == 'e')
3531 ++curwin->w_cursor.col;
3532 VIsual = start_pos;
3533 VIsual_mode = 'v';
3534 redraw_curbuf_later(INVERTED); /* update the inversion */
3535 }
3536 else
3537#endif
3538 {
3539 /* include a newline after the sentence, if there is one */
3540 if (incl(&curwin->w_cursor) == -1)
3541 oap->inclusive = TRUE;
3542 else
3543 oap->inclusive = FALSE;
3544 oap->start = start_pos;
3545 oap->motion_type = MCHAR;
3546 }
3547 return OK;
3548}
3549
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003550/*
3551 * Find block under the cursor, cursor at end.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003552 * "what" and "other" are two matching parenthesis/brace/etc.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003553 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 int
3555current_block(oap, count, include, what, other)
3556 oparg_T *oap;
3557 long count;
3558 int include; /* TRUE == include white space */
3559 int what; /* '(', '{', etc. */
3560 int other; /* ')', '}', etc. */
3561{
3562 pos_T old_pos;
3563 pos_T *pos = NULL;
3564 pos_T start_pos;
3565 pos_T *end_pos;
3566 pos_T old_start, old_end;
3567 char_u *save_cpo;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003568 int sol = FALSE; /* '{' at start of line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569
3570 old_pos = curwin->w_cursor;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003571 old_end = curwin->w_cursor; /* remember where we started */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 old_start = old_end;
3573
3574 /*
3575 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive.
3576 */
3577#ifdef FEAT_VISUAL
3578 if (!VIsual_active || equalpos(VIsual, curwin->w_cursor))
3579#endif
3580 {
3581 setpcmark();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003582 if (what == '{') /* ignore indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 while (inindent(1))
3584 if (inc_cursor() != 0)
3585 break;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003586 if (gchar_cursor() == what)
3587 /* cursor on '(' or '{', move cursor just after it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 ++curwin->w_cursor.col;
3589 }
3590#ifdef FEAT_VISUAL
3591 else if (lt(VIsual, curwin->w_cursor))
3592 {
3593 old_start = VIsual;
3594 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3595 }
3596 else
3597 old_end = VIsual;
3598#endif
3599
3600 /*
3601 * Search backwards for unclosed '(', '{', etc..
3602 * Put this position in start_pos.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003603 * Ignore quotes here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 */
3605 save_cpo = p_cpo;
3606 p_cpo = (char_u *)"%";
3607 while (count-- > 0)
3608 {
3609 if ((pos = findmatch(NULL, what)) == NULL)
3610 break;
3611 curwin->w_cursor = *pos;
3612 start_pos = *pos; /* the findmatch for end_pos will overwrite *pos */
3613 }
3614 p_cpo = save_cpo;
3615
3616 /*
3617 * Search for matching ')', '}', etc.
3618 * Put this position in curwin->w_cursor.
3619 */
3620 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL)
3621 {
3622 curwin->w_cursor = old_pos;
3623 return FAIL;
3624 }
3625 curwin->w_cursor = *end_pos;
3626
3627 /*
3628 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE.
3629 * If the ending '}' is only preceded by indent, skip that indent.
3630 * But only if the resulting area is not smaller than what we started with.
3631 */
3632 while (!include)
3633 {
3634 incl(&start_pos);
3635 sol = (curwin->w_cursor.col == 0);
3636 decl(&curwin->w_cursor);
3637 if (what == '{')
3638 while (inindent(1))
3639 {
3640 sol = TRUE;
3641 if (decl(&curwin->w_cursor) != 0)
3642 break;
3643 }
3644#ifdef FEAT_VISUAL
3645 /*
3646 * In Visual mode, when the resulting area is not bigger than what we
3647 * started with, extend it to the next block, and then exclude again.
3648 */
3649 if (!lt(start_pos, old_start) && !lt(old_end, curwin->w_cursor)
3650 && VIsual_active)
3651 {
3652 curwin->w_cursor = old_start;
3653 decl(&curwin->w_cursor);
3654 if ((pos = findmatch(NULL, what)) == NULL)
3655 {
3656 curwin->w_cursor = old_pos;
3657 return FAIL;
3658 }
3659 start_pos = *pos;
3660 curwin->w_cursor = *pos;
3661 if ((end_pos = findmatch(NULL, other)) == NULL)
3662 {
3663 curwin->w_cursor = old_pos;
3664 return FAIL;
3665 }
3666 curwin->w_cursor = *end_pos;
3667 }
3668 else
3669#endif
3670 break;
3671 }
3672
3673#ifdef FEAT_VISUAL
3674 if (VIsual_active)
3675 {
3676 if (*p_sel == 'e')
3677 ++curwin->w_cursor.col;
Bram Moolenaara5792f52005-11-23 21:25:05 +00003678 if (sol && gchar_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 inc(&curwin->w_cursor); /* include the line break */
3680 VIsual = start_pos;
3681 VIsual_mode = 'v';
3682 redraw_curbuf_later(INVERTED); /* update the inversion */
3683 showmode();
3684 }
3685 else
3686#endif
3687 {
3688 oap->start = start_pos;
3689 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003690 oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691 if (sol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692 incl(&curwin->w_cursor);
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003693 else if (ltoreq(start_pos, curwin->w_cursor))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003694 /* Include the character under the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 oap->inclusive = TRUE;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003696 else
3697 /* End is before the start (no text in between <>, [], etc.): don't
3698 * operate on any text. */
3699 curwin->w_cursor = start_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 }
3701
3702 return OK;
3703}
3704
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003705static int in_html_tag __ARGS((int));
3706
3707/*
3708 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>".
3709 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>".
3710 */
3711 static int
3712in_html_tag(end_tag)
3713 int end_tag;
3714{
3715 char_u *line = ml_get_curline();
3716 char_u *p;
3717 int c;
3718 int lc = NUL;
3719 pos_T pos;
3720
3721#ifdef FEAT_MBYTE
3722 if (enc_dbcs)
3723 {
3724 char_u *lp = NULL;
3725
3726 /* We search forward until the cursor, because searching backwards is
3727 * very slow for DBCS encodings. */
3728 for (p = line; p < line + curwin->w_cursor.col; mb_ptr_adv(p))
3729 if (*p == '>' || *p == '<')
3730 {
3731 lc = *p;
3732 lp = p;
3733 }
3734 if (*p != '<') /* check for '<' under cursor */
3735 {
3736 if (lc != '<')
3737 return FALSE;
3738 p = lp;
3739 }
3740 }
3741 else
3742#endif
3743 {
3744 for (p = line + curwin->w_cursor.col; p > line; )
3745 {
3746 if (*p == '<') /* find '<' under/before cursor */
3747 break;
3748 mb_ptr_back(line, p);
3749 if (*p == '>') /* find '>' before cursor */
3750 break;
3751 }
3752 if (*p != '<')
3753 return FALSE;
3754 }
3755
3756 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003757 pos.col = (colnr_T)(p - line);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003758
3759 mb_ptr_adv(p);
3760 if (end_tag)
3761 /* check that there is a '/' after the '<' */
3762 return *p == '/';
3763
3764 /* check that there is no '/' after the '<' */
3765 if (*p == '/')
3766 return FALSE;
3767
3768 /* check that the matching '>' is not preceded by '/' */
3769 for (;;)
3770 {
3771 if (inc(&pos) < 0)
3772 return FALSE;
3773 c = *ml_get_pos(&pos);
3774 if (c == '>')
3775 break;
3776 lc = c;
3777 }
3778 return lc != '/';
3779}
3780
3781/*
3782 * Find tag block under the cursor, cursor at end.
3783 */
3784 int
3785current_tagblock(oap, count_arg, include)
3786 oparg_T *oap;
3787 long count_arg;
3788 int include; /* TRUE == include white space */
3789{
3790 long count = count_arg;
3791 long n;
3792 pos_T old_pos;
3793 pos_T start_pos;
3794 pos_T end_pos;
3795 pos_T old_start, old_end;
3796 char_u *spat, *epat;
3797 char_u *p;
3798 char_u *cp;
3799 int len;
3800 int r;
3801 int do_include = include;
3802 int save_p_ws = p_ws;
3803 int retval = FAIL;
3804
3805 p_ws = FALSE;
3806
3807 old_pos = curwin->w_cursor;
3808 old_end = curwin->w_cursor; /* remember where we started */
3809 old_start = old_end;
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003810#ifdef FEAT_VISUAL
3811 if (!VIsual_active || *p_sel == 'e')
3812#endif
3813 decl(&old_end); /* old_end is inclusive */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003814
3815 /*
Bram Moolenaar45360022005-07-21 21:08:21 +00003816 * If we start on "<aaa>" select that block.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003817 */
3818#ifdef FEAT_VISUAL
3819 if (!VIsual_active || equalpos(VIsual, curwin->w_cursor))
3820#endif
3821 {
3822 setpcmark();
3823
3824 /* ignore indent */
3825 while (inindent(1))
3826 if (inc_cursor() != 0)
3827 break;
3828
3829 if (in_html_tag(FALSE))
3830 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003831 /* cursor on start tag, move to its '>' */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003832 while (*ml_get_cursor() != '>')
3833 if (inc_cursor() < 0)
3834 break;
3835 }
3836 else if (in_html_tag(TRUE))
3837 {
3838 /* cursor on end tag, move to just before it */
3839 while (*ml_get_cursor() != '<')
3840 if (dec_cursor() < 0)
3841 break;
3842 dec_cursor();
3843 old_end = curwin->w_cursor;
3844 }
3845 }
3846#ifdef FEAT_VISUAL
3847 else if (lt(VIsual, curwin->w_cursor))
3848 {
3849 old_start = VIsual;
3850 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3851 }
3852 else
3853 old_end = VIsual;
3854#endif
3855
3856again:
3857 /*
3858 * Search backwards for unclosed "<aaa>".
3859 * Put this position in start_pos.
3860 */
3861 for (n = 0; n < count; ++n)
3862 {
Bram Moolenaar45360022005-07-21 21:08:21 +00003863 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)",
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003864 (char_u *)"",
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003865 (char_u *)"</[^>]*>", BACKWARD, (char_u *)"", 0,
Bram Moolenaar76929292008-01-06 19:07:36 +00003866 NULL, (linenr_T)0, 0L) <= 0)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003867 {
3868 curwin->w_cursor = old_pos;
3869 goto theend;
3870 }
3871 }
3872 start_pos = curwin->w_cursor;
3873
3874 /*
3875 * Search for matching "</aaa>". First isolate the "aaa".
3876 */
3877 inc_cursor();
3878 p = ml_get_cursor();
3879 for (cp = p; *cp != NUL && *cp != '>' && !vim_iswhite(*cp); mb_ptr_adv(cp))
3880 ;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003881 len = (int)(cp - p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003882 if (len == 0)
3883 {
3884 curwin->w_cursor = old_pos;
3885 goto theend;
3886 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01003887 spat = alloc(len + 31);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003888 epat = alloc(len + 9);
3889 if (spat == NULL || epat == NULL)
3890 {
3891 vim_free(spat);
3892 vim_free(epat);
3893 curwin->w_cursor = old_pos;
3894 goto theend;
3895 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01003896 sprintf((char *)spat, "<%.*s\\>\\%%(\\s\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003897 sprintf((char *)epat, "</%.*s>\\c", len, p);
3898
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003899 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, (char_u *)"",
Bram Moolenaar76929292008-01-06 19:07:36 +00003900 0, NULL, (linenr_T)0, 0L);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003901
3902 vim_free(spat);
3903 vim_free(epat);
3904
3905 if (r < 1 || lt(curwin->w_cursor, old_end))
3906 {
3907 /* Can't find other end or it's before the previous end. Could be a
3908 * HTML tag that doesn't have a matching end. Search backwards for
3909 * another starting tag. */
3910 count = 1;
3911 curwin->w_cursor = start_pos;
3912 goto again;
3913 }
3914
3915 if (do_include || r < 1)
3916 {
3917 /* Include up to the '>'. */
3918 while (*ml_get_cursor() != '>')
3919 if (inc_cursor() < 0)
3920 break;
3921 }
3922 else
3923 {
3924 /* Exclude the '<' of the end tag. */
3925 if (*ml_get_cursor() == '<')
3926 dec_cursor();
3927 }
3928 end_pos = curwin->w_cursor;
3929
3930 if (!do_include)
3931 {
3932 /* Exclude the start tag. */
3933 curwin->w_cursor = start_pos;
3934 while (inc_cursor() >= 0)
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003935 if (*ml_get_cursor() == '>')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003936 {
3937 inc_cursor();
3938 start_pos = curwin->w_cursor;
3939 break;
3940 }
3941 curwin->w_cursor = end_pos;
3942
Bram Moolenaar45360022005-07-21 21:08:21 +00003943 /* If we now have the same text as before reset "do_include" and try
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003944 * again. */
Bram Moolenaar45360022005-07-21 21:08:21 +00003945 if (equalpos(start_pos, old_start) && equalpos(end_pos, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003946 {
3947 do_include = TRUE;
3948 curwin->w_cursor = old_start;
3949 count = count_arg;
3950 goto again;
3951 }
3952 }
3953
3954#ifdef FEAT_VISUAL
3955 if (VIsual_active)
3956 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003957 /* If the end is before the start there is no text between tags, select
3958 * the char under the cursor. */
3959 if (lt(end_pos, start_pos))
3960 curwin->w_cursor = start_pos;
3961 else if (*p_sel == 'e')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003962 ++curwin->w_cursor.col;
3963 VIsual = start_pos;
3964 VIsual_mode = 'v';
3965 redraw_curbuf_later(INVERTED); /* update the inversion */
3966 showmode();
3967 }
3968 else
3969#endif
3970 {
3971 oap->start = start_pos;
3972 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003973 if (lt(end_pos, start_pos))
3974 {
3975 /* End is before the start: there is no text between tags; operate
3976 * on an empty area. */
3977 curwin->w_cursor = start_pos;
3978 oap->inclusive = FALSE;
3979 }
3980 else
3981 oap->inclusive = TRUE;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003982 }
3983 retval = OK;
3984
3985theend:
3986 p_ws = save_p_ws;
3987 return retval;
3988}
3989
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 int
3991current_par(oap, count, include, type)
3992 oparg_T *oap;
3993 long count;
3994 int include; /* TRUE == include white space */
3995 int type; /* 'p' for paragraph, 'S' for section */
3996{
3997 linenr_T start_lnum;
3998 linenr_T end_lnum;
3999 int white_in_front;
4000 int dir;
4001 int start_is_white;
4002 int prev_start_is_white;
4003 int retval = OK;
4004 int do_white = FALSE;
4005 int t;
4006 int i;
4007
4008 if (type == 'S') /* not implemented yet */
4009 return FAIL;
4010
4011 start_lnum = curwin->w_cursor.lnum;
4012
4013#ifdef FEAT_VISUAL
4014 /*
4015 * When visual area is more than one line: extend it.
4016 */
4017 if (VIsual_active && start_lnum != VIsual.lnum)
4018 {
4019extend:
4020 if (start_lnum < VIsual.lnum)
4021 dir = BACKWARD;
4022 else
4023 dir = FORWARD;
4024 for (i = count; --i >= 0; )
4025 {
4026 if (start_lnum ==
4027 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
4028 {
4029 retval = FAIL;
4030 break;
4031 }
4032
4033 prev_start_is_white = -1;
4034 for (t = 0; t < 2; ++t)
4035 {
4036 start_lnum += dir;
4037 start_is_white = linewhite(start_lnum);
4038 if (prev_start_is_white == start_is_white)
4039 {
4040 start_lnum -= dir;
4041 break;
4042 }
4043 for (;;)
4044 {
4045 if (start_lnum == (dir == BACKWARD
4046 ? 1 : curbuf->b_ml.ml_line_count))
4047 break;
4048 if (start_is_white != linewhite(start_lnum + dir)
4049 || (!start_is_white
4050 && startPS(start_lnum + (dir > 0
4051 ? 1 : 0), 0, 0)))
4052 break;
4053 start_lnum += dir;
4054 }
4055 if (!include)
4056 break;
4057 if (start_lnum == (dir == BACKWARD
4058 ? 1 : curbuf->b_ml.ml_line_count))
4059 break;
4060 prev_start_is_white = start_is_white;
4061 }
4062 }
4063 curwin->w_cursor.lnum = start_lnum;
4064 curwin->w_cursor.col = 0;
4065 return retval;
4066 }
4067#endif
4068
4069 /*
4070 * First move back to the start_lnum of the paragraph or white lines
4071 */
4072 white_in_front = linewhite(start_lnum);
4073 while (start_lnum > 1)
4074 {
4075 if (white_in_front) /* stop at first white line */
4076 {
4077 if (!linewhite(start_lnum - 1))
4078 break;
4079 }
4080 else /* stop at first non-white line of start of paragraph */
4081 {
4082 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
4083 break;
4084 }
4085 --start_lnum;
4086 }
4087
4088 /*
4089 * Move past the end of any white lines.
4090 */
4091 end_lnum = start_lnum;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004092 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
4093 ++end_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094
4095 --end_lnum;
4096 i = count;
4097 if (!include && white_in_front)
4098 --i;
4099 while (i--)
4100 {
4101 if (end_lnum == curbuf->b_ml.ml_line_count)
4102 return FAIL;
4103
4104 if (!include)
4105 do_white = linewhite(end_lnum + 1);
4106
4107 if (include || !do_white)
4108 {
4109 ++end_lnum;
4110 /*
4111 * skip to end of paragraph
4112 */
4113 while (end_lnum < curbuf->b_ml.ml_line_count
4114 && !linewhite(end_lnum + 1)
4115 && !startPS(end_lnum + 1, 0, 0))
4116 ++end_lnum;
4117 }
4118
4119 if (i == 0 && white_in_front && include)
4120 break;
4121
4122 /*
4123 * skip to end of white lines after paragraph
4124 */
4125 if (include || do_white)
4126 while (end_lnum < curbuf->b_ml.ml_line_count
4127 && linewhite(end_lnum + 1))
4128 ++end_lnum;
4129 }
4130
4131 /*
4132 * If there are no empty lines at the end, try to find some empty lines at
4133 * the start (unless that has been done already).
4134 */
4135 if (!white_in_front && !linewhite(end_lnum) && include)
4136 while (start_lnum > 1 && linewhite(start_lnum - 1))
4137 --start_lnum;
4138
4139#ifdef FEAT_VISUAL
4140 if (VIsual_active)
4141 {
4142 /* Problem: when doing "Vipipip" nothing happens in a single white
4143 * line, we get stuck there. Trap this here. */
4144 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4145 goto extend;
4146 VIsual.lnum = start_lnum;
4147 VIsual_mode = 'V';
4148 redraw_curbuf_later(INVERTED); /* update the inversion */
4149 showmode();
4150 }
4151 else
4152#endif
4153 {
4154 oap->start.lnum = start_lnum;
4155 oap->start.col = 0;
4156 oap->motion_type = MLINE;
4157 }
4158 curwin->w_cursor.lnum = end_lnum;
4159 curwin->w_cursor.col = 0;
4160
4161 return OK;
4162}
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004163
4164static int find_next_quote __ARGS((char_u *top_ptr, int col, int quotechar, char_u *escape));
4165static int find_prev_quote __ARGS((char_u *line, int col_start, int quotechar, char_u *escape));
4166
4167/*
4168 * Search quote char from string line[col].
4169 * Quote character escaped by one of the characters in "escape" is not counted
4170 * as a quote.
4171 * Returns column number of "quotechar" or -1 when not found.
4172 */
4173 static int
4174find_next_quote(line, col, quotechar, escape)
4175 char_u *line;
4176 int col;
4177 int quotechar;
4178 char_u *escape; /* escape characters, can be NULL */
4179{
4180 int c;
4181
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004182 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004183 {
4184 c = line[col];
4185 if (c == NUL)
4186 return -1;
4187 else if (escape != NULL && vim_strchr(escape, c))
4188 ++col;
4189 else if (c == quotechar)
4190 break;
4191#ifdef FEAT_MBYTE
4192 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004193 col += (*mb_ptr2len)(line + col);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004194 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004196 ++col;
4197 }
4198 return col;
4199}
4200
4201/*
4202 * Search backwards in "line" from column "col_start" to find "quotechar".
4203 * Quote character escaped by one of the characters in "escape" is not counted
4204 * as a quote.
4205 * Return the found column or zero.
4206 */
4207 static int
4208find_prev_quote(line, col_start, quotechar, escape)
4209 char_u *line;
4210 int col_start;
4211 int quotechar;
4212 char_u *escape; /* escape characters, can be NULL */
4213{
4214 int n;
4215
4216 while (col_start > 0)
4217 {
4218 --col_start;
4219#ifdef FEAT_MBYTE
4220 col_start -= (*mb_head_off)(line, line + col_start);
4221#endif
4222 n = 0;
4223 if (escape != NULL)
4224 while (col_start - n > 0 && vim_strchr(escape,
4225 line[col_start - n - 1]) != NULL)
4226 ++n;
4227 if (n & 1)
4228 col_start -= n; /* uneven number of escape chars, skip it */
4229 else if (line[col_start] == quotechar)
4230 break;
4231 }
4232 return col_start;
4233}
4234
4235/*
4236 * Find quote under the cursor, cursor at end.
4237 * Returns TRUE if found, else FALSE.
4238 */
4239 int
4240current_quote(oap, count, include, quotechar)
4241 oparg_T *oap;
Bram Moolenaarab194812005-09-14 21:40:12 +00004242 long count;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004243 int include; /* TRUE == include quote char */
4244 int quotechar; /* Quote character */
4245{
4246 char_u *line = ml_get_curline();
4247 int col_end;
4248 int col_start = curwin->w_cursor.col;
4249 int inclusive = FALSE;
4250#ifdef FEAT_VISUAL
4251 int vis_empty = TRUE; /* Visual selection <= 1 char */
4252 int vis_bef_curs = FALSE; /* Visual starts before cursor */
Bram Moolenaarab194812005-09-14 21:40:12 +00004253 int inside_quotes = FALSE; /* Looks like "i'" done before */
4254 int selected_quote = FALSE; /* Has quote inside selection */
4255 int i;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004256
4257 /* Correct cursor when 'selection' is exclusive */
4258 if (VIsual_active)
4259 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004260 vis_bef_curs = lt(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004261 if (*p_sel == 'e' && vis_bef_curs)
4262 dec_cursor();
4263 vis_empty = equalpos(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004264 }
Bram Moolenaarab194812005-09-14 21:40:12 +00004265
4266 if (!vis_empty)
4267 {
4268 /* Check if the existing selection exactly spans the text inside
4269 * quotes. */
4270 if (vis_bef_curs)
4271 {
4272 inside_quotes = VIsual.col > 0
4273 && line[VIsual.col - 1] == quotechar
4274 && line[curwin->w_cursor.col] != NUL
4275 && line[curwin->w_cursor.col + 1] == quotechar;
4276 i = VIsual.col;
4277 col_end = curwin->w_cursor.col;
4278 }
4279 else
4280 {
4281 inside_quotes = curwin->w_cursor.col > 0
4282 && line[curwin->w_cursor.col - 1] == quotechar
4283 && line[VIsual.col] != NUL
4284 && line[VIsual.col + 1] == quotechar;
4285 i = curwin->w_cursor.col;
4286 col_end = VIsual.col;
4287 }
4288
4289 /* Find out if we have a quote in the selection. */
4290 while (i <= col_end)
4291 if (line[i++] == quotechar)
4292 {
4293 selected_quote = TRUE;
4294 break;
4295 }
4296 }
4297
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004298 if (!vis_empty && line[col_start] == quotechar)
4299 {
4300 /* Already selecting something and on a quote character. Find the
4301 * next quoted string. */
4302 if (vis_bef_curs)
4303 {
4304 /* Assume we are on a closing quote: move to after the next
4305 * opening quote. */
4306 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4307 if (col_start < 0)
4308 return FALSE;
4309 col_end = find_next_quote(line, col_start + 1, quotechar,
4310 curbuf->b_p_qe);
4311 if (col_end < 0)
4312 {
4313 /* We were on a starting quote perhaps? */
4314 col_end = col_start;
4315 col_start = curwin->w_cursor.col;
4316 }
4317 }
4318 else
4319 {
4320 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4321 if (line[col_end] != quotechar)
4322 return FALSE;
4323 col_start = find_prev_quote(line, col_end, quotechar,
4324 curbuf->b_p_qe);
4325 if (line[col_start] != quotechar)
4326 {
4327 /* We were on an ending quote perhaps? */
4328 col_start = col_end;
4329 col_end = curwin->w_cursor.col;
4330 }
4331 }
4332 }
4333 else
4334#endif
4335
4336 if (line[col_start] == quotechar
4337#ifdef FEAT_VISUAL
4338 || !vis_empty
4339#endif
4340 )
4341 {
4342 int first_col = col_start;
4343
4344#ifdef FEAT_VISUAL
4345 if (!vis_empty)
4346 {
4347 if (vis_bef_curs)
4348 first_col = find_next_quote(line, col_start, quotechar, NULL);
4349 else
4350 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4351 }
4352#endif
4353 /* The cursor is on a quote, we don't know if it's the opening or
4354 * closing quote. Search from the start of the line to find out.
4355 * Also do this when there is a Visual area, a' may leave the cursor
4356 * in between two strings. */
4357 col_start = 0;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004358 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004359 {
4360 /* Find open quote character. */
4361 col_start = find_next_quote(line, col_start, quotechar, NULL);
4362 if (col_start < 0 || col_start > first_col)
4363 return FALSE;
4364 /* Find close quote character. */
4365 col_end = find_next_quote(line, col_start + 1, quotechar,
4366 curbuf->b_p_qe);
4367 if (col_end < 0)
4368 return FALSE;
4369 /* If is cursor between start and end quote character, it is
4370 * target text object. */
4371 if (col_start <= first_col && first_col <= col_end)
4372 break;
4373 col_start = col_end + 1;
4374 }
4375 }
4376 else
4377 {
4378 /* Search backward for a starting quote. */
4379 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4380 if (line[col_start] != quotechar)
4381 {
4382 /* No quote before the cursor, look after the cursor. */
4383 col_start = find_next_quote(line, col_start, quotechar, NULL);
4384 if (col_start < 0)
4385 return FALSE;
4386 }
4387
4388 /* Find close quote character. */
4389 col_end = find_next_quote(line, col_start + 1, quotechar,
4390 curbuf->b_p_qe);
4391 if (col_end < 0)
4392 return FALSE;
4393 }
4394
4395 /* When "include" is TRUE, include spaces after closing quote or before
4396 * the starting quote. */
4397 if (include)
4398 {
4399 if (vim_iswhite(line[col_end + 1]))
4400 while (vim_iswhite(line[col_end + 1]))
4401 ++col_end;
4402 else
4403 while (col_start > 0 && vim_iswhite(line[col_start - 1]))
4404 --col_start;
4405 }
4406
Bram Moolenaarab194812005-09-14 21:40:12 +00004407 /* Set start position. After vi" another i" must include the ".
4408 * For v2i" include the quotes. */
4409 if (!include && count < 2
4410#ifdef FEAT_VISUAL
4411 && (vis_empty || !inside_quotes)
4412#endif
4413 )
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004414 ++col_start;
4415 curwin->w_cursor.col = col_start;
4416#ifdef FEAT_VISUAL
4417 if (VIsual_active)
4418 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004419 /* Set the start of the Visual area when the Visual area was empty, we
4420 * were just inside quotes or the Visual area didn't start at a quote
4421 * and didn't include a quote.
4422 */
4423 if (vis_empty
4424 || (vis_bef_curs
4425 && !selected_quote
4426 && (inside_quotes
4427 || (line[VIsual.col] != quotechar
4428 && (VIsual.col == 0
4429 || line[VIsual.col - 1] != quotechar)))))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004430 {
4431 VIsual = curwin->w_cursor;
4432 redraw_curbuf_later(INVERTED);
4433 }
4434 }
4435 else
4436#endif
4437 {
4438 oap->start = curwin->w_cursor;
4439 oap->motion_type = MCHAR;
4440 }
4441
4442 /* Set end position. */
4443 curwin->w_cursor.col = col_end;
Bram Moolenaarab194812005-09-14 21:40:12 +00004444 if ((include || count > 1
4445#ifdef FEAT_VISUAL
4446 /* After vi" another i" must include the ". */
4447 || (!vis_empty && inside_quotes)
4448#endif
4449 ) && inc_cursor() == 2)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004450 inclusive = TRUE;
4451#ifdef FEAT_VISUAL
4452 if (VIsual_active)
4453 {
4454 if (vis_empty || vis_bef_curs)
4455 {
4456 /* decrement cursor when 'selection' is not exclusive */
4457 if (*p_sel != 'e')
4458 dec_cursor();
4459 }
4460 else
4461 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004462 /* Cursor is at start of Visual area. Set the end of the Visual
4463 * area when it was just inside quotes or it didn't end at a
4464 * quote. */
4465 if (inside_quotes
4466 || (!selected_quote
4467 && line[VIsual.col] != quotechar
4468 && (line[VIsual.col] == NUL
4469 || line[VIsual.col + 1] != quotechar)))
4470 {
4471 dec_cursor();
4472 VIsual = curwin->w_cursor;
4473 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004474 curwin->w_cursor.col = col_start;
4475 }
4476 if (VIsual_mode == 'V')
4477 {
4478 VIsual_mode = 'v';
4479 redraw_cmdline = TRUE; /* show mode later */
4480 }
4481 }
4482 else
4483#endif
4484 {
4485 /* Set inclusive and other oap's flags. */
4486 oap->inclusive = inclusive;
4487 }
4488
4489 return OK;
4490}
4491
4492#endif /* FEAT_TEXTOBJ */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004494#if defined(FEAT_VISUAL) || defined(PROTO)
Bram Moolenaare78495d2013-06-30 14:46:53 +02004495static int is_one_char __ARGS((char_u *pattern));
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004496
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004497/*
4498 * Find next search match under cursor, cursor at end.
4499 * Used while an operator is pending, and in Visual mode.
4500 * TODO: redo only works when used in operator pending mode
4501 */
4502 int
4503current_search(count, forward)
4504 long count;
4505 int forward; /* move forward or backwards */
4506{
4507 pos_T start_pos; /* position before the pattern */
4508 pos_T orig_pos; /* position of the cursor at beginning */
4509 pos_T pos; /* position after the pattern */
4510 int i;
4511 int dir;
4512 int result; /* result of various function calls */
4513 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004514 int flags = 0;
Bram Moolenaarde9149e2013-07-17 19:22:13 +02004515 pos_T save_VIsual = VIsual;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004516 int one_char;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004517
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004518 /* wrapping should not occur */
4519 p_ws = FALSE;
4520
4521 /* Correct cursor when 'selection' is exclusive */
4522 if (VIsual_active && *p_sel == 'e' && lt(VIsual, curwin->w_cursor))
4523 dec_cursor();
4524
4525 if (VIsual_active)
4526 {
4527 orig_pos = curwin->w_cursor;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004528
4529 pos = curwin->w_cursor;
4530 start_pos = VIsual;
4531
4532 /* make sure, searching further will extend the match */
4533 if (VIsual_active)
4534 {
4535 if (forward)
4536 incl(&pos);
4537 else
4538 decl(&pos);
4539 }
4540 }
4541 else
4542 orig_pos = pos = start_pos = curwin->w_cursor;
4543
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004544 /* Is the pattern is zero-width? */
Bram Moolenaare78495d2013-06-30 14:46:53 +02004545 one_char = is_one_char(spats[last_idx].pat);
4546 if (one_char == -1)
4547 return FAIL; /* invalid pattern */
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004548
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004549 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004550 * The trick is to first search backwards and then search forward again,
4551 * so that a match at the current cursor position will be correctly
4552 * captured.
4553 */
4554 for (i = 0; i < 2; i++)
4555 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004556 if (forward)
4557 dir = i;
4558 else
4559 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004560
4561 flags = 0;
Bram Moolenaare78495d2013-06-30 14:46:53 +02004562 if (!dir && !one_char)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004563 flags = SEARCH_END;
4564
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004565 result = searchit(curwin, curbuf, &pos, (dir ? FORWARD : BACKWARD),
4566 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004567 SEARCH_KEEP | flags, RE_SEARCH, 0, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004568
4569 /* First search may fail, but then start searching from the
4570 * beginning of the file (cursor might be on the search match)
4571 * except when Visual mode is active, so that extending the visual
4572 * selection works. */
4573 if (!result && i) /* not found, abort */
4574 {
4575 curwin->w_cursor = orig_pos;
4576 if (VIsual_active)
4577 VIsual = save_VIsual;
4578 p_ws = old_p_ws;
4579 return FAIL;
4580 }
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004581 else if (!i && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004582 {
4583 if (forward) /* try again from start of buffer */
4584 {
4585 clearpos(&pos);
4586 }
4587 else /* try again from end of buffer */
4588 {
4589 /* searching backwards, so set pos to last line and col */
4590 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02004591 pos.col = (colnr_T)STRLEN(
4592 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004593 }
4594 }
4595
4596 }
4597
4598 start_pos = pos;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004599 flags = forward ? SEARCH_END : 0;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004600
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004601 /* move to match, except for zero-width matches, in which case, we are
4602 * already on the next match */
Bram Moolenaare78495d2013-06-30 14:46:53 +02004603 if (!one_char)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004604 result = searchit(curwin, curbuf, &pos, (forward ? FORWARD : BACKWARD),
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004605 spats[last_idx].pat, 0L, flags | SEARCH_KEEP, RE_SEARCH, 0, NULL);
4606
4607 if (!VIsual_active)
4608 VIsual = start_pos;
4609
4610 p_ws = old_p_ws;
4611 curwin->w_cursor = pos;
4612 VIsual_active = TRUE;
4613 VIsual_mode = 'v';
4614
4615 if (VIsual_active)
4616 {
4617 redraw_curbuf_later(INVERTED); /* update the inversion */
Bram Moolenaar718f0072012-10-03 13:35:51 +02004618 if (*p_sel == 'e')
4619 {
4620 /* Correction for exclusive selection depends on the direction. */
4621 if (forward && ltoreq(VIsual, curwin->w_cursor))
4622 inc_cursor();
4623 else if (!forward && ltoreq(curwin->w_cursor, VIsual))
4624 inc(&VIsual);
4625 }
4626
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004627 }
4628
4629#ifdef FEAT_FOLDING
4630 if (fdo_flags & FDO_SEARCH && KeyTyped)
4631 foldOpenCursor();
4632#endif
4633
4634 may_start_select('c');
4635#ifdef FEAT_MOUSE
4636 setmouse();
4637#endif
4638#ifdef FEAT_CLIPBOARD
4639 /* Make sure the clipboard gets updated. Needed because start and
4640 * end are still the same, and the selection needs to be owned */
4641 clip_star.vmode = NUL;
4642#endif
4643 redraw_curbuf_later(INVERTED);
4644 showmode();
4645
4646 return OK;
4647}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004648
4649/*
Bram Moolenaare78495d2013-06-30 14:46:53 +02004650 * Check if the pattern is one character or zero-width.
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004651 * Returns TRUE, FALSE or -1 for failure.
4652 */
4653 static int
Bram Moolenaare78495d2013-06-30 14:46:53 +02004654is_one_char(pattern)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004655 char_u *pattern;
4656{
4657 regmmatch_T regmatch;
4658 int nmatched = 0;
4659 int result = -1;
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004660 pos_T pos;
4661 int save_called_emsg = called_emsg;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004662
4663 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
4664 SEARCH_KEEP, &regmatch) == FAIL)
4665 return -1;
4666
4667 /* move to match */
4668 clearpos(&pos);
4669 if (searchit(curwin, curbuf, &pos, FORWARD, spats[last_idx].pat, 1,
4670 SEARCH_KEEP, RE_SEARCH, 0, NULL) != FAIL)
4671 {
4672 /* Zero-width pattern should match somewhere, then we can check if
4673 * start and end are in the same position. */
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004674 called_emsg = FALSE;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004675 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
4676 pos.lnum, (colnr_T)0, NULL);
4677
4678 if (!called_emsg)
4679 result = (nmatched != 0
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004680 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
4681 && regmatch.startpos[0].col == regmatch.endpos[0].col);
Bram Moolenaare78495d2013-06-30 14:46:53 +02004682
Bram Moolenaar4c7cb6b2013-10-02 21:55:02 +02004683 if (!result && inc(&pos) >= 0 && pos.col == regmatch.endpos[0].col)
4684 result = TRUE;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004685 }
4686
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004687 called_emsg |= save_called_emsg;
Bram Moolenaar473de612013-06-08 18:19:48 +02004688 vim_regfree(regmatch.regprog);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004689 return result;
4690}
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004691#endif /* FEAT_VISUAL */
4692
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4694 || defined(PROTO)
4695/*
4696 * return TRUE if line 'lnum' is empty or has white chars only.
4697 */
4698 int
4699linewhite(lnum)
4700 linenr_T lnum;
4701{
4702 char_u *p;
4703
4704 p = skipwhite(ml_get(lnum));
4705 return (*p == NUL);
4706}
4707#endif
4708
4709#if defined(FEAT_FIND_ID) || defined(PROTO)
4710/*
4711 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01004712 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 void
4715find_pattern_in_path(ptr, dir, len, whole, skip_comments,
4716 type, count, action, start_lnum, end_lnum)
4717 char_u *ptr; /* pointer to search pattern */
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004718 int dir UNUSED; /* direction of expansion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 int len; /* length of search pattern */
4720 int whole; /* match whole words only */
4721 int skip_comments; /* don't match inside comments */
4722 int type; /* Type of search; are we looking for a type?
4723 a macro? */
4724 long count;
4725 int action; /* What to do when we find it */
4726 linenr_T start_lnum; /* first line to start searching */
4727 linenr_T end_lnum; /* last line for searching */
4728{
4729 SearchedFile *files; /* Stack of included files */
4730 SearchedFile *bigger; /* When we need more space */
4731 int max_path_depth = 50;
4732 long match_count = 1;
4733
4734 char_u *pat;
4735 char_u *new_fname;
4736 char_u *curr_fname = curbuf->b_fname;
4737 char_u *prev_fname = NULL;
4738 linenr_T lnum;
4739 int depth;
4740 int depth_displayed; /* For type==CHECK_PATH */
4741 int old_files;
4742 int already_searched;
4743 char_u *file_line;
4744 char_u *line;
4745 char_u *p;
4746 char_u save_char;
4747 int define_matched;
4748 regmatch_T regmatch;
4749 regmatch_T incl_regmatch;
4750 regmatch_T def_regmatch;
4751 int matched = FALSE;
4752 int did_show = FALSE;
4753 int found = FALSE;
4754 int i;
4755 char_u *already = NULL;
4756 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004757 char_u *inc_opt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4759 win_T *curwin_save = NULL;
4760#endif
4761
4762 regmatch.regprog = NULL;
4763 incl_regmatch.regprog = NULL;
4764 def_regmatch.regprog = NULL;
4765
4766 file_line = alloc(LSIZE);
4767 if (file_line == NULL)
4768 return;
4769
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770 if (type != CHECK_PATH && type != FIND_DEFINE
4771#ifdef FEAT_INS_EXPAND
4772 /* when CONT_SOL is set compare "ptr" with the beginning of the line
4773 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004774 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775#endif
4776 )
4777 {
4778 pat = alloc(len + 5);
4779 if (pat == NULL)
4780 goto fpip_end;
4781 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
4782 /* ignore case according to p_ic, p_scs and pat */
4783 regmatch.rm_ic = ignorecase(pat);
4784 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4785 vim_free(pat);
4786 if (regmatch.regprog == NULL)
4787 goto fpip_end;
4788 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004789 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
4790 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004792 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793 if (incl_regmatch.regprog == NULL)
4794 goto fpip_end;
4795 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */
4796 }
4797 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
4798 {
4799 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
4800 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
4801 if (def_regmatch.regprog == NULL)
4802 goto fpip_end;
4803 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */
4804 }
4805 files = (SearchedFile *)lalloc_clear((long_u)
4806 (max_path_depth * sizeof(SearchedFile)), TRUE);
4807 if (files == NULL)
4808 goto fpip_end;
4809 old_files = max_path_depth;
4810 depth = depth_displayed = -1;
4811
4812 lnum = start_lnum;
4813 if (end_lnum > curbuf->b_ml.ml_line_count)
4814 end_lnum = curbuf->b_ml.ml_line_count;
4815 if (lnum > end_lnum) /* do at least one line */
4816 lnum = end_lnum;
4817 line = ml_get(lnum);
4818
4819 for (;;)
4820 {
4821 if (incl_regmatch.regprog != NULL
4822 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
4823 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004824 char_u *p_fname = (curr_fname == curbuf->b_fname)
4825 ? curbuf->b_ffname : curr_fname;
4826
4827 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
4828 /* Use text from '\zs' to '\ze' (or end) of 'include'. */
4829 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02004830 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004831 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
4832 else
4833 /* Use text after match with 'include'. */
4834 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004835 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836 already_searched = FALSE;
4837 if (new_fname != NULL)
4838 {
4839 /* Check whether we have already searched in this file */
4840 for (i = 0;; i++)
4841 {
4842 if (i == depth + 1)
4843 i = old_files;
4844 if (i == max_path_depth)
4845 break;
4846 if (fullpathcmp(new_fname, files[i].name, TRUE) & FPC_SAME)
4847 {
4848 if (type != CHECK_PATH &&
4849 action == ACTION_SHOW_ALL && files[i].matched)
4850 {
4851 msg_putchar('\n'); /* cursor below last one */
4852 if (!got_int) /* don't display if 'q'
4853 typed at "--more--"
Bram Moolenaarfe81d452009-04-22 14:44:41 +00004854 message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855 {
4856 msg_home_replace_hl(new_fname);
4857 MSG_PUTS(_(" (includes previously listed match)"));
4858 prev_fname = NULL;
4859 }
4860 }
4861 vim_free(new_fname);
4862 new_fname = NULL;
4863 already_searched = TRUE;
4864 break;
4865 }
4866 }
4867 }
4868
4869 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
4870 || (new_fname == NULL && !already_searched)))
4871 {
4872 if (did_show)
4873 msg_putchar('\n'); /* cursor below last one */
4874 else
4875 {
4876 gotocmdline(TRUE); /* cursor at status line */
4877 MSG_PUTS_TITLE(_("--- Included files "));
4878 if (action != ACTION_SHOW_ALL)
4879 MSG_PUTS_TITLE(_("not found "));
4880 MSG_PUTS_TITLE(_("in path ---\n"));
4881 }
4882 did_show = TRUE;
4883 while (depth_displayed < depth && !got_int)
4884 {
4885 ++depth_displayed;
4886 for (i = 0; i < depth_displayed; i++)
4887 MSG_PUTS(" ");
4888 msg_home_replace(files[depth_displayed].name);
4889 MSG_PUTS(" -->\n");
4890 }
4891 if (!got_int) /* don't display if 'q' typed
4892 for "--more--" message */
4893 {
4894 for (i = 0; i <= depth_displayed; i++)
4895 MSG_PUTS(" ");
4896 if (new_fname != NULL)
4897 {
4898 /* using "new_fname" is more reliable, e.g., when
4899 * 'includeexpr' is set. */
4900 msg_outtrans_attr(new_fname, hl_attr(HLF_D));
4901 }
4902 else
4903 {
4904 /*
4905 * Isolate the file name.
4906 * Include the surrounding "" or <> if present.
4907 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02004908 if (inc_opt != NULL
4909 && strstr((char *)inc_opt, "\\zs") != NULL)
4910 {
4911 /* pattern contains \zs, use the match */
4912 p = incl_regmatch.startp[0];
4913 i = (int)(incl_regmatch.endp[0]
4914 - incl_regmatch.startp[0]);
4915 }
4916 else
4917 {
4918 /* find the file name after the end of the match */
4919 for (p = incl_regmatch.endp[0];
4920 *p && !vim_isfilec(*p); p++)
4921 ;
4922 for (i = 0; vim_isfilec(p[i]); i++)
4923 ;
4924 }
4925
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 if (i == 0)
4927 {
4928 /* Nothing found, use the rest of the line. */
4929 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004930 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 }
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02004932 /* Avoid checking before the start of the line, can
4933 * happen if \zs appears in the regexp. */
4934 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 {
4936 if (p[-1] == '"' || p[-1] == '<')
4937 {
4938 --p;
4939 ++i;
4940 }
4941 if (p[i] == '"' || p[i] == '>')
4942 ++i;
4943 }
4944 save_char = p[i];
4945 p[i] = NUL;
4946 msg_outtrans_attr(p, hl_attr(HLF_D));
4947 p[i] = save_char;
4948 }
4949
4950 if (new_fname == NULL && action == ACTION_SHOW_ALL)
4951 {
4952 if (already_searched)
4953 MSG_PUTS(_(" (Already listed)"));
4954 else
4955 MSG_PUTS(_(" NOT FOUND"));
4956 }
4957 }
4958 out_flush(); /* output each line directly */
4959 }
4960
4961 if (new_fname != NULL)
4962 {
4963 /* Push the new file onto the file stack */
4964 if (depth + 1 == old_files)
4965 {
4966 bigger = (SearchedFile *)lalloc((long_u)(
4967 max_path_depth * 2 * sizeof(SearchedFile)), TRUE);
4968 if (bigger != NULL)
4969 {
4970 for (i = 0; i <= depth; i++)
4971 bigger[i] = files[i];
4972 for (i = depth + 1; i < old_files + max_path_depth; i++)
4973 {
4974 bigger[i].fp = NULL;
4975 bigger[i].name = NULL;
4976 bigger[i].lnum = 0;
4977 bigger[i].matched = FALSE;
4978 }
4979 for (i = old_files; i < max_path_depth; i++)
4980 bigger[i + max_path_depth] = files[i];
4981 old_files += max_path_depth;
4982 max_path_depth *= 2;
4983 vim_free(files);
4984 files = bigger;
4985 }
4986 }
4987 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
4988 == NULL)
4989 vim_free(new_fname);
4990 else
4991 {
4992 if (++depth == old_files)
4993 {
4994 /*
4995 * lalloc() for 'bigger' must have failed above. We
4996 * will forget one of our already visited files now.
4997 */
4998 vim_free(files[old_files].name);
4999 ++old_files;
5000 }
5001 files[depth].name = curr_fname = new_fname;
5002 files[depth].lnum = 0;
5003 files[depth].matched = FALSE;
5004#ifdef FEAT_INS_EXPAND
5005 if (action == ACTION_EXPAND)
5006 {
Bram Moolenaardf40adf2006-10-14 12:32:39 +00005007 msg_hist_off = TRUE; /* reset in msg_trunc_attr() */
Bram Moolenaar555b2802005-05-19 21:08:39 +00005008 vim_snprintf((char*)IObuff, IOSIZE,
5009 _("Scanning included file: %s"),
5010 (char *)new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
5012 }
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005013 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014#endif
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005015 if (p_verbose >= 5)
5016 {
5017 verbose_enter();
5018 smsg((char_u *)_("Searching included file %s"),
5019 (char *)new_fname);
5020 verbose_leave();
5021 }
5022
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 }
5024 }
5025 }
5026 else
5027 {
5028 /*
5029 * Check if the line is a define (type == FIND_DEFINE)
5030 */
5031 p = line;
5032search_line:
5033 define_matched = FALSE;
5034 if (def_regmatch.regprog != NULL
5035 && vim_regexec(&def_regmatch, line, (colnr_T)0))
5036 {
5037 /*
5038 * Pattern must be first identifier after 'define', so skip
5039 * to that position before checking for match of pattern. Also
5040 * don't let it match beyond the end of this identifier.
5041 */
5042 p = def_regmatch.endp[0];
5043 while (*p && !vim_iswordc(*p))
5044 p++;
5045 define_matched = TRUE;
5046 }
5047
5048 /*
5049 * Look for a match. Don't do this if we are looking for a
5050 * define and this line didn't match define_prog above.
5051 */
5052 if (def_regmatch.regprog == NULL || define_matched)
5053 {
5054 if (define_matched
5055#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005056 || (compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057#endif
5058 )
5059 {
5060 /* compare the first "len" chars from "ptr" */
5061 startp = skipwhite(p);
5062 if (p_ic)
5063 matched = !MB_STRNICMP(startp, ptr, len);
5064 else
5065 matched = !STRNCMP(startp, ptr, len);
5066 if (matched && define_matched && whole
5067 && vim_iswordc(startp[len]))
5068 matched = FALSE;
5069 }
5070 else if (regmatch.regprog != NULL
5071 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
5072 {
5073 matched = TRUE;
5074 startp = regmatch.startp[0];
5075 /*
5076 * Check if the line is not a comment line (unless we are
5077 * looking for a define). A line starting with "# define"
5078 * is not considered to be a comment line.
5079 */
5080 if (!define_matched && skip_comments)
5081 {
5082#ifdef FEAT_COMMENTS
5083 if ((*line != '#' ||
5084 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02005085 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086 matched = FALSE;
5087
5088 /*
5089 * Also check for a "/ *" or "/ /" before the match.
5090 * Skips lines like "int backwards; / * normal index
5091 * * /" when looking for "normal".
5092 * Note: Doesn't skip "/ *" in comments.
5093 */
5094 p = skipwhite(line);
5095 if (matched
5096 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
5097#endif
5098 for (p = line; *p && p < startp; ++p)
5099 {
5100 if (matched
5101 && p[0] == '/'
5102 && (p[1] == '*' || p[1] == '/'))
5103 {
5104 matched = FALSE;
5105 /* After "//" all text is comment */
5106 if (p[1] == '/')
5107 break;
5108 ++p;
5109 }
5110 else if (!matched && p[0] == '*' && p[1] == '/')
5111 {
5112 /* Can find match after "* /". */
5113 matched = TRUE;
5114 ++p;
5115 }
5116 }
5117 }
5118 }
5119 }
5120 }
5121 if (matched)
5122 {
5123#ifdef FEAT_INS_EXPAND
5124 if (action == ACTION_EXPAND)
5125 {
5126 int reuse = 0;
5127 int add_r;
5128 char_u *aux;
5129
5130 if (depth == -1 && lnum == curwin->w_cursor.lnum)
5131 break;
5132 found = TRUE;
5133 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005134 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005136 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137 if (vim_iswordp(p))
5138 goto exit_matched;
5139 p = find_word_start(p);
5140 }
5141 p = find_word_end(p);
5142 i = (int)(p - aux);
5143
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005144 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005146 /* IOSIZE > compl_length, so the STRNCPY works */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00005148
5149 /* Get the next line: when "depth" < 0 from the current
5150 * buffer, otherwise from the included file. Jump to
5151 * exit_matched when past the last line. */
5152 if (depth < 0)
5153 {
5154 if (lnum >= end_lnum)
5155 goto exit_matched;
5156 line = ml_get(++lnum);
5157 }
5158 else if (vim_fgets(line = file_line,
5159 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160 goto exit_matched;
5161
5162 /* we read a line, set "already" to check this "line" later
5163 * if depth >= 0 we'll increase files[depth].lnum far
5164 * bellow -- Acevedo */
5165 already = aux = p = skipwhite(line);
5166 p = find_word_start(p);
5167 p = find_word_end(p);
5168 if (p > aux)
5169 {
5170 if (*aux != ')' && IObuff[i-1] != TAB)
5171 {
5172 if (IObuff[i-1] != ' ')
5173 IObuff[i++] = ' ';
5174 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/
5175 if (p_js
5176 && (IObuff[i-2] == '.'
5177 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
5178 && (IObuff[i-2] == '?'
5179 || IObuff[i-2] == '!'))))
5180 IObuff[i++] = ' ';
5181 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005182 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183 if (p - aux >= IOSIZE - i)
5184 p = aux + IOSIZE - i - 1;
5185 STRNCPY(IObuff + i, aux, p - aux);
5186 i += (int)(p - aux);
5187 reuse |= CONT_S_IPOS;
5188 }
5189 IObuff[i] = NUL;
5190 aux = IObuff;
5191
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005192 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193 goto exit_matched;
5194 }
5195
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005196 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 curr_fname == curbuf->b_fname ? NULL : curr_fname,
5198 dir, reuse);
5199 if (add_r == OK)
5200 /* if dir was BACKWARD then honor it just once */
5201 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005202 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 break;
5204 }
5205 else
5206#endif
5207 if (action == ACTION_SHOW_ALL)
5208 {
5209 found = TRUE;
5210 if (!did_show)
5211 gotocmdline(TRUE); /* cursor at status line */
5212 if (curr_fname != prev_fname)
5213 {
5214 if (did_show)
5215 msg_putchar('\n'); /* cursor below last one */
5216 if (!got_int) /* don't display if 'q' typed
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005217 at "--more--" message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218 msg_home_replace_hl(curr_fname);
5219 prev_fname = curr_fname;
5220 }
5221 did_show = TRUE;
5222 if (!got_int)
5223 show_pat_in_path(line, type, TRUE, action,
5224 (depth == -1) ? NULL : files[depth].fp,
5225 (depth == -1) ? &lnum : &files[depth].lnum,
5226 match_count++);
5227
5228 /* Set matched flag for this file and all the ones that
5229 * include it */
5230 for (i = 0; i <= depth; ++i)
5231 files[i].matched = TRUE;
5232 }
5233 else if (--count <= 0)
5234 {
5235 found = TRUE;
5236 if (depth == -1 && lnum == curwin->w_cursor.lnum
5237#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5238 && g_do_tagpreview == 0
5239#endif
5240 )
5241 EMSG(_("E387: Match is on current line"));
5242 else if (action == ACTION_SHOW)
5243 {
5244 show_pat_in_path(line, type, did_show, action,
5245 (depth == -1) ? NULL : files[depth].fp,
5246 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
5247 did_show = TRUE;
5248 }
5249 else
5250 {
5251#ifdef FEAT_GUI
5252 need_mouse_correct = TRUE;
5253#endif
5254#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5255 /* ":psearch" uses the preview window */
5256 if (g_do_tagpreview != 0)
5257 {
5258 curwin_save = curwin;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005259 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260 }
5261#endif
5262 if (action == ACTION_SPLIT)
5263 {
5264#ifdef FEAT_WINDOWS
5265 if (win_split(0, 0) == FAIL)
5266#endif
5267 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005268 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 }
5270 if (depth == -1)
5271 {
5272 /* match in current file */
5273#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5274 if (g_do_tagpreview != 0)
5275 {
5276 if (getfile(0, curwin_save->w_buffer->b_fname,
5277 NULL, TRUE, lnum, FALSE) > 0)
5278 break; /* failed to jump to file */
5279 }
5280 else
5281#endif
5282 setpcmark();
5283 curwin->w_cursor.lnum = lnum;
5284 }
5285 else
5286 {
5287 if (getfile(0, files[depth].name, NULL, TRUE,
5288 files[depth].lnum, FALSE) > 0)
5289 break; /* failed to jump to file */
5290 /* autocommands may have changed the lnum, we don't
5291 * want that here */
5292 curwin->w_cursor.lnum = files[depth].lnum;
5293 }
5294 }
5295 if (action != ACTION_SHOW)
5296 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005297 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298 curwin->w_set_curswant = TRUE;
5299 }
5300
5301#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5302 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005303 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304 {
5305 /* Return cursor to where we were */
5306 validate_cursor();
5307 redraw_later(VALID);
5308 win_enter(curwin_save, TRUE);
5309 }
5310#endif
5311 break;
5312 }
5313#ifdef FEAT_INS_EXPAND
5314exit_matched:
5315#endif
5316 matched = FALSE;
5317 /* look for other matches in the rest of the line if we
5318 * are not at the end of it already */
5319 if (def_regmatch.regprog == NULL
5320#ifdef FEAT_INS_EXPAND
5321 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005322 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323#endif
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005324 && *startp != NUL
Bram Moolenaar94c465c2012-07-19 17:18:26 +02005325 && *(p = startp + MB_PTR2LEN(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326 goto search_line;
5327 }
5328 line_breakcheck();
5329#ifdef FEAT_INS_EXPAND
5330 if (action == ACTION_EXPAND)
Bram Moolenaar572cb562005-08-05 21:35:02 +00005331 ins_compl_check_keys(30);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005332 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333#else
5334 if (got_int)
5335#endif
5336 break;
5337
5338 /*
5339 * Read the next line. When reading an included file and encountering
5340 * end-of-file, close the file and continue in the file that included
5341 * it.
5342 */
5343 while (depth >= 0 && !already
5344 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5345 {
5346 fclose(files[depth].fp);
5347 --old_files;
5348 files[old_files].name = files[depth].name;
5349 files[old_files].matched = files[depth].matched;
5350 --depth;
5351 curr_fname = (depth == -1) ? curbuf->b_fname
5352 : files[depth].name;
5353 if (depth < depth_displayed)
5354 depth_displayed = depth;
5355 }
5356 if (depth >= 0) /* we could read the line */
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005357 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 files[depth].lnum++;
Bram Moolenaarc84e3c12013-07-03 22:28:36 +02005359 /* Remove any CR and LF from the line. */
5360 i = (int)STRLEN(line);
5361 if (i > 0 && line[i - 1] == '\n')
5362 line[--i] = NUL;
5363 if (i > 0 && line[i - 1] == '\r')
5364 line[--i] = NUL;
5365 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366 else if (!already)
5367 {
5368 if (++lnum > end_lnum)
5369 break;
5370 line = ml_get(lnum);
5371 }
5372 already = NULL;
5373 }
5374 /* End of big for (;;) loop. */
5375
5376 /* Close any files that are still open. */
5377 for (i = 0; i <= depth; i++)
5378 {
5379 fclose(files[i].fp);
5380 vim_free(files[i].name);
5381 }
5382 for (i = old_files; i < max_path_depth; i++)
5383 vim_free(files[i].name);
5384 vim_free(files);
5385
5386 if (type == CHECK_PATH)
5387 {
5388 if (!did_show)
5389 {
5390 if (action != ACTION_SHOW_ALL)
5391 MSG(_("All included files were found"));
5392 else
5393 MSG(_("No included files"));
5394 }
5395 }
5396 else if (!found
5397#ifdef FEAT_INS_EXPAND
5398 && action != ACTION_EXPAND
5399#endif
5400 )
5401 {
5402#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005403 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404#else
5405 if (got_int)
5406#endif
5407 EMSG(_(e_interr));
5408 else if (type == FIND_DEFINE)
5409 EMSG(_("E388: Couldn't find definition"));
5410 else
5411 EMSG(_("E389: Couldn't find pattern"));
5412 }
5413 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5414 msg_end();
5415
5416fpip_end:
5417 vim_free(file_line);
Bram Moolenaar473de612013-06-08 18:19:48 +02005418 vim_regfree(regmatch.regprog);
5419 vim_regfree(incl_regmatch.regprog);
5420 vim_regfree(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421}
5422
5423 static void
5424show_pat_in_path(line, type, did_show, action, fp, lnum, count)
5425 char_u *line;
5426 int type;
5427 int did_show;
5428 int action;
5429 FILE *fp;
5430 linenr_T *lnum;
5431 long count;
5432{
5433 char_u *p;
5434
5435 if (did_show)
5436 msg_putchar('\n'); /* cursor below last one */
Bram Moolenaar91170f82006-05-05 21:15:17 +00005437 else if (!msg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438 gotocmdline(TRUE); /* cursor at status line */
5439 if (got_int) /* 'q' typed at "--more--" message */
5440 return;
5441 for (;;)
5442 {
5443 p = line + STRLEN(line) - 1;
5444 if (fp != NULL)
5445 {
5446 /* We used fgets(), so get rid of newline at end */
5447 if (p >= line && *p == '\n')
5448 --p;
5449 if (p >= line && *p == '\r')
5450 --p;
5451 *(p + 1) = NUL;
5452 }
5453 if (action == ACTION_SHOW_ALL)
5454 {
5455 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */
5456 msg_puts(IObuff);
5457 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */
5458 /* Highlight line numbers */
5459 msg_puts_attr(IObuff, hl_attr(HLF_N));
5460 MSG_PUTS(" ");
5461 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005462 msg_prt_line(line, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005463 out_flush(); /* show one line at a time */
5464
5465 /* Definition continues until line that doesn't end with '\' */
5466 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5467 break;
5468
5469 if (fp != NULL)
5470 {
5471 if (vim_fgets(line, LSIZE, fp)) /* end of file */
5472 break;
5473 ++*lnum;
5474 }
5475 else
5476 {
5477 if (++*lnum > curbuf->b_ml.ml_line_count)
5478 break;
5479 line = ml_get(*lnum);
5480 }
5481 msg_putchar('\n');
5482 }
5483}
5484#endif
5485
5486#ifdef FEAT_VIMINFO
5487 int
5488read_viminfo_search_pattern(virp, force)
5489 vir_T *virp;
5490 int force;
5491{
5492 char_u *lp;
5493 int idx = -1;
5494 int magic = FALSE;
5495 int no_scs = FALSE;
5496 int off_line = FALSE;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005497 int off_end = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498 long off = 0;
5499 int setlast = FALSE;
5500#ifdef FEAT_SEARCH_EXTRA
5501 static int hlsearch_on = FALSE;
5502#endif
5503 char_u *val;
5504
5505 /*
5506 * Old line types:
5507 * "/pat", "&pat": search/subst. pat
5508 * "~/pat", "~&pat": last used search/subst. pat
5509 * New line types:
5510 * "~h", "~H": hlsearch highlighting off/on
5511 * "~<magic><smartcase><line><end><off><last><which>pat"
5512 * <magic>: 'm' off, 'M' on
5513 * <smartcase>: 's' off, 'S' on
5514 * <line>: 'L' line offset, 'l' char offset
5515 * <end>: 'E' from end, 'e' from start
5516 * <off>: decimal, offset
5517 * <last>: '~' last used pattern
5518 * <which>: '/' search pat, '&' subst. pat
5519 */
5520 lp = virp->vir_line;
5521 if (lp[0] == '~' && (lp[1] == 'm' || lp[1] == 'M')) /* new line type */
5522 {
5523 if (lp[1] == 'M') /* magic on */
5524 magic = TRUE;
5525 if (lp[2] == 's')
5526 no_scs = TRUE;
5527 if (lp[3] == 'L')
5528 off_line = TRUE;
5529 if (lp[4] == 'E')
Bram Moolenaared203462004-06-16 11:19:22 +00005530 off_end = SEARCH_END;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 lp += 5;
5532 off = getdigits(&lp);
5533 }
5534 if (lp[0] == '~') /* use this pattern for last-used pattern */
5535 {
5536 setlast = TRUE;
5537 lp++;
5538 }
5539 if (lp[0] == '/')
5540 idx = RE_SEARCH;
5541 else if (lp[0] == '&')
5542 idx = RE_SUBST;
5543#ifdef FEAT_SEARCH_EXTRA
5544 else if (lp[0] == 'h') /* ~h: 'hlsearch' highlighting off */
5545 hlsearch_on = FALSE;
5546 else if (lp[0] == 'H') /* ~H: 'hlsearch' highlighting on */
5547 hlsearch_on = TRUE;
5548#endif
5549 if (idx >= 0)
5550 {
5551 if (force || spats[idx].pat == NULL)
5552 {
5553 val = viminfo_readstring(virp, (int)(lp - virp->vir_line + 1),
5554 TRUE);
5555 if (val != NULL)
5556 {
5557 set_last_search_pat(val, idx, magic, setlast);
5558 vim_free(val);
5559 spats[idx].no_scs = no_scs;
5560 spats[idx].off.line = off_line;
5561 spats[idx].off.end = off_end;
5562 spats[idx].off.off = off;
5563#ifdef FEAT_SEARCH_EXTRA
5564 if (setlast)
5565 no_hlsearch = !hlsearch_on;
5566#endif
5567 }
5568 }
5569 }
5570 return viminfo_readline(virp);
5571}
5572
5573 void
5574write_viminfo_search_pattern(fp)
5575 FILE *fp;
5576{
5577 if (get_viminfo_parameter('/') != 0)
5578 {
5579#ifdef FEAT_SEARCH_EXTRA
5580 fprintf(fp, "\n# hlsearch on (H) or off (h):\n~%c",
5581 (no_hlsearch || find_viminfo_parameter('h') != NULL) ? 'h' : 'H');
5582#endif
5583 wvsp_one(fp, RE_SEARCH, "", '/');
Bram Moolenaar9b228712008-07-18 10:05:58 +00005584 wvsp_one(fp, RE_SUBST, _("Substitute "), '&');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585 }
5586}
5587
5588 static void
5589wvsp_one(fp, idx, s, sc)
5590 FILE *fp; /* file to write to */
5591 int idx; /* spats[] index */
5592 char *s; /* search pat */
5593 int sc; /* dir char */
5594{
5595 if (spats[idx].pat != NULL)
5596 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005597 fprintf(fp, _("\n# Last %sSearch Pattern:\n~"), s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 /* off.dir is not stored, it's reset to forward */
5599 fprintf(fp, "%c%c%c%c%ld%s%c",
5600 spats[idx].magic ? 'M' : 'm', /* magic */
5601 spats[idx].no_scs ? 's' : 'S', /* smartcase */
5602 spats[idx].off.line ? 'L' : 'l', /* line offset */
5603 spats[idx].off.end ? 'E' : 'e', /* offset from end */
5604 spats[idx].off.off, /* offset */
5605 last_idx == idx ? "~" : "", /* last used pat */
5606 sc);
5607 viminfo_writestring(fp, spats[idx].pat);
5608 }
5609}
5610#endif /* FEAT_VIMINFO */