blob: fc7468046fb338e0b4c182752765b39f2031316a [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 */
76 int no_scs; /* no smarcase for this pattern */
77 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 }
730 if (ptr[matchcol] == NUL
731 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000732 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000733 matchcol,
734#ifdef FEAT_RELTIME
735 tm
736#else
737 NULL
738#endif
739 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 {
741 match_ok = FALSE;
742 break;
743 }
Bram Moolenaar677ee682005-01-27 14:41:15 +0000744 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 endpos = regmatch.endpos[0];
746# ifdef FEAT_EVAL
747 submatch = first_submatch(&regmatch);
748# endif
749
750 /* Need to get the line pointer again, a
751 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000752 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 }
754 if (!match_ok)
755 continue;
756 }
757 if (dir == BACKWARD)
758 {
759 /*
760 * Now, if there are multiple matches on this line,
761 * we have to get the last one. Or the last one before
762 * the cursor, if we're on that line.
763 * When putting the new cursor at the end, compare
764 * relative to the end of the match.
765 */
766 match_ok = FALSE;
767 for (;;)
768 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000769 /* Remember a position that is before the start
770 * position, we use it if it's the last match in
771 * the line. Always accept a position after
772 * wrapping around. */
773 if (loop
774 || ((options & SEARCH_END)
775 ? (lnum + regmatch.endpos[0].lnum
776 < start_pos.lnum
777 || (lnum + regmatch.endpos[0].lnum
778 == start_pos.lnum
779 && (int)regmatch.endpos[0].col - 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 + extra_col
Bram Moolenaar677ee682005-01-27 14:41:15 +0000781 <= (int)start_pos.col))
782 : (lnum + regmatch.startpos[0].lnum
783 < start_pos.lnum
784 || (lnum + regmatch.startpos[0].lnum
785 == start_pos.lnum
786 && (int)regmatch.startpos[0].col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 + extra_col
Bram Moolenaar677ee682005-01-27 14:41:15 +0000788 <= (int)start_pos.col))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 match_ok = TRUE;
Bram Moolenaar677ee682005-01-27 14:41:15 +0000791 matchpos = regmatch.startpos[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 endpos = regmatch.endpos[0];
793# ifdef FEAT_EVAL
794 submatch = first_submatch(&regmatch);
795# endif
796 }
797 else
798 break;
799
800 /*
801 * We found a valid match, now check if there is
802 * another one after it.
803 * If vi-compatible searching, continue at the end
804 * of the match, otherwise continue one position
805 * forward.
806 */
807 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
808 {
809 if (nmatched > 1)
810 break;
811 matchcol = endpos.col;
812 /* for empty match: advance one char */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000813 if (matchcol == matchpos.col
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 && ptr[matchcol] != NUL)
815 {
816#ifdef FEAT_MBYTE
817 if (has_mbyte)
818 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000819 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 else
821#endif
822 ++matchcol;
823 }
824 }
825 else
826 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000827 /* Stop when the match is in a next line. */
828 if (matchpos.lnum > 0)
829 break;
830 matchcol = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 if (ptr[matchcol] != NUL)
832 {
833#ifdef FEAT_MBYTE
834 if (has_mbyte)
835 matchcol +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000836 (*mb_ptr2len)(ptr + matchcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 else
838#endif
839 ++matchcol;
840 }
841 }
842 if (ptr[matchcol] == NUL
843 || (nmatched = vim_regexec_multi(&regmatch,
Bram Moolenaar677ee682005-01-27 14:41:15 +0000844 win, buf, lnum + matchpos.lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +0000845 matchcol,
846#ifdef FEAT_RELTIME
847 tm
848#else
849 NULL
850#endif
851 )) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 break;
853
854 /* Need to get the line pointer again, a
855 * multi-line search may have made it invalid. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000856 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 }
858
859 /*
860 * If there is only a match after the cursor, skip
861 * this match.
862 */
863 if (!match_ok)
864 continue;
865 }
866
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000867 /* With the SEARCH_END option move to the last character
868 * of the match. Don't do it for an empty match, end
869 * should be same as start then. */
870 if (options & SEARCH_END && !(options & SEARCH_NOOF)
871 && !(matchpos.lnum == endpos.lnum
872 && matchpos.col == endpos.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000874 /* For a match in the first column, set the position
875 * on the NUL in the previous line. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000876 pos->lnum = lnum + endpos.lnum;
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000877 pos->col = endpos.col;
878 if (endpos.col == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000879 {
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000880 if (pos->lnum > 1) /* just in case */
881 {
882 --pos->lnum;
883 pos->col = (colnr_T)STRLEN(ml_get_buf(buf,
884 pos->lnum, FALSE));
885 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000886 }
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000887 else
888 {
889 --pos->col;
890#ifdef FEAT_MBYTE
891 if (has_mbyte
892 && pos->lnum <= buf->b_ml.ml_line_count)
893 {
894 ptr = ml_get_buf(buf, pos->lnum, FALSE);
895 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
896 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000897#endif
Bram Moolenaar5bcbd532008-02-20 12:43:01 +0000898 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 }
900 else
901 {
Bram Moolenaar677ee682005-01-27 14:41:15 +0000902 pos->lnum = lnum + matchpos.lnum;
903 pos->col = matchpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 }
905#ifdef FEAT_VIRTUALEDIT
906 pos->coladd = 0;
907#endif
908 found = 1;
909
910 /* Set variables used for 'incsearch' highlighting. */
Bram Moolenaar677ee682005-01-27 14:41:15 +0000911 search_match_lines = endpos.lnum - matchpos.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 search_match_endcol = endpos.col;
913 break;
914 }
915 line_breakcheck(); /* stop if ctrl-C typed */
916 if (got_int)
917 break;
918
919#ifdef FEAT_SEARCH_EXTRA
920 /* Cancel searching if a character was typed. Used for
921 * 'incsearch'. Don't check too often, that would slowdown
922 * searching too much. */
923 if ((options & SEARCH_PEEK)
924 && ((lnum - pos->lnum) & 0x3f) == 0
925 && char_avail())
926 {
927 break_loop = TRUE;
928 break;
929 }
930#endif
931
932 if (loop && lnum == start_pos.lnum)
933 break; /* if second loop, stop where started */
934 }
935 at_first_line = FALSE;
936
937 /*
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000938 * Stop the search if wrapscan isn't set, "stop_lnum" is
939 * specified, after an interrupt, after a match and after looping
940 * twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 */
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000942 if (!p_ws || stop_lnum != 0 || got_int || called_emsg
Bram Moolenaar78a15312009-05-15 19:33:18 +0000943#ifdef FEAT_SEARCH_EXTRA
944 || break_loop
945#endif
946 || found || loop)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 break;
948
949 /*
950 * If 'wrapscan' is set we continue at the other end of the file.
951 * If 'shortmess' does not contain 's', we give a message.
952 * This message is also remembered in keep_msg for when the screen
953 * is redrawn. The keep_msg is cleared whenever another message is
954 * written.
955 */
956 if (dir == BACKWARD) /* start second loop at the other end */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 lnum = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 lnum = 1;
Bram Moolenaar92d640f2005-09-05 22:11:52 +0000960 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
961 give_warning((char_u *)_(dir == BACKWARD
962 ? top_bot_msg : bot_top_msg), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 }
Bram Moolenaar78a15312009-05-15 19:33:18 +0000964 if (got_int || called_emsg
965#ifdef FEAT_SEARCH_EXTRA
966 || break_loop
967#endif
968 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 break;
970 }
971 while (--count > 0 && found); /* stop after count matches or no match */
972
973 vim_free(regmatch.regprog);
974
Bram Moolenaar280f1262006-01-30 00:14:18 +0000975 called_emsg |= save_called_emsg;
976
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 if (!found) /* did not find it */
978 {
979 if (got_int)
980 EMSG(_(e_interr));
981 else if ((options & SEARCH_MSG) == SEARCH_MSG)
982 {
983 if (p_ws)
984 EMSG2(_(e_patnotf2), mr_pattern);
985 else if (lnum == 0)
986 EMSG2(_("E384: search hit TOP without match for: %s"),
987 mr_pattern);
988 else
989 EMSG2(_("E385: search hit BOTTOM without match for: %s"),
990 mr_pattern);
991 }
992 return FAIL;
993 }
994
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000995 /* A pattern like "\n\zs" may go past the last line. */
996 if (pos->lnum > buf->b_ml.ml_line_count)
997 {
998 pos->lnum = buf->b_ml.ml_line_count;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000999 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001000 if (pos->col > 0)
1001 --pos->col;
1002 }
1003
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 return submatch + 1;
1005}
1006
1007#ifdef FEAT_EVAL
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001008 void
1009set_search_direction(cdir)
1010 int cdir;
1011{
1012 spats[0].off.dir = cdir;
1013}
1014
1015 static void
1016set_vv_searchforward()
1017{
1018 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/'));
1019}
1020
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021/*
1022 * Return the number of the first subpat that matched.
1023 */
1024 static int
1025first_submatch(rp)
1026 regmmatch_T *rp;
1027{
1028 int submatch;
1029
1030 for (submatch = 1; ; ++submatch)
1031 {
1032 if (rp->startpos[submatch].lnum >= 0)
1033 break;
1034 if (submatch == 9)
1035 {
1036 submatch = 0;
1037 break;
1038 }
1039 }
1040 return submatch;
1041}
1042#endif
1043
1044/*
1045 * Highest level string search function.
Bram Moolenaarb8017e72007-05-10 18:59:07 +00001046 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 * If 'dirc' is 0: use previous dir.
1048 * If 'pat' is NULL or empty : use previous string.
1049 * If 'options & SEARCH_REV' : go in reverse of previous dir.
1050 * If 'options & SEARCH_ECHO': echo the search command and handle options
1051 * If 'options & SEARCH_MSG' : may give error message
1052 * If 'options & SEARCH_OPT' : interpret optional flags
1053 * If 'options & SEARCH_HIS' : put search pattern in history
1054 * If 'options & SEARCH_NOOF': don't add offset to position
1055 * If 'options & SEARCH_MARK': set previous context mark
1056 * If 'options & SEARCH_KEEP': keep previous search pattern
1057 * If 'options & SEARCH_START': accept match at curpos itself
1058 * If 'options & SEARCH_PEEK': check for typed char, cancel search
1059 *
1060 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1061 * makes the movement linewise without moving the match position.
1062 *
1063 * return 0 for failure, 1 for found, 2 for found and line offset added
1064 */
1065 int
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001066do_search(oap, dirc, pat, count, options, tm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 oparg_T *oap; /* can be NULL */
1068 int dirc; /* '/' or '?' */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001069 char_u *pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 long count;
1071 int options;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001072 proftime_T *tm; /* timeout limit or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073{
1074 pos_T pos; /* position of the last match */
1075 char_u *searchstr;
1076 struct soffset old_off;
1077 int retval; /* Return value */
1078 char_u *p;
1079 long c;
1080 char_u *dircp;
1081 char_u *strcopy = NULL;
1082 char_u *ps;
1083
1084 /*
1085 * A line offset is not remembered, this is vi compatible.
1086 */
1087 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1088 {
1089 spats[0].off.line = FALSE;
1090 spats[0].off.off = 0;
1091 }
1092
1093 /*
1094 * Save the values for when (options & SEARCH_KEEP) is used.
1095 * (there is no "if ()" around this because gcc wants them initialized)
1096 */
1097 old_off = spats[0].off;
1098
1099 pos = curwin->w_cursor; /* start searching at the cursor position */
1100
1101 /*
1102 * Find out the direction of the search.
1103 */
1104 if (dirc == 0)
1105 dirc = spats[0].off.dir;
1106 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001107 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 spats[0].off.dir = dirc;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001109#if defined(FEAT_EVAL)
1110 set_vv_searchforward();
1111#endif
1112 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 if (options & SEARCH_REV)
1114 {
1115#ifdef WIN32
1116 /* There is a bug in the Visual C++ 2.2 compiler which means that
1117 * dirc always ends up being '/' */
1118 dirc = (dirc == '/') ? '?' : '/';
1119#else
1120 if (dirc == '/')
1121 dirc = '?';
1122 else
1123 dirc = '/';
1124#endif
1125 }
1126
1127#ifdef FEAT_FOLDING
1128 /* If the cursor is in a closed fold, don't find another match in the same
1129 * fold. */
1130 if (dirc == '/')
1131 {
1132 if (hasFolding(pos.lnum, NULL, &pos.lnum))
1133 pos.col = MAXCOL - 2; /* avoid overflow when adding 1 */
1134 }
1135 else
1136 {
1137 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1138 pos.col = 0;
1139 }
1140#endif
1141
1142#ifdef FEAT_SEARCH_EXTRA
1143 /*
1144 * Turn 'hlsearch' highlighting back on.
1145 */
1146 if (no_hlsearch && !(options & SEARCH_KEEP))
1147 {
Bram Moolenaar1c8f93f2006-03-12 22:10:07 +00001148 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 no_hlsearch = FALSE;
1150 }
1151#endif
1152
1153 /*
1154 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1155 */
1156 for (;;)
1157 {
1158 searchstr = pat;
1159 dircp = NULL;
1160 /* use previous pattern */
1161 if (pat == NULL || *pat == NUL || *pat == dirc)
1162 {
1163 if (spats[RE_SEARCH].pat == NULL) /* no previous pattern */
1164 {
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001165 pat = spats[RE_SUBST].pat;
1166 if (pat == NULL)
1167 {
1168 EMSG(_(e_noprevre));
1169 retval = 0;
1170 goto end_do_search;
1171 }
1172 searchstr = pat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 }
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01001174 else
1175 {
1176 /* make search_regcomp() use spats[RE_SEARCH].pat */
1177 searchstr = (char_u *)"";
1178 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 }
1180
1181 if (pat != NULL && *pat != NUL) /* look for (new) offset */
1182 {
1183 /*
1184 * Find end of regular expression.
1185 * If there is a matching '/' or '?', toss it.
1186 */
1187 ps = strcopy;
1188 p = skip_regexp(pat, dirc, (int)p_magic, &strcopy);
1189 if (strcopy != ps)
1190 {
1191 /* made a copy of "pat" to change "\?" to "?" */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001192 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 pat = strcopy;
1194 searchstr = strcopy;
1195 }
1196 if (*p == dirc)
1197 {
1198 dircp = p; /* remember where we put the NUL */
1199 *p++ = NUL;
1200 }
1201 spats[0].off.line = FALSE;
1202 spats[0].off.end = FALSE;
1203 spats[0].off.off = 0;
1204 /*
1205 * Check for a line offset or a character offset.
1206 * For get_address (echo off) we don't check for a character
1207 * offset, because it is meaningless and the 's' could be a
1208 * substitute command.
1209 */
1210 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1211 spats[0].off.line = TRUE;
1212 else if ((options & SEARCH_OPT) &&
1213 (*p == 'e' || *p == 's' || *p == 'b'))
1214 {
1215 if (*p == 'e') /* end */
1216 spats[0].off.end = SEARCH_END;
1217 ++p;
1218 }
1219 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') /* got an offset */
1220 {
1221 /* 'nr' or '+nr' or '-nr' */
1222 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1223 spats[0].off.off = atol((char *)p);
1224 else if (*p == '-') /* single '-' */
1225 spats[0].off.off = -1;
1226 else /* single '+' */
1227 spats[0].off.off = 1;
1228 ++p;
1229 while (VIM_ISDIGIT(*p)) /* skip number */
1230 ++p;
1231 }
1232
1233 /* compute length of search command for get_address() */
1234 searchcmdlen += (int)(p - pat);
1235
1236 pat = p; /* put pat after search command */
1237 }
1238
1239 if ((options & SEARCH_ECHO) && messaging()
1240 && !cmd_silent && msg_silent == 0)
1241 {
1242 char_u *msgbuf;
1243 char_u *trunc;
1244
1245 if (*searchstr == NUL)
1246 p = spats[last_idx].pat;
1247 else
1248 p = searchstr;
1249 msgbuf = alloc((unsigned)(STRLEN(p) + 40));
1250 if (msgbuf != NULL)
1251 {
1252 msgbuf[0] = dirc;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00001253#ifdef FEAT_MBYTE
1254 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1255 {
1256 /* Use a space to draw the composing char on. */
1257 msgbuf[1] = ' ';
1258 STRCPY(msgbuf + 2, p);
1259 }
1260 else
1261#endif
1262 STRCPY(msgbuf + 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 if (spats[0].off.line || spats[0].off.end || spats[0].off.off)
1264 {
1265 p = msgbuf + STRLEN(msgbuf);
1266 *p++ = dirc;
1267 if (spats[0].off.end)
1268 *p++ = 'e';
1269 else if (!spats[0].off.line)
1270 *p++ = 's';
1271 if (spats[0].off.off > 0 || spats[0].off.line)
1272 *p++ = '+';
1273 if (spats[0].off.off != 0 || spats[0].off.line)
1274 sprintf((char *)p, "%ld", spats[0].off.off);
1275 else
1276 *p = NUL;
1277 }
1278
1279 msg_start();
Bram Moolenaara4a08382005-09-09 19:52:02 +00001280 trunc = msg_strtrunc(msgbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281
1282#ifdef FEAT_RIGHTLEFT
1283 /* The search pattern could be shown on the right in rightleft
1284 * mode, but the 'ruler' and 'showcmd' area use it too, thus
1285 * it would be blanked out again very soon. Show it on the
1286 * left, but do reverse the text. */
1287 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1288 {
1289 char_u *r;
1290
1291 r = reverse_text(trunc != NULL ? trunc : msgbuf);
1292 if (r != NULL)
1293 {
1294 vim_free(trunc);
1295 trunc = r;
1296 }
1297 }
1298#endif
1299 if (trunc != NULL)
1300 {
1301 msg_outtrans(trunc);
1302 vim_free(trunc);
1303 }
1304 else
1305 msg_outtrans(msgbuf);
1306 msg_clr_eos();
1307 msg_check();
1308 vim_free(msgbuf);
1309
1310 gotocmdline(FALSE);
1311 out_flush();
1312 msg_nowait = TRUE; /* don't wait for this message */
1313 }
1314 }
1315
1316 /*
1317 * If there is a character offset, subtract it from the current
1318 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
Bram Moolenaared203462004-06-16 11:19:22 +00001319 * Skip this if pos.col is near MAXCOL (closed fold).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 * This is not done for a line offset, because then we would not be vi
1321 * compatible.
1322 */
Bram Moolenaared203462004-06-16 11:19:22 +00001323 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 {
1325 if (spats[0].off.off > 0)
1326 {
1327 for (c = spats[0].off.off; c; --c)
1328 if (decl(&pos) == -1)
1329 break;
1330 if (c) /* at start of buffer */
1331 {
1332 pos.lnum = 0; /* allow lnum == 0 here */
1333 pos.col = MAXCOL;
1334 }
1335 }
1336 else
1337 {
1338 for (c = spats[0].off.off; c; ++c)
1339 if (incl(&pos) == -1)
1340 break;
1341 if (c) /* at end of buffer */
1342 {
1343 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1344 pos.col = 0;
1345 }
1346 }
1347 }
1348
1349#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
1350 if (p_altkeymap && curwin->w_p_rl)
1351 lrFswap(searchstr,0);
1352#endif
1353
1354 c = searchit(curwin, curbuf, &pos, dirc == '/' ? FORWARD : BACKWARD,
1355 searchstr, count, spats[0].off.end + (options &
1356 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1357 + SEARCH_MSG + SEARCH_START
1358 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001359 RE_LAST, (linenr_T)0, tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360
1361 if (dircp != NULL)
1362 *dircp = dirc; /* restore second '/' or '?' for normal_cmd() */
1363 if (c == FAIL)
1364 {
1365 retval = 0;
1366 goto end_do_search;
1367 }
1368 if (spats[0].off.end && oap != NULL)
1369 oap->inclusive = TRUE; /* 'e' includes last character */
1370
1371 retval = 1; /* pattern found */
1372
1373 /*
1374 * Add character and/or line offset
1375 */
Bram Moolenaar9160f302006-08-29 15:58:12 +00001376 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 {
1378 if (spats[0].off.line) /* Add the offset to the line number. */
1379 {
1380 c = pos.lnum + spats[0].off.off;
1381 if (c < 1)
1382 pos.lnum = 1;
1383 else if (c > curbuf->b_ml.ml_line_count)
1384 pos.lnum = curbuf->b_ml.ml_line_count;
1385 else
1386 pos.lnum = c;
1387 pos.col = 0;
1388
1389 retval = 2; /* pattern found, line offset added */
1390 }
Bram Moolenaared203462004-06-16 11:19:22 +00001391 else if (pos.col < MAXCOL - 2) /* just in case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 {
1393 /* to the right, check for end of file */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001394 c = spats[0].off.off;
1395 if (c > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001397 while (c-- > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 if (incl(&pos) == -1)
1399 break;
1400 }
1401 /* to the left, check for start of file */
1402 else
1403 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001404 while (c++ < 0)
1405 if (decl(&pos) == -1)
1406 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407 }
1408 }
1409 }
1410
1411 /*
1412 * The search command can be followed by a ';' to do another search.
1413 * For example: "/pat/;/foo/+3;?bar"
1414 * This is like doing another search command, except:
1415 * - The remembered direction '/' or '?' is from the first search.
1416 * - When an error happens the cursor isn't moved at all.
1417 * Don't do this when called by get_address() (it handles ';' itself).
1418 */
1419 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1420 break;
1421
1422 dirc = *++pat;
1423 if (dirc != '?' && dirc != '/')
1424 {
1425 retval = 0;
1426 EMSG(_("E386: Expected '?' or '/' after ';'"));
1427 goto end_do_search;
1428 }
1429 ++pat;
1430 }
1431
1432 if (options & SEARCH_MARK)
1433 setpcmark();
1434 curwin->w_cursor = pos;
1435 curwin->w_set_curswant = TRUE;
1436
1437end_do_search:
1438 if (options & SEARCH_KEEP)
1439 spats[0].off = old_off;
1440 vim_free(strcopy);
1441
1442 return retval;
1443}
1444
1445#if defined(FEAT_INS_EXPAND) || defined(PROTO)
1446/*
1447 * search_for_exact_line(buf, pos, dir, pat)
1448 *
1449 * Search for a line starting with the given pattern (ignoring leading
1450 * white-space), starting from pos and going in direction dir. pos will
1451 * contain the position of the match found. Blank lines match only if
1452 * ADDING is set. if p_ic is set then the pattern must be in lowercase.
1453 * Return OK for success, or FAIL if no line found.
1454 */
1455 int
1456search_for_exact_line(buf, pos, dir, pat)
1457 buf_T *buf;
1458 pos_T *pos;
1459 int dir;
1460 char_u *pat;
1461{
1462 linenr_T start = 0;
1463 char_u *ptr;
1464 char_u *p;
1465
1466 if (buf->b_ml.ml_line_count == 0)
1467 return FAIL;
1468 for (;;)
1469 {
1470 pos->lnum += dir;
1471 if (pos->lnum < 1)
1472 {
1473 if (p_ws)
1474 {
1475 pos->lnum = buf->b_ml.ml_line_count;
1476 if (!shortmess(SHM_SEARCH))
1477 give_warning((char_u *)_(top_bot_msg), TRUE);
1478 }
1479 else
1480 {
1481 pos->lnum = 1;
1482 break;
1483 }
1484 }
1485 else if (pos->lnum > buf->b_ml.ml_line_count)
1486 {
1487 if (p_ws)
1488 {
1489 pos->lnum = 1;
1490 if (!shortmess(SHM_SEARCH))
1491 give_warning((char_u *)_(bot_top_msg), TRUE);
1492 }
1493 else
1494 {
1495 pos->lnum = 1;
1496 break;
1497 }
1498 }
1499 if (pos->lnum == start)
1500 break;
1501 if (start == 0)
1502 start = pos->lnum;
1503 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1504 p = skipwhite(ptr);
1505 pos->col = (colnr_T) (p - ptr);
1506
1507 /* when adding lines the matching line may be empty but it is not
1508 * ignored because we are interested in the next line -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001509 if ((compl_cont_status & CONT_ADDING)
1510 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 {
1512 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1513 return OK;
1514 }
1515 else if (*p != NUL) /* ignore empty lines */
1516 { /* expanding lines or words */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001517 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1518 : STRNCMP(p, pat, compl_length)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 return OK;
1520 }
1521 }
1522 return FAIL;
1523}
1524#endif /* FEAT_INS_EXPAND */
1525
1526/*
1527 * Character Searches
1528 */
1529
1530/*
1531 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1532 * position of the character, otherwise move to just before the char.
1533 * Do this "cap->count1" times.
1534 * Return FAIL or OK.
1535 */
1536 int
1537searchc(cap, t_cmd)
1538 cmdarg_T *cap;
1539 int t_cmd;
1540{
1541 int c = cap->nchar; /* char to search for */
1542 int dir = cap->arg; /* TRUE for searching forward */
1543 long count = cap->count1; /* repeat count */
1544 static int lastc = NUL; /* last character searched for */
1545 static int lastcdir; /* last direction of character search */
1546 static int last_t_cmd; /* last search t_cmd */
1547 int col;
1548 char_u *p;
1549 int len;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001550 int stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551#ifdef FEAT_MBYTE
Bram Moolenaar81340392012-06-06 16:12:59 +02001552 static char_u bytes[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 static int bytelen = 1; /* >1 for multi-byte char */
1554#endif
1555
1556 if (c != NUL) /* normal search: remember args for repeat */
1557 {
1558 if (!KeyStuffed) /* don't remember when redoing */
1559 {
1560 lastc = c;
1561 lastcdir = dir;
1562 last_t_cmd = t_cmd;
1563#ifdef FEAT_MBYTE
1564 bytelen = (*mb_char2bytes)(c, bytes);
1565 if (cap->ncharC1 != 0)
1566 {
1567 bytelen += (*mb_char2bytes)(cap->ncharC1, bytes + bytelen);
1568 if (cap->ncharC2 != 0)
1569 bytelen += (*mb_char2bytes)(cap->ncharC2, bytes + bytelen);
1570 }
1571#endif
1572 }
1573 }
1574 else /* repeat previous search */
1575 {
1576 if (lastc == NUL)
1577 return FAIL;
1578 if (dir) /* repeat in opposite direction */
1579 dir = -lastcdir;
1580 else
1581 dir = lastcdir;
1582 t_cmd = last_t_cmd;
1583 c = lastc;
1584 /* For multi-byte re-use last bytes[] and bytelen. */
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001585
1586 /* Force a move of at least one char, so ";" and "," will move the
1587 * cursor, even if the cursor is right in front of char we are looking
1588 * at. */
Bram Moolenaar19fd09a2011-07-15 13:21:30 +02001589 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001590 stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 }
1592
Bram Moolenaar60a795a2005-09-16 21:55:43 +00001593 if (dir == BACKWARD)
1594 cap->oap->inclusive = FALSE;
1595 else
1596 cap->oap->inclusive = TRUE;
1597
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 p = ml_get_curline();
1599 col = curwin->w_cursor.col;
1600 len = (int)STRLEN(p);
1601
1602 while (count--)
1603 {
1604#ifdef FEAT_MBYTE
1605 if (has_mbyte)
1606 {
1607 for (;;)
1608 {
1609 if (dir > 0)
1610 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001611 col += (*mb_ptr2len)(p + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 if (col >= len)
1613 return FAIL;
1614 }
1615 else
1616 {
1617 if (col == 0)
1618 return FAIL;
1619 col -= (*mb_head_off)(p, p + col - 1) + 1;
1620 }
1621 if (bytelen == 1)
1622 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001623 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 break;
1625 }
1626 else
1627 {
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001628 if (vim_memcmp(p + col, bytes, bytelen) == 0 && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 break;
1630 }
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001631 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 }
1633 }
1634 else
1635#endif
1636 {
1637 for (;;)
1638 {
1639 if ((col += dir) < 0 || col >= len)
1640 return FAIL;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001641 if (p[col] == c && stop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 break;
Bram Moolenaar8b3e0332011-06-26 05:36:34 +02001643 stop = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 }
1645 }
1646 }
1647
1648 if (t_cmd)
1649 {
1650 /* backup to before the character (possibly double-byte) */
1651 col -= dir;
1652#ifdef FEAT_MBYTE
1653 if (has_mbyte)
1654 {
1655 if (dir < 0)
1656 /* Landed on the search char which is bytelen long */
1657 col += bytelen - 1;
1658 else
1659 /* To previous char, which may be multi-byte. */
1660 col -= (*mb_head_off)(p, p + col);
1661 }
1662#endif
1663 }
1664 curwin->w_cursor.col = col;
1665
1666 return OK;
1667}
1668
1669/*
1670 * "Other" Searches
1671 */
1672
1673/*
1674 * findmatch - find the matching paren or brace
1675 *
1676 * Improvement over vi: Braces inside quotes are ignored.
1677 */
1678 pos_T *
1679findmatch(oap, initc)
1680 oparg_T *oap;
1681 int initc;
1682{
1683 return findmatchlimit(oap, initc, 0, 0);
1684}
1685
1686/*
1687 * Return TRUE if the character before "linep[col]" equals "ch".
1688 * Return FALSE if "col" is zero.
1689 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1690 * is NULL.
1691 * Handles multibyte string correctly.
1692 */
1693 static int
1694check_prevcol(linep, col, ch, prevcol)
1695 char_u *linep;
1696 int col;
1697 int ch;
1698 int *prevcol;
1699{
1700 --col;
1701#ifdef FEAT_MBYTE
1702 if (col > 0 && has_mbyte)
1703 col -= (*mb_head_off)(linep, linep + col);
1704#endif
1705 if (prevcol)
1706 *prevcol = col;
1707 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1708}
1709
1710/*
1711 * findmatchlimit -- find the matching paren or brace, if it exists within
1712 * maxtravel lines of here. A maxtravel of 0 means search until falling off
1713 * the edge of the file.
1714 *
1715 * "initc" is the character to find a match for. NUL means to find the
1716 * character at or after the cursor.
1717 *
1718 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
1719 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
1720 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
1721 * FM_SKIPCOMM skip comments (not implemented yet!)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001722 *
1723 * "oap" is only used to set oap->motion_type for a linewise motion, it be
1724 * NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 */
1726
1727 pos_T *
1728findmatchlimit(oap, initc, flags, maxtravel)
1729 oparg_T *oap;
1730 int initc;
1731 int flags;
1732 int maxtravel;
1733{
1734 static pos_T pos; /* current search position */
1735 int findc = 0; /* matching brace */
1736 int c;
1737 int count = 0; /* cumulative number of braces */
1738 int backwards = FALSE; /* init for gcc */
1739 int inquote = FALSE; /* TRUE when inside quotes */
1740 char_u *linep; /* pointer to current line */
1741 char_u *ptr;
1742 int do_quotes; /* check for quotes in current line */
1743 int at_start; /* do_quotes value at start position */
1744 int hash_dir = 0; /* Direction searched for # things */
1745 int comment_dir = 0; /* Direction searched for comments */
1746 pos_T match_pos; /* Where last slash-star was found */
1747 int start_in_quotes; /* start position is in quotes */
1748 int traveled = 0; /* how far we've searched so far */
1749 int ignore_cend = FALSE; /* ignore comment end */
1750 int cpo_match; /* vi compatible matching */
1751 int cpo_bsl; /* don't recognize backslashes */
1752 int match_escaped = 0; /* search for escaped match */
1753 int dir; /* Direction to search */
1754 int comment_col = MAXCOL; /* start of / / comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001755#ifdef FEAT_LISP
1756 int lispcomm = FALSE; /* inside of Lisp-style comment */
1757 int lisp = curbuf->b_p_lisp; /* engage Lisp-specific hacks ;) */
1758#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759
1760 pos = curwin->w_cursor;
1761 linep = ml_get(pos.lnum);
1762
1763 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
1764 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
1765
1766 /* Direction to search when initc is '/', '*' or '#' */
1767 if (flags & FM_BACKWARD)
1768 dir = BACKWARD;
1769 else if (flags & FM_FORWARD)
1770 dir = FORWARD;
1771 else
1772 dir = 0;
1773
1774 /*
1775 * if initc given, look in the table for the matching character
1776 * '/' and '*' are special cases: look for start or end of comment.
1777 * When '/' is used, we ignore running backwards into an star-slash, for
1778 * "[*" command, we just want to find any comment.
1779 */
1780 if (initc == '/' || initc == '*')
1781 {
1782 comment_dir = dir;
1783 if (initc == '/')
1784 ignore_cend = TRUE;
1785 backwards = (dir == FORWARD) ? FALSE : TRUE;
1786 initc = NUL;
1787 }
1788 else if (initc != '#' && initc != NUL)
1789 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001790 find_mps_values(&initc, &findc, &backwards, TRUE);
1791 if (findc == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 return NULL;
1793 }
1794 /*
1795 * Either initc is '#', or no initc was given and we need to look under the
1796 * cursor.
1797 */
1798 else
1799 {
1800 if (initc == '#')
1801 {
1802 hash_dir = dir;
1803 }
1804 else
1805 {
1806 /*
1807 * initc was not given, must look for something to match under
1808 * or near the cursor.
1809 * Only check for special things when 'cpo' doesn't have '%'.
1810 */
1811 if (!cpo_match)
1812 {
1813 /* Are we before or at #if, #else etc.? */
1814 ptr = skipwhite(linep);
1815 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
1816 {
1817 ptr = skipwhite(ptr + 1);
1818 if ( STRNCMP(ptr, "if", 2) == 0
1819 || STRNCMP(ptr, "endif", 5) == 0
1820 || STRNCMP(ptr, "el", 2) == 0)
1821 hash_dir = 1;
1822 }
1823
1824 /* Are we on a comment? */
1825 else if (linep[pos.col] == '/')
1826 {
1827 if (linep[pos.col + 1] == '*')
1828 {
1829 comment_dir = FORWARD;
1830 backwards = FALSE;
1831 pos.col++;
1832 }
1833 else if (pos.col > 0 && linep[pos.col - 1] == '*')
1834 {
1835 comment_dir = BACKWARD;
1836 backwards = TRUE;
1837 pos.col--;
1838 }
1839 }
1840 else if (linep[pos.col] == '*')
1841 {
1842 if (linep[pos.col + 1] == '/')
1843 {
1844 comment_dir = BACKWARD;
1845 backwards = TRUE;
1846 }
1847 else if (pos.col > 0 && linep[pos.col - 1] == '/')
1848 {
1849 comment_dir = FORWARD;
1850 backwards = FALSE;
1851 }
1852 }
1853 }
1854
1855 /*
1856 * If we are not on a comment or the # at the start of a line, then
1857 * look for brace anywhere on this line after the cursor.
1858 */
1859 if (!hash_dir && !comment_dir)
1860 {
1861 /*
1862 * Find the brace under or after the cursor.
1863 * If beyond the end of the line, use the last character in
1864 * the line.
1865 */
1866 if (linep[pos.col] == NUL && pos.col)
1867 --pos.col;
1868 for (;;)
1869 {
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001870 initc = PTR2CHAR(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 if (initc == NUL)
1872 break;
1873
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001874 find_mps_values(&initc, &findc, &backwards, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 if (findc)
1876 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01001877 pos.col += MB_PTR2LEN(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 }
1879 if (!findc)
1880 {
1881 /* no brace in the line, maybe use " #if" then */
1882 if (!cpo_match && *skipwhite(linep) == '#')
1883 hash_dir = 1;
1884 else
1885 return NULL;
1886 }
1887 else if (!cpo_bsl)
1888 {
1889 int col, bslcnt = 0;
1890
1891 /* Set "match_escaped" if there are an odd number of
1892 * backslashes. */
1893 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
1894 bslcnt++;
1895 match_escaped = (bslcnt & 1);
1896 }
1897 }
1898 }
1899 if (hash_dir)
1900 {
1901 /*
1902 * Look for matching #if, #else, #elif, or #endif
1903 */
1904 if (oap != NULL)
1905 oap->motion_type = MLINE; /* Linewise for this case only */
1906 if (initc != '#')
1907 {
1908 ptr = skipwhite(skipwhite(linep) + 1);
1909 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
1910 hash_dir = 1;
1911 else if (STRNCMP(ptr, "endif", 5) == 0)
1912 hash_dir = -1;
1913 else
1914 return NULL;
1915 }
1916 pos.col = 0;
1917 while (!got_int)
1918 {
1919 if (hash_dir > 0)
1920 {
1921 if (pos.lnum == curbuf->b_ml.ml_line_count)
1922 break;
1923 }
1924 else if (pos.lnum == 1)
1925 break;
1926 pos.lnum += hash_dir;
1927 linep = ml_get(pos.lnum);
1928 line_breakcheck(); /* check for CTRL-C typed */
1929 ptr = skipwhite(linep);
1930 if (*ptr != '#')
1931 continue;
1932 pos.col = (colnr_T) (ptr - linep);
1933 ptr = skipwhite(ptr + 1);
1934 if (hash_dir > 0)
1935 {
1936 if (STRNCMP(ptr, "if", 2) == 0)
1937 count++;
1938 else if (STRNCMP(ptr, "el", 2) == 0)
1939 {
1940 if (count == 0)
1941 return &pos;
1942 }
1943 else if (STRNCMP(ptr, "endif", 5) == 0)
1944 {
1945 if (count == 0)
1946 return &pos;
1947 count--;
1948 }
1949 }
1950 else
1951 {
1952 if (STRNCMP(ptr, "if", 2) == 0)
1953 {
1954 if (count == 0)
1955 return &pos;
1956 count--;
1957 }
1958 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
1959 {
1960 if (count == 0)
1961 return &pos;
1962 }
1963 else if (STRNCMP(ptr, "endif", 5) == 0)
1964 count++;
1965 }
1966 }
1967 return NULL;
1968 }
1969 }
1970
1971#ifdef FEAT_RIGHTLEFT
Bram Moolenaarabc97732007-08-08 20:49:37 +00001972 /* This is just guessing: when 'rightleft' is set, search for a matching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 * paren/brace in the other direction. */
1974 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
1975 backwards = !backwards;
1976#endif
1977
1978 do_quotes = -1;
1979 start_in_quotes = MAYBE;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001980 clearpos(&match_pos);
1981
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 /* backward search: Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001983 if ((backwards && comment_dir)
1984#ifdef FEAT_LISP
1985 || lisp
1986#endif
1987 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001989#ifdef FEAT_LISP
1990 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
1991 lispcomm = TRUE; /* find match inside this comment */
1992#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 while (!got_int)
1994 {
1995 /*
1996 * Go to the next position, forward or backward. We could use
1997 * inc() and dec() here, but that is much slower
1998 */
1999 if (backwards)
2000 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002001#ifdef FEAT_LISP
2002 /* char to match is inside of comment, don't search outside */
2003 if (lispcomm && pos.col < (colnr_T)comment_col)
2004 break;
2005#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 if (pos.col == 0) /* at start of line, go to prev. one */
2007 {
2008 if (pos.lnum == 1) /* start of file */
2009 break;
2010 --pos.lnum;
2011
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002012 if (maxtravel > 0 && ++traveled > maxtravel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 break;
2014
2015 linep = ml_get(pos.lnum);
2016 pos.col = (colnr_T)STRLEN(linep); /* pos.col on trailing NUL */
2017 do_quotes = -1;
2018 line_breakcheck();
2019
2020 /* Check if this line contains a single-line comment */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002021 if (comment_dir
2022#ifdef FEAT_LISP
2023 || lisp
2024#endif
2025 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026 comment_col = check_linecomment(linep);
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002027#ifdef FEAT_LISP
2028 /* skip comment */
2029 if (lisp && comment_col != MAXCOL)
2030 pos.col = comment_col;
2031#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 }
2033 else
2034 {
2035 --pos.col;
2036#ifdef FEAT_MBYTE
2037 if (has_mbyte)
2038 pos.col -= (*mb_head_off)(linep, linep + pos.col);
2039#endif
2040 }
2041 }
2042 else /* forward search */
2043 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002044 if (linep[pos.col] == NUL
2045 /* at end of line, go to next one */
2046#ifdef FEAT_LISP
2047 /* don't search for match in comment */
2048 || (lisp && comment_col != MAXCOL
2049 && pos.col == (colnr_T)comment_col)
2050#endif
2051 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002053 if (pos.lnum == curbuf->b_ml.ml_line_count /* end of file */
2054#ifdef FEAT_LISP
2055 /* line is exhausted and comment with it,
2056 * don't search for match in code */
2057 || lispcomm
2058#endif
2059 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 break;
2061 ++pos.lnum;
2062
2063 if (maxtravel && traveled++ > maxtravel)
2064 break;
2065
2066 linep = ml_get(pos.lnum);
2067 pos.col = 0;
2068 do_quotes = -1;
2069 line_breakcheck();
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002070#ifdef FEAT_LISP
2071 if (lisp) /* find comment pos in new line */
2072 comment_col = check_linecomment(linep);
2073#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 }
2075 else
2076 {
2077#ifdef FEAT_MBYTE
2078 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002079 pos.col += (*mb_ptr2len)(linep + pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 else
2081#endif
2082 ++pos.col;
2083 }
2084 }
2085
2086 /*
2087 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2088 */
2089 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2090 (linep[0] == '{' || linep[0] == '}'))
2091 {
2092 if (linep[0] == findc && count == 0) /* match! */
2093 return &pos;
2094 break; /* out of scope */
2095 }
2096
2097 if (comment_dir)
2098 {
2099 /* Note: comments do not nest, and we ignore quotes in them */
2100 /* TODO: ignore comment brackets inside strings */
2101 if (comment_dir == FORWARD)
2102 {
2103 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2104 {
2105 pos.col++;
2106 return &pos;
2107 }
2108 }
2109 else /* Searching backwards */
2110 {
2111 /*
2112 * A comment may contain / * or / /, it may also start or end
2113 * with / * /. Ignore a / * after / /.
2114 */
2115 if (pos.col == 0)
2116 continue;
2117 else if ( linep[pos.col - 1] == '/'
2118 && linep[pos.col] == '*'
2119 && (int)pos.col < comment_col)
2120 {
2121 count++;
2122 match_pos = pos;
2123 match_pos.col--;
2124 }
2125 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2126 {
2127 if (count > 0)
2128 pos = match_pos;
2129 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2130 && (int)pos.col <= comment_col)
2131 pos.col -= 2;
2132 else if (ignore_cend)
2133 continue;
2134 else
2135 return NULL;
2136 return &pos;
2137 }
2138 }
2139 continue;
2140 }
2141
2142 /*
2143 * If smart matching ('cpoptions' does not contain '%'), braces inside
2144 * of quotes are ignored, but only if there is an even number of
2145 * quotes in the line.
2146 */
2147 if (cpo_match)
2148 do_quotes = 0;
2149 else if (do_quotes == -1)
2150 {
2151 /*
2152 * Count the number of quotes in the line, skipping \" and '"'.
2153 * Watch out for "\\".
2154 */
2155 at_start = do_quotes;
2156 for (ptr = linep; *ptr; ++ptr)
2157 {
2158 if (ptr == linep + pos.col + backwards)
2159 at_start = (do_quotes & 1);
2160 if (*ptr == '"'
2161 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2162 ++do_quotes;
2163 if (*ptr == '\\' && ptr[1] != NUL)
2164 ++ptr;
2165 }
2166 do_quotes &= 1; /* result is 1 with even number of quotes */
2167
2168 /*
2169 * If we find an uneven count, check current line and previous
2170 * one for a '\' at the end.
2171 */
2172 if (!do_quotes)
2173 {
2174 inquote = FALSE;
2175 if (ptr[-1] == '\\')
2176 {
2177 do_quotes = 1;
2178 if (start_in_quotes == MAYBE)
2179 {
2180 /* Do we need to use at_start here? */
2181 inquote = TRUE;
2182 start_in_quotes = TRUE;
2183 }
2184 else if (backwards)
2185 inquote = TRUE;
2186 }
2187 if (pos.lnum > 1)
2188 {
2189 ptr = ml_get(pos.lnum - 1);
2190 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2191 {
2192 do_quotes = 1;
2193 if (start_in_quotes == MAYBE)
2194 {
2195 inquote = at_start;
2196 if (inquote)
2197 start_in_quotes = TRUE;
2198 }
2199 else if (!backwards)
2200 inquote = TRUE;
2201 }
Bram Moolenaaraec11792007-07-10 11:09:36 +00002202
2203 /* ml_get() only keeps one line, need to get linep again */
2204 linep = ml_get(pos.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 }
2206 }
2207 }
2208 if (start_in_quotes == MAYBE)
2209 start_in_quotes = FALSE;
2210
2211 /*
2212 * If 'smartmatch' is set:
2213 * Things inside quotes are ignored by setting 'inquote'. If we
2214 * find a quote without a preceding '\' invert 'inquote'. At the
2215 * end of a line not ending in '\' we reset 'inquote'.
2216 *
2217 * In lines with an uneven number of quotes (without preceding '\')
2218 * we do not know which part to ignore. Therefore we only set
2219 * inquote if the number of quotes in a line is even, unless this
2220 * line or the previous one ends in a '\'. Complicated, isn't it?
2221 */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002222 c = PTR2CHAR(linep + pos.col);
2223 switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 {
2225 case NUL:
2226 /* at end of line without trailing backslash, reset inquote */
2227 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2228 {
2229 inquote = FALSE;
2230 start_in_quotes = FALSE;
2231 }
2232 break;
2233
2234 case '"':
2235 /* a quote that is preceded with an odd number of backslashes is
2236 * ignored */
2237 if (do_quotes)
2238 {
2239 int col;
2240
2241 for (col = pos.col - 1; col >= 0; --col)
2242 if (linep[col] != '\\')
2243 break;
2244 if ((((int)pos.col - 1 - col) & 1) == 0)
2245 {
2246 inquote = !inquote;
2247 start_in_quotes = FALSE;
2248 }
2249 }
2250 break;
2251
2252 /*
2253 * If smart matching ('cpoptions' does not contain '%'):
2254 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2255 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2256 * skipped, there is never a brace in them.
2257 * Ignore this when finding matches for `'.
2258 */
2259 case '\'':
2260 if (!cpo_match && initc != '\'' && findc != '\'')
2261 {
2262 if (backwards)
2263 {
2264 if (pos.col > 1)
2265 {
2266 if (linep[pos.col - 2] == '\'')
2267 {
2268 pos.col -= 2;
2269 break;
2270 }
2271 else if (linep[pos.col - 2] == '\\' &&
2272 pos.col > 2 && linep[pos.col - 3] == '\'')
2273 {
2274 pos.col -= 3;
2275 break;
2276 }
2277 }
2278 }
2279 else if (linep[pos.col + 1]) /* forward search */
2280 {
2281 if (linep[pos.col + 1] == '\\' &&
2282 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2283 {
2284 pos.col += 3;
2285 break;
2286 }
2287 else if (linep[pos.col + 2] == '\'')
2288 {
2289 pos.col += 2;
2290 break;
2291 }
2292 }
2293 }
2294 /* FALLTHROUGH */
2295
2296 default:
2297#ifdef FEAT_LISP
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002298 /*
2299 * For Lisp skip over backslashed (), {} and [].
2300 * (actually, we skip #\( et al)
2301 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 if (curbuf->b_p_lisp
2303 && vim_strchr((char_u *)"(){}[]", c) != NULL
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002304 && pos.col > 1
2305 && check_prevcol(linep, pos.col, '\\', NULL)
2306 && check_prevcol(linep, pos.col - 1, '#', NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 break;
2308#endif
2309
2310 /* Check for match outside of quotes, and inside of
2311 * quotes when the start is also inside of quotes. */
2312 if ((!inquote || start_in_quotes == TRUE)
2313 && (c == initc || c == findc))
2314 {
2315 int col, bslcnt = 0;
2316
2317 if (!cpo_bsl)
2318 {
2319 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2320 bslcnt++;
2321 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00002322 /* Only accept a match when 'M' is in 'cpo' or when escaping
2323 * is what we expect. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2325 {
2326 if (c == initc)
2327 count++;
2328 else
2329 {
2330 if (count == 0)
2331 return &pos;
2332 count--;
2333 }
2334 }
2335 }
2336 }
2337 }
2338
2339 if (comment_dir == BACKWARD && count > 0)
2340 {
2341 pos = match_pos;
2342 return &pos;
2343 }
2344 return (pos_T *)NULL; /* never found it */
2345}
2346
2347/*
2348 * Check if line[] contains a / / comment.
2349 * Return MAXCOL if not, otherwise return the column.
2350 * TODO: skip strings.
2351 */
2352 static int
2353check_linecomment(line)
2354 char_u *line;
2355{
2356 char_u *p;
2357
2358 p = line;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002359#ifdef FEAT_LISP
2360 /* skip Lispish one-line comments */
2361 if (curbuf->b_p_lisp)
2362 {
2363 if (vim_strchr(p, ';') != NULL) /* there may be comments */
2364 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002365 int in_str = FALSE; /* inside of string */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002366
2367 p = line; /* scan from start */
Bram Moolenaar520470a2005-06-16 21:59:56 +00002368 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002369 {
2370 if (*p == '"')
2371 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002372 if (in_str)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002373 {
2374 if (*(p - 1) != '\\') /* skip escaped quote */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002375 in_str = FALSE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002376 }
2377 else if (p == line || ((p - line) >= 2
2378 /* skip #\" form */
2379 && *(p - 1) != '\\' && *(p - 2) != '#'))
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002380 in_str = TRUE;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002381 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002382 else if (!in_str && ((p - line) < 2
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002383 || (*(p - 1) != '\\' && *(p - 2) != '#')))
2384 break; /* found! */
2385 ++p;
2386 }
2387 }
2388 else
2389 p = NULL;
2390 }
2391 else
2392#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 while ((p = vim_strchr(p, '/')) != NULL)
2394 {
Bram Moolenaar78d4aba2008-01-01 14:43:35 +00002395 /* accept a double /, unless it's preceded with * and followed by *,
2396 * because * / / * is an end and start of a C comment */
2397 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 break;
2399 ++p;
2400 }
2401
2402 if (p == NULL)
2403 return MAXCOL;
2404 return (int)(p - line);
2405}
2406
2407/*
2408 * Move cursor briefly to character matching the one under the cursor.
2409 * Used for Insert mode and "r" command.
2410 * Show the match only if it is visible on the screen.
2411 * If there isn't a match, then beep.
2412 */
2413 void
2414showmatch(c)
2415 int c; /* char to show match for */
2416{
2417 pos_T *lpos, save_cursor;
2418 pos_T mpos;
2419 colnr_T vcol;
2420 long save_so;
2421 long save_siso;
2422#ifdef CURSOR_SHAPE
2423 int save_state;
2424#endif
2425 colnr_T save_dollar_vcol;
2426 char_u *p;
2427
2428 /*
2429 * Only show match for chars in the 'matchpairs' option.
2430 */
2431 /* 'matchpairs' is "x:y,x:y" */
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002432 for (p = curbuf->b_p_mps; *p != NUL; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 {
2434#ifdef FEAT_RIGHTLEFT
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002435 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002436 break;
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002437#endif
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002438 p += MB_PTR2LEN(p) + 1;
2439 if (PTR2CHAR(p) == c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440#ifdef FEAT_RIGHTLEFT
2441 && !(curwin->w_p_rl ^ p_ri)
2442#endif
2443 )
2444 break;
Bram Moolenaar8c7694a2013-01-17 17:02:05 +01002445 p += MB_PTR2LEN(p);
2446 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 return;
2448 }
2449
2450 if ((lpos = findmatch(NULL, NUL)) == NULL) /* no match, so beep */
2451 vim_beep();
Bram Moolenaar187d3ac2013-02-20 18:39:13 +01002452 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 {
2454 if (!curwin->w_p_wrap)
2455 getvcol(curwin, lpos, NULL, &vcol, NULL);
2456 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
2457 && vcol < curwin->w_leftcol + W_WIDTH(curwin)))
2458 {
2459 mpos = *lpos; /* save the pos, update_screen() may change it */
2460 save_cursor = curwin->w_cursor;
2461 save_so = p_so;
2462 save_siso = p_siso;
2463 /* Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2464 * stop displaying the "$". */
Bram Moolenaar76b9b362012-02-04 23:35:00 +01002465 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol)
2466 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 ++curwin->w_virtcol; /* do display ')' just before "$" */
2468 update_screen(VALID); /* show the new char first */
2469
2470 save_dollar_vcol = dollar_vcol;
2471#ifdef CURSOR_SHAPE
2472 save_state = State;
2473 State = SHOWMATCH;
2474 ui_cursor_shape(); /* may show different cursor shape */
2475#endif
2476 curwin->w_cursor = mpos; /* move to matching char */
2477 p_so = 0; /* don't use 'scrolloff' here */
2478 p_siso = 0; /* don't use 'sidescrolloff' here */
2479 showruler(FALSE);
2480 setcursor();
2481 cursor_on(); /* make sure that the cursor is shown */
2482 out_flush();
2483#ifdef FEAT_GUI
2484 if (gui.in_use)
2485 {
2486 gui_update_cursor(TRUE, FALSE);
2487 gui_mch_flush();
2488 }
2489#endif
2490 /* Restore dollar_vcol(), because setcursor() may call curs_rows()
2491 * which resets it if the matching position is in a previous line
2492 * and has a higher column number. */
2493 dollar_vcol = save_dollar_vcol;
2494
2495 /*
2496 * brief pause, unless 'm' is present in 'cpo' and a character is
2497 * available.
2498 */
2499 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
2500 ui_delay(p_mat * 100L, TRUE);
2501 else if (!char_avail())
2502 ui_delay(p_mat * 100L, FALSE);
2503 curwin->w_cursor = save_cursor; /* restore cursor position */
2504 p_so = save_so;
2505 p_siso = save_siso;
2506#ifdef CURSOR_SHAPE
2507 State = save_state;
2508 ui_cursor_shape(); /* may show different cursor shape */
2509#endif
2510 }
2511 }
2512}
2513
2514/*
2515 * findsent(dir, count) - Find the start of the next sentence in direction
Bram Moolenaarebefac62005-12-28 22:39:57 +00002516 * "dir" Sentences are supposed to end in ".", "!" or "?" followed by white
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 * space or a line break. Also stop at an empty line.
2518 * Return OK if the next sentence was found.
2519 */
2520 int
2521findsent(dir, count)
2522 int dir;
2523 long count;
2524{
2525 pos_T pos, tpos;
2526 int c;
2527 int (*func) __ARGS((pos_T *));
2528 int startlnum;
2529 int noskip = FALSE; /* do not skip blanks */
2530 int cpo_J;
Bram Moolenaardef9e822004-12-31 20:58:58 +00002531 int found_dot;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532
2533 pos = curwin->w_cursor;
2534 if (dir == FORWARD)
2535 func = incl;
2536 else
2537 func = decl;
2538
2539 while (count--)
2540 {
2541 /*
2542 * if on an empty line, skip upto a non-empty line
2543 */
2544 if (gchar_pos(&pos) == NUL)
2545 {
2546 do
2547 if ((*func)(&pos) == -1)
2548 break;
2549 while (gchar_pos(&pos) == NUL);
2550 if (dir == FORWARD)
2551 goto found;
2552 }
2553 /*
2554 * if on the start of a paragraph or a section and searching forward,
2555 * go to the next line
2556 */
2557 else if (dir == FORWARD && pos.col == 0 &&
2558 startPS(pos.lnum, NUL, FALSE))
2559 {
2560 if (pos.lnum == curbuf->b_ml.ml_line_count)
2561 return FAIL;
2562 ++pos.lnum;
2563 goto found;
2564 }
2565 else if (dir == BACKWARD)
2566 decl(&pos);
2567
2568 /* go back to the previous non-blank char */
Bram Moolenaardef9e822004-12-31 20:58:58 +00002569 found_dot = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 while ((c = gchar_pos(&pos)) == ' ' || c == '\t' ||
2571 (dir == BACKWARD && vim_strchr((char_u *)".!?)]\"'", c) != NULL))
2572 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00002573 if (vim_strchr((char_u *)".!?", c) != NULL)
2574 {
2575 /* Only skip over a '.', '!' and '?' once. */
2576 if (found_dot)
2577 break;
2578 found_dot = TRUE;
2579 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 if (decl(&pos) == -1)
2581 break;
2582 /* when going forward: Stop in front of empty line */
2583 if (lineempty(pos.lnum) && dir == FORWARD)
2584 {
2585 incl(&pos);
2586 goto found;
2587 }
2588 }
2589
2590 /* remember the line where the search started */
2591 startlnum = pos.lnum;
2592 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL;
2593
2594 for (;;) /* find end of sentence */
2595 {
2596 c = gchar_pos(&pos);
2597 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE)))
2598 {
2599 if (dir == BACKWARD && pos.lnum != startlnum)
2600 ++pos.lnum;
2601 break;
2602 }
2603 if (c == '.' || c == '!' || c == '?')
2604 {
2605 tpos = pos;
2606 do
2607 if ((c = inc(&tpos)) == -1)
2608 break;
2609 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos))
2610 != NULL);
2611 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL
2612 || (cpo_J && (c == ' ' && inc(&tpos) >= 0
2613 && gchar_pos(&tpos) == ' ')))
2614 {
2615 pos = tpos;
2616 if (gchar_pos(&pos) == NUL) /* skip NUL at EOL */
2617 inc(&pos);
2618 break;
2619 }
2620 }
2621 if ((*func)(&pos) == -1)
2622 {
2623 if (count)
2624 return FAIL;
2625 noskip = TRUE;
2626 break;
2627 }
2628 }
2629found:
2630 /* skip white space */
2631 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t'))
2632 if (incl(&pos) == -1)
2633 break;
2634 }
2635
2636 setpcmark();
2637 curwin->w_cursor = pos;
2638 return OK;
2639}
2640
2641/*
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002642 * Find the next paragraph or section in direction 'dir'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 * Paragraphs are currently supposed to be separated by empty lines.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002644 * If 'what' is NUL we go to the next paragraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 * If 'what' is '{' or '}' we go to the next section.
2646 * If 'both' is TRUE also stop at '}'.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002647 * Return TRUE if the next paragraph or section was found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 */
2649 int
Bram Moolenaar92d640f2005-09-05 22:11:52 +00002650findpar(pincl, dir, count, what, both)
2651 int *pincl; /* Return: TRUE if last char is to be included */
2652 int dir;
2653 long count;
2654 int what;
2655 int both;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656{
2657 linenr_T curr;
2658 int did_skip; /* TRUE after separating lines have been skipped */
2659 int first; /* TRUE on first line */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002660 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661#ifdef FEAT_FOLDING
2662 linenr_T fold_first; /* first line of a closed fold */
2663 linenr_T fold_last; /* last line of a closed fold */
2664 int fold_skipped; /* TRUE if a closed fold was skipped this
2665 iteration */
2666#endif
2667
2668 curr = curwin->w_cursor.lnum;
2669
2670 while (count--)
2671 {
2672 did_skip = FALSE;
2673 for (first = TRUE; ; first = FALSE)
2674 {
2675 if (*ml_get(curr) != NUL)
2676 did_skip = TRUE;
2677
2678#ifdef FEAT_FOLDING
2679 /* skip folded lines */
2680 fold_skipped = FALSE;
2681 if (first && hasFolding(curr, &fold_first, &fold_last))
2682 {
2683 curr = ((dir > 0) ? fold_last : fold_first) + dir;
2684 fold_skipped = TRUE;
2685 }
2686#endif
2687
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002688 /* POSIX has it's own ideas of what a paragraph boundary is and it
2689 * doesn't match historical Vi: It also stops at a "{" in the
2690 * first column and at an empty line. */
2691 if (!first && did_skip && (startPS(curr, what, both)
2692 || (posix && what == NUL && *ml_get(curr) == '{')))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 break;
2694
2695#ifdef FEAT_FOLDING
2696 if (fold_skipped)
2697 curr -= dir;
2698#endif
2699 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count)
2700 {
2701 if (count)
2702 return FALSE;
2703 curr -= dir;
2704 break;
2705 }
2706 }
2707 }
2708 setpcmark();
2709 if (both && *ml_get(curr) == '}') /* include line with '}' */
2710 ++curr;
2711 curwin->w_cursor.lnum = curr;
2712 if (curr == curbuf->b_ml.ml_line_count && what != '}')
2713 {
2714 if ((curwin->w_cursor.col = (colnr_T)STRLEN(ml_get(curr))) != 0)
2715 {
2716 --curwin->w_cursor.col;
Bram Moolenaar92d640f2005-09-05 22:11:52 +00002717 *pincl = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 }
2719 }
2720 else
2721 curwin->w_cursor.col = 0;
2722 return TRUE;
2723}
2724
2725/*
2726 * check if the string 's' is a nroff macro that is in option 'opt'
2727 */
2728 static int
2729inmacro(opt, s)
2730 char_u *opt;
2731 char_u *s;
2732{
2733 char_u *macro;
2734
2735 for (macro = opt; macro[0]; ++macro)
2736 {
2737 /* Accept two characters in the option being equal to two characters
2738 * in the line. A space in the option matches with a space in the
2739 * line or the line having ended. */
2740 if ( (macro[0] == s[0]
2741 || (macro[0] == ' '
2742 && (s[0] == NUL || s[0] == ' ')))
2743 && (macro[1] == s[1]
2744 || ((macro[1] == NUL || macro[1] == ' ')
2745 && (s[0] == NUL || s[1] == NUL || s[1] == ' '))))
2746 break;
2747 ++macro;
2748 if (macro[0] == NUL)
2749 break;
2750 }
2751 return (macro[0] != NUL);
2752}
2753
2754/*
2755 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph.
2756 * If 'para' is '{' or '}' only check for sections.
2757 * If 'both' is TRUE also stop at '}'
2758 */
2759 int
2760startPS(lnum, para, both)
2761 linenr_T lnum;
2762 int para;
2763 int both;
2764{
2765 char_u *s;
2766
2767 s = ml_get(lnum);
2768 if (*s == para || *s == '\f' || (both && *s == '}'))
2769 return TRUE;
2770 if (*s == '.' && (inmacro(p_sections, s + 1) ||
2771 (!para && inmacro(p_para, s + 1))))
2772 return TRUE;
2773 return FALSE;
2774}
2775
2776/*
2777 * The following routines do the word searches performed by the 'w', 'W',
2778 * 'b', 'B', 'e', and 'E' commands.
2779 */
2780
2781/*
2782 * To perform these searches, characters are placed into one of three
2783 * classes, and transitions between classes determine word boundaries.
2784 *
2785 * The classes are:
2786 *
2787 * 0 - white space
2788 * 1 - punctuation
2789 * 2 or higher - keyword characters (letters, digits and underscore)
2790 */
2791
2792static int cls_bigword; /* TRUE for "W", "B" or "E" */
2793
2794/*
2795 * cls() - returns the class of character at curwin->w_cursor
2796 *
2797 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars
2798 * from class 2 and higher are reported as class 1 since only white space
2799 * boundaries are of interest.
2800 */
2801 static int
2802cls()
2803{
2804 int c;
2805
2806 c = gchar_cursor();
2807#ifdef FEAT_FKMAP /* when 'akm' (Farsi mode), take care of Farsi blank */
2808 if (p_altkeymap && c == F_BLANK)
2809 return 0;
2810#endif
2811 if (c == ' ' || c == '\t' || c == NUL)
2812 return 0;
2813#ifdef FEAT_MBYTE
2814 if (enc_dbcs != 0 && c > 0xFF)
2815 {
2816 /* If cls_bigword, report multi-byte chars as class 1. */
2817 if (enc_dbcs == DBCS_KOR && cls_bigword)
2818 return 1;
2819
2820 /* process code leading/trailing bytes */
2821 return dbcs_class(((unsigned)c >> 8), (c & 0xFF));
2822 }
2823 if (enc_utf8)
2824 {
2825 c = utf_class(c);
2826 if (c != 0 && cls_bigword)
2827 return 1;
2828 return c;
2829 }
2830#endif
2831
2832 /* If cls_bigword is TRUE, report all non-blanks as class 1. */
2833 if (cls_bigword)
2834 return 1;
2835
2836 if (vim_iswordc(c))
2837 return 2;
2838 return 1;
2839}
2840
2841
2842/*
2843 * fwd_word(count, type, eol) - move forward one word
2844 *
2845 * Returns FAIL if the cursor was already at the end of the file.
2846 * If eol is TRUE, last word stops at end of line (for operators).
2847 */
2848 int
2849fwd_word(count, bigword, eol)
2850 long count;
2851 int bigword; /* "W", "E" or "B" */
2852 int eol;
2853{
2854 int sclass; /* starting class */
2855 int i;
2856 int last_line;
2857
2858#ifdef FEAT_VIRTUALEDIT
2859 curwin->w_cursor.coladd = 0;
2860#endif
2861 cls_bigword = bigword;
2862 while (--count >= 0)
2863 {
2864#ifdef FEAT_FOLDING
2865 /* When inside a range of folded lines, move to the last char of the
2866 * last line. */
2867 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
2868 coladvance((colnr_T)MAXCOL);
2869#endif
2870 sclass = cls();
2871
2872 /*
2873 * We always move at least one character, unless on the last
2874 * character in the buffer.
2875 */
2876 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count);
2877 i = inc_cursor();
2878 if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */
2879 return FAIL;
Bram Moolenaar9a149792007-07-10 10:38:02 +00002880 if (i >= 1 && eol && count == 0) /* started at last char in line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881 return OK;
2882
2883 /*
2884 * Go one char past end of current word (if any)
2885 */
2886 if (sclass != 0)
2887 while (cls() == sclass)
2888 {
2889 i = inc_cursor();
2890 if (i == -1 || (i >= 1 && eol && count == 0))
2891 return OK;
2892 }
2893
2894 /*
2895 * go to next non-white
2896 */
2897 while (cls() == 0)
2898 {
2899 /*
2900 * We'll stop if we land on a blank line
2901 */
2902 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL)
2903 break;
2904
2905 i = inc_cursor();
2906 if (i == -1 || (i >= 1 && eol && count == 0))
2907 return OK;
2908 }
2909 }
2910 return OK;
2911}
2912
2913/*
2914 * bck_word() - move backward 'count' words
2915 *
2916 * If stop is TRUE and we are already on the start of a word, move one less.
2917 *
2918 * Returns FAIL if top of the file was reached.
2919 */
2920 int
2921bck_word(count, bigword, stop)
2922 long count;
2923 int bigword;
2924 int stop;
2925{
2926 int sclass; /* starting class */
2927
2928#ifdef FEAT_VIRTUALEDIT
2929 curwin->w_cursor.coladd = 0;
2930#endif
2931 cls_bigword = bigword;
2932 while (--count >= 0)
2933 {
2934#ifdef FEAT_FOLDING
2935 /* When inside a range of folded lines, move to the first char of the
2936 * first line. */
2937 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL))
2938 curwin->w_cursor.col = 0;
2939#endif
2940 sclass = cls();
2941 if (dec_cursor() == -1) /* started at start of file */
2942 return FAIL;
2943
2944 if (!stop || sclass == cls() || sclass == 0)
2945 {
2946 /*
2947 * Skip white space before the word.
2948 * Stop on an empty line.
2949 */
2950 while (cls() == 0)
2951 {
2952 if (curwin->w_cursor.col == 0
2953 && lineempty(curwin->w_cursor.lnum))
2954 goto finished;
2955 if (dec_cursor() == -1) /* hit start of file, stop here */
2956 return OK;
2957 }
2958
2959 /*
2960 * Move backward to start of this word.
2961 */
2962 if (skip_chars(cls(), BACKWARD))
2963 return OK;
2964 }
2965
2966 inc_cursor(); /* overshot - forward one */
2967finished:
2968 stop = FALSE;
2969 }
2970 return OK;
2971}
2972
2973/*
2974 * end_word() - move to the end of the word
2975 *
2976 * There is an apparent bug in the 'e' motion of the real vi. At least on the
2977 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e'
2978 * motion crosses blank lines. When the real vi crosses a blank line in an
2979 * 'e' motion, the cursor is placed on the FIRST character of the next
2980 * non-blank line. The 'E' command, however, works correctly. Since this
2981 * appears to be a bug, I have not duplicated it here.
2982 *
2983 * Returns FAIL if end of the file was reached.
2984 *
2985 * If stop is TRUE and we are already on the end of a word, move one less.
2986 * If empty is TRUE stop on an empty line.
2987 */
2988 int
2989end_word(count, bigword, stop, empty)
2990 long count;
2991 int bigword;
2992 int stop;
2993 int empty;
2994{
2995 int sclass; /* starting class */
2996
2997#ifdef FEAT_VIRTUALEDIT
2998 curwin->w_cursor.coladd = 0;
2999#endif
3000 cls_bigword = bigword;
3001 while (--count >= 0)
3002 {
3003#ifdef FEAT_FOLDING
3004 /* When inside a range of folded lines, move to the last char of the
3005 * last line. */
3006 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
3007 coladvance((colnr_T)MAXCOL);
3008#endif
3009 sclass = cls();
3010 if (inc_cursor() == -1)
3011 return FAIL;
3012
3013 /*
3014 * If we're in the middle of a word, we just have to move to the end
3015 * of it.
3016 */
3017 if (cls() == sclass && sclass != 0)
3018 {
3019 /*
3020 * Move forward to end of the current word
3021 */
3022 if (skip_chars(sclass, FORWARD))
3023 return FAIL;
3024 }
3025 else if (!stop || sclass == 0)
3026 {
3027 /*
3028 * We were at the end of a word. Go to the end of the next word.
3029 * First skip white space, if 'empty' is TRUE, stop at empty line.
3030 */
3031 while (cls() == 0)
3032 {
3033 if (empty && curwin->w_cursor.col == 0
3034 && lineempty(curwin->w_cursor.lnum))
3035 goto finished;
3036 if (inc_cursor() == -1) /* hit end of file, stop here */
3037 return FAIL;
3038 }
3039
3040 /*
3041 * Move forward to the end of this word.
3042 */
3043 if (skip_chars(cls(), FORWARD))
3044 return FAIL;
3045 }
3046 dec_cursor(); /* overshot - one char backward */
3047finished:
3048 stop = FALSE; /* we move only one word less */
3049 }
3050 return OK;
3051}
3052
3053/*
3054 * Move back to the end of the word.
3055 *
3056 * Returns FAIL if start of the file was reached.
3057 */
3058 int
3059bckend_word(count, bigword, eol)
3060 long count;
3061 int bigword; /* TRUE for "B" */
3062 int eol; /* TRUE: stop at end of line. */
3063{
3064 int sclass; /* starting class */
3065 int i;
3066
3067#ifdef FEAT_VIRTUALEDIT
3068 curwin->w_cursor.coladd = 0;
3069#endif
3070 cls_bigword = bigword;
3071 while (--count >= 0)
3072 {
3073 sclass = cls();
3074 if ((i = dec_cursor()) == -1)
3075 return FAIL;
3076 if (eol && i == 1)
3077 return OK;
3078
3079 /*
3080 * Move backward to before the start of this word.
3081 */
3082 if (sclass != 0)
3083 {
3084 while (cls() == sclass)
3085 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3086 return OK;
3087 }
3088
3089 /*
3090 * Move backward to end of the previous word
3091 */
3092 while (cls() == 0)
3093 {
3094 if (curwin->w_cursor.col == 0 && lineempty(curwin->w_cursor.lnum))
3095 break;
3096 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3097 return OK;
3098 }
3099 }
3100 return OK;
3101}
3102
3103/*
3104 * Skip a row of characters of the same class.
3105 * Return TRUE when end-of-file reached, FALSE otherwise.
3106 */
3107 static int
3108skip_chars(cclass, dir)
3109 int cclass;
3110 int dir;
3111{
3112 while (cls() == cclass)
3113 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1)
3114 return TRUE;
3115 return FALSE;
3116}
3117
3118#ifdef FEAT_TEXTOBJ
3119/*
3120 * Go back to the start of the word or the start of white space
3121 */
3122 static void
3123back_in_line()
3124{
3125 int sclass; /* starting class */
3126
3127 sclass = cls();
3128 for (;;)
3129 {
3130 if (curwin->w_cursor.col == 0) /* stop at start of line */
3131 break;
3132 dec_cursor();
3133 if (cls() != sclass) /* stop at start of word */
3134 {
3135 inc_cursor();
3136 break;
3137 }
3138 }
3139}
3140
3141 static void
3142find_first_blank(posp)
3143 pos_T *posp;
3144{
3145 int c;
3146
3147 while (decl(posp) != -1)
3148 {
3149 c = gchar_pos(posp);
3150 if (!vim_iswhite(c))
3151 {
3152 incl(posp);
3153 break;
3154 }
3155 }
3156}
3157
3158/*
3159 * Skip count/2 sentences and count/2 separating white spaces.
3160 */
3161 static void
3162findsent_forward(count, at_start_sent)
3163 long count;
3164 int at_start_sent; /* cursor is at start of sentence */
3165{
3166 while (count--)
3167 {
3168 findsent(FORWARD, 1L);
3169 if (at_start_sent)
3170 find_first_blank(&curwin->w_cursor);
3171 if (count == 0 || at_start_sent)
3172 decl(&curwin->w_cursor);
3173 at_start_sent = !at_start_sent;
3174 }
3175}
3176
3177/*
3178 * Find word under cursor, cursor at end.
3179 * Used while an operator is pending, and in Visual mode.
3180 */
3181 int
3182current_word(oap, count, include, bigword)
3183 oparg_T *oap;
3184 long count;
3185 int include; /* TRUE: include word and white space */
3186 int bigword; /* FALSE == word, TRUE == WORD */
3187{
3188 pos_T start_pos;
3189 pos_T pos;
3190 int inclusive = TRUE;
3191 int include_white = FALSE;
3192
3193 cls_bigword = bigword;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003194 clearpos(&start_pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195
3196#ifdef FEAT_VISUAL
3197 /* Correct cursor when 'selection' is exclusive */
3198 if (VIsual_active && *p_sel == 'e' && lt(VIsual, curwin->w_cursor))
3199 dec_cursor();
3200
3201 /*
3202 * When Visual mode is not active, or when the VIsual area is only one
3203 * character, select the word and/or white space under the cursor.
3204 */
3205 if (!VIsual_active || equalpos(curwin->w_cursor, VIsual))
3206#endif
3207 {
3208 /*
3209 * Go to start of current word or white space.
3210 */
3211 back_in_line();
3212 start_pos = curwin->w_cursor;
3213
3214 /*
3215 * If the start is on white space, and white space should be included
3216 * (" word"), or start is not on white space, and white space should
3217 * not be included ("word"), find end of word.
3218 */
3219 if ((cls() == 0) == include)
3220 {
3221 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3222 return FAIL;
3223 }
3224 else
3225 {
3226 /*
3227 * If the start is not on white space, and white space should be
3228 * included ("word "), or start is on white space and white
3229 * space should not be included (" "), find start of word.
3230 * If we end up in the first column of the next line (single char
3231 * word) back up to end of the line.
3232 */
3233 fwd_word(1L, bigword, TRUE);
3234 if (curwin->w_cursor.col == 0)
3235 decl(&curwin->w_cursor);
3236 else
3237 oneleft();
3238
3239 if (include)
3240 include_white = TRUE;
3241 }
3242
3243#ifdef FEAT_VISUAL
3244 if (VIsual_active)
3245 {
3246 /* should do something when inclusive == FALSE ! */
3247 VIsual = start_pos;
3248 redraw_curbuf_later(INVERTED); /* update the inversion */
3249 }
3250 else
3251#endif
3252 {
3253 oap->start = start_pos;
3254 oap->motion_type = MCHAR;
3255 }
3256 --count;
3257 }
3258
3259 /*
3260 * When count is still > 0, extend with more objects.
3261 */
3262 while (count > 0)
3263 {
3264 inclusive = TRUE;
3265#ifdef FEAT_VISUAL
3266 if (VIsual_active && lt(curwin->w_cursor, VIsual))
3267 {
3268 /*
3269 * In Visual mode, with cursor at start: move cursor back.
3270 */
3271 if (decl(&curwin->w_cursor) == -1)
3272 return FAIL;
3273 if (include != (cls() != 0))
3274 {
3275 if (bck_word(1L, bigword, TRUE) == FAIL)
3276 return FAIL;
3277 }
3278 else
3279 {
3280 if (bckend_word(1L, bigword, TRUE) == FAIL)
3281 return FAIL;
3282 (void)incl(&curwin->w_cursor);
3283 }
3284 }
3285 else
3286#endif
3287 {
3288 /*
3289 * Move cursor forward one word and/or white area.
3290 */
3291 if (incl(&curwin->w_cursor) == -1)
3292 return FAIL;
3293 if (include != (cls() == 0))
3294 {
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003295 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 return FAIL;
3297 /*
3298 * If end is just past a new-line, we don't want to include
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003299 * the first character on the line.
3300 * Put cursor on last char of white.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 */
Bram Moolenaar2a41f3a2005-01-11 21:30:59 +00003302 if (oneleft() == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003303 inclusive = FALSE;
3304 }
3305 else
3306 {
3307 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3308 return FAIL;
3309 }
3310 }
3311 --count;
3312 }
3313
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003314 if (include_white && (cls() != 0
3315 || (curwin->w_cursor.col == 0 && !inclusive)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316 {
3317 /*
3318 * If we don't include white space at the end, move the start
3319 * to include some white space there. This makes "daw" work
3320 * better on the last word in a sentence (and "2daw" on last-but-one
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003321 * word). Also when "2daw" deletes "word." at the end of the line
3322 * (cursor is at start of next line).
3323 * But don't delete white space at start of line (indent).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 */
3325 pos = curwin->w_cursor; /* save cursor position */
3326 curwin->w_cursor = start_pos;
3327 if (oneleft() == OK)
3328 {
3329 back_in_line();
3330 if (cls() == 0 && curwin->w_cursor.col > 0)
3331 {
3332#ifdef FEAT_VISUAL
3333 if (VIsual_active)
3334 VIsual = curwin->w_cursor;
3335 else
3336#endif
3337 oap->start = curwin->w_cursor;
3338 }
3339 }
3340 curwin->w_cursor = pos; /* put cursor back at end */
3341 }
3342
3343#ifdef FEAT_VISUAL
3344 if (VIsual_active)
3345 {
3346 if (*p_sel == 'e' && inclusive && ltoreq(VIsual, curwin->w_cursor))
3347 inc_cursor();
3348 if (VIsual_mode == 'V')
3349 {
3350 VIsual_mode = 'v';
3351 redraw_cmdline = TRUE; /* show mode later */
3352 }
3353 }
3354 else
3355#endif
3356 oap->inclusive = inclusive;
3357
3358 return OK;
3359}
3360
3361/*
3362 * Find sentence(s) under the cursor, cursor at end.
3363 * When Visual active, extend it by one or more sentences.
3364 */
3365 int
3366current_sent(oap, count, include)
3367 oparg_T *oap;
3368 long count;
3369 int include;
3370{
3371 pos_T start_pos;
3372 pos_T pos;
3373 int start_blank;
3374 int c;
3375 int at_start_sent;
3376 long ncount;
3377
3378 start_pos = curwin->w_cursor;
3379 pos = start_pos;
3380 findsent(FORWARD, 1L); /* Find start of next sentence. */
3381
3382#ifdef FEAT_VISUAL
3383 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003384 * When the Visual area is bigger than one character: Extend it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 */
3386 if (VIsual_active && !equalpos(start_pos, VIsual))
3387 {
3388extend:
3389 if (lt(start_pos, VIsual))
3390 {
3391 /*
3392 * Cursor at start of Visual area.
3393 * Find out where we are:
3394 * - in the white space before a sentence
3395 * - in a sentence or just after it
3396 * - at the start of a sentence
3397 */
3398 at_start_sent = TRUE;
3399 decl(&pos);
3400 while (lt(pos, curwin->w_cursor))
3401 {
3402 c = gchar_pos(&pos);
3403 if (!vim_iswhite(c))
3404 {
3405 at_start_sent = FALSE;
3406 break;
3407 }
3408 incl(&pos);
3409 }
3410 if (!at_start_sent)
3411 {
3412 findsent(BACKWARD, 1L);
3413 if (equalpos(curwin->w_cursor, start_pos))
3414 at_start_sent = TRUE; /* exactly at start of sentence */
3415 else
3416 /* inside a sentence, go to its end (start of next) */
3417 findsent(FORWARD, 1L);
3418 }
3419 if (include) /* "as" gets twice as much as "is" */
3420 count *= 2;
3421 while (count--)
3422 {
3423 if (at_start_sent)
3424 find_first_blank(&curwin->w_cursor);
3425 c = gchar_cursor();
3426 if (!at_start_sent || (!include && !vim_iswhite(c)))
3427 findsent(BACKWARD, 1L);
3428 at_start_sent = !at_start_sent;
3429 }
3430 }
3431 else
3432 {
3433 /*
3434 * Cursor at end of Visual area.
3435 * Find out where we are:
3436 * - just before a sentence
3437 * - just before or in the white space before a sentence
3438 * - in a sentence
3439 */
3440 incl(&pos);
3441 at_start_sent = TRUE;
3442 if (!equalpos(pos, curwin->w_cursor)) /* not just before a sentence */
3443 {
3444 at_start_sent = FALSE;
3445 while (lt(pos, curwin->w_cursor))
3446 {
3447 c = gchar_pos(&pos);
3448 if (!vim_iswhite(c))
3449 {
3450 at_start_sent = TRUE;
3451 break;
3452 }
3453 incl(&pos);
3454 }
3455 if (at_start_sent) /* in the sentence */
3456 findsent(BACKWARD, 1L);
3457 else /* in/before white before a sentence */
3458 curwin->w_cursor = start_pos;
3459 }
3460
3461 if (include) /* "as" gets twice as much as "is" */
3462 count *= 2;
3463 findsent_forward(count, at_start_sent);
3464 if (*p_sel == 'e')
3465 ++curwin->w_cursor.col;
3466 }
3467 return OK;
3468 }
3469#endif
3470
3471 /*
Bram Moolenaar641e2862012-07-25 15:06:34 +02003472 * If the cursor started on a blank, check if it is just before the start
3473 * of the next sentence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 */
3475 while (c = gchar_pos(&pos), vim_iswhite(c)) /* vim_iswhite() is a macro */
3476 incl(&pos);
3477 if (equalpos(pos, curwin->w_cursor))
3478 {
3479 start_blank = TRUE;
3480 find_first_blank(&start_pos); /* go back to first blank */
3481 }
3482 else
3483 {
3484 start_blank = FALSE;
3485 findsent(BACKWARD, 1L);
3486 start_pos = curwin->w_cursor;
3487 }
3488 if (include)
3489 ncount = count * 2;
3490 else
3491 {
3492 ncount = count;
3493 if (start_blank)
3494 --ncount;
3495 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00003496 if (ncount > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 findsent_forward(ncount, TRUE);
3498 else
3499 decl(&curwin->w_cursor);
3500
3501 if (include)
3502 {
3503 /*
3504 * If the blank in front of the sentence is included, exclude the
3505 * blanks at the end of the sentence, go back to the first blank.
3506 * If there are no trailing blanks, try to include leading blanks.
3507 */
3508 if (start_blank)
3509 {
3510 find_first_blank(&curwin->w_cursor);
3511 c = gchar_pos(&curwin->w_cursor); /* vim_iswhite() is a macro */
3512 if (vim_iswhite(c))
3513 decl(&curwin->w_cursor);
3514 }
3515 else if (c = gchar_cursor(), !vim_iswhite(c))
3516 find_first_blank(&start_pos);
3517 }
3518
3519#ifdef FEAT_VISUAL
3520 if (VIsual_active)
3521 {
Bram Moolenaar641e2862012-07-25 15:06:34 +02003522 /* Avoid getting stuck with "is" on a single space before a sentence. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 if (equalpos(start_pos, curwin->w_cursor))
3524 goto extend;
3525 if (*p_sel == 'e')
3526 ++curwin->w_cursor.col;
3527 VIsual = start_pos;
3528 VIsual_mode = 'v';
3529 redraw_curbuf_later(INVERTED); /* update the inversion */
3530 }
3531 else
3532#endif
3533 {
3534 /* include a newline after the sentence, if there is one */
3535 if (incl(&curwin->w_cursor) == -1)
3536 oap->inclusive = TRUE;
3537 else
3538 oap->inclusive = FALSE;
3539 oap->start = start_pos;
3540 oap->motion_type = MCHAR;
3541 }
3542 return OK;
3543}
3544
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003545/*
3546 * Find block under the cursor, cursor at end.
3547 * "what" and "other" are two matching parenthesis/paren/etc.
3548 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549 int
3550current_block(oap, count, include, what, other)
3551 oparg_T *oap;
3552 long count;
3553 int include; /* TRUE == include white space */
3554 int what; /* '(', '{', etc. */
3555 int other; /* ')', '}', etc. */
3556{
3557 pos_T old_pos;
3558 pos_T *pos = NULL;
3559 pos_T start_pos;
3560 pos_T *end_pos;
3561 pos_T old_start, old_end;
3562 char_u *save_cpo;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003563 int sol = FALSE; /* '{' at start of line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564
3565 old_pos = curwin->w_cursor;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003566 old_end = curwin->w_cursor; /* remember where we started */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 old_start = old_end;
3568
3569 /*
3570 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive.
3571 */
3572#ifdef FEAT_VISUAL
3573 if (!VIsual_active || equalpos(VIsual, curwin->w_cursor))
3574#endif
3575 {
3576 setpcmark();
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003577 if (what == '{') /* ignore indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 while (inindent(1))
3579 if (inc_cursor() != 0)
3580 break;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003581 if (gchar_cursor() == what)
3582 /* cursor on '(' or '{', move cursor just after it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 ++curwin->w_cursor.col;
3584 }
3585#ifdef FEAT_VISUAL
3586 else if (lt(VIsual, curwin->w_cursor))
3587 {
3588 old_start = VIsual;
3589 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3590 }
3591 else
3592 old_end = VIsual;
3593#endif
3594
3595 /*
3596 * Search backwards for unclosed '(', '{', etc..
3597 * Put this position in start_pos.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003598 * Ignore quotes here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 */
3600 save_cpo = p_cpo;
3601 p_cpo = (char_u *)"%";
3602 while (count-- > 0)
3603 {
3604 if ((pos = findmatch(NULL, what)) == NULL)
3605 break;
3606 curwin->w_cursor = *pos;
3607 start_pos = *pos; /* the findmatch for end_pos will overwrite *pos */
3608 }
3609 p_cpo = save_cpo;
3610
3611 /*
3612 * Search for matching ')', '}', etc.
3613 * Put this position in curwin->w_cursor.
3614 */
3615 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL)
3616 {
3617 curwin->w_cursor = old_pos;
3618 return FAIL;
3619 }
3620 curwin->w_cursor = *end_pos;
3621
3622 /*
3623 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE.
3624 * If the ending '}' is only preceded by indent, skip that indent.
3625 * But only if the resulting area is not smaller than what we started with.
3626 */
3627 while (!include)
3628 {
3629 incl(&start_pos);
3630 sol = (curwin->w_cursor.col == 0);
3631 decl(&curwin->w_cursor);
3632 if (what == '{')
3633 while (inindent(1))
3634 {
3635 sol = TRUE;
3636 if (decl(&curwin->w_cursor) != 0)
3637 break;
3638 }
3639#ifdef FEAT_VISUAL
3640 /*
3641 * In Visual mode, when the resulting area is not bigger than what we
3642 * started with, extend it to the next block, and then exclude again.
3643 */
3644 if (!lt(start_pos, old_start) && !lt(old_end, curwin->w_cursor)
3645 && VIsual_active)
3646 {
3647 curwin->w_cursor = old_start;
3648 decl(&curwin->w_cursor);
3649 if ((pos = findmatch(NULL, what)) == NULL)
3650 {
3651 curwin->w_cursor = old_pos;
3652 return FAIL;
3653 }
3654 start_pos = *pos;
3655 curwin->w_cursor = *pos;
3656 if ((end_pos = findmatch(NULL, other)) == NULL)
3657 {
3658 curwin->w_cursor = old_pos;
3659 return FAIL;
3660 }
3661 curwin->w_cursor = *end_pos;
3662 }
3663 else
3664#endif
3665 break;
3666 }
3667
3668#ifdef FEAT_VISUAL
3669 if (VIsual_active)
3670 {
3671 if (*p_sel == 'e')
3672 ++curwin->w_cursor.col;
Bram Moolenaara5792f52005-11-23 21:25:05 +00003673 if (sol && gchar_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 inc(&curwin->w_cursor); /* include the line break */
3675 VIsual = start_pos;
3676 VIsual_mode = 'v';
3677 redraw_curbuf_later(INVERTED); /* update the inversion */
3678 showmode();
3679 }
3680 else
3681#endif
3682 {
3683 oap->start = start_pos;
3684 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003685 oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 if (sol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687 incl(&curwin->w_cursor);
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003688 else if (ltoreq(start_pos, curwin->w_cursor))
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003689 /* Include the character under the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 oap->inclusive = TRUE;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003691 else
3692 /* End is before the start (no text in between <>, [], etc.): don't
3693 * operate on any text. */
3694 curwin->w_cursor = start_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 }
3696
3697 return OK;
3698}
3699
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003700static int in_html_tag __ARGS((int));
3701
3702/*
3703 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>".
3704 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>".
3705 */
3706 static int
3707in_html_tag(end_tag)
3708 int end_tag;
3709{
3710 char_u *line = ml_get_curline();
3711 char_u *p;
3712 int c;
3713 int lc = NUL;
3714 pos_T pos;
3715
3716#ifdef FEAT_MBYTE
3717 if (enc_dbcs)
3718 {
3719 char_u *lp = NULL;
3720
3721 /* We search forward until the cursor, because searching backwards is
3722 * very slow for DBCS encodings. */
3723 for (p = line; p < line + curwin->w_cursor.col; mb_ptr_adv(p))
3724 if (*p == '>' || *p == '<')
3725 {
3726 lc = *p;
3727 lp = p;
3728 }
3729 if (*p != '<') /* check for '<' under cursor */
3730 {
3731 if (lc != '<')
3732 return FALSE;
3733 p = lp;
3734 }
3735 }
3736 else
3737#endif
3738 {
3739 for (p = line + curwin->w_cursor.col; p > line; )
3740 {
3741 if (*p == '<') /* find '<' under/before cursor */
3742 break;
3743 mb_ptr_back(line, p);
3744 if (*p == '>') /* find '>' before cursor */
3745 break;
3746 }
3747 if (*p != '<')
3748 return FALSE;
3749 }
3750
3751 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003752 pos.col = (colnr_T)(p - line);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003753
3754 mb_ptr_adv(p);
3755 if (end_tag)
3756 /* check that there is a '/' after the '<' */
3757 return *p == '/';
3758
3759 /* check that there is no '/' after the '<' */
3760 if (*p == '/')
3761 return FALSE;
3762
3763 /* check that the matching '>' is not preceded by '/' */
3764 for (;;)
3765 {
3766 if (inc(&pos) < 0)
3767 return FALSE;
3768 c = *ml_get_pos(&pos);
3769 if (c == '>')
3770 break;
3771 lc = c;
3772 }
3773 return lc != '/';
3774}
3775
3776/*
3777 * Find tag block under the cursor, cursor at end.
3778 */
3779 int
3780current_tagblock(oap, count_arg, include)
3781 oparg_T *oap;
3782 long count_arg;
3783 int include; /* TRUE == include white space */
3784{
3785 long count = count_arg;
3786 long n;
3787 pos_T old_pos;
3788 pos_T start_pos;
3789 pos_T end_pos;
3790 pos_T old_start, old_end;
3791 char_u *spat, *epat;
3792 char_u *p;
3793 char_u *cp;
3794 int len;
3795 int r;
3796 int do_include = include;
3797 int save_p_ws = p_ws;
3798 int retval = FAIL;
3799
3800 p_ws = FALSE;
3801
3802 old_pos = curwin->w_cursor;
3803 old_end = curwin->w_cursor; /* remember where we started */
3804 old_start = old_end;
Bram Moolenaar2a6f2112008-01-26 20:15:46 +00003805#ifdef FEAT_VISUAL
3806 if (!VIsual_active || *p_sel == 'e')
3807#endif
3808 decl(&old_end); /* old_end is inclusive */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003809
3810 /*
Bram Moolenaar45360022005-07-21 21:08:21 +00003811 * If we start on "<aaa>" select that block.
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003812 */
3813#ifdef FEAT_VISUAL
3814 if (!VIsual_active || equalpos(VIsual, curwin->w_cursor))
3815#endif
3816 {
3817 setpcmark();
3818
3819 /* ignore indent */
3820 while (inindent(1))
3821 if (inc_cursor() != 0)
3822 break;
3823
3824 if (in_html_tag(FALSE))
3825 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003826 /* cursor on start tag, move to its '>' */
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003827 while (*ml_get_cursor() != '>')
3828 if (inc_cursor() < 0)
3829 break;
3830 }
3831 else if (in_html_tag(TRUE))
3832 {
3833 /* cursor on end tag, move to just before it */
3834 while (*ml_get_cursor() != '<')
3835 if (dec_cursor() < 0)
3836 break;
3837 dec_cursor();
3838 old_end = curwin->w_cursor;
3839 }
3840 }
3841#ifdef FEAT_VISUAL
3842 else if (lt(VIsual, curwin->w_cursor))
3843 {
3844 old_start = VIsual;
3845 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3846 }
3847 else
3848 old_end = VIsual;
3849#endif
3850
3851again:
3852 /*
3853 * Search backwards for unclosed "<aaa>".
3854 * Put this position in start_pos.
3855 */
3856 for (n = 0; n < count; ++n)
3857 {
Bram Moolenaar45360022005-07-21 21:08:21 +00003858 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)",
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003859 (char_u *)"",
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003860 (char_u *)"</[^>]*>", BACKWARD, (char_u *)"", 0,
Bram Moolenaar76929292008-01-06 19:07:36 +00003861 NULL, (linenr_T)0, 0L) <= 0)
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003862 {
3863 curwin->w_cursor = old_pos;
3864 goto theend;
3865 }
3866 }
3867 start_pos = curwin->w_cursor;
3868
3869 /*
3870 * Search for matching "</aaa>". First isolate the "aaa".
3871 */
3872 inc_cursor();
3873 p = ml_get_cursor();
3874 for (cp = p; *cp != NUL && *cp != '>' && !vim_iswhite(*cp); mb_ptr_adv(cp))
3875 ;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003876 len = (int)(cp - p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003877 if (len == 0)
3878 {
3879 curwin->w_cursor = old_pos;
3880 goto theend;
3881 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01003882 spat = alloc(len + 31);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003883 epat = alloc(len + 9);
3884 if (spat == NULL || epat == NULL)
3885 {
3886 vim_free(spat);
3887 vim_free(epat);
3888 curwin->w_cursor = old_pos;
3889 goto theend;
3890 }
Bram Moolenaar16c31fe2012-01-26 20:58:26 +01003891 sprintf((char *)spat, "<%.*s\\>\\%%(\\s\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003892 sprintf((char *)epat, "</%.*s>\\c", len, p);
3893
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003894 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, (char_u *)"",
Bram Moolenaar76929292008-01-06 19:07:36 +00003895 0, NULL, (linenr_T)0, 0L);
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003896
3897 vim_free(spat);
3898 vim_free(epat);
3899
3900 if (r < 1 || lt(curwin->w_cursor, old_end))
3901 {
3902 /* Can't find other end or it's before the previous end. Could be a
3903 * HTML tag that doesn't have a matching end. Search backwards for
3904 * another starting tag. */
3905 count = 1;
3906 curwin->w_cursor = start_pos;
3907 goto again;
3908 }
3909
3910 if (do_include || r < 1)
3911 {
3912 /* Include up to the '>'. */
3913 while (*ml_get_cursor() != '>')
3914 if (inc_cursor() < 0)
3915 break;
3916 }
3917 else
3918 {
3919 /* Exclude the '<' of the end tag. */
3920 if (*ml_get_cursor() == '<')
3921 dec_cursor();
3922 }
3923 end_pos = curwin->w_cursor;
3924
3925 if (!do_include)
3926 {
3927 /* Exclude the start tag. */
3928 curwin->w_cursor = start_pos;
3929 while (inc_cursor() >= 0)
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003930 if (*ml_get_cursor() == '>')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003931 {
3932 inc_cursor();
3933 start_pos = curwin->w_cursor;
3934 break;
3935 }
3936 curwin->w_cursor = end_pos;
3937
Bram Moolenaar45360022005-07-21 21:08:21 +00003938 /* If we now have the same text as before reset "do_include" and try
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003939 * again. */
Bram Moolenaar45360022005-07-21 21:08:21 +00003940 if (equalpos(start_pos, old_start) && equalpos(end_pos, old_end))
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003941 {
3942 do_include = TRUE;
3943 curwin->w_cursor = old_start;
3944 count = count_arg;
3945 goto again;
3946 }
3947 }
3948
3949#ifdef FEAT_VISUAL
3950 if (VIsual_active)
3951 {
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003952 /* If the end is before the start there is no text between tags, select
3953 * the char under the cursor. */
3954 if (lt(end_pos, start_pos))
3955 curwin->w_cursor = start_pos;
3956 else if (*p_sel == 'e')
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003957 ++curwin->w_cursor.col;
3958 VIsual = start_pos;
3959 VIsual_mode = 'v';
3960 redraw_curbuf_later(INVERTED); /* update the inversion */
3961 showmode();
3962 }
3963 else
3964#endif
3965 {
3966 oap->start = start_pos;
3967 oap->motion_type = MCHAR;
Bram Moolenaar1864a4e2007-06-19 10:56:05 +00003968 if (lt(end_pos, start_pos))
3969 {
3970 /* End is before the start: there is no text between tags; operate
3971 * on an empty area. */
3972 curwin->w_cursor = start_pos;
3973 oap->inclusive = FALSE;
3974 }
3975 else
3976 oap->inclusive = TRUE;
Bram Moolenaard6c04cd2005-07-19 22:18:49 +00003977 }
3978 retval = OK;
3979
3980theend:
3981 p_ws = save_p_ws;
3982 return retval;
3983}
3984
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 int
3986current_par(oap, count, include, type)
3987 oparg_T *oap;
3988 long count;
3989 int include; /* TRUE == include white space */
3990 int type; /* 'p' for paragraph, 'S' for section */
3991{
3992 linenr_T start_lnum;
3993 linenr_T end_lnum;
3994 int white_in_front;
3995 int dir;
3996 int start_is_white;
3997 int prev_start_is_white;
3998 int retval = OK;
3999 int do_white = FALSE;
4000 int t;
4001 int i;
4002
4003 if (type == 'S') /* not implemented yet */
4004 return FAIL;
4005
4006 start_lnum = curwin->w_cursor.lnum;
4007
4008#ifdef FEAT_VISUAL
4009 /*
4010 * When visual area is more than one line: extend it.
4011 */
4012 if (VIsual_active && start_lnum != VIsual.lnum)
4013 {
4014extend:
4015 if (start_lnum < VIsual.lnum)
4016 dir = BACKWARD;
4017 else
4018 dir = FORWARD;
4019 for (i = count; --i >= 0; )
4020 {
4021 if (start_lnum ==
4022 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
4023 {
4024 retval = FAIL;
4025 break;
4026 }
4027
4028 prev_start_is_white = -1;
4029 for (t = 0; t < 2; ++t)
4030 {
4031 start_lnum += dir;
4032 start_is_white = linewhite(start_lnum);
4033 if (prev_start_is_white == start_is_white)
4034 {
4035 start_lnum -= dir;
4036 break;
4037 }
4038 for (;;)
4039 {
4040 if (start_lnum == (dir == BACKWARD
4041 ? 1 : curbuf->b_ml.ml_line_count))
4042 break;
4043 if (start_is_white != linewhite(start_lnum + dir)
4044 || (!start_is_white
4045 && startPS(start_lnum + (dir > 0
4046 ? 1 : 0), 0, 0)))
4047 break;
4048 start_lnum += dir;
4049 }
4050 if (!include)
4051 break;
4052 if (start_lnum == (dir == BACKWARD
4053 ? 1 : curbuf->b_ml.ml_line_count))
4054 break;
4055 prev_start_is_white = start_is_white;
4056 }
4057 }
4058 curwin->w_cursor.lnum = start_lnum;
4059 curwin->w_cursor.col = 0;
4060 return retval;
4061 }
4062#endif
4063
4064 /*
4065 * First move back to the start_lnum of the paragraph or white lines
4066 */
4067 white_in_front = linewhite(start_lnum);
4068 while (start_lnum > 1)
4069 {
4070 if (white_in_front) /* stop at first white line */
4071 {
4072 if (!linewhite(start_lnum - 1))
4073 break;
4074 }
4075 else /* stop at first non-white line of start of paragraph */
4076 {
4077 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
4078 break;
4079 }
4080 --start_lnum;
4081 }
4082
4083 /*
4084 * Move past the end of any white lines.
4085 */
4086 end_lnum = start_lnum;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004087 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
4088 ++end_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089
4090 --end_lnum;
4091 i = count;
4092 if (!include && white_in_front)
4093 --i;
4094 while (i--)
4095 {
4096 if (end_lnum == curbuf->b_ml.ml_line_count)
4097 return FAIL;
4098
4099 if (!include)
4100 do_white = linewhite(end_lnum + 1);
4101
4102 if (include || !do_white)
4103 {
4104 ++end_lnum;
4105 /*
4106 * skip to end of paragraph
4107 */
4108 while (end_lnum < curbuf->b_ml.ml_line_count
4109 && !linewhite(end_lnum + 1)
4110 && !startPS(end_lnum + 1, 0, 0))
4111 ++end_lnum;
4112 }
4113
4114 if (i == 0 && white_in_front && include)
4115 break;
4116
4117 /*
4118 * skip to end of white lines after paragraph
4119 */
4120 if (include || do_white)
4121 while (end_lnum < curbuf->b_ml.ml_line_count
4122 && linewhite(end_lnum + 1))
4123 ++end_lnum;
4124 }
4125
4126 /*
4127 * If there are no empty lines at the end, try to find some empty lines at
4128 * the start (unless that has been done already).
4129 */
4130 if (!white_in_front && !linewhite(end_lnum) && include)
4131 while (start_lnum > 1 && linewhite(start_lnum - 1))
4132 --start_lnum;
4133
4134#ifdef FEAT_VISUAL
4135 if (VIsual_active)
4136 {
4137 /* Problem: when doing "Vipipip" nothing happens in a single white
4138 * line, we get stuck there. Trap this here. */
4139 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4140 goto extend;
4141 VIsual.lnum = start_lnum;
4142 VIsual_mode = 'V';
4143 redraw_curbuf_later(INVERTED); /* update the inversion */
4144 showmode();
4145 }
4146 else
4147#endif
4148 {
4149 oap->start.lnum = start_lnum;
4150 oap->start.col = 0;
4151 oap->motion_type = MLINE;
4152 }
4153 curwin->w_cursor.lnum = end_lnum;
4154 curwin->w_cursor.col = 0;
4155
4156 return OK;
4157}
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004158
4159static int find_next_quote __ARGS((char_u *top_ptr, int col, int quotechar, char_u *escape));
4160static int find_prev_quote __ARGS((char_u *line, int col_start, int quotechar, char_u *escape));
4161
4162/*
4163 * Search quote char from string line[col].
4164 * Quote character escaped by one of the characters in "escape" is not counted
4165 * as a quote.
4166 * Returns column number of "quotechar" or -1 when not found.
4167 */
4168 static int
4169find_next_quote(line, col, quotechar, escape)
4170 char_u *line;
4171 int col;
4172 int quotechar;
4173 char_u *escape; /* escape characters, can be NULL */
4174{
4175 int c;
4176
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004177 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004178 {
4179 c = line[col];
4180 if (c == NUL)
4181 return -1;
4182 else if (escape != NULL && vim_strchr(escape, c))
4183 ++col;
4184 else if (c == quotechar)
4185 break;
4186#ifdef FEAT_MBYTE
4187 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004188 col += (*mb_ptr2len)(line + col);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004189 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004191 ++col;
4192 }
4193 return col;
4194}
4195
4196/*
4197 * Search backwards in "line" from column "col_start" to find "quotechar".
4198 * Quote character escaped by one of the characters in "escape" is not counted
4199 * as a quote.
4200 * Return the found column or zero.
4201 */
4202 static int
4203find_prev_quote(line, col_start, quotechar, escape)
4204 char_u *line;
4205 int col_start;
4206 int quotechar;
4207 char_u *escape; /* escape characters, can be NULL */
4208{
4209 int n;
4210
4211 while (col_start > 0)
4212 {
4213 --col_start;
4214#ifdef FEAT_MBYTE
4215 col_start -= (*mb_head_off)(line, line + col_start);
4216#endif
4217 n = 0;
4218 if (escape != NULL)
4219 while (col_start - n > 0 && vim_strchr(escape,
4220 line[col_start - n - 1]) != NULL)
4221 ++n;
4222 if (n & 1)
4223 col_start -= n; /* uneven number of escape chars, skip it */
4224 else if (line[col_start] == quotechar)
4225 break;
4226 }
4227 return col_start;
4228}
4229
4230/*
4231 * Find quote under the cursor, cursor at end.
4232 * Returns TRUE if found, else FALSE.
4233 */
4234 int
4235current_quote(oap, count, include, quotechar)
4236 oparg_T *oap;
Bram Moolenaarab194812005-09-14 21:40:12 +00004237 long count;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004238 int include; /* TRUE == include quote char */
4239 int quotechar; /* Quote character */
4240{
4241 char_u *line = ml_get_curline();
4242 int col_end;
4243 int col_start = curwin->w_cursor.col;
4244 int inclusive = FALSE;
4245#ifdef FEAT_VISUAL
4246 int vis_empty = TRUE; /* Visual selection <= 1 char */
4247 int vis_bef_curs = FALSE; /* Visual starts before cursor */
Bram Moolenaarab194812005-09-14 21:40:12 +00004248 int inside_quotes = FALSE; /* Looks like "i'" done before */
4249 int selected_quote = FALSE; /* Has quote inside selection */
4250 int i;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004251
4252 /* Correct cursor when 'selection' is exclusive */
4253 if (VIsual_active)
4254 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004255 vis_bef_curs = lt(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004256 if (*p_sel == 'e' && vis_bef_curs)
4257 dec_cursor();
4258 vis_empty = equalpos(VIsual, curwin->w_cursor);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004259 }
Bram Moolenaarab194812005-09-14 21:40:12 +00004260
4261 if (!vis_empty)
4262 {
4263 /* Check if the existing selection exactly spans the text inside
4264 * quotes. */
4265 if (vis_bef_curs)
4266 {
4267 inside_quotes = VIsual.col > 0
4268 && line[VIsual.col - 1] == quotechar
4269 && line[curwin->w_cursor.col] != NUL
4270 && line[curwin->w_cursor.col + 1] == quotechar;
4271 i = VIsual.col;
4272 col_end = curwin->w_cursor.col;
4273 }
4274 else
4275 {
4276 inside_quotes = curwin->w_cursor.col > 0
4277 && line[curwin->w_cursor.col - 1] == quotechar
4278 && line[VIsual.col] != NUL
4279 && line[VIsual.col + 1] == quotechar;
4280 i = curwin->w_cursor.col;
4281 col_end = VIsual.col;
4282 }
4283
4284 /* Find out if we have a quote in the selection. */
4285 while (i <= col_end)
4286 if (line[i++] == quotechar)
4287 {
4288 selected_quote = TRUE;
4289 break;
4290 }
4291 }
4292
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004293 if (!vis_empty && line[col_start] == quotechar)
4294 {
4295 /* Already selecting something and on a quote character. Find the
4296 * next quoted string. */
4297 if (vis_bef_curs)
4298 {
4299 /* Assume we are on a closing quote: move to after the next
4300 * opening quote. */
4301 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4302 if (col_start < 0)
4303 return FALSE;
4304 col_end = find_next_quote(line, col_start + 1, quotechar,
4305 curbuf->b_p_qe);
4306 if (col_end < 0)
4307 {
4308 /* We were on a starting quote perhaps? */
4309 col_end = col_start;
4310 col_start = curwin->w_cursor.col;
4311 }
4312 }
4313 else
4314 {
4315 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4316 if (line[col_end] != quotechar)
4317 return FALSE;
4318 col_start = find_prev_quote(line, col_end, quotechar,
4319 curbuf->b_p_qe);
4320 if (line[col_start] != quotechar)
4321 {
4322 /* We were on an ending quote perhaps? */
4323 col_start = col_end;
4324 col_end = curwin->w_cursor.col;
4325 }
4326 }
4327 }
4328 else
4329#endif
4330
4331 if (line[col_start] == quotechar
4332#ifdef FEAT_VISUAL
4333 || !vis_empty
4334#endif
4335 )
4336 {
4337 int first_col = col_start;
4338
4339#ifdef FEAT_VISUAL
4340 if (!vis_empty)
4341 {
4342 if (vis_bef_curs)
4343 first_col = find_next_quote(line, col_start, quotechar, NULL);
4344 else
4345 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4346 }
4347#endif
4348 /* The cursor is on a quote, we don't know if it's the opening or
4349 * closing quote. Search from the start of the line to find out.
4350 * Also do this when there is a Visual area, a' may leave the cursor
4351 * in between two strings. */
4352 col_start = 0;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004353 for (;;)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004354 {
4355 /* Find open quote character. */
4356 col_start = find_next_quote(line, col_start, quotechar, NULL);
4357 if (col_start < 0 || col_start > first_col)
4358 return FALSE;
4359 /* Find close quote character. */
4360 col_end = find_next_quote(line, col_start + 1, quotechar,
4361 curbuf->b_p_qe);
4362 if (col_end < 0)
4363 return FALSE;
4364 /* If is cursor between start and end quote character, it is
4365 * target text object. */
4366 if (col_start <= first_col && first_col <= col_end)
4367 break;
4368 col_start = col_end + 1;
4369 }
4370 }
4371 else
4372 {
4373 /* Search backward for a starting quote. */
4374 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4375 if (line[col_start] != quotechar)
4376 {
4377 /* No quote before the cursor, look after the cursor. */
4378 col_start = find_next_quote(line, col_start, quotechar, NULL);
4379 if (col_start < 0)
4380 return FALSE;
4381 }
4382
4383 /* Find close quote character. */
4384 col_end = find_next_quote(line, col_start + 1, quotechar,
4385 curbuf->b_p_qe);
4386 if (col_end < 0)
4387 return FALSE;
4388 }
4389
4390 /* When "include" is TRUE, include spaces after closing quote or before
4391 * the starting quote. */
4392 if (include)
4393 {
4394 if (vim_iswhite(line[col_end + 1]))
4395 while (vim_iswhite(line[col_end + 1]))
4396 ++col_end;
4397 else
4398 while (col_start > 0 && vim_iswhite(line[col_start - 1]))
4399 --col_start;
4400 }
4401
Bram Moolenaarab194812005-09-14 21:40:12 +00004402 /* Set start position. After vi" another i" must include the ".
4403 * For v2i" include the quotes. */
4404 if (!include && count < 2
4405#ifdef FEAT_VISUAL
4406 && (vis_empty || !inside_quotes)
4407#endif
4408 )
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004409 ++col_start;
4410 curwin->w_cursor.col = col_start;
4411#ifdef FEAT_VISUAL
4412 if (VIsual_active)
4413 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004414 /* Set the start of the Visual area when the Visual area was empty, we
4415 * were just inside quotes or the Visual area didn't start at a quote
4416 * and didn't include a quote.
4417 */
4418 if (vis_empty
4419 || (vis_bef_curs
4420 && !selected_quote
4421 && (inside_quotes
4422 || (line[VIsual.col] != quotechar
4423 && (VIsual.col == 0
4424 || line[VIsual.col - 1] != quotechar)))))
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004425 {
4426 VIsual = curwin->w_cursor;
4427 redraw_curbuf_later(INVERTED);
4428 }
4429 }
4430 else
4431#endif
4432 {
4433 oap->start = curwin->w_cursor;
4434 oap->motion_type = MCHAR;
4435 }
4436
4437 /* Set end position. */
4438 curwin->w_cursor.col = col_end;
Bram Moolenaarab194812005-09-14 21:40:12 +00004439 if ((include || count > 1
4440#ifdef FEAT_VISUAL
4441 /* After vi" another i" must include the ". */
4442 || (!vis_empty && inside_quotes)
4443#endif
4444 ) && inc_cursor() == 2)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004445 inclusive = TRUE;
4446#ifdef FEAT_VISUAL
4447 if (VIsual_active)
4448 {
4449 if (vis_empty || vis_bef_curs)
4450 {
4451 /* decrement cursor when 'selection' is not exclusive */
4452 if (*p_sel != 'e')
4453 dec_cursor();
4454 }
4455 else
4456 {
Bram Moolenaarab194812005-09-14 21:40:12 +00004457 /* Cursor is at start of Visual area. Set the end of the Visual
4458 * area when it was just inside quotes or it didn't end at a
4459 * quote. */
4460 if (inside_quotes
4461 || (!selected_quote
4462 && line[VIsual.col] != quotechar
4463 && (line[VIsual.col] == NUL
4464 || line[VIsual.col + 1] != quotechar)))
4465 {
4466 dec_cursor();
4467 VIsual = curwin->w_cursor;
4468 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004469 curwin->w_cursor.col = col_start;
4470 }
4471 if (VIsual_mode == 'V')
4472 {
4473 VIsual_mode = 'v';
4474 redraw_cmdline = TRUE; /* show mode later */
4475 }
4476 }
4477 else
4478#endif
4479 {
4480 /* Set inclusive and other oap's flags. */
4481 oap->inclusive = inclusive;
4482 }
4483
4484 return OK;
4485}
4486
4487#endif /* FEAT_TEXTOBJ */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004489#if defined(FEAT_VISUAL) || defined(PROTO)
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004490static int is_zerowidth __ARGS((char_u *pattern));
4491
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004492/*
4493 * Find next search match under cursor, cursor at end.
4494 * Used while an operator is pending, and in Visual mode.
4495 * TODO: redo only works when used in operator pending mode
4496 */
4497 int
4498current_search(count, forward)
4499 long count;
4500 int forward; /* move forward or backwards */
4501{
4502 pos_T start_pos; /* position before the pattern */
4503 pos_T orig_pos; /* position of the cursor at beginning */
4504 pos_T pos; /* position after the pattern */
4505 int i;
4506 int dir;
4507 int result; /* result of various function calls */
4508 char_u old_p_ws = p_ws;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004509 int flags = 0;
4510 pos_T save_VIsual;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004511 int zerowidth = FALSE;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004512
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004513 /* wrapping should not occur */
4514 p_ws = FALSE;
4515
4516 /* Correct cursor when 'selection' is exclusive */
4517 if (VIsual_active && *p_sel == 'e' && lt(VIsual, curwin->w_cursor))
4518 dec_cursor();
4519
4520 if (VIsual_active)
4521 {
4522 orig_pos = curwin->w_cursor;
4523 save_VIsual = VIsual;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004524
4525 pos = curwin->w_cursor;
4526 start_pos = VIsual;
4527
4528 /* make sure, searching further will extend the match */
4529 if (VIsual_active)
4530 {
4531 if (forward)
4532 incl(&pos);
4533 else
4534 decl(&pos);
4535 }
4536 }
4537 else
4538 orig_pos = pos = start_pos = curwin->w_cursor;
4539
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004540 /* Is the pattern is zero-width? */
4541 zerowidth = is_zerowidth(spats[last_idx].pat);
4542 if (zerowidth == -1)
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004543 return FAIL;
4544
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004545 /*
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004546 * The trick is to first search backwards and then search forward again,
4547 * so that a match at the current cursor position will be correctly
4548 * captured.
4549 */
4550 for (i = 0; i < 2; i++)
4551 {
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004552 if (forward)
4553 dir = i;
4554 else
4555 dir = !i;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004556
4557 flags = 0;
4558 if (!dir && !zerowidth)
4559 flags = SEARCH_END;
4560
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004561 result = searchit(curwin, curbuf, &pos, (dir ? FORWARD : BACKWARD),
4562 spats[last_idx].pat, (long) (i ? count : 1),
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004563 SEARCH_KEEP | flags, RE_SEARCH, 0, NULL);
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004564
4565 /* First search may fail, but then start searching from the
4566 * beginning of the file (cursor might be on the search match)
4567 * except when Visual mode is active, so that extending the visual
4568 * selection works. */
4569 if (!result && i) /* not found, abort */
4570 {
4571 curwin->w_cursor = orig_pos;
4572 if (VIsual_active)
4573 VIsual = save_VIsual;
4574 p_ws = old_p_ws;
4575 return FAIL;
4576 }
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004577 else if (!i && !result)
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004578 {
4579 if (forward) /* try again from start of buffer */
4580 {
4581 clearpos(&pos);
4582 }
4583 else /* try again from end of buffer */
4584 {
4585 /* searching backwards, so set pos to last line and col */
4586 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
Bram Moolenaar09168a72012-08-02 21:24:42 +02004587 pos.col = (colnr_T)STRLEN(
4588 ml_get(curwin->w_buffer->b_ml.ml_line_count));
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004589 }
4590 }
4591
4592 }
4593
4594 start_pos = pos;
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004595 flags = forward ? SEARCH_END : 0;
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004596
Bram Moolenaarba6ba362012-08-08 15:27:57 +02004597 /* move to match, except for zero-width matches, in which case, we are
4598 * already on the next match */
4599 if (!zerowidth)
4600 result = searchit(curwin, curbuf, &pos, (forward ? FORWARD : BACKWARD),
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004601 spats[last_idx].pat, 0L, flags | SEARCH_KEEP, RE_SEARCH, 0, NULL);
4602
4603 if (!VIsual_active)
4604 VIsual = start_pos;
4605
4606 p_ws = old_p_ws;
4607 curwin->w_cursor = pos;
4608 VIsual_active = TRUE;
4609 VIsual_mode = 'v';
4610
4611 if (VIsual_active)
4612 {
4613 redraw_curbuf_later(INVERTED); /* update the inversion */
Bram Moolenaar718f0072012-10-03 13:35:51 +02004614 if (*p_sel == 'e')
4615 {
4616 /* Correction for exclusive selection depends on the direction. */
4617 if (forward && ltoreq(VIsual, curwin->w_cursor))
4618 inc_cursor();
4619 else if (!forward && ltoreq(curwin->w_cursor, VIsual))
4620 inc(&VIsual);
4621 }
4622
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004623 }
4624
4625#ifdef FEAT_FOLDING
4626 if (fdo_flags & FDO_SEARCH && KeyTyped)
4627 foldOpenCursor();
4628#endif
4629
4630 may_start_select('c');
4631#ifdef FEAT_MOUSE
4632 setmouse();
4633#endif
4634#ifdef FEAT_CLIPBOARD
4635 /* Make sure the clipboard gets updated. Needed because start and
4636 * end are still the same, and the selection needs to be owned */
4637 clip_star.vmode = NUL;
4638#endif
4639 redraw_curbuf_later(INVERTED);
4640 showmode();
4641
4642 return OK;
4643}
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004644
4645/*
4646 * Check if the pattern is zero-width.
4647 * Returns TRUE, FALSE or -1 for failure.
4648 */
4649 static int
4650is_zerowidth(pattern)
4651 char_u *pattern;
4652{
4653 regmmatch_T regmatch;
4654 int nmatched = 0;
4655 int result = -1;
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004656 pos_T pos;
4657 int save_called_emsg = called_emsg;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004658
4659 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
4660 SEARCH_KEEP, &regmatch) == FAIL)
4661 return -1;
4662
4663 /* move to match */
4664 clearpos(&pos);
4665 if (searchit(curwin, curbuf, &pos, FORWARD, spats[last_idx].pat, 1,
4666 SEARCH_KEEP, RE_SEARCH, 0, NULL) != FAIL)
4667 {
4668 /* Zero-width pattern should match somewhere, then we can check if
4669 * start and end are in the same position. */
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004670 called_emsg = FALSE;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004671 nmatched = vim_regexec_multi(&regmatch, curwin, curbuf,
4672 pos.lnum, (colnr_T)0, NULL);
4673
4674 if (!called_emsg)
4675 result = (nmatched != 0
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004676 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum
4677 && regmatch.startpos[0].col == regmatch.endpos[0].col);
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004678 }
4679
Bram Moolenaar57c0ea82012-09-05 12:16:45 +02004680 called_emsg |= save_called_emsg;
Bram Moolenaardde0efe2012-08-23 15:53:05 +02004681 vim_free(regmatch.regprog);
4682 return result;
4683}
Bram Moolenaar8a0f3c72012-07-29 12:55:32 +02004684#endif /* FEAT_VISUAL */
4685
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4687 || defined(PROTO)
4688/*
4689 * return TRUE if line 'lnum' is empty or has white chars only.
4690 */
4691 int
4692linewhite(lnum)
4693 linenr_T lnum;
4694{
4695 char_u *p;
4696
4697 p = skipwhite(ml_get(lnum));
4698 return (*p == NUL);
4699}
4700#endif
4701
4702#if defined(FEAT_FIND_ID) || defined(PROTO)
4703/*
4704 * Find identifiers or defines in included files.
Bram Moolenaarb4b0a082011-02-25 18:38:36 +01004705 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 void
4708find_pattern_in_path(ptr, dir, len, whole, skip_comments,
4709 type, count, action, start_lnum, end_lnum)
4710 char_u *ptr; /* pointer to search pattern */
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004711 int dir UNUSED; /* direction of expansion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712 int len; /* length of search pattern */
4713 int whole; /* match whole words only */
4714 int skip_comments; /* don't match inside comments */
4715 int type; /* Type of search; are we looking for a type?
4716 a macro? */
4717 long count;
4718 int action; /* What to do when we find it */
4719 linenr_T start_lnum; /* first line to start searching */
4720 linenr_T end_lnum; /* last line for searching */
4721{
4722 SearchedFile *files; /* Stack of included files */
4723 SearchedFile *bigger; /* When we need more space */
4724 int max_path_depth = 50;
4725 long match_count = 1;
4726
4727 char_u *pat;
4728 char_u *new_fname;
4729 char_u *curr_fname = curbuf->b_fname;
4730 char_u *prev_fname = NULL;
4731 linenr_T lnum;
4732 int depth;
4733 int depth_displayed; /* For type==CHECK_PATH */
4734 int old_files;
4735 int already_searched;
4736 char_u *file_line;
4737 char_u *line;
4738 char_u *p;
4739 char_u save_char;
4740 int define_matched;
4741 regmatch_T regmatch;
4742 regmatch_T incl_regmatch;
4743 regmatch_T def_regmatch;
4744 int matched = FALSE;
4745 int did_show = FALSE;
4746 int found = FALSE;
4747 int i;
4748 char_u *already = NULL;
4749 char_u *startp = NULL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004750 char_u *inc_opt = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4752 win_T *curwin_save = NULL;
4753#endif
4754
4755 regmatch.regprog = NULL;
4756 incl_regmatch.regprog = NULL;
4757 def_regmatch.regprog = NULL;
4758
4759 file_line = alloc(LSIZE);
4760 if (file_line == NULL)
4761 return;
4762
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763 if (type != CHECK_PATH && type != FIND_DEFINE
4764#ifdef FEAT_INS_EXPAND
4765 /* when CONT_SOL is set compare "ptr" with the beginning of the line
4766 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004767 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768#endif
4769 )
4770 {
4771 pat = alloc(len + 5);
4772 if (pat == NULL)
4773 goto fpip_end;
4774 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
4775 /* ignore case according to p_ic, p_scs and pat */
4776 regmatch.rm_ic = ignorecase(pat);
4777 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4778 vim_free(pat);
4779 if (regmatch.regprog == NULL)
4780 goto fpip_end;
4781 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004782 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
4783 if (*inc_opt != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004785 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 if (incl_regmatch.regprog == NULL)
4787 goto fpip_end;
4788 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */
4789 }
4790 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
4791 {
4792 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
4793 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
4794 if (def_regmatch.regprog == NULL)
4795 goto fpip_end;
4796 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */
4797 }
4798 files = (SearchedFile *)lalloc_clear((long_u)
4799 (max_path_depth * sizeof(SearchedFile)), TRUE);
4800 if (files == NULL)
4801 goto fpip_end;
4802 old_files = max_path_depth;
4803 depth = depth_displayed = -1;
4804
4805 lnum = start_lnum;
4806 if (end_lnum > curbuf->b_ml.ml_line_count)
4807 end_lnum = curbuf->b_ml.ml_line_count;
4808 if (lnum > end_lnum) /* do at least one line */
4809 lnum = end_lnum;
4810 line = ml_get(lnum);
4811
4812 for (;;)
4813 {
4814 if (incl_regmatch.regprog != NULL
4815 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
4816 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004817 char_u *p_fname = (curr_fname == curbuf->b_fname)
4818 ? curbuf->b_ffname : curr_fname;
4819
4820 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
4821 /* Use text from '\zs' to '\ze' (or end) of 'include'. */
4822 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004823 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00004824 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
4825 else
4826 /* Use text after match with 'include'. */
4827 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004828 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829 already_searched = FALSE;
4830 if (new_fname != NULL)
4831 {
4832 /* Check whether we have already searched in this file */
4833 for (i = 0;; i++)
4834 {
4835 if (i == depth + 1)
4836 i = old_files;
4837 if (i == max_path_depth)
4838 break;
4839 if (fullpathcmp(new_fname, files[i].name, TRUE) & FPC_SAME)
4840 {
4841 if (type != CHECK_PATH &&
4842 action == ACTION_SHOW_ALL && files[i].matched)
4843 {
4844 msg_putchar('\n'); /* cursor below last one */
4845 if (!got_int) /* don't display if 'q'
4846 typed at "--more--"
Bram Moolenaarfe81d452009-04-22 14:44:41 +00004847 message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848 {
4849 msg_home_replace_hl(new_fname);
4850 MSG_PUTS(_(" (includes previously listed match)"));
4851 prev_fname = NULL;
4852 }
4853 }
4854 vim_free(new_fname);
4855 new_fname = NULL;
4856 already_searched = TRUE;
4857 break;
4858 }
4859 }
4860 }
4861
4862 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
4863 || (new_fname == NULL && !already_searched)))
4864 {
4865 if (did_show)
4866 msg_putchar('\n'); /* cursor below last one */
4867 else
4868 {
4869 gotocmdline(TRUE); /* cursor at status line */
4870 MSG_PUTS_TITLE(_("--- Included files "));
4871 if (action != ACTION_SHOW_ALL)
4872 MSG_PUTS_TITLE(_("not found "));
4873 MSG_PUTS_TITLE(_("in path ---\n"));
4874 }
4875 did_show = TRUE;
4876 while (depth_displayed < depth && !got_int)
4877 {
4878 ++depth_displayed;
4879 for (i = 0; i < depth_displayed; i++)
4880 MSG_PUTS(" ");
4881 msg_home_replace(files[depth_displayed].name);
4882 MSG_PUTS(" -->\n");
4883 }
4884 if (!got_int) /* don't display if 'q' typed
4885 for "--more--" message */
4886 {
4887 for (i = 0; i <= depth_displayed; i++)
4888 MSG_PUTS(" ");
4889 if (new_fname != NULL)
4890 {
4891 /* using "new_fname" is more reliable, e.g., when
4892 * 'includeexpr' is set. */
4893 msg_outtrans_attr(new_fname, hl_attr(HLF_D));
4894 }
4895 else
4896 {
4897 /*
4898 * Isolate the file name.
4899 * Include the surrounding "" or <> if present.
4900 */
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02004901 if (inc_opt != NULL
4902 && strstr((char *)inc_opt, "\\zs") != NULL)
4903 {
4904 /* pattern contains \zs, use the match */
4905 p = incl_regmatch.startp[0];
4906 i = (int)(incl_regmatch.endp[0]
4907 - incl_regmatch.startp[0]);
4908 }
4909 else
4910 {
4911 /* find the file name after the end of the match */
4912 for (p = incl_regmatch.endp[0];
4913 *p && !vim_isfilec(*p); p++)
4914 ;
4915 for (i = 0; vim_isfilec(p[i]); i++)
4916 ;
4917 }
4918
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 if (i == 0)
4920 {
4921 /* Nothing found, use the rest of the line. */
4922 p = incl_regmatch.endp[0];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004923 i = (int)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 }
Bram Moolenaar058bdcf2012-07-25 13:46:30 +02004925 /* Avoid checking before the start of the line, can
4926 * happen if \zs appears in the regexp. */
4927 else if (p > line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 {
4929 if (p[-1] == '"' || p[-1] == '<')
4930 {
4931 --p;
4932 ++i;
4933 }
4934 if (p[i] == '"' || p[i] == '>')
4935 ++i;
4936 }
4937 save_char = p[i];
4938 p[i] = NUL;
4939 msg_outtrans_attr(p, hl_attr(HLF_D));
4940 p[i] = save_char;
4941 }
4942
4943 if (new_fname == NULL && action == ACTION_SHOW_ALL)
4944 {
4945 if (already_searched)
4946 MSG_PUTS(_(" (Already listed)"));
4947 else
4948 MSG_PUTS(_(" NOT FOUND"));
4949 }
4950 }
4951 out_flush(); /* output each line directly */
4952 }
4953
4954 if (new_fname != NULL)
4955 {
4956 /* Push the new file onto the file stack */
4957 if (depth + 1 == old_files)
4958 {
4959 bigger = (SearchedFile *)lalloc((long_u)(
4960 max_path_depth * 2 * sizeof(SearchedFile)), TRUE);
4961 if (bigger != NULL)
4962 {
4963 for (i = 0; i <= depth; i++)
4964 bigger[i] = files[i];
4965 for (i = depth + 1; i < old_files + max_path_depth; i++)
4966 {
4967 bigger[i].fp = NULL;
4968 bigger[i].name = NULL;
4969 bigger[i].lnum = 0;
4970 bigger[i].matched = FALSE;
4971 }
4972 for (i = old_files; i < max_path_depth; i++)
4973 bigger[i + max_path_depth] = files[i];
4974 old_files += max_path_depth;
4975 max_path_depth *= 2;
4976 vim_free(files);
4977 files = bigger;
4978 }
4979 }
4980 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
4981 == NULL)
4982 vim_free(new_fname);
4983 else
4984 {
4985 if (++depth == old_files)
4986 {
4987 /*
4988 * lalloc() for 'bigger' must have failed above. We
4989 * will forget one of our already visited files now.
4990 */
4991 vim_free(files[old_files].name);
4992 ++old_files;
4993 }
4994 files[depth].name = curr_fname = new_fname;
4995 files[depth].lnum = 0;
4996 files[depth].matched = FALSE;
4997#ifdef FEAT_INS_EXPAND
4998 if (action == ACTION_EXPAND)
4999 {
Bram Moolenaardf40adf2006-10-14 12:32:39 +00005000 msg_hist_off = TRUE; /* reset in msg_trunc_attr() */
Bram Moolenaar555b2802005-05-19 21:08:39 +00005001 vim_snprintf((char*)IObuff, IOSIZE,
5002 _("Scanning included file: %s"),
5003 (char *)new_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
5005 }
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005006 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007#endif
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00005008 if (p_verbose >= 5)
5009 {
5010 verbose_enter();
5011 smsg((char_u *)_("Searching included file %s"),
5012 (char *)new_fname);
5013 verbose_leave();
5014 }
5015
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 }
5017 }
5018 }
5019 else
5020 {
5021 /*
5022 * Check if the line is a define (type == FIND_DEFINE)
5023 */
5024 p = line;
5025search_line:
5026 define_matched = FALSE;
5027 if (def_regmatch.regprog != NULL
5028 && vim_regexec(&def_regmatch, line, (colnr_T)0))
5029 {
5030 /*
5031 * Pattern must be first identifier after 'define', so skip
5032 * to that position before checking for match of pattern. Also
5033 * don't let it match beyond the end of this identifier.
5034 */
5035 p = def_regmatch.endp[0];
5036 while (*p && !vim_iswordc(*p))
5037 p++;
5038 define_matched = TRUE;
5039 }
5040
5041 /*
5042 * Look for a match. Don't do this if we are looking for a
5043 * define and this line didn't match define_prog above.
5044 */
5045 if (def_regmatch.regprog == NULL || define_matched)
5046 {
5047 if (define_matched
5048#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005049 || (compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050#endif
5051 )
5052 {
5053 /* compare the first "len" chars from "ptr" */
5054 startp = skipwhite(p);
5055 if (p_ic)
5056 matched = !MB_STRNICMP(startp, ptr, len);
5057 else
5058 matched = !STRNCMP(startp, ptr, len);
5059 if (matched && define_matched && whole
5060 && vim_iswordc(startp[len]))
5061 matched = FALSE;
5062 }
5063 else if (regmatch.regprog != NULL
5064 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
5065 {
5066 matched = TRUE;
5067 startp = regmatch.startp[0];
5068 /*
5069 * Check if the line is not a comment line (unless we are
5070 * looking for a define). A line starting with "# define"
5071 * is not considered to be a comment line.
5072 */
5073 if (!define_matched && skip_comments)
5074 {
5075#ifdef FEAT_COMMENTS
5076 if ((*line != '#' ||
5077 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
Bram Moolenaar81340392012-06-06 16:12:59 +02005078 && get_leader_len(line, NULL, FALSE, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 matched = FALSE;
5080
5081 /*
5082 * Also check for a "/ *" or "/ /" before the match.
5083 * Skips lines like "int backwards; / * normal index
5084 * * /" when looking for "normal".
5085 * Note: Doesn't skip "/ *" in comments.
5086 */
5087 p = skipwhite(line);
5088 if (matched
5089 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
5090#endif
5091 for (p = line; *p && p < startp; ++p)
5092 {
5093 if (matched
5094 && p[0] == '/'
5095 && (p[1] == '*' || p[1] == '/'))
5096 {
5097 matched = FALSE;
5098 /* After "//" all text is comment */
5099 if (p[1] == '/')
5100 break;
5101 ++p;
5102 }
5103 else if (!matched && p[0] == '*' && p[1] == '/')
5104 {
5105 /* Can find match after "* /". */
5106 matched = TRUE;
5107 ++p;
5108 }
5109 }
5110 }
5111 }
5112 }
5113 }
5114 if (matched)
5115 {
5116#ifdef FEAT_INS_EXPAND
5117 if (action == ACTION_EXPAND)
5118 {
5119 int reuse = 0;
5120 int add_r;
5121 char_u *aux;
5122
5123 if (depth == -1 && lnum == curwin->w_cursor.lnum)
5124 break;
5125 found = TRUE;
5126 aux = p = startp;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005127 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005129 p += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130 if (vim_iswordp(p))
5131 goto exit_matched;
5132 p = find_word_start(p);
5133 }
5134 p = find_word_end(p);
5135 i = (int)(p - aux);
5136
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005137 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005139 /* IOSIZE > compl_length, so the STRNCPY works */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140 STRNCPY(IObuff, aux, i);
Bram Moolenaar89d40322006-08-29 15:30:07 +00005141
5142 /* Get the next line: when "depth" < 0 from the current
5143 * buffer, otherwise from the included file. Jump to
5144 * exit_matched when past the last line. */
5145 if (depth < 0)
5146 {
5147 if (lnum >= end_lnum)
5148 goto exit_matched;
5149 line = ml_get(++lnum);
5150 }
5151 else if (vim_fgets(line = file_line,
5152 LSIZE, files[depth].fp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 goto exit_matched;
5154
5155 /* we read a line, set "already" to check this "line" later
5156 * if depth >= 0 we'll increase files[depth].lnum far
5157 * bellow -- Acevedo */
5158 already = aux = p = skipwhite(line);
5159 p = find_word_start(p);
5160 p = find_word_end(p);
5161 if (p > aux)
5162 {
5163 if (*aux != ')' && IObuff[i-1] != TAB)
5164 {
5165 if (IObuff[i-1] != ' ')
5166 IObuff[i++] = ' ';
5167 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/
5168 if (p_js
5169 && (IObuff[i-2] == '.'
5170 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
5171 && (IObuff[i-2] == '?'
5172 || IObuff[i-2] == '!'))))
5173 IObuff[i++] = ' ';
5174 }
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005175 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 if (p - aux >= IOSIZE - i)
5177 p = aux + IOSIZE - i - 1;
5178 STRNCPY(IObuff + i, aux, p - aux);
5179 i += (int)(p - aux);
5180 reuse |= CONT_S_IPOS;
5181 }
5182 IObuff[i] = NUL;
5183 aux = IObuff;
5184
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005185 if (i == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186 goto exit_matched;
5187 }
5188
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005189 add_r = ins_compl_add_infercase(aux, i, p_ic,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 curr_fname == curbuf->b_fname ? NULL : curr_fname,
5191 dir, reuse);
5192 if (add_r == OK)
5193 /* if dir was BACKWARD then honor it just once */
5194 dir = FORWARD;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005195 else if (add_r == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196 break;
5197 }
5198 else
5199#endif
5200 if (action == ACTION_SHOW_ALL)
5201 {
5202 found = TRUE;
5203 if (!did_show)
5204 gotocmdline(TRUE); /* cursor at status line */
5205 if (curr_fname != prev_fname)
5206 {
5207 if (did_show)
5208 msg_putchar('\n'); /* cursor below last one */
5209 if (!got_int) /* don't display if 'q' typed
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005210 at "--more--" message */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211 msg_home_replace_hl(curr_fname);
5212 prev_fname = curr_fname;
5213 }
5214 did_show = TRUE;
5215 if (!got_int)
5216 show_pat_in_path(line, type, TRUE, action,
5217 (depth == -1) ? NULL : files[depth].fp,
5218 (depth == -1) ? &lnum : &files[depth].lnum,
5219 match_count++);
5220
5221 /* Set matched flag for this file and all the ones that
5222 * include it */
5223 for (i = 0; i <= depth; ++i)
5224 files[i].matched = TRUE;
5225 }
5226 else if (--count <= 0)
5227 {
5228 found = TRUE;
5229 if (depth == -1 && lnum == curwin->w_cursor.lnum
5230#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5231 && g_do_tagpreview == 0
5232#endif
5233 )
5234 EMSG(_("E387: Match is on current line"));
5235 else if (action == ACTION_SHOW)
5236 {
5237 show_pat_in_path(line, type, did_show, action,
5238 (depth == -1) ? NULL : files[depth].fp,
5239 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
5240 did_show = TRUE;
5241 }
5242 else
5243 {
5244#ifdef FEAT_GUI
5245 need_mouse_correct = TRUE;
5246#endif
5247#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5248 /* ":psearch" uses the preview window */
5249 if (g_do_tagpreview != 0)
5250 {
5251 curwin_save = curwin;
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005252 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 }
5254#endif
5255 if (action == ACTION_SPLIT)
5256 {
5257#ifdef FEAT_WINDOWS
5258 if (win_split(0, 0) == FAIL)
5259#endif
5260 break;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005261 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262 }
5263 if (depth == -1)
5264 {
5265 /* match in current file */
5266#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5267 if (g_do_tagpreview != 0)
5268 {
5269 if (getfile(0, curwin_save->w_buffer->b_fname,
5270 NULL, TRUE, lnum, FALSE) > 0)
5271 break; /* failed to jump to file */
5272 }
5273 else
5274#endif
5275 setpcmark();
5276 curwin->w_cursor.lnum = lnum;
5277 }
5278 else
5279 {
5280 if (getfile(0, files[depth].name, NULL, TRUE,
5281 files[depth].lnum, FALSE) > 0)
5282 break; /* failed to jump to file */
5283 /* autocommands may have changed the lnum, we don't
5284 * want that here */
5285 curwin->w_cursor.lnum = files[depth].lnum;
5286 }
5287 }
5288 if (action != ACTION_SHOW)
5289 {
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005290 curwin->w_cursor.col = (colnr_T)(startp - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 curwin->w_set_curswant = TRUE;
5292 }
5293
5294#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5295 if (g_do_tagpreview != 0
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00005296 && curwin != curwin_save && win_valid(curwin_save))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297 {
5298 /* Return cursor to where we were */
5299 validate_cursor();
5300 redraw_later(VALID);
5301 win_enter(curwin_save, TRUE);
5302 }
5303#endif
5304 break;
5305 }
5306#ifdef FEAT_INS_EXPAND
5307exit_matched:
5308#endif
5309 matched = FALSE;
5310 /* look for other matches in the rest of the line if we
5311 * are not at the end of it already */
5312 if (def_regmatch.regprog == NULL
5313#ifdef FEAT_INS_EXPAND
5314 && action == ACTION_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005315 && !(compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316#endif
Bram Moolenaarfe81d452009-04-22 14:44:41 +00005317 && *startp != NUL
Bram Moolenaar94c465c2012-07-19 17:18:26 +02005318 && *(p = startp + MB_PTR2LEN(startp)) != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319 goto search_line;
5320 }
5321 line_breakcheck();
5322#ifdef FEAT_INS_EXPAND
5323 if (action == ACTION_EXPAND)
Bram Moolenaar572cb562005-08-05 21:35:02 +00005324 ins_compl_check_keys(30);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005325 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326#else
5327 if (got_int)
5328#endif
5329 break;
5330
5331 /*
5332 * Read the next line. When reading an included file and encountering
5333 * end-of-file, close the file and continue in the file that included
5334 * it.
5335 */
5336 while (depth >= 0 && !already
5337 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5338 {
5339 fclose(files[depth].fp);
5340 --old_files;
5341 files[old_files].name = files[depth].name;
5342 files[old_files].matched = files[depth].matched;
5343 --depth;
5344 curr_fname = (depth == -1) ? curbuf->b_fname
5345 : files[depth].name;
5346 if (depth < depth_displayed)
5347 depth_displayed = depth;
5348 }
5349 if (depth >= 0) /* we could read the line */
5350 files[depth].lnum++;
5351 else if (!already)
5352 {
5353 if (++lnum > end_lnum)
5354 break;
5355 line = ml_get(lnum);
5356 }
5357 already = NULL;
5358 }
5359 /* End of big for (;;) loop. */
5360
5361 /* Close any files that are still open. */
5362 for (i = 0; i <= depth; i++)
5363 {
5364 fclose(files[i].fp);
5365 vim_free(files[i].name);
5366 }
5367 for (i = old_files; i < max_path_depth; i++)
5368 vim_free(files[i].name);
5369 vim_free(files);
5370
5371 if (type == CHECK_PATH)
5372 {
5373 if (!did_show)
5374 {
5375 if (action != ACTION_SHOW_ALL)
5376 MSG(_("All included files were found"));
5377 else
5378 MSG(_("No included files"));
5379 }
5380 }
5381 else if (!found
5382#ifdef FEAT_INS_EXPAND
5383 && action != ACTION_EXPAND
5384#endif
5385 )
5386 {
5387#ifdef FEAT_INS_EXPAND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005388 if (got_int || compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389#else
5390 if (got_int)
5391#endif
5392 EMSG(_(e_interr));
5393 else if (type == FIND_DEFINE)
5394 EMSG(_("E388: Couldn't find definition"));
5395 else
5396 EMSG(_("E389: Couldn't find pattern"));
5397 }
5398 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5399 msg_end();
5400
5401fpip_end:
5402 vim_free(file_line);
5403 vim_free(regmatch.regprog);
5404 vim_free(incl_regmatch.regprog);
5405 vim_free(def_regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406}
5407
5408 static void
5409show_pat_in_path(line, type, did_show, action, fp, lnum, count)
5410 char_u *line;
5411 int type;
5412 int did_show;
5413 int action;
5414 FILE *fp;
5415 linenr_T *lnum;
5416 long count;
5417{
5418 char_u *p;
5419
5420 if (did_show)
5421 msg_putchar('\n'); /* cursor below last one */
Bram Moolenaar91170f82006-05-05 21:15:17 +00005422 else if (!msg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 gotocmdline(TRUE); /* cursor at status line */
5424 if (got_int) /* 'q' typed at "--more--" message */
5425 return;
5426 for (;;)
5427 {
5428 p = line + STRLEN(line) - 1;
5429 if (fp != NULL)
5430 {
5431 /* We used fgets(), so get rid of newline at end */
5432 if (p >= line && *p == '\n')
5433 --p;
5434 if (p >= line && *p == '\r')
5435 --p;
5436 *(p + 1) = NUL;
5437 }
5438 if (action == ACTION_SHOW_ALL)
5439 {
5440 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */
5441 msg_puts(IObuff);
5442 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */
5443 /* Highlight line numbers */
5444 msg_puts_attr(IObuff, hl_attr(HLF_N));
5445 MSG_PUTS(" ");
5446 }
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005447 msg_prt_line(line, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 out_flush(); /* show one line at a time */
5449
5450 /* Definition continues until line that doesn't end with '\' */
5451 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5452 break;
5453
5454 if (fp != NULL)
5455 {
5456 if (vim_fgets(line, LSIZE, fp)) /* end of file */
5457 break;
5458 ++*lnum;
5459 }
5460 else
5461 {
5462 if (++*lnum > curbuf->b_ml.ml_line_count)
5463 break;
5464 line = ml_get(*lnum);
5465 }
5466 msg_putchar('\n');
5467 }
5468}
5469#endif
5470
5471#ifdef FEAT_VIMINFO
5472 int
5473read_viminfo_search_pattern(virp, force)
5474 vir_T *virp;
5475 int force;
5476{
5477 char_u *lp;
5478 int idx = -1;
5479 int magic = FALSE;
5480 int no_scs = FALSE;
5481 int off_line = FALSE;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005482 int off_end = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 long off = 0;
5484 int setlast = FALSE;
5485#ifdef FEAT_SEARCH_EXTRA
5486 static int hlsearch_on = FALSE;
5487#endif
5488 char_u *val;
5489
5490 /*
5491 * Old line types:
5492 * "/pat", "&pat": search/subst. pat
5493 * "~/pat", "~&pat": last used search/subst. pat
5494 * New line types:
5495 * "~h", "~H": hlsearch highlighting off/on
5496 * "~<magic><smartcase><line><end><off><last><which>pat"
5497 * <magic>: 'm' off, 'M' on
5498 * <smartcase>: 's' off, 'S' on
5499 * <line>: 'L' line offset, 'l' char offset
5500 * <end>: 'E' from end, 'e' from start
5501 * <off>: decimal, offset
5502 * <last>: '~' last used pattern
5503 * <which>: '/' search pat, '&' subst. pat
5504 */
5505 lp = virp->vir_line;
5506 if (lp[0] == '~' && (lp[1] == 'm' || lp[1] == 'M')) /* new line type */
5507 {
5508 if (lp[1] == 'M') /* magic on */
5509 magic = TRUE;
5510 if (lp[2] == 's')
5511 no_scs = TRUE;
5512 if (lp[3] == 'L')
5513 off_line = TRUE;
5514 if (lp[4] == 'E')
Bram Moolenaared203462004-06-16 11:19:22 +00005515 off_end = SEARCH_END;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 lp += 5;
5517 off = getdigits(&lp);
5518 }
5519 if (lp[0] == '~') /* use this pattern for last-used pattern */
5520 {
5521 setlast = TRUE;
5522 lp++;
5523 }
5524 if (lp[0] == '/')
5525 idx = RE_SEARCH;
5526 else if (lp[0] == '&')
5527 idx = RE_SUBST;
5528#ifdef FEAT_SEARCH_EXTRA
5529 else if (lp[0] == 'h') /* ~h: 'hlsearch' highlighting off */
5530 hlsearch_on = FALSE;
5531 else if (lp[0] == 'H') /* ~H: 'hlsearch' highlighting on */
5532 hlsearch_on = TRUE;
5533#endif
5534 if (idx >= 0)
5535 {
5536 if (force || spats[idx].pat == NULL)
5537 {
5538 val = viminfo_readstring(virp, (int)(lp - virp->vir_line + 1),
5539 TRUE);
5540 if (val != NULL)
5541 {
5542 set_last_search_pat(val, idx, magic, setlast);
5543 vim_free(val);
5544 spats[idx].no_scs = no_scs;
5545 spats[idx].off.line = off_line;
5546 spats[idx].off.end = off_end;
5547 spats[idx].off.off = off;
5548#ifdef FEAT_SEARCH_EXTRA
5549 if (setlast)
5550 no_hlsearch = !hlsearch_on;
5551#endif
5552 }
5553 }
5554 }
5555 return viminfo_readline(virp);
5556}
5557
5558 void
5559write_viminfo_search_pattern(fp)
5560 FILE *fp;
5561{
5562 if (get_viminfo_parameter('/') != 0)
5563 {
5564#ifdef FEAT_SEARCH_EXTRA
5565 fprintf(fp, "\n# hlsearch on (H) or off (h):\n~%c",
5566 (no_hlsearch || find_viminfo_parameter('h') != NULL) ? 'h' : 'H');
5567#endif
5568 wvsp_one(fp, RE_SEARCH, "", '/');
Bram Moolenaar9b228712008-07-18 10:05:58 +00005569 wvsp_one(fp, RE_SUBST, _("Substitute "), '&');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 }
5571}
5572
5573 static void
5574wvsp_one(fp, idx, s, sc)
5575 FILE *fp; /* file to write to */
5576 int idx; /* spats[] index */
5577 char *s; /* search pat */
5578 int sc; /* dir char */
5579{
5580 if (spats[idx].pat != NULL)
5581 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005582 fprintf(fp, _("\n# Last %sSearch Pattern:\n~"), s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 /* off.dir is not stored, it's reset to forward */
5584 fprintf(fp, "%c%c%c%c%ld%s%c",
5585 spats[idx].magic ? 'M' : 'm', /* magic */
5586 spats[idx].no_scs ? 's' : 'S', /* smartcase */
5587 spats[idx].off.line ? 'L' : 'l', /* line offset */
5588 spats[idx].off.end ? 'E' : 'e', /* offset from end */
5589 spats[idx].off.off, /* offset */
5590 last_idx == idx ? "~" : "", /* last used pat */
5591 sc);
5592 viminfo_writestring(fp, spats[idx].pat);
5593 }
5594}
5595#endif /* FEAT_VIMINFO */