Find Next/Previous and Use Selection for Find menus
[MacVim.git] / src / search.c
blob73de100bef98e08424d6f6469b313d284e1edbf4
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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
13 #include "vim.h"
15 static void save_re_pat __ARGS((int idx, char_u *pat, int magic));
16 #ifdef FEAT_EVAL
17 static int first_submatch __ARGS((regmmatch_T *rp));
18 #endif
19 static int check_prevcol __ARGS((char_u *linep, int col, int ch, int *prevcol));
20 static int inmacro __ARGS((char_u *, char_u *));
21 static int check_linecomment __ARGS((char_u *line));
22 static int cls __ARGS((void));
23 static int skip_chars __ARGS((int, int));
24 #ifdef FEAT_TEXTOBJ
25 static void back_in_line __ARGS((void));
26 static void find_first_blank __ARGS((pos_T *));
27 static void findsent_forward __ARGS((long count, int at_start_sent));
28 #endif
29 #ifdef FEAT_FIND_ID
30 static void show_pat_in_path __ARGS((char_u *, int,
31 int, int, FILE *, linenr_T *, long));
32 #endif
33 #ifdef FEAT_VIMINFO
34 static void wvsp_one __ARGS((FILE *fp, int idx, char *s, int sc));
35 #endif
38 * This file contains various searching-related routines. These fall into
39 * three groups:
40 * 1. string searches (for /, ?, n, and N)
41 * 2. character searches within a single line (for f, F, t, T, etc)
42 * 3. "other" kinds of searches like the '%' command, and 'word' searches.
46 * String searches
48 * The string search functions are divided into two levels:
49 * lowest: searchit(); uses an pos_T for starting position and found match.
50 * Highest: do_search(); uses curwin->w_cursor; calls searchit().
52 * The last search pattern is remembered for repeating the same search.
53 * This pattern is shared between the :g, :s, ? and / commands.
54 * This is in search_regcomp().
56 * The actual string matching is done using a heavily modified version of
57 * Henry Spencer's regular expression library. See regexp.c.
60 /* The offset for a search command is store in a soff struct */
61 /* Note: only spats[0].off is really used */
62 struct soffset
64 int dir; /* search direction */
65 int line; /* search has line offset */
66 int end; /* search set cursor at end */
67 long off; /* line or char offset */
70 /* A search pattern and its attributes are stored in a spat struct */
71 struct spat
73 char_u *pat; /* the pattern (in allocated memory) or NULL */
74 int magic; /* magicness of the pattern */
75 int no_scs; /* no smarcase for this pattern */
76 struct soffset off;
80 * Two search patterns are remembered: One for the :substitute command and
81 * one for other searches. last_idx points to the one that was used the last
82 * time.
84 static struct spat spats[2] =
86 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}}, /* last used search pat */
87 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}} /* last used substitute pat */
90 static int last_idx = 0; /* index in spats[] for RE_LAST */
92 #if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO)
93 /* copy of spats[], for keeping the search patterns while executing autocmds */
94 static struct spat saved_spats[2];
95 static int saved_last_idx = 0;
96 # ifdef FEAT_SEARCH_EXTRA
97 static int saved_no_hlsearch = 0;
98 # endif
99 #endif
101 static char_u *mr_pattern = NULL; /* pattern used by search_regcomp() */
102 #ifdef FEAT_RIGHTLEFT
103 static int mr_pattern_alloced = FALSE; /* mr_pattern was allocated */
104 #endif
106 #ifdef FEAT_FIND_ID
108 * Type used by find_pattern_in_path() to remember which included files have
109 * been searched already.
111 typedef struct SearchedFile
113 FILE *fp; /* File pointer */
114 char_u *name; /* Full name of file */
115 linenr_T lnum; /* Line we were up to in file */
116 int matched; /* Found a match in this file */
117 } SearchedFile;
118 #endif
121 * translate search pattern for vim_regcomp()
123 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd)
124 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command)
125 * pat_save == RE_BOTH: save pat in both patterns (:global command)
126 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL
127 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL
128 * pat_use == RE_LAST: use last used pattern if "pat" is NULL
129 * options & SEARCH_HIS: put search string in history
130 * options & SEARCH_KEEP: keep previous search pattern
132 * returns FAIL if failed, OK otherwise.
135 search_regcomp(pat, pat_save, pat_use, options, regmatch)
136 char_u *pat;
137 int pat_save;
138 int pat_use;
139 int options;
140 regmmatch_T *regmatch; /* return: pattern and ignore-case flag */
142 int magic;
143 int i;
145 rc_did_emsg = FALSE;
146 magic = p_magic;
149 * If no pattern given, use a previously defined pattern.
151 if (pat == NULL || *pat == NUL)
153 if (pat_use == RE_LAST)
154 i = last_idx;
155 else
156 i = pat_use;
157 if (spats[i].pat == NULL) /* pattern was never defined */
159 if (pat_use == RE_SUBST)
160 EMSG(_(e_nopresub));
161 else
162 EMSG(_(e_noprevre));
163 rc_did_emsg = TRUE;
164 return FAIL;
166 pat = spats[i].pat;
167 magic = spats[i].magic;
168 no_smartcase = spats[i].no_scs;
170 #ifdef FEAT_CMDHIST
171 else if (options & SEARCH_HIS) /* put new pattern in history */
172 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
173 #endif
175 #ifdef FEAT_RIGHTLEFT
176 if (mr_pattern_alloced)
178 vim_free(mr_pattern);
179 mr_pattern_alloced = FALSE;
182 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
184 char_u *rev_pattern;
186 rev_pattern = reverse_text(pat);
187 if (rev_pattern == NULL)
188 mr_pattern = pat; /* out of memory, keep normal pattern. */
189 else
191 mr_pattern = rev_pattern;
192 mr_pattern_alloced = TRUE;
195 else
196 #endif
197 mr_pattern = pat;
200 * Save the currently used pattern in the appropriate place,
201 * unless the pattern should not be remembered.
203 if (!(options & SEARCH_KEEP))
205 /* search or global command */
206 if (pat_save == RE_SEARCH || pat_save == RE_BOTH)
207 save_re_pat(RE_SEARCH, pat, magic);
208 /* substitute or global command */
209 if (pat_save == RE_SUBST || pat_save == RE_BOTH)
210 save_re_pat(RE_SUBST, pat, magic);
213 regmatch->rmm_ic = ignorecase(pat);
214 regmatch->rmm_maxcol = 0;
215 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
216 if (regmatch->regprog == NULL)
217 return FAIL;
218 return OK;
222 * Get search pattern used by search_regcomp().
224 char_u *
225 get_search_pat()
227 return mr_pattern;
230 #if defined(FEAT_RIGHTLEFT) || defined(PROTO)
232 * Reverse text into allocated memory.
233 * Returns the allocated string, NULL when out of memory.
235 char_u *
236 reverse_text(s)
237 char_u *s;
239 unsigned len;
240 unsigned s_i, rev_i;
241 char_u *rev;
244 * Reverse the pattern.
246 len = (unsigned)STRLEN(s);
247 rev = alloc(len + 1);
248 if (rev != NULL)
250 rev_i = len;
251 for (s_i = 0; s_i < len; ++s_i)
253 # ifdef FEAT_MBYTE
254 if (has_mbyte)
256 int mb_len;
258 mb_len = (*mb_ptr2len)(s + s_i);
259 rev_i -= mb_len;
260 mch_memmove(rev + rev_i, s + s_i, mb_len);
261 s_i += mb_len - 1;
263 else
264 # endif
265 rev[--rev_i] = s[s_i];
268 rev[len] = NUL;
270 return rev;
272 #endif
274 static void
275 save_re_pat(idx, pat, magic)
276 int idx;
277 char_u *pat;
278 int magic;
280 if (spats[idx].pat != pat)
282 #if FEAT_GUI_MACVIM
283 gui_macvim_add_to_find_pboard(pat);
284 #endif
285 vim_free(spats[idx].pat);
286 spats[idx].pat = vim_strsave(pat);
287 spats[idx].magic = magic;
288 spats[idx].no_scs = no_smartcase;
289 last_idx = idx;
290 #ifdef FEAT_SEARCH_EXTRA
291 /* If 'hlsearch' set and search pat changed: need redraw. */
292 if (p_hls)
293 redraw_all_later(SOME_VALID);
294 no_hlsearch = FALSE;
295 #endif
299 #if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO)
301 * Save the search patterns, so they can be restored later.
302 * Used before/after executing autocommands and user functions.
304 static int save_level = 0;
306 void
307 save_search_patterns()
309 if (save_level++ == 0)
311 saved_spats[0] = spats[0];
312 if (spats[0].pat != NULL)
313 saved_spats[0].pat = vim_strsave(spats[0].pat);
314 saved_spats[1] = spats[1];
315 if (spats[1].pat != NULL)
316 saved_spats[1].pat = vim_strsave(spats[1].pat);
317 saved_last_idx = last_idx;
318 # ifdef FEAT_SEARCH_EXTRA
319 saved_no_hlsearch = no_hlsearch;
320 # endif
324 void
325 restore_search_patterns()
327 if (--save_level == 0)
329 vim_free(spats[0].pat);
330 spats[0] = saved_spats[0];
331 vim_free(spats[1].pat);
332 spats[1] = saved_spats[1];
333 last_idx = saved_last_idx;
334 # ifdef FEAT_SEARCH_EXTRA
335 no_hlsearch = saved_no_hlsearch;
336 # endif
339 #endif
341 #if defined(EXITFREE) || defined(PROTO)
342 void
343 free_search_patterns()
345 vim_free(spats[0].pat);
346 vim_free(spats[1].pat);
348 #endif
351 * Return TRUE when case should be ignored for search pattern "pat".
352 * Uses the 'ignorecase' and 'smartcase' options.
355 ignorecase(pat)
356 char_u *pat;
358 char_u *p;
359 int ic;
361 ic = p_ic;
362 if (ic && !no_smartcase && p_scs
363 #ifdef FEAT_INS_EXPAND
364 && !(ctrl_x_mode && curbuf->b_p_inf)
365 #endif
368 /* don't ignore case if pattern has uppercase */
369 for (p = pat; *p; )
371 #ifdef FEAT_MBYTE
372 int l;
374 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
376 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
378 ic = FALSE;
379 break;
381 p += l;
383 else
384 #endif
385 if (*p == '\\' && p[1] != NUL) /* skip "\S" et al. */
386 p += 2;
387 else if (isupper(*p))
389 ic = FALSE;
390 break;
392 else
393 ++p;
396 no_smartcase = FALSE;
398 return ic;
401 char_u *
402 last_search_pat()
404 return spats[last_idx].pat;
408 * Reset search direction to forward. For "gd" and "gD" commands.
410 void
411 reset_search_dir()
413 spats[0].off.dir = '/';
416 #if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
418 * Set the last search pattern. For ":let @/ =" and viminfo.
419 * Also set the saved search pattern, so that this works in an autocommand.
421 void
422 set_last_search_pat(s, idx, magic, setlast)
423 char_u *s;
424 int idx;
425 int magic;
426 int setlast;
428 #if FEAT_GUI_MACVIM
429 gui_macvim_add_to_find_pboard(s);
430 #endif
432 vim_free(spats[idx].pat);
433 /* An empty string means that nothing should be matched. */
434 if (*s == NUL)
435 spats[idx].pat = NULL;
436 else
437 spats[idx].pat = vim_strsave(s);
438 spats[idx].magic = magic;
439 spats[idx].no_scs = FALSE;
440 spats[idx].off.dir = '/';
441 spats[idx].off.line = FALSE;
442 spats[idx].off.end = FALSE;
443 spats[idx].off.off = 0;
444 if (setlast)
445 last_idx = idx;
446 if (save_level)
448 vim_free(saved_spats[idx].pat);
449 saved_spats[idx] = spats[0];
450 if (spats[idx].pat == NULL)
451 saved_spats[idx].pat = NULL;
452 else
453 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
454 saved_last_idx = last_idx;
456 # ifdef FEAT_SEARCH_EXTRA
457 /* If 'hlsearch' set and search pat changed: need redraw. */
458 if (p_hls && idx == last_idx && !no_hlsearch)
459 redraw_all_later(SOME_VALID);
460 # endif
462 #endif
464 #ifdef FEAT_SEARCH_EXTRA
466 * Get a regexp program for the last used search pattern.
467 * This is used for highlighting all matches in a window.
468 * Values returned in regmatch->regprog and regmatch->rmm_ic.
470 void
471 last_pat_prog(regmatch)
472 regmmatch_T *regmatch;
474 if (spats[last_idx].pat == NULL)
476 regmatch->regprog = NULL;
477 return;
479 ++emsg_off; /* So it doesn't beep if bad expr */
480 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
481 --emsg_off;
483 #endif
486 * lowest level search function.
487 * Search for 'count'th occurrence of pattern 'pat' in direction 'dir'.
488 * Start at position 'pos' and return the found position in 'pos'.
490 * if (options & SEARCH_MSG) == 0 don't give any messages
491 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
492 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
493 * if (options & SEARCH_HIS) put search pattern in history
494 * if (options & SEARCH_END) return position at end of match
495 * if (options & SEARCH_START) accept match at pos itself
496 * if (options & SEARCH_KEEP) keep previous search pattern
497 * if (options & SEARCH_FOLD) match only once in a closed fold
498 * if (options & SEARCH_PEEK) check for typed char, cancel search
500 * Return FAIL (zero) for failure, non-zero for success.
501 * When FEAT_EVAL is defined, returns the index of the first matching
502 * subpattern plus one; one if there was none.
504 /*ARGSUSED*/
506 searchit(win, buf, pos, dir, pat, count, options, pat_use, stop_lnum, tm)
507 win_T *win; /* window to search in; can be NULL for a
508 buffer without a window! */
509 buf_T *buf;
510 pos_T *pos;
511 int dir;
512 char_u *pat;
513 long count;
514 int options;
515 int pat_use; /* which pattern to use when "pat" is empty */
516 linenr_T stop_lnum; /* stop after this line number when != 0 */
517 proftime_T *tm; /* timeout limit or NULL */
519 int found;
520 linenr_T lnum; /* no init to shut up Apollo cc */
521 regmmatch_T regmatch;
522 char_u *ptr;
523 colnr_T matchcol;
524 lpos_T endpos;
525 lpos_T matchpos;
526 int loop;
527 pos_T start_pos;
528 int at_first_line;
529 int extra_col;
530 int match_ok;
531 long nmatched;
532 int submatch = 0;
533 int save_called_emsg = called_emsg;
534 #ifdef FEAT_SEARCH_EXTRA
535 int break_loop = FALSE;
536 #else
537 # define break_loop FALSE
538 #endif
540 if (search_regcomp(pat, RE_SEARCH, pat_use,
541 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
543 if ((options & SEARCH_MSG) && !rc_did_emsg)
544 EMSG2(_("E383: Invalid search string: %s"), mr_pattern);
545 return FAIL;
548 if (options & SEARCH_START)
549 extra_col = 0;
550 #ifdef FEAT_MBYTE
551 /* Watch out for the "col" being MAXCOL - 2, used in a closed fold. */
552 else if (has_mbyte && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
553 && pos->col < MAXCOL - 2)
555 ptr = ml_get_buf(buf, pos->lnum, FALSE) + pos->col;
556 if (*ptr == NUL)
557 extra_col = 1;
558 else
559 extra_col = (*mb_ptr2len)(ptr);
561 #endif
562 else
563 extra_col = 1;
566 * find the string
568 called_emsg = FALSE;
569 do /* loop for count */
571 start_pos = *pos; /* remember start pos for detecting no match */
572 found = 0; /* default: not found */
573 at_first_line = TRUE; /* default: start in first line */
574 if (pos->lnum == 0) /* correct lnum for when starting in line 0 */
576 pos->lnum = 1;
577 pos->col = 0;
578 at_first_line = FALSE; /* not in first line now */
582 * Start searching in current line, unless searching backwards and
583 * we're in column 0.
584 * If we are searching backwards, in column 0, and not including the
585 * current position, gain some efficiency by skipping back a line.
586 * Otherwise begin the search in the current line.
588 if (dir == BACKWARD && start_pos.col == 0
589 && (options & SEARCH_START) == 0)
591 lnum = pos->lnum - 1;
592 at_first_line = FALSE;
594 else
595 lnum = pos->lnum;
597 for (loop = 0; loop <= 1; ++loop) /* loop twice if 'wrapscan' set */
599 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
600 lnum += dir, at_first_line = FALSE)
602 /* Stop after checking "stop_lnum", if it's set. */
603 if (stop_lnum != 0 && (dir == FORWARD
604 ? lnum > stop_lnum : lnum < stop_lnum))
605 break;
606 #ifdef FEAT_RELTIME
607 /* Stop after passing the "tm" time limit. */
608 if (tm != NULL && profile_passed_limit(tm))
609 break;
610 #endif
613 * Look for a match somewhere in line "lnum".
615 nmatched = vim_regexec_multi(&regmatch, win, buf,
616 lnum, (colnr_T)0,
617 #ifdef FEAT_RELTIME
619 #else
620 NULL
621 #endif
623 /* Abort searching on an error (e.g., out of stack). */
624 if (called_emsg)
625 break;
626 if (nmatched > 0)
628 /* match may actually be in another line when using \zs */
629 matchpos = regmatch.startpos[0];
630 endpos = regmatch.endpos[0];
631 #ifdef FEAT_EVAL
632 submatch = first_submatch(&regmatch);
633 #endif
634 /* Line me be past end of buffer for "\n\zs". */
635 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
636 ptr = (char_u *)"";
637 else
638 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
641 * Forward search in the first line: match should be after
642 * the start position. If not, continue at the end of the
643 * match (this is vi compatible) or on the next char.
645 if (dir == FORWARD && at_first_line)
647 match_ok = TRUE;
649 * When the match starts in a next line it's certainly
650 * past the start position.
651 * When match lands on a NUL the cursor will be put
652 * one back afterwards, compare with that position,
653 * otherwise "/$" will get stuck on end of line.
655 while (matchpos.lnum == 0
656 && ((options & SEARCH_END)
657 ? (nmatched == 1
658 && (int)endpos.col - 1
659 < (int)start_pos.col + extra_col)
660 : ((int)matchpos.col
661 - (ptr[matchpos.col] == NUL)
662 < (int)start_pos.col + extra_col)))
665 * If vi-compatible searching, continue at the end
666 * of the match, otherwise continue one position
667 * forward.
669 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
671 if (nmatched > 1)
673 /* end is in next line, thus no match in
674 * this line */
675 match_ok = FALSE;
676 break;
678 matchcol = endpos.col;
679 /* for empty match: advance one char */
680 if (matchcol == matchpos.col
681 && ptr[matchcol] != NUL)
683 #ifdef FEAT_MBYTE
684 if (has_mbyte)
685 matchcol +=
686 (*mb_ptr2len)(ptr + matchcol);
687 else
688 #endif
689 ++matchcol;
692 else
694 matchcol = matchpos.col;
695 if (ptr[matchcol] != NUL)
697 #ifdef FEAT_MBYTE
698 if (has_mbyte)
699 matchcol += (*mb_ptr2len)(ptr
700 + matchcol);
701 else
702 #endif
703 ++matchcol;
706 if (ptr[matchcol] == NUL
707 || (nmatched = vim_regexec_multi(&regmatch,
708 win, buf, lnum + matchpos.lnum,
709 matchcol,
710 #ifdef FEAT_RELTIME
712 #else
713 NULL
714 #endif
715 )) == 0)
717 match_ok = FALSE;
718 break;
720 matchpos = regmatch.startpos[0];
721 endpos = regmatch.endpos[0];
722 # ifdef FEAT_EVAL
723 submatch = first_submatch(&regmatch);
724 # endif
726 /* Need to get the line pointer again, a
727 * multi-line search may have made it invalid. */
728 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
730 if (!match_ok)
731 continue;
733 if (dir == BACKWARD)
736 * Now, if there are multiple matches on this line,
737 * we have to get the last one. Or the last one before
738 * the cursor, if we're on that line.
739 * When putting the new cursor at the end, compare
740 * relative to the end of the match.
742 match_ok = FALSE;
743 for (;;)
745 /* Remember a position that is before the start
746 * position, we use it if it's the last match in
747 * the line. Always accept a position after
748 * wrapping around. */
749 if (loop
750 || ((options & SEARCH_END)
751 ? (lnum + regmatch.endpos[0].lnum
752 < start_pos.lnum
753 || (lnum + regmatch.endpos[0].lnum
754 == start_pos.lnum
755 && (int)regmatch.endpos[0].col - 1
756 + extra_col
757 <= (int)start_pos.col))
758 : (lnum + regmatch.startpos[0].lnum
759 < start_pos.lnum
760 || (lnum + regmatch.startpos[0].lnum
761 == start_pos.lnum
762 && (int)regmatch.startpos[0].col
763 + extra_col
764 <= (int)start_pos.col))))
766 match_ok = TRUE;
767 matchpos = regmatch.startpos[0];
768 endpos = regmatch.endpos[0];
769 # ifdef FEAT_EVAL
770 submatch = first_submatch(&regmatch);
771 # endif
773 else
774 break;
777 * We found a valid match, now check if there is
778 * another one after it.
779 * If vi-compatible searching, continue at the end
780 * of the match, otherwise continue one position
781 * forward.
783 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
785 if (nmatched > 1)
786 break;
787 matchcol = endpos.col;
788 /* for empty match: advance one char */
789 if (matchcol == matchpos.col
790 && ptr[matchcol] != NUL)
792 #ifdef FEAT_MBYTE
793 if (has_mbyte)
794 matchcol +=
795 (*mb_ptr2len)(ptr + matchcol);
796 else
797 #endif
798 ++matchcol;
801 else
803 /* Stop when the match is in a next line. */
804 if (matchpos.lnum > 0)
805 break;
806 matchcol = matchpos.col;
807 if (ptr[matchcol] != NUL)
809 #ifdef FEAT_MBYTE
810 if (has_mbyte)
811 matchcol +=
812 (*mb_ptr2len)(ptr + matchcol);
813 else
814 #endif
815 ++matchcol;
818 if (ptr[matchcol] == NUL
819 || (nmatched = vim_regexec_multi(&regmatch,
820 win, buf, lnum + matchpos.lnum,
821 matchcol,
822 #ifdef FEAT_RELTIME
824 #else
825 NULL
826 #endif
827 )) == 0)
828 break;
830 /* Need to get the line pointer again, a
831 * multi-line search may have made it invalid. */
832 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
836 * If there is only a match after the cursor, skip
837 * this match.
839 if (!match_ok)
840 continue;
843 if (options & SEARCH_END && !(options & SEARCH_NOOF))
845 pos->lnum = lnum + endpos.lnum;
846 pos->col = endpos.col - 1;
847 #ifdef FEAT_MBYTE
848 if (has_mbyte)
850 /* 'e' offset may put us just below the last line */
851 if (pos->lnum > buf->b_ml.ml_line_count)
852 ptr = (char_u *)"";
853 else
854 ptr = ml_get_buf(buf, pos->lnum, FALSE);
855 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
857 #endif
859 else
861 pos->lnum = lnum + matchpos.lnum;
862 pos->col = matchpos.col;
864 #ifdef FEAT_VIRTUALEDIT
865 pos->coladd = 0;
866 #endif
867 found = 1;
869 /* Set variables used for 'incsearch' highlighting. */
870 search_match_lines = endpos.lnum - matchpos.lnum;
871 search_match_endcol = endpos.col;
872 break;
874 line_breakcheck(); /* stop if ctrl-C typed */
875 if (got_int)
876 break;
878 #ifdef FEAT_SEARCH_EXTRA
879 /* Cancel searching if a character was typed. Used for
880 * 'incsearch'. Don't check too often, that would slowdown
881 * searching too much. */
882 if ((options & SEARCH_PEEK)
883 && ((lnum - pos->lnum) & 0x3f) == 0
884 && char_avail())
886 break_loop = TRUE;
887 break;
889 #endif
891 if (loop && lnum == start_pos.lnum)
892 break; /* if second loop, stop where started */
894 at_first_line = FALSE;
897 * Stop the search if wrapscan isn't set, "stop_lnum" is
898 * specified, after an interrupt, after a match and after looping
899 * twice.
901 if (!p_ws || stop_lnum != 0 || got_int || called_emsg
902 || break_loop || found || loop)
903 break;
906 * If 'wrapscan' is set we continue at the other end of the file.
907 * If 'shortmess' does not contain 's', we give a message.
908 * This message is also remembered in keep_msg for when the screen
909 * is redrawn. The keep_msg is cleared whenever another message is
910 * written.
912 if (dir == BACKWARD) /* start second loop at the other end */
913 lnum = buf->b_ml.ml_line_count;
914 else
915 lnum = 1;
916 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
917 give_warning((char_u *)_(dir == BACKWARD
918 ? top_bot_msg : bot_top_msg), TRUE);
920 if (got_int || called_emsg || break_loop)
921 break;
923 while (--count > 0 && found); /* stop after count matches or no match */
925 vim_free(regmatch.regprog);
927 called_emsg |= save_called_emsg;
929 if (!found) /* did not find it */
931 if (got_int)
932 EMSG(_(e_interr));
933 else if ((options & SEARCH_MSG) == SEARCH_MSG)
935 if (p_ws)
936 EMSG2(_(e_patnotf2), mr_pattern);
937 else if (lnum == 0)
938 EMSG2(_("E384: search hit TOP without match for: %s"),
939 mr_pattern);
940 else
941 EMSG2(_("E385: search hit BOTTOM without match for: %s"),
942 mr_pattern);
944 return FAIL;
947 /* A pattern like "\n\zs" may go past the last line. */
948 if (pos->lnum > buf->b_ml.ml_line_count)
950 pos->lnum = buf->b_ml.ml_line_count;
951 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
952 if (pos->col > 0)
953 --pos->col;
956 return submatch + 1;
959 #ifdef FEAT_EVAL
961 * Return the number of the first subpat that matched.
963 static int
964 first_submatch(rp)
965 regmmatch_T *rp;
967 int submatch;
969 for (submatch = 1; ; ++submatch)
971 if (rp->startpos[submatch].lnum >= 0)
972 break;
973 if (submatch == 9)
975 submatch = 0;
976 break;
979 return submatch;
981 #endif
984 * Highest level string search function.
985 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc'
986 * If 'dirc' is 0: use previous dir.
987 * If 'pat' is NULL or empty : use previous string.
988 * If 'options & SEARCH_REV' : go in reverse of previous dir.
989 * If 'options & SEARCH_ECHO': echo the search command and handle options
990 * If 'options & SEARCH_MSG' : may give error message
991 * If 'options & SEARCH_OPT' : interpret optional flags
992 * If 'options & SEARCH_HIS' : put search pattern in history
993 * If 'options & SEARCH_NOOF': don't add offset to position
994 * If 'options & SEARCH_MARK': set previous context mark
995 * If 'options & SEARCH_KEEP': keep previous search pattern
996 * If 'options & SEARCH_START': accept match at curpos itself
997 * If 'options & SEARCH_PEEK': check for typed char, cancel search
999 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
1000 * makes the movement linewise without moving the match position.
1002 * return 0 for failure, 1 for found, 2 for found and line offset added
1005 do_search(oap, dirc, pat, count, options, tm)
1006 oparg_T *oap; /* can be NULL */
1007 int dirc; /* '/' or '?' */
1008 char_u *pat;
1009 long count;
1010 int options;
1011 proftime_T *tm; /* timeout limit or NULL */
1013 pos_T pos; /* position of the last match */
1014 char_u *searchstr;
1015 struct soffset old_off;
1016 int retval; /* Return value */
1017 char_u *p;
1018 long c;
1019 char_u *dircp;
1020 char_u *strcopy = NULL;
1021 char_u *ps;
1024 * A line offset is not remembered, this is vi compatible.
1026 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
1028 spats[0].off.line = FALSE;
1029 spats[0].off.off = 0;
1033 * Save the values for when (options & SEARCH_KEEP) is used.
1034 * (there is no "if ()" around this because gcc wants them initialized)
1036 old_off = spats[0].off;
1038 pos = curwin->w_cursor; /* start searching at the cursor position */
1041 * Find out the direction of the search.
1043 if (dirc == 0)
1044 dirc = spats[0].off.dir;
1045 else
1046 spats[0].off.dir = dirc;
1047 if (options & SEARCH_REV)
1049 #ifdef WIN32
1050 /* There is a bug in the Visual C++ 2.2 compiler which means that
1051 * dirc always ends up being '/' */
1052 dirc = (dirc == '/') ? '?' : '/';
1053 #else
1054 if (dirc == '/')
1055 dirc = '?';
1056 else
1057 dirc = '/';
1058 #endif
1061 #ifdef FEAT_FOLDING
1062 /* If the cursor is in a closed fold, don't find another match in the same
1063 * fold. */
1064 if (dirc == '/')
1066 if (hasFolding(pos.lnum, NULL, &pos.lnum))
1067 pos.col = MAXCOL - 2; /* avoid overflow when adding 1 */
1069 else
1071 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1072 pos.col = 0;
1074 #endif
1076 #ifdef FEAT_SEARCH_EXTRA
1078 * Turn 'hlsearch' highlighting back on.
1080 if (no_hlsearch && !(options & SEARCH_KEEP))
1082 redraw_all_later(SOME_VALID);
1083 no_hlsearch = FALSE;
1085 #endif
1088 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1090 for (;;)
1092 searchstr = pat;
1093 dircp = NULL;
1094 /* use previous pattern */
1095 if (pat == NULL || *pat == NUL || *pat == dirc)
1097 if (spats[RE_SEARCH].pat == NULL) /* no previous pattern */
1099 EMSG(_(e_noprevre));
1100 retval = 0;
1101 goto end_do_search;
1103 /* make search_regcomp() use spats[RE_SEARCH].pat */
1104 searchstr = (char_u *)"";
1107 if (pat != NULL && *pat != NUL) /* look for (new) offset */
1110 * Find end of regular expression.
1111 * If there is a matching '/' or '?', toss it.
1113 ps = strcopy;
1114 p = skip_regexp(pat, dirc, (int)p_magic, &strcopy);
1115 if (strcopy != ps)
1117 /* made a copy of "pat" to change "\?" to "?" */
1118 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
1119 pat = strcopy;
1120 searchstr = strcopy;
1122 if (*p == dirc)
1124 dircp = p; /* remember where we put the NUL */
1125 *p++ = NUL;
1127 spats[0].off.line = FALSE;
1128 spats[0].off.end = FALSE;
1129 spats[0].off.off = 0;
1131 * Check for a line offset or a character offset.
1132 * For get_address (echo off) we don't check for a character
1133 * offset, because it is meaningless and the 's' could be a
1134 * substitute command.
1136 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1137 spats[0].off.line = TRUE;
1138 else if ((options & SEARCH_OPT) &&
1139 (*p == 'e' || *p == 's' || *p == 'b'))
1141 if (*p == 'e') /* end */
1142 spats[0].off.end = SEARCH_END;
1143 ++p;
1145 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') /* got an offset */
1147 /* 'nr' or '+nr' or '-nr' */
1148 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1149 spats[0].off.off = atol((char *)p);
1150 else if (*p == '-') /* single '-' */
1151 spats[0].off.off = -1;
1152 else /* single '+' */
1153 spats[0].off.off = 1;
1154 ++p;
1155 while (VIM_ISDIGIT(*p)) /* skip number */
1156 ++p;
1159 /* compute length of search command for get_address() */
1160 searchcmdlen += (int)(p - pat);
1162 pat = p; /* put pat after search command */
1165 if ((options & SEARCH_ECHO) && messaging()
1166 && !cmd_silent && msg_silent == 0)
1168 char_u *msgbuf;
1169 char_u *trunc;
1171 if (*searchstr == NUL)
1172 p = spats[last_idx].pat;
1173 else
1174 p = searchstr;
1175 msgbuf = alloc((unsigned)(STRLEN(p) + 40));
1176 if (msgbuf != NULL)
1178 msgbuf[0] = dirc;
1179 #ifdef FEAT_MBYTE
1180 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1182 /* Use a space to draw the composing char on. */
1183 msgbuf[1] = ' ';
1184 STRCPY(msgbuf + 2, p);
1186 else
1187 #endif
1188 STRCPY(msgbuf + 1, p);
1189 if (spats[0].off.line || spats[0].off.end || spats[0].off.off)
1191 p = msgbuf + STRLEN(msgbuf);
1192 *p++ = dirc;
1193 if (spats[0].off.end)
1194 *p++ = 'e';
1195 else if (!spats[0].off.line)
1196 *p++ = 's';
1197 if (spats[0].off.off > 0 || spats[0].off.line)
1198 *p++ = '+';
1199 if (spats[0].off.off != 0 || spats[0].off.line)
1200 sprintf((char *)p, "%ld", spats[0].off.off);
1201 else
1202 *p = NUL;
1205 msg_start();
1206 trunc = msg_strtrunc(msgbuf, FALSE);
1208 #ifdef FEAT_RIGHTLEFT
1209 /* The search pattern could be shown on the right in rightleft
1210 * mode, but the 'ruler' and 'showcmd' area use it too, thus
1211 * it would be blanked out again very soon. Show it on the
1212 * left, but do reverse the text. */
1213 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1215 char_u *r;
1217 r = reverse_text(trunc != NULL ? trunc : msgbuf);
1218 if (r != NULL)
1220 vim_free(trunc);
1221 trunc = r;
1224 #endif
1225 if (trunc != NULL)
1227 msg_outtrans(trunc);
1228 vim_free(trunc);
1230 else
1231 msg_outtrans(msgbuf);
1232 msg_clr_eos();
1233 msg_check();
1234 vim_free(msgbuf);
1236 gotocmdline(FALSE);
1237 out_flush();
1238 msg_nowait = TRUE; /* don't wait for this message */
1243 * If there is a character offset, subtract it from the current
1244 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
1245 * Skip this if pos.col is near MAXCOL (closed fold).
1246 * This is not done for a line offset, because then we would not be vi
1247 * compatible.
1249 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
1251 if (spats[0].off.off > 0)
1253 for (c = spats[0].off.off; c; --c)
1254 if (decl(&pos) == -1)
1255 break;
1256 if (c) /* at start of buffer */
1258 pos.lnum = 0; /* allow lnum == 0 here */
1259 pos.col = MAXCOL;
1262 else
1264 for (c = spats[0].off.off; c; ++c)
1265 if (incl(&pos) == -1)
1266 break;
1267 if (c) /* at end of buffer */
1269 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1270 pos.col = 0;
1275 #ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
1276 if (p_altkeymap && curwin->w_p_rl)
1277 lrFswap(searchstr,0);
1278 #endif
1280 c = searchit(curwin, curbuf, &pos, dirc == '/' ? FORWARD : BACKWARD,
1281 searchstr, count, spats[0].off.end + (options &
1282 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1283 + SEARCH_MSG + SEARCH_START
1284 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
1285 RE_LAST, (linenr_T)0, tm);
1287 if (dircp != NULL)
1288 *dircp = dirc; /* restore second '/' or '?' for normal_cmd() */
1289 if (c == FAIL)
1291 retval = 0;
1292 goto end_do_search;
1294 if (spats[0].off.end && oap != NULL)
1295 oap->inclusive = TRUE; /* 'e' includes last character */
1297 retval = 1; /* pattern found */
1300 * Add character and/or line offset
1302 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';'))
1304 if (spats[0].off.line) /* Add the offset to the line number. */
1306 c = pos.lnum + spats[0].off.off;
1307 if (c < 1)
1308 pos.lnum = 1;
1309 else if (c > curbuf->b_ml.ml_line_count)
1310 pos.lnum = curbuf->b_ml.ml_line_count;
1311 else
1312 pos.lnum = c;
1313 pos.col = 0;
1315 retval = 2; /* pattern found, line offset added */
1317 else if (pos.col < MAXCOL - 2) /* just in case */
1319 /* to the right, check for end of file */
1320 if (spats[0].off.off > 0)
1322 for (c = spats[0].off.off; c; --c)
1323 if (incl(&pos) == -1)
1324 break;
1326 /* to the left, check for start of file */
1327 else
1329 if ((c = pos.col + spats[0].off.off) >= 0)
1330 pos.col = c;
1331 else
1332 for (c = spats[0].off.off; c; ++c)
1333 if (decl(&pos) == -1)
1334 break;
1340 * The search command can be followed by a ';' to do another search.
1341 * For example: "/pat/;/foo/+3;?bar"
1342 * This is like doing another search command, except:
1343 * - The remembered direction '/' or '?' is from the first search.
1344 * - When an error happens the cursor isn't moved at all.
1345 * Don't do this when called by get_address() (it handles ';' itself).
1347 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1348 break;
1350 dirc = *++pat;
1351 if (dirc != '?' && dirc != '/')
1353 retval = 0;
1354 EMSG(_("E386: Expected '?' or '/' after ';'"));
1355 goto end_do_search;
1357 ++pat;
1360 if (options & SEARCH_MARK)
1361 setpcmark();
1362 curwin->w_cursor = pos;
1363 curwin->w_set_curswant = TRUE;
1365 end_do_search:
1366 if (options & SEARCH_KEEP)
1367 spats[0].off = old_off;
1368 vim_free(strcopy);
1370 return retval;
1373 #if defined(FEAT_INS_EXPAND) || defined(PROTO)
1375 * search_for_exact_line(buf, pos, dir, pat)
1377 * Search for a line starting with the given pattern (ignoring leading
1378 * white-space), starting from pos and going in direction dir. pos will
1379 * contain the position of the match found. Blank lines match only if
1380 * ADDING is set. if p_ic is set then the pattern must be in lowercase.
1381 * Return OK for success, or FAIL if no line found.
1384 search_for_exact_line(buf, pos, dir, pat)
1385 buf_T *buf;
1386 pos_T *pos;
1387 int dir;
1388 char_u *pat;
1390 linenr_T start = 0;
1391 char_u *ptr;
1392 char_u *p;
1394 if (buf->b_ml.ml_line_count == 0)
1395 return FAIL;
1396 for (;;)
1398 pos->lnum += dir;
1399 if (pos->lnum < 1)
1401 if (p_ws)
1403 pos->lnum = buf->b_ml.ml_line_count;
1404 if (!shortmess(SHM_SEARCH))
1405 give_warning((char_u *)_(top_bot_msg), TRUE);
1407 else
1409 pos->lnum = 1;
1410 break;
1413 else if (pos->lnum > buf->b_ml.ml_line_count)
1415 if (p_ws)
1417 pos->lnum = 1;
1418 if (!shortmess(SHM_SEARCH))
1419 give_warning((char_u *)_(bot_top_msg), TRUE);
1421 else
1423 pos->lnum = 1;
1424 break;
1427 if (pos->lnum == start)
1428 break;
1429 if (start == 0)
1430 start = pos->lnum;
1431 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1432 p = skipwhite(ptr);
1433 pos->col = (colnr_T) (p - ptr);
1435 /* when adding lines the matching line may be empty but it is not
1436 * ignored because we are interested in the next line -- Acevedo */
1437 if ((compl_cont_status & CONT_ADDING)
1438 && !(compl_cont_status & CONT_SOL))
1440 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1441 return OK;
1443 else if (*p != NUL) /* ignore empty lines */
1444 { /* expanding lines or words */
1445 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1446 : STRNCMP(p, pat, compl_length)) == 0)
1447 return OK;
1450 return FAIL;
1452 #endif /* FEAT_INS_EXPAND */
1455 * Character Searches
1459 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1460 * position of the character, otherwise move to just before the char.
1461 * Do this "cap->count1" times.
1462 * Return FAIL or OK.
1465 searchc(cap, t_cmd)
1466 cmdarg_T *cap;
1467 int t_cmd;
1469 int c = cap->nchar; /* char to search for */
1470 int dir = cap->arg; /* TRUE for searching forward */
1471 long count = cap->count1; /* repeat count */
1472 static int lastc = NUL; /* last character searched for */
1473 static int lastcdir; /* last direction of character search */
1474 static int last_t_cmd; /* last search t_cmd */
1475 int col;
1476 char_u *p;
1477 int len;
1478 #ifdef FEAT_MBYTE
1479 static char_u bytes[MB_MAXBYTES];
1480 static int bytelen = 1; /* >1 for multi-byte char */
1481 #endif
1483 if (c != NUL) /* normal search: remember args for repeat */
1485 if (!KeyStuffed) /* don't remember when redoing */
1487 lastc = c;
1488 lastcdir = dir;
1489 last_t_cmd = t_cmd;
1490 #ifdef FEAT_MBYTE
1491 bytelen = (*mb_char2bytes)(c, bytes);
1492 if (cap->ncharC1 != 0)
1494 bytelen += (*mb_char2bytes)(cap->ncharC1, bytes + bytelen);
1495 if (cap->ncharC2 != 0)
1496 bytelen += (*mb_char2bytes)(cap->ncharC2, bytes + bytelen);
1498 #endif
1501 else /* repeat previous search */
1503 if (lastc == NUL)
1504 return FAIL;
1505 if (dir) /* repeat in opposite direction */
1506 dir = -lastcdir;
1507 else
1508 dir = lastcdir;
1509 t_cmd = last_t_cmd;
1510 c = lastc;
1511 /* For multi-byte re-use last bytes[] and bytelen. */
1514 if (dir == BACKWARD)
1515 cap->oap->inclusive = FALSE;
1516 else
1517 cap->oap->inclusive = TRUE;
1519 p = ml_get_curline();
1520 col = curwin->w_cursor.col;
1521 len = (int)STRLEN(p);
1523 while (count--)
1525 #ifdef FEAT_MBYTE
1526 if (has_mbyte)
1528 for (;;)
1530 if (dir > 0)
1532 col += (*mb_ptr2len)(p + col);
1533 if (col >= len)
1534 return FAIL;
1536 else
1538 if (col == 0)
1539 return FAIL;
1540 col -= (*mb_head_off)(p, p + col - 1) + 1;
1542 if (bytelen == 1)
1544 if (p[col] == c)
1545 break;
1547 else
1549 if (vim_memcmp(p + col, bytes, bytelen) == 0)
1550 break;
1554 else
1555 #endif
1557 for (;;)
1559 if ((col += dir) < 0 || col >= len)
1560 return FAIL;
1561 if (p[col] == c)
1562 break;
1567 if (t_cmd)
1569 /* backup to before the character (possibly double-byte) */
1570 col -= dir;
1571 #ifdef FEAT_MBYTE
1572 if (has_mbyte)
1574 if (dir < 0)
1575 /* Landed on the search char which is bytelen long */
1576 col += bytelen - 1;
1577 else
1578 /* To previous char, which may be multi-byte. */
1579 col -= (*mb_head_off)(p, p + col);
1581 #endif
1583 curwin->w_cursor.col = col;
1585 return OK;
1589 * "Other" Searches
1593 * findmatch - find the matching paren or brace
1595 * Improvement over vi: Braces inside quotes are ignored.
1597 pos_T *
1598 findmatch(oap, initc)
1599 oparg_T *oap;
1600 int initc;
1602 return findmatchlimit(oap, initc, 0, 0);
1606 * Return TRUE if the character before "linep[col]" equals "ch".
1607 * Return FALSE if "col" is zero.
1608 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1609 * is NULL.
1610 * Handles multibyte string correctly.
1612 static int
1613 check_prevcol(linep, col, ch, prevcol)
1614 char_u *linep;
1615 int col;
1616 int ch;
1617 int *prevcol;
1619 --col;
1620 #ifdef FEAT_MBYTE
1621 if (col > 0 && has_mbyte)
1622 col -= (*mb_head_off)(linep, linep + col);
1623 #endif
1624 if (prevcol)
1625 *prevcol = col;
1626 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1630 * findmatchlimit -- find the matching paren or brace, if it exists within
1631 * maxtravel lines of here. A maxtravel of 0 means search until falling off
1632 * the edge of the file.
1634 * "initc" is the character to find a match for. NUL means to find the
1635 * character at or after the cursor.
1637 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
1638 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
1639 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
1640 * FM_SKIPCOMM skip comments (not implemented yet!)
1642 * "oap" is only used to set oap->motion_type for a linewise motion, it be
1643 * NULL
1646 pos_T *
1647 findmatchlimit(oap, initc, flags, maxtravel)
1648 oparg_T *oap;
1649 int initc;
1650 int flags;
1651 int maxtravel;
1653 static pos_T pos; /* current search position */
1654 int findc = 0; /* matching brace */
1655 int c;
1656 int count = 0; /* cumulative number of braces */
1657 int backwards = FALSE; /* init for gcc */
1658 int inquote = FALSE; /* TRUE when inside quotes */
1659 char_u *linep; /* pointer to current line */
1660 char_u *ptr;
1661 int do_quotes; /* check for quotes in current line */
1662 int at_start; /* do_quotes value at start position */
1663 int hash_dir = 0; /* Direction searched for # things */
1664 int comment_dir = 0; /* Direction searched for comments */
1665 pos_T match_pos; /* Where last slash-star was found */
1666 int start_in_quotes; /* start position is in quotes */
1667 int traveled = 0; /* how far we've searched so far */
1668 int ignore_cend = FALSE; /* ignore comment end */
1669 int cpo_match; /* vi compatible matching */
1670 int cpo_bsl; /* don't recognize backslashes */
1671 int match_escaped = 0; /* search for escaped match */
1672 int dir; /* Direction to search */
1673 int comment_col = MAXCOL; /* start of / / comment */
1674 #ifdef FEAT_LISP
1675 int lispcomm = FALSE; /* inside of Lisp-style comment */
1676 int lisp = curbuf->b_p_lisp; /* engage Lisp-specific hacks ;) */
1677 #endif
1679 pos = curwin->w_cursor;
1680 linep = ml_get(pos.lnum);
1682 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
1683 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
1685 /* Direction to search when initc is '/', '*' or '#' */
1686 if (flags & FM_BACKWARD)
1687 dir = BACKWARD;
1688 else if (flags & FM_FORWARD)
1689 dir = FORWARD;
1690 else
1691 dir = 0;
1694 * if initc given, look in the table for the matching character
1695 * '/' and '*' are special cases: look for start or end of comment.
1696 * When '/' is used, we ignore running backwards into an star-slash, for
1697 * "[*" command, we just want to find any comment.
1699 if (initc == '/' || initc == '*')
1701 comment_dir = dir;
1702 if (initc == '/')
1703 ignore_cend = TRUE;
1704 backwards = (dir == FORWARD) ? FALSE : TRUE;
1705 initc = NUL;
1707 else if (initc != '#' && initc != NUL)
1709 /* 'matchpairs' is "x:y,x:y" */
1710 for (ptr = curbuf->b_p_mps; *ptr; ptr += 2)
1712 if (*ptr == initc)
1714 findc = initc;
1715 initc = ptr[2];
1716 backwards = TRUE;
1717 break;
1719 ptr += 2;
1720 if (*ptr == initc)
1722 findc = initc;
1723 initc = ptr[-2];
1724 backwards = FALSE;
1725 break;
1727 if (ptr[1] != ',')
1728 break;
1730 if (!findc) /* invalid initc! */
1731 return NULL;
1734 * Either initc is '#', or no initc was given and we need to look under the
1735 * cursor.
1737 else
1739 if (initc == '#')
1741 hash_dir = dir;
1743 else
1746 * initc was not given, must look for something to match under
1747 * or near the cursor.
1748 * Only check for special things when 'cpo' doesn't have '%'.
1750 if (!cpo_match)
1752 /* Are we before or at #if, #else etc.? */
1753 ptr = skipwhite(linep);
1754 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
1756 ptr = skipwhite(ptr + 1);
1757 if ( STRNCMP(ptr, "if", 2) == 0
1758 || STRNCMP(ptr, "endif", 5) == 0
1759 || STRNCMP(ptr, "el", 2) == 0)
1760 hash_dir = 1;
1763 /* Are we on a comment? */
1764 else if (linep[pos.col] == '/')
1766 if (linep[pos.col + 1] == '*')
1768 comment_dir = FORWARD;
1769 backwards = FALSE;
1770 pos.col++;
1772 else if (pos.col > 0 && linep[pos.col - 1] == '*')
1774 comment_dir = BACKWARD;
1775 backwards = TRUE;
1776 pos.col--;
1779 else if (linep[pos.col] == '*')
1781 if (linep[pos.col + 1] == '/')
1783 comment_dir = BACKWARD;
1784 backwards = TRUE;
1786 else if (pos.col > 0 && linep[pos.col - 1] == '/')
1788 comment_dir = FORWARD;
1789 backwards = FALSE;
1795 * If we are not on a comment or the # at the start of a line, then
1796 * look for brace anywhere on this line after the cursor.
1798 if (!hash_dir && !comment_dir)
1801 * Find the brace under or after the cursor.
1802 * If beyond the end of the line, use the last character in
1803 * the line.
1805 if (linep[pos.col] == NUL && pos.col)
1806 --pos.col;
1807 for (;;)
1809 initc = linep[pos.col];
1810 if (initc == NUL)
1811 break;
1813 for (ptr = curbuf->b_p_mps; *ptr; ++ptr)
1815 if (*ptr == initc)
1817 findc = ptr[2];
1818 backwards = FALSE;
1819 break;
1821 ptr += 2;
1822 if (*ptr == initc)
1824 findc = ptr[-2];
1825 backwards = TRUE;
1826 break;
1828 if (!*++ptr)
1829 break;
1831 if (findc)
1832 break;
1833 #ifdef FEAT_MBYTE
1834 if (has_mbyte)
1835 pos.col += (*mb_ptr2len)(linep + pos.col);
1836 else
1837 #endif
1838 ++pos.col;
1840 if (!findc)
1842 /* no brace in the line, maybe use " #if" then */
1843 if (!cpo_match && *skipwhite(linep) == '#')
1844 hash_dir = 1;
1845 else
1846 return NULL;
1848 else if (!cpo_bsl)
1850 int col, bslcnt = 0;
1852 /* Set "match_escaped" if there are an odd number of
1853 * backslashes. */
1854 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
1855 bslcnt++;
1856 match_escaped = (bslcnt & 1);
1860 if (hash_dir)
1863 * Look for matching #if, #else, #elif, or #endif
1865 if (oap != NULL)
1866 oap->motion_type = MLINE; /* Linewise for this case only */
1867 if (initc != '#')
1869 ptr = skipwhite(skipwhite(linep) + 1);
1870 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
1871 hash_dir = 1;
1872 else if (STRNCMP(ptr, "endif", 5) == 0)
1873 hash_dir = -1;
1874 else
1875 return NULL;
1877 pos.col = 0;
1878 while (!got_int)
1880 if (hash_dir > 0)
1882 if (pos.lnum == curbuf->b_ml.ml_line_count)
1883 break;
1885 else if (pos.lnum == 1)
1886 break;
1887 pos.lnum += hash_dir;
1888 linep = ml_get(pos.lnum);
1889 line_breakcheck(); /* check for CTRL-C typed */
1890 ptr = skipwhite(linep);
1891 if (*ptr != '#')
1892 continue;
1893 pos.col = (colnr_T) (ptr - linep);
1894 ptr = skipwhite(ptr + 1);
1895 if (hash_dir > 0)
1897 if (STRNCMP(ptr, "if", 2) == 0)
1898 count++;
1899 else if (STRNCMP(ptr, "el", 2) == 0)
1901 if (count == 0)
1902 return &pos;
1904 else if (STRNCMP(ptr, "endif", 5) == 0)
1906 if (count == 0)
1907 return &pos;
1908 count--;
1911 else
1913 if (STRNCMP(ptr, "if", 2) == 0)
1915 if (count == 0)
1916 return &pos;
1917 count--;
1919 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
1921 if (count == 0)
1922 return &pos;
1924 else if (STRNCMP(ptr, "endif", 5) == 0)
1925 count++;
1928 return NULL;
1932 #ifdef FEAT_RIGHTLEFT
1933 /* This is just guessing: when 'rightleft' is set, search for a matching
1934 * paren/brace in the other direction. */
1935 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
1936 backwards = !backwards;
1937 #endif
1939 do_quotes = -1;
1940 start_in_quotes = MAYBE;
1941 clearpos(&match_pos);
1943 /* backward search: Check if this line contains a single-line comment */
1944 if ((backwards && comment_dir)
1945 #ifdef FEAT_LISP
1946 || lisp
1947 #endif
1949 comment_col = check_linecomment(linep);
1950 #ifdef FEAT_LISP
1951 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
1952 lispcomm = TRUE; /* find match inside this comment */
1953 #endif
1954 while (!got_int)
1957 * Go to the next position, forward or backward. We could use
1958 * inc() and dec() here, but that is much slower
1960 if (backwards)
1962 #ifdef FEAT_LISP
1963 /* char to match is inside of comment, don't search outside */
1964 if (lispcomm && pos.col < (colnr_T)comment_col)
1965 break;
1966 #endif
1967 if (pos.col == 0) /* at start of line, go to prev. one */
1969 if (pos.lnum == 1) /* start of file */
1970 break;
1971 --pos.lnum;
1973 if (maxtravel > 0 && ++traveled > maxtravel)
1974 break;
1976 linep = ml_get(pos.lnum);
1977 pos.col = (colnr_T)STRLEN(linep); /* pos.col on trailing NUL */
1978 do_quotes = -1;
1979 line_breakcheck();
1981 /* Check if this line contains a single-line comment */
1982 if (comment_dir
1983 #ifdef FEAT_LISP
1984 || lisp
1985 #endif
1987 comment_col = check_linecomment(linep);
1988 #ifdef FEAT_LISP
1989 /* skip comment */
1990 if (lisp && comment_col != MAXCOL)
1991 pos.col = comment_col;
1992 #endif
1994 else
1996 --pos.col;
1997 #ifdef FEAT_MBYTE
1998 if (has_mbyte)
1999 pos.col -= (*mb_head_off)(linep, linep + pos.col);
2000 #endif
2003 else /* forward search */
2005 if (linep[pos.col] == NUL
2006 /* at end of line, go to next one */
2007 #ifdef FEAT_LISP
2008 /* don't search for match in comment */
2009 || (lisp && comment_col != MAXCOL
2010 && pos.col == (colnr_T)comment_col)
2011 #endif
2014 if (pos.lnum == curbuf->b_ml.ml_line_count /* end of file */
2015 #ifdef FEAT_LISP
2016 /* line is exhausted and comment with it,
2017 * don't search for match in code */
2018 || lispcomm
2019 #endif
2021 break;
2022 ++pos.lnum;
2024 if (maxtravel && traveled++ > maxtravel)
2025 break;
2027 linep = ml_get(pos.lnum);
2028 pos.col = 0;
2029 do_quotes = -1;
2030 line_breakcheck();
2031 #ifdef FEAT_LISP
2032 if (lisp) /* find comment pos in new line */
2033 comment_col = check_linecomment(linep);
2034 #endif
2036 else
2038 #ifdef FEAT_MBYTE
2039 if (has_mbyte)
2040 pos.col += (*mb_ptr2len)(linep + pos.col);
2041 else
2042 #endif
2043 ++pos.col;
2048 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2050 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2051 (linep[0] == '{' || linep[0] == '}'))
2053 if (linep[0] == findc && count == 0) /* match! */
2054 return &pos;
2055 break; /* out of scope */
2058 if (comment_dir)
2060 /* Note: comments do not nest, and we ignore quotes in them */
2061 /* TODO: ignore comment brackets inside strings */
2062 if (comment_dir == FORWARD)
2064 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2066 pos.col++;
2067 return &pos;
2070 else /* Searching backwards */
2073 * A comment may contain / * or / /, it may also start or end
2074 * with / * /. Ignore a / * after / /.
2076 if (pos.col == 0)
2077 continue;
2078 else if ( linep[pos.col - 1] == '/'
2079 && linep[pos.col] == '*'
2080 && (int)pos.col < comment_col)
2082 count++;
2083 match_pos = pos;
2084 match_pos.col--;
2086 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2088 if (count > 0)
2089 pos = match_pos;
2090 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2091 && (int)pos.col <= comment_col)
2092 pos.col -= 2;
2093 else if (ignore_cend)
2094 continue;
2095 else
2096 return NULL;
2097 return &pos;
2100 continue;
2104 * If smart matching ('cpoptions' does not contain '%'), braces inside
2105 * of quotes are ignored, but only if there is an even number of
2106 * quotes in the line.
2108 if (cpo_match)
2109 do_quotes = 0;
2110 else if (do_quotes == -1)
2113 * Count the number of quotes in the line, skipping \" and '"'.
2114 * Watch out for "\\".
2116 at_start = do_quotes;
2117 for (ptr = linep; *ptr; ++ptr)
2119 if (ptr == linep + pos.col + backwards)
2120 at_start = (do_quotes & 1);
2121 if (*ptr == '"'
2122 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2123 ++do_quotes;
2124 if (*ptr == '\\' && ptr[1] != NUL)
2125 ++ptr;
2127 do_quotes &= 1; /* result is 1 with even number of quotes */
2130 * If we find an uneven count, check current line and previous
2131 * one for a '\' at the end.
2133 if (!do_quotes)
2135 inquote = FALSE;
2136 if (ptr[-1] == '\\')
2138 do_quotes = 1;
2139 if (start_in_quotes == MAYBE)
2141 /* Do we need to use at_start here? */
2142 inquote = TRUE;
2143 start_in_quotes = TRUE;
2145 else if (backwards)
2146 inquote = TRUE;
2148 if (pos.lnum > 1)
2150 ptr = ml_get(pos.lnum - 1);
2151 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2153 do_quotes = 1;
2154 if (start_in_quotes == MAYBE)
2156 inquote = at_start;
2157 if (inquote)
2158 start_in_quotes = TRUE;
2160 else if (!backwards)
2161 inquote = TRUE;
2164 /* ml_get() only keeps one line, need to get linep again */
2165 linep = ml_get(pos.lnum);
2169 if (start_in_quotes == MAYBE)
2170 start_in_quotes = FALSE;
2173 * If 'smartmatch' is set:
2174 * Things inside quotes are ignored by setting 'inquote'. If we
2175 * find a quote without a preceding '\' invert 'inquote'. At the
2176 * end of a line not ending in '\' we reset 'inquote'.
2178 * In lines with an uneven number of quotes (without preceding '\')
2179 * we do not know which part to ignore. Therefore we only set
2180 * inquote if the number of quotes in a line is even, unless this
2181 * line or the previous one ends in a '\'. Complicated, isn't it?
2183 switch (c = linep[pos.col])
2185 case NUL:
2186 /* at end of line without trailing backslash, reset inquote */
2187 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2189 inquote = FALSE;
2190 start_in_quotes = FALSE;
2192 break;
2194 case '"':
2195 /* a quote that is preceded with an odd number of backslashes is
2196 * ignored */
2197 if (do_quotes)
2199 int col;
2201 for (col = pos.col - 1; col >= 0; --col)
2202 if (linep[col] != '\\')
2203 break;
2204 if ((((int)pos.col - 1 - col) & 1) == 0)
2206 inquote = !inquote;
2207 start_in_quotes = FALSE;
2210 break;
2213 * If smart matching ('cpoptions' does not contain '%'):
2214 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2215 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2216 * skipped, there is never a brace in them.
2217 * Ignore this when finding matches for `'.
2219 case '\'':
2220 if (!cpo_match && initc != '\'' && findc != '\'')
2222 if (backwards)
2224 if (pos.col > 1)
2226 if (linep[pos.col - 2] == '\'')
2228 pos.col -= 2;
2229 break;
2231 else if (linep[pos.col - 2] == '\\' &&
2232 pos.col > 2 && linep[pos.col - 3] == '\'')
2234 pos.col -= 3;
2235 break;
2239 else if (linep[pos.col + 1]) /* forward search */
2241 if (linep[pos.col + 1] == '\\' &&
2242 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2244 pos.col += 3;
2245 break;
2247 else if (linep[pos.col + 2] == '\'')
2249 pos.col += 2;
2250 break;
2254 /* FALLTHROUGH */
2256 default:
2257 #ifdef FEAT_LISP
2259 * For Lisp skip over backslashed (), {} and [].
2260 * (actually, we skip #\( et al)
2262 if (curbuf->b_p_lisp
2263 && vim_strchr((char_u *)"(){}[]", c) != NULL
2264 && pos.col > 1
2265 && check_prevcol(linep, pos.col, '\\', NULL)
2266 && check_prevcol(linep, pos.col - 1, '#', NULL))
2267 break;
2268 #endif
2270 /* Check for match outside of quotes, and inside of
2271 * quotes when the start is also inside of quotes. */
2272 if ((!inquote || start_in_quotes == TRUE)
2273 && (c == initc || c == findc))
2275 int col, bslcnt = 0;
2277 if (!cpo_bsl)
2279 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2280 bslcnt++;
2282 /* Only accept a match when 'M' is in 'cpo' or when ecaping is
2283 * what we expect. */
2284 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2286 if (c == initc)
2287 count++;
2288 else
2290 if (count == 0)
2291 return &pos;
2292 count--;
2299 if (comment_dir == BACKWARD && count > 0)
2301 pos = match_pos;
2302 return &pos;
2304 return (pos_T *)NULL; /* never found it */
2308 * Check if line[] contains a / / comment.
2309 * Return MAXCOL if not, otherwise return the column.
2310 * TODO: skip strings.
2312 static int
2313 check_linecomment(line)
2314 char_u *line;
2316 char_u *p;
2318 p = line;
2319 #ifdef FEAT_LISP
2320 /* skip Lispish one-line comments */
2321 if (curbuf->b_p_lisp)
2323 if (vim_strchr(p, ';') != NULL) /* there may be comments */
2325 int instr = FALSE; /* inside of string */
2327 p = line; /* scan from start */
2328 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
2330 if (*p == '"')
2332 if (instr)
2334 if (*(p - 1) != '\\') /* skip escaped quote */
2335 instr = FALSE;
2337 else if (p == line || ((p - line) >= 2
2338 /* skip #\" form */
2339 && *(p - 1) != '\\' && *(p - 2) != '#'))
2340 instr = TRUE;
2342 else if (!instr && ((p - line) < 2
2343 || (*(p - 1) != '\\' && *(p - 2) != '#')))
2344 break; /* found! */
2345 ++p;
2348 else
2349 p = NULL;
2351 else
2352 #endif
2353 while ((p = vim_strchr(p, '/')) != NULL)
2355 /* accept a double /, unless it's preceded with * and followed by *,
2356 * because * / / * is an end and start of a C comment */
2357 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*'))
2358 break;
2359 ++p;
2362 if (p == NULL)
2363 return MAXCOL;
2364 return (int)(p - line);
2368 * Move cursor briefly to character matching the one under the cursor.
2369 * Used for Insert mode and "r" command.
2370 * Show the match only if it is visible on the screen.
2371 * If there isn't a match, then beep.
2373 void
2374 showmatch(c)
2375 int c; /* char to show match for */
2377 pos_T *lpos, save_cursor;
2378 pos_T mpos;
2379 colnr_T vcol;
2380 long save_so;
2381 long save_siso;
2382 #ifdef CURSOR_SHAPE
2383 int save_state;
2384 #endif
2385 colnr_T save_dollar_vcol;
2386 char_u *p;
2389 * Only show match for chars in the 'matchpairs' option.
2391 /* 'matchpairs' is "x:y,x:y" */
2392 for (p = curbuf->b_p_mps; *p != NUL; p += 2)
2394 #ifdef FEAT_RIGHTLEFT
2395 if (*p == c && (curwin->w_p_rl ^ p_ri))
2396 break;
2397 #endif
2398 p += 2;
2399 if (*p == c
2400 #ifdef FEAT_RIGHTLEFT
2401 && !(curwin->w_p_rl ^ p_ri)
2402 #endif
2404 break;
2405 if (p[1] != ',')
2406 return;
2409 if ((lpos = findmatch(NULL, NUL)) == NULL) /* no match, so beep */
2410 vim_beep();
2411 else if (lpos->lnum >= curwin->w_topline)
2413 if (!curwin->w_p_wrap)
2414 getvcol(curwin, lpos, NULL, &vcol, NULL);
2415 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
2416 && vcol < curwin->w_leftcol + W_WIDTH(curwin)))
2418 mpos = *lpos; /* save the pos, update_screen() may change it */
2419 save_cursor = curwin->w_cursor;
2420 save_so = p_so;
2421 save_siso = p_siso;
2422 /* Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2423 * stop displaying the "$". */
2424 if (dollar_vcol > 0 && dollar_vcol == curwin->w_virtcol)
2425 dollar_vcol = 0;
2426 ++curwin->w_virtcol; /* do display ')' just before "$" */
2427 update_screen(VALID); /* show the new char first */
2429 save_dollar_vcol = dollar_vcol;
2430 #ifdef CURSOR_SHAPE
2431 save_state = State;
2432 State = SHOWMATCH;
2433 ui_cursor_shape(); /* may show different cursor shape */
2434 #endif
2435 curwin->w_cursor = mpos; /* move to matching char */
2436 p_so = 0; /* don't use 'scrolloff' here */
2437 p_siso = 0; /* don't use 'sidescrolloff' here */
2438 showruler(FALSE);
2439 setcursor();
2440 cursor_on(); /* make sure that the cursor is shown */
2441 out_flush();
2442 #ifdef FEAT_GUI
2443 if (gui.in_use)
2445 gui_update_cursor(TRUE, FALSE);
2446 gui_mch_flush();
2448 #endif
2449 /* Restore dollar_vcol(), because setcursor() may call curs_rows()
2450 * which resets it if the matching position is in a previous line
2451 * and has a higher column number. */
2452 dollar_vcol = save_dollar_vcol;
2455 * brief pause, unless 'm' is present in 'cpo' and a character is
2456 * available.
2458 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
2459 ui_delay(p_mat * 100L, TRUE);
2460 else if (!char_avail())
2461 ui_delay(p_mat * 100L, FALSE);
2462 curwin->w_cursor = save_cursor; /* restore cursor position */
2463 p_so = save_so;
2464 p_siso = save_siso;
2465 #ifdef CURSOR_SHAPE
2466 State = save_state;
2467 ui_cursor_shape(); /* may show different cursor shape */
2468 #endif
2474 * findsent(dir, count) - Find the start of the next sentence in direction
2475 * "dir" Sentences are supposed to end in ".", "!" or "?" followed by white
2476 * space or a line break. Also stop at an empty line.
2477 * Return OK if the next sentence was found.
2480 findsent(dir, count)
2481 int dir;
2482 long count;
2484 pos_T pos, tpos;
2485 int c;
2486 int (*func) __ARGS((pos_T *));
2487 int startlnum;
2488 int noskip = FALSE; /* do not skip blanks */
2489 int cpo_J;
2490 int found_dot;
2492 pos = curwin->w_cursor;
2493 if (dir == FORWARD)
2494 func = incl;
2495 else
2496 func = decl;
2498 while (count--)
2501 * if on an empty line, skip upto a non-empty line
2503 if (gchar_pos(&pos) == NUL)
2506 if ((*func)(&pos) == -1)
2507 break;
2508 while (gchar_pos(&pos) == NUL);
2509 if (dir == FORWARD)
2510 goto found;
2513 * if on the start of a paragraph or a section and searching forward,
2514 * go to the next line
2516 else if (dir == FORWARD && pos.col == 0 &&
2517 startPS(pos.lnum, NUL, FALSE))
2519 if (pos.lnum == curbuf->b_ml.ml_line_count)
2520 return FAIL;
2521 ++pos.lnum;
2522 goto found;
2524 else if (dir == BACKWARD)
2525 decl(&pos);
2527 /* go back to the previous non-blank char */
2528 found_dot = FALSE;
2529 while ((c = gchar_pos(&pos)) == ' ' || c == '\t' ||
2530 (dir == BACKWARD && vim_strchr((char_u *)".!?)]\"'", c) != NULL))
2532 if (vim_strchr((char_u *)".!?", c) != NULL)
2534 /* Only skip over a '.', '!' and '?' once. */
2535 if (found_dot)
2536 break;
2537 found_dot = TRUE;
2539 if (decl(&pos) == -1)
2540 break;
2541 /* when going forward: Stop in front of empty line */
2542 if (lineempty(pos.lnum) && dir == FORWARD)
2544 incl(&pos);
2545 goto found;
2549 /* remember the line where the search started */
2550 startlnum = pos.lnum;
2551 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL;
2553 for (;;) /* find end of sentence */
2555 c = gchar_pos(&pos);
2556 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE)))
2558 if (dir == BACKWARD && pos.lnum != startlnum)
2559 ++pos.lnum;
2560 break;
2562 if (c == '.' || c == '!' || c == '?')
2564 tpos = pos;
2566 if ((c = inc(&tpos)) == -1)
2567 break;
2568 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos))
2569 != NULL);
2570 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL
2571 || (cpo_J && (c == ' ' && inc(&tpos) >= 0
2572 && gchar_pos(&tpos) == ' ')))
2574 pos = tpos;
2575 if (gchar_pos(&pos) == NUL) /* skip NUL at EOL */
2576 inc(&pos);
2577 break;
2580 if ((*func)(&pos) == -1)
2582 if (count)
2583 return FAIL;
2584 noskip = TRUE;
2585 break;
2588 found:
2589 /* skip white space */
2590 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t'))
2591 if (incl(&pos) == -1)
2592 break;
2595 setpcmark();
2596 curwin->w_cursor = pos;
2597 return OK;
2601 * Find the next paragraph or section in direction 'dir'.
2602 * Paragraphs are currently supposed to be separated by empty lines.
2603 * If 'what' is NUL we go to the next paragraph.
2604 * If 'what' is '{' or '}' we go to the next section.
2605 * If 'both' is TRUE also stop at '}'.
2606 * Return TRUE if the next paragraph or section was found.
2609 findpar(pincl, dir, count, what, both)
2610 int *pincl; /* Return: TRUE if last char is to be included */
2611 int dir;
2612 long count;
2613 int what;
2614 int both;
2616 linenr_T curr;
2617 int did_skip; /* TRUE after separating lines have been skipped */
2618 int first; /* TRUE on first line */
2619 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL);
2620 #ifdef FEAT_FOLDING
2621 linenr_T fold_first; /* first line of a closed fold */
2622 linenr_T fold_last; /* last line of a closed fold */
2623 int fold_skipped; /* TRUE if a closed fold was skipped this
2624 iteration */
2625 #endif
2627 curr = curwin->w_cursor.lnum;
2629 while (count--)
2631 did_skip = FALSE;
2632 for (first = TRUE; ; first = FALSE)
2634 if (*ml_get(curr) != NUL)
2635 did_skip = TRUE;
2637 #ifdef FEAT_FOLDING
2638 /* skip folded lines */
2639 fold_skipped = FALSE;
2640 if (first && hasFolding(curr, &fold_first, &fold_last))
2642 curr = ((dir > 0) ? fold_last : fold_first) + dir;
2643 fold_skipped = TRUE;
2645 #endif
2647 /* POSIX has it's own ideas of what a paragraph boundary is and it
2648 * doesn't match historical Vi: It also stops at a "{" in the
2649 * first column and at an empty line. */
2650 if (!first && did_skip && (startPS(curr, what, both)
2651 || (posix && what == NUL && *ml_get(curr) == '{')))
2652 break;
2654 #ifdef FEAT_FOLDING
2655 if (fold_skipped)
2656 curr -= dir;
2657 #endif
2658 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count)
2660 if (count)
2661 return FALSE;
2662 curr -= dir;
2663 break;
2667 setpcmark();
2668 if (both && *ml_get(curr) == '}') /* include line with '}' */
2669 ++curr;
2670 curwin->w_cursor.lnum = curr;
2671 if (curr == curbuf->b_ml.ml_line_count && what != '}')
2673 if ((curwin->w_cursor.col = (colnr_T)STRLEN(ml_get(curr))) != 0)
2675 --curwin->w_cursor.col;
2676 *pincl = TRUE;
2679 else
2680 curwin->w_cursor.col = 0;
2681 return TRUE;
2685 * check if the string 's' is a nroff macro that is in option 'opt'
2687 static int
2688 inmacro(opt, s)
2689 char_u *opt;
2690 char_u *s;
2692 char_u *macro;
2694 for (macro = opt; macro[0]; ++macro)
2696 /* Accept two characters in the option being equal to two characters
2697 * in the line. A space in the option matches with a space in the
2698 * line or the line having ended. */
2699 if ( (macro[0] == s[0]
2700 || (macro[0] == ' '
2701 && (s[0] == NUL || s[0] == ' ')))
2702 && (macro[1] == s[1]
2703 || ((macro[1] == NUL || macro[1] == ' ')
2704 && (s[0] == NUL || s[1] == NUL || s[1] == ' '))))
2705 break;
2706 ++macro;
2707 if (macro[0] == NUL)
2708 break;
2710 return (macro[0] != NUL);
2714 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph.
2715 * If 'para' is '{' or '}' only check for sections.
2716 * If 'both' is TRUE also stop at '}'
2719 startPS(lnum, para, both)
2720 linenr_T lnum;
2721 int para;
2722 int both;
2724 char_u *s;
2726 s = ml_get(lnum);
2727 if (*s == para || *s == '\f' || (both && *s == '}'))
2728 return TRUE;
2729 if (*s == '.' && (inmacro(p_sections, s + 1) ||
2730 (!para && inmacro(p_para, s + 1))))
2731 return TRUE;
2732 return FALSE;
2736 * The following routines do the word searches performed by the 'w', 'W',
2737 * 'b', 'B', 'e', and 'E' commands.
2741 * To perform these searches, characters are placed into one of three
2742 * classes, and transitions between classes determine word boundaries.
2744 * The classes are:
2746 * 0 - white space
2747 * 1 - punctuation
2748 * 2 or higher - keyword characters (letters, digits and underscore)
2751 static int cls_bigword; /* TRUE for "W", "B" or "E" */
2754 * cls() - returns the class of character at curwin->w_cursor
2756 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars
2757 * from class 2 and higher are reported as class 1 since only white space
2758 * boundaries are of interest.
2760 static int
2761 cls()
2763 int c;
2765 c = gchar_cursor();
2766 #ifdef FEAT_FKMAP /* when 'akm' (Farsi mode), take care of Farsi blank */
2767 if (p_altkeymap && c == F_BLANK)
2768 return 0;
2769 #endif
2770 if (c == ' ' || c == '\t' || c == NUL)
2771 return 0;
2772 #ifdef FEAT_MBYTE
2773 if (enc_dbcs != 0 && c > 0xFF)
2775 /* If cls_bigword, report multi-byte chars as class 1. */
2776 if (enc_dbcs == DBCS_KOR && cls_bigword)
2777 return 1;
2779 /* process code leading/trailing bytes */
2780 return dbcs_class(((unsigned)c >> 8), (c & 0xFF));
2782 if (enc_utf8)
2784 c = utf_class(c);
2785 if (c != 0 && cls_bigword)
2786 return 1;
2787 return c;
2789 #endif
2791 /* If cls_bigword is TRUE, report all non-blanks as class 1. */
2792 if (cls_bigword)
2793 return 1;
2795 if (vim_iswordc(c))
2796 return 2;
2797 return 1;
2802 * fwd_word(count, type, eol) - move forward one word
2804 * Returns FAIL if the cursor was already at the end of the file.
2805 * If eol is TRUE, last word stops at end of line (for operators).
2808 fwd_word(count, bigword, eol)
2809 long count;
2810 int bigword; /* "W", "E" or "B" */
2811 int eol;
2813 int sclass; /* starting class */
2814 int i;
2815 int last_line;
2817 #ifdef FEAT_VIRTUALEDIT
2818 curwin->w_cursor.coladd = 0;
2819 #endif
2820 cls_bigword = bigword;
2821 while (--count >= 0)
2823 #ifdef FEAT_FOLDING
2824 /* When inside a range of folded lines, move to the last char of the
2825 * last line. */
2826 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
2827 coladvance((colnr_T)MAXCOL);
2828 #endif
2829 sclass = cls();
2832 * We always move at least one character, unless on the last
2833 * character in the buffer.
2835 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count);
2836 i = inc_cursor();
2837 if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */
2838 return FAIL;
2839 if (i >= 1 && eol && count == 0) /* started at last char in line */
2840 return OK;
2843 * Go one char past end of current word (if any)
2845 if (sclass != 0)
2846 while (cls() == sclass)
2848 i = inc_cursor();
2849 if (i == -1 || (i >= 1 && eol && count == 0))
2850 return OK;
2854 * go to next non-white
2856 while (cls() == 0)
2859 * We'll stop if we land on a blank line
2861 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL)
2862 break;
2864 i = inc_cursor();
2865 if (i == -1 || (i >= 1 && eol && count == 0))
2866 return OK;
2869 return OK;
2873 * bck_word() - move backward 'count' words
2875 * If stop is TRUE and we are already on the start of a word, move one less.
2877 * Returns FAIL if top of the file was reached.
2880 bck_word(count, bigword, stop)
2881 long count;
2882 int bigword;
2883 int stop;
2885 int sclass; /* starting class */
2887 #ifdef FEAT_VIRTUALEDIT
2888 curwin->w_cursor.coladd = 0;
2889 #endif
2890 cls_bigword = bigword;
2891 while (--count >= 0)
2893 #ifdef FEAT_FOLDING
2894 /* When inside a range of folded lines, move to the first char of the
2895 * first line. */
2896 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL))
2897 curwin->w_cursor.col = 0;
2898 #endif
2899 sclass = cls();
2900 if (dec_cursor() == -1) /* started at start of file */
2901 return FAIL;
2903 if (!stop || sclass == cls() || sclass == 0)
2906 * Skip white space before the word.
2907 * Stop on an empty line.
2909 while (cls() == 0)
2911 if (curwin->w_cursor.col == 0
2912 && lineempty(curwin->w_cursor.lnum))
2913 goto finished;
2914 if (dec_cursor() == -1) /* hit start of file, stop here */
2915 return OK;
2919 * Move backward to start of this word.
2921 if (skip_chars(cls(), BACKWARD))
2922 return OK;
2925 inc_cursor(); /* overshot - forward one */
2926 finished:
2927 stop = FALSE;
2929 return OK;
2933 * end_word() - move to the end of the word
2935 * There is an apparent bug in the 'e' motion of the real vi. At least on the
2936 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e'
2937 * motion crosses blank lines. When the real vi crosses a blank line in an
2938 * 'e' motion, the cursor is placed on the FIRST character of the next
2939 * non-blank line. The 'E' command, however, works correctly. Since this
2940 * appears to be a bug, I have not duplicated it here.
2942 * Returns FAIL if end of the file was reached.
2944 * If stop is TRUE and we are already on the end of a word, move one less.
2945 * If empty is TRUE stop on an empty line.
2948 end_word(count, bigword, stop, empty)
2949 long count;
2950 int bigword;
2951 int stop;
2952 int empty;
2954 int sclass; /* starting class */
2956 #ifdef FEAT_VIRTUALEDIT
2957 curwin->w_cursor.coladd = 0;
2958 #endif
2959 cls_bigword = bigword;
2960 while (--count >= 0)
2962 #ifdef FEAT_FOLDING
2963 /* When inside a range of folded lines, move to the last char of the
2964 * last line. */
2965 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
2966 coladvance((colnr_T)MAXCOL);
2967 #endif
2968 sclass = cls();
2969 if (inc_cursor() == -1)
2970 return FAIL;
2973 * If we're in the middle of a word, we just have to move to the end
2974 * of it.
2976 if (cls() == sclass && sclass != 0)
2979 * Move forward to end of the current word
2981 if (skip_chars(sclass, FORWARD))
2982 return FAIL;
2984 else if (!stop || sclass == 0)
2987 * We were at the end of a word. Go to the end of the next word.
2988 * First skip white space, if 'empty' is TRUE, stop at empty line.
2990 while (cls() == 0)
2992 if (empty && curwin->w_cursor.col == 0
2993 && lineempty(curwin->w_cursor.lnum))
2994 goto finished;
2995 if (inc_cursor() == -1) /* hit end of file, stop here */
2996 return FAIL;
3000 * Move forward to the end of this word.
3002 if (skip_chars(cls(), FORWARD))
3003 return FAIL;
3005 dec_cursor(); /* overshot - one char backward */
3006 finished:
3007 stop = FALSE; /* we move only one word less */
3009 return OK;
3013 * Move back to the end of the word.
3015 * Returns FAIL if start of the file was reached.
3018 bckend_word(count, bigword, eol)
3019 long count;
3020 int bigword; /* TRUE for "B" */
3021 int eol; /* TRUE: stop at end of line. */
3023 int sclass; /* starting class */
3024 int i;
3026 #ifdef FEAT_VIRTUALEDIT
3027 curwin->w_cursor.coladd = 0;
3028 #endif
3029 cls_bigword = bigword;
3030 while (--count >= 0)
3032 sclass = cls();
3033 if ((i = dec_cursor()) == -1)
3034 return FAIL;
3035 if (eol && i == 1)
3036 return OK;
3039 * Move backward to before the start of this word.
3041 if (sclass != 0)
3043 while (cls() == sclass)
3044 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3045 return OK;
3049 * Move backward to end of the previous word
3051 while (cls() == 0)
3053 if (curwin->w_cursor.col == 0 && lineempty(curwin->w_cursor.lnum))
3054 break;
3055 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3056 return OK;
3059 return OK;
3063 * Skip a row of characters of the same class.
3064 * Return TRUE when end-of-file reached, FALSE otherwise.
3066 static int
3067 skip_chars(cclass, dir)
3068 int cclass;
3069 int dir;
3071 while (cls() == cclass)
3072 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1)
3073 return TRUE;
3074 return FALSE;
3077 #ifdef FEAT_TEXTOBJ
3079 * Go back to the start of the word or the start of white space
3081 static void
3082 back_in_line()
3084 int sclass; /* starting class */
3086 sclass = cls();
3087 for (;;)
3089 if (curwin->w_cursor.col == 0) /* stop at start of line */
3090 break;
3091 dec_cursor();
3092 if (cls() != sclass) /* stop at start of word */
3094 inc_cursor();
3095 break;
3100 static void
3101 find_first_blank(posp)
3102 pos_T *posp;
3104 int c;
3106 while (decl(posp) != -1)
3108 c = gchar_pos(posp);
3109 if (!vim_iswhite(c))
3111 incl(posp);
3112 break;
3118 * Skip count/2 sentences and count/2 separating white spaces.
3120 static void
3121 findsent_forward(count, at_start_sent)
3122 long count;
3123 int at_start_sent; /* cursor is at start of sentence */
3125 while (count--)
3127 findsent(FORWARD, 1L);
3128 if (at_start_sent)
3129 find_first_blank(&curwin->w_cursor);
3130 if (count == 0 || at_start_sent)
3131 decl(&curwin->w_cursor);
3132 at_start_sent = !at_start_sent;
3137 * Find word under cursor, cursor at end.
3138 * Used while an operator is pending, and in Visual mode.
3141 current_word(oap, count, include, bigword)
3142 oparg_T *oap;
3143 long count;
3144 int include; /* TRUE: include word and white space */
3145 int bigword; /* FALSE == word, TRUE == WORD */
3147 pos_T start_pos;
3148 pos_T pos;
3149 int inclusive = TRUE;
3150 int include_white = FALSE;
3152 cls_bigword = bigword;
3153 clearpos(&start_pos);
3155 #ifdef FEAT_VISUAL
3156 /* Correct cursor when 'selection' is exclusive */
3157 if (VIsual_active && *p_sel == 'e' && lt(VIsual, curwin->w_cursor))
3158 dec_cursor();
3161 * When Visual mode is not active, or when the VIsual area is only one
3162 * character, select the word and/or white space under the cursor.
3164 if (!VIsual_active || equalpos(curwin->w_cursor, VIsual))
3165 #endif
3168 * Go to start of current word or white space.
3170 back_in_line();
3171 start_pos = curwin->w_cursor;
3174 * If the start is on white space, and white space should be included
3175 * (" word"), or start is not on white space, and white space should
3176 * not be included ("word"), find end of word.
3178 if ((cls() == 0) == include)
3180 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3181 return FAIL;
3183 else
3186 * If the start is not on white space, and white space should be
3187 * included ("word "), or start is on white space and white
3188 * space should not be included (" "), find start of word.
3189 * If we end up in the first column of the next line (single char
3190 * word) back up to end of the line.
3192 fwd_word(1L, bigword, TRUE);
3193 if (curwin->w_cursor.col == 0)
3194 decl(&curwin->w_cursor);
3195 else
3196 oneleft();
3198 if (include)
3199 include_white = TRUE;
3202 #ifdef FEAT_VISUAL
3203 if (VIsual_active)
3205 /* should do something when inclusive == FALSE ! */
3206 VIsual = start_pos;
3207 redraw_curbuf_later(INVERTED); /* update the inversion */
3209 else
3210 #endif
3212 oap->start = start_pos;
3213 oap->motion_type = MCHAR;
3215 --count;
3219 * When count is still > 0, extend with more objects.
3221 while (count > 0)
3223 inclusive = TRUE;
3224 #ifdef FEAT_VISUAL
3225 if (VIsual_active && lt(curwin->w_cursor, VIsual))
3228 * In Visual mode, with cursor at start: move cursor back.
3230 if (decl(&curwin->w_cursor) == -1)
3231 return FAIL;
3232 if (include != (cls() != 0))
3234 if (bck_word(1L, bigword, TRUE) == FAIL)
3235 return FAIL;
3237 else
3239 if (bckend_word(1L, bigword, TRUE) == FAIL)
3240 return FAIL;
3241 (void)incl(&curwin->w_cursor);
3244 else
3245 #endif
3248 * Move cursor forward one word and/or white area.
3250 if (incl(&curwin->w_cursor) == -1)
3251 return FAIL;
3252 if (include != (cls() == 0))
3254 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1)
3255 return FAIL;
3257 * If end is just past a new-line, we don't want to include
3258 * the first character on the line.
3259 * Put cursor on last char of white.
3261 if (oneleft() == FAIL)
3262 inclusive = FALSE;
3264 else
3266 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3267 return FAIL;
3270 --count;
3273 if (include_white && (cls() != 0
3274 || (curwin->w_cursor.col == 0 && !inclusive)))
3277 * If we don't include white space at the end, move the start
3278 * to include some white space there. This makes "daw" work
3279 * better on the last word in a sentence (and "2daw" on last-but-one
3280 * word). Also when "2daw" deletes "word." at the end of the line
3281 * (cursor is at start of next line).
3282 * But don't delete white space at start of line (indent).
3284 pos = curwin->w_cursor; /* save cursor position */
3285 curwin->w_cursor = start_pos;
3286 if (oneleft() == OK)
3288 back_in_line();
3289 if (cls() == 0 && curwin->w_cursor.col > 0)
3291 #ifdef FEAT_VISUAL
3292 if (VIsual_active)
3293 VIsual = curwin->w_cursor;
3294 else
3295 #endif
3296 oap->start = curwin->w_cursor;
3299 curwin->w_cursor = pos; /* put cursor back at end */
3302 #ifdef FEAT_VISUAL
3303 if (VIsual_active)
3305 if (*p_sel == 'e' && inclusive && ltoreq(VIsual, curwin->w_cursor))
3306 inc_cursor();
3307 if (VIsual_mode == 'V')
3309 VIsual_mode = 'v';
3310 redraw_cmdline = TRUE; /* show mode later */
3313 else
3314 #endif
3315 oap->inclusive = inclusive;
3317 return OK;
3321 * Find sentence(s) under the cursor, cursor at end.
3322 * When Visual active, extend it by one or more sentences.
3325 current_sent(oap, count, include)
3326 oparg_T *oap;
3327 long count;
3328 int include;
3330 pos_T start_pos;
3331 pos_T pos;
3332 int start_blank;
3333 int c;
3334 int at_start_sent;
3335 long ncount;
3337 start_pos = curwin->w_cursor;
3338 pos = start_pos;
3339 findsent(FORWARD, 1L); /* Find start of next sentence. */
3341 #ifdef FEAT_VISUAL
3343 * When visual area is bigger than one character: Extend it.
3345 if (VIsual_active && !equalpos(start_pos, VIsual))
3347 extend:
3348 if (lt(start_pos, VIsual))
3351 * Cursor at start of Visual area.
3352 * Find out where we are:
3353 * - in the white space before a sentence
3354 * - in a sentence or just after it
3355 * - at the start of a sentence
3357 at_start_sent = TRUE;
3358 decl(&pos);
3359 while (lt(pos, curwin->w_cursor))
3361 c = gchar_pos(&pos);
3362 if (!vim_iswhite(c))
3364 at_start_sent = FALSE;
3365 break;
3367 incl(&pos);
3369 if (!at_start_sent)
3371 findsent(BACKWARD, 1L);
3372 if (equalpos(curwin->w_cursor, start_pos))
3373 at_start_sent = TRUE; /* exactly at start of sentence */
3374 else
3375 /* inside a sentence, go to its end (start of next) */
3376 findsent(FORWARD, 1L);
3378 if (include) /* "as" gets twice as much as "is" */
3379 count *= 2;
3380 while (count--)
3382 if (at_start_sent)
3383 find_first_blank(&curwin->w_cursor);
3384 c = gchar_cursor();
3385 if (!at_start_sent || (!include && !vim_iswhite(c)))
3386 findsent(BACKWARD, 1L);
3387 at_start_sent = !at_start_sent;
3390 else
3393 * Cursor at end of Visual area.
3394 * Find out where we are:
3395 * - just before a sentence
3396 * - just before or in the white space before a sentence
3397 * - in a sentence
3399 incl(&pos);
3400 at_start_sent = TRUE;
3401 if (!equalpos(pos, curwin->w_cursor)) /* not just before a sentence */
3403 at_start_sent = FALSE;
3404 while (lt(pos, curwin->w_cursor))
3406 c = gchar_pos(&pos);
3407 if (!vim_iswhite(c))
3409 at_start_sent = TRUE;
3410 break;
3412 incl(&pos);
3414 if (at_start_sent) /* in the sentence */
3415 findsent(BACKWARD, 1L);
3416 else /* in/before white before a sentence */
3417 curwin->w_cursor = start_pos;
3420 if (include) /* "as" gets twice as much as "is" */
3421 count *= 2;
3422 findsent_forward(count, at_start_sent);
3423 if (*p_sel == 'e')
3424 ++curwin->w_cursor.col;
3426 return OK;
3428 #endif
3431 * If cursor started on blank, check if it is just before the start of the
3432 * next sentence.
3434 while (c = gchar_pos(&pos), vim_iswhite(c)) /* vim_iswhite() is a macro */
3435 incl(&pos);
3436 if (equalpos(pos, curwin->w_cursor))
3438 start_blank = TRUE;
3439 find_first_blank(&start_pos); /* go back to first blank */
3441 else
3443 start_blank = FALSE;
3444 findsent(BACKWARD, 1L);
3445 start_pos = curwin->w_cursor;
3447 if (include)
3448 ncount = count * 2;
3449 else
3451 ncount = count;
3452 if (start_blank)
3453 --ncount;
3455 if (ncount > 0)
3456 findsent_forward(ncount, TRUE);
3457 else
3458 decl(&curwin->w_cursor);
3460 if (include)
3463 * If the blank in front of the sentence is included, exclude the
3464 * blanks at the end of the sentence, go back to the first blank.
3465 * If there are no trailing blanks, try to include leading blanks.
3467 if (start_blank)
3469 find_first_blank(&curwin->w_cursor);
3470 c = gchar_pos(&curwin->w_cursor); /* vim_iswhite() is a macro */
3471 if (vim_iswhite(c))
3472 decl(&curwin->w_cursor);
3474 else if (c = gchar_cursor(), !vim_iswhite(c))
3475 find_first_blank(&start_pos);
3478 #ifdef FEAT_VISUAL
3479 if (VIsual_active)
3481 /* avoid getting stuck with "is" on a single space before a sent. */
3482 if (equalpos(start_pos, curwin->w_cursor))
3483 goto extend;
3484 if (*p_sel == 'e')
3485 ++curwin->w_cursor.col;
3486 VIsual = start_pos;
3487 VIsual_mode = 'v';
3488 redraw_curbuf_later(INVERTED); /* update the inversion */
3490 else
3491 #endif
3493 /* include a newline after the sentence, if there is one */
3494 if (incl(&curwin->w_cursor) == -1)
3495 oap->inclusive = TRUE;
3496 else
3497 oap->inclusive = FALSE;
3498 oap->start = start_pos;
3499 oap->motion_type = MCHAR;
3501 return OK;
3505 * Find block under the cursor, cursor at end.
3506 * "what" and "other" are two matching parenthesis/paren/etc.
3509 current_block(oap, count, include, what, other)
3510 oparg_T *oap;
3511 long count;
3512 int include; /* TRUE == include white space */
3513 int what; /* '(', '{', etc. */
3514 int other; /* ')', '}', etc. */
3516 pos_T old_pos;
3517 pos_T *pos = NULL;
3518 pos_T start_pos;
3519 pos_T *end_pos;
3520 pos_T old_start, old_end;
3521 char_u *save_cpo;
3522 int sol = FALSE; /* '{' at start of line */
3524 old_pos = curwin->w_cursor;
3525 old_end = curwin->w_cursor; /* remember where we started */
3526 old_start = old_end;
3529 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive.
3531 #ifdef FEAT_VISUAL
3532 if (!VIsual_active || equalpos(VIsual, curwin->w_cursor))
3533 #endif
3535 setpcmark();
3536 if (what == '{') /* ignore indent */
3537 while (inindent(1))
3538 if (inc_cursor() != 0)
3539 break;
3540 if (gchar_cursor() == what)
3541 /* cursor on '(' or '{', move cursor just after it */
3542 ++curwin->w_cursor.col;
3544 #ifdef FEAT_VISUAL
3545 else if (lt(VIsual, curwin->w_cursor))
3547 old_start = VIsual;
3548 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3550 else
3551 old_end = VIsual;
3552 #endif
3555 * Search backwards for unclosed '(', '{', etc..
3556 * Put this position in start_pos.
3557 * Ignore quotes here.
3559 save_cpo = p_cpo;
3560 p_cpo = (char_u *)"%";
3561 while (count-- > 0)
3563 if ((pos = findmatch(NULL, what)) == NULL)
3564 break;
3565 curwin->w_cursor = *pos;
3566 start_pos = *pos; /* the findmatch for end_pos will overwrite *pos */
3568 p_cpo = save_cpo;
3571 * Search for matching ')', '}', etc.
3572 * Put this position in curwin->w_cursor.
3574 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL)
3576 curwin->w_cursor = old_pos;
3577 return FAIL;
3579 curwin->w_cursor = *end_pos;
3582 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE.
3583 * If the ending '}' is only preceded by indent, skip that indent.
3584 * But only if the resulting area is not smaller than what we started with.
3586 while (!include)
3588 incl(&start_pos);
3589 sol = (curwin->w_cursor.col == 0);
3590 decl(&curwin->w_cursor);
3591 if (what == '{')
3592 while (inindent(1))
3594 sol = TRUE;
3595 if (decl(&curwin->w_cursor) != 0)
3596 break;
3598 #ifdef FEAT_VISUAL
3600 * In Visual mode, when the resulting area is not bigger than what we
3601 * started with, extend it to the next block, and then exclude again.
3603 if (!lt(start_pos, old_start) && !lt(old_end, curwin->w_cursor)
3604 && VIsual_active)
3606 curwin->w_cursor = old_start;
3607 decl(&curwin->w_cursor);
3608 if ((pos = findmatch(NULL, what)) == NULL)
3610 curwin->w_cursor = old_pos;
3611 return FAIL;
3613 start_pos = *pos;
3614 curwin->w_cursor = *pos;
3615 if ((end_pos = findmatch(NULL, other)) == NULL)
3617 curwin->w_cursor = old_pos;
3618 return FAIL;
3620 curwin->w_cursor = *end_pos;
3622 else
3623 #endif
3624 break;
3627 #ifdef FEAT_VISUAL
3628 if (VIsual_active)
3630 if (*p_sel == 'e')
3631 ++curwin->w_cursor.col;
3632 if (sol && gchar_cursor() != NUL)
3633 inc(&curwin->w_cursor); /* include the line break */
3634 VIsual = start_pos;
3635 VIsual_mode = 'v';
3636 redraw_curbuf_later(INVERTED); /* update the inversion */
3637 showmode();
3639 else
3640 #endif
3642 oap->start = start_pos;
3643 oap->motion_type = MCHAR;
3644 oap->inclusive = FALSE;
3645 if (sol)
3646 incl(&curwin->w_cursor);
3647 else if (ltoreq(start_pos, curwin->w_cursor))
3648 /* Include the character under the cursor. */
3649 oap->inclusive = TRUE;
3650 else
3651 /* End is before the start (no text in between <>, [], etc.): don't
3652 * operate on any text. */
3653 curwin->w_cursor = start_pos;
3656 return OK;
3659 static int in_html_tag __ARGS((int));
3662 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>".
3663 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>".
3665 static int
3666 in_html_tag(end_tag)
3667 int end_tag;
3669 char_u *line = ml_get_curline();
3670 char_u *p;
3671 int c;
3672 int lc = NUL;
3673 pos_T pos;
3675 #ifdef FEAT_MBYTE
3676 if (enc_dbcs)
3678 char_u *lp = NULL;
3680 /* We search forward until the cursor, because searching backwards is
3681 * very slow for DBCS encodings. */
3682 for (p = line; p < line + curwin->w_cursor.col; mb_ptr_adv(p))
3683 if (*p == '>' || *p == '<')
3685 lc = *p;
3686 lp = p;
3688 if (*p != '<') /* check for '<' under cursor */
3690 if (lc != '<')
3691 return FALSE;
3692 p = lp;
3695 else
3696 #endif
3698 for (p = line + curwin->w_cursor.col; p > line; )
3700 if (*p == '<') /* find '<' under/before cursor */
3701 break;
3702 mb_ptr_back(line, p);
3703 if (*p == '>') /* find '>' before cursor */
3704 break;
3706 if (*p != '<')
3707 return FALSE;
3710 pos.lnum = curwin->w_cursor.lnum;
3711 pos.col = (colnr_T)(p - line);
3713 mb_ptr_adv(p);
3714 if (end_tag)
3715 /* check that there is a '/' after the '<' */
3716 return *p == '/';
3718 /* check that there is no '/' after the '<' */
3719 if (*p == '/')
3720 return FALSE;
3722 /* check that the matching '>' is not preceded by '/' */
3723 for (;;)
3725 if (inc(&pos) < 0)
3726 return FALSE;
3727 c = *ml_get_pos(&pos);
3728 if (c == '>')
3729 break;
3730 lc = c;
3732 return lc != '/';
3736 * Find tag block under the cursor, cursor at end.
3739 current_tagblock(oap, count_arg, include)
3740 oparg_T *oap;
3741 long count_arg;
3742 int include; /* TRUE == include white space */
3744 long count = count_arg;
3745 long n;
3746 pos_T old_pos;
3747 pos_T start_pos;
3748 pos_T end_pos;
3749 pos_T old_start, old_end;
3750 char_u *spat, *epat;
3751 char_u *p;
3752 char_u *cp;
3753 int len;
3754 int r;
3755 int do_include = include;
3756 int save_p_ws = p_ws;
3757 int retval = FAIL;
3759 p_ws = FALSE;
3761 old_pos = curwin->w_cursor;
3762 old_end = curwin->w_cursor; /* remember where we started */
3763 old_start = old_end;
3764 #ifdef FEAT_VISUAL
3765 if (!VIsual_active || *p_sel == 'e')
3766 #endif
3767 decl(&old_end); /* old_end is inclusive */
3770 * If we start on "<aaa>" select that block.
3772 #ifdef FEAT_VISUAL
3773 if (!VIsual_active || equalpos(VIsual, curwin->w_cursor))
3774 #endif
3776 setpcmark();
3778 /* ignore indent */
3779 while (inindent(1))
3780 if (inc_cursor() != 0)
3781 break;
3783 if (in_html_tag(FALSE))
3785 /* cursor on start tag, move to its '>' */
3786 while (*ml_get_cursor() != '>')
3787 if (inc_cursor() < 0)
3788 break;
3790 else if (in_html_tag(TRUE))
3792 /* cursor on end tag, move to just before it */
3793 while (*ml_get_cursor() != '<')
3794 if (dec_cursor() < 0)
3795 break;
3796 dec_cursor();
3797 old_end = curwin->w_cursor;
3800 #ifdef FEAT_VISUAL
3801 else if (lt(VIsual, curwin->w_cursor))
3803 old_start = VIsual;
3804 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3806 else
3807 old_end = VIsual;
3808 #endif
3810 again:
3812 * Search backwards for unclosed "<aaa>".
3813 * Put this position in start_pos.
3815 for (n = 0; n < count; ++n)
3817 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)",
3818 (char_u *)"",
3819 (char_u *)"</[^>]*>", BACKWARD, (char_u *)"", 0,
3820 NULL, (linenr_T)0, 0L) <= 0)
3822 curwin->w_cursor = old_pos;
3823 goto theend;
3826 start_pos = curwin->w_cursor;
3829 * Search for matching "</aaa>". First isolate the "aaa".
3831 inc_cursor();
3832 p = ml_get_cursor();
3833 for (cp = p; *cp != NUL && *cp != '>' && !vim_iswhite(*cp); mb_ptr_adv(cp))
3835 len = (int)(cp - p);
3836 if (len == 0)
3838 curwin->w_cursor = old_pos;
3839 goto theend;
3841 spat = alloc(len + 29);
3842 epat = alloc(len + 9);
3843 if (spat == NULL || epat == NULL)
3845 vim_free(spat);
3846 vim_free(epat);
3847 curwin->w_cursor = old_pos;
3848 goto theend;
3850 sprintf((char *)spat, "<%.*s\\%%(\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
3851 sprintf((char *)epat, "</%.*s>\\c", len, p);
3853 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, (char_u *)"",
3854 0, NULL, (linenr_T)0, 0L);
3856 vim_free(spat);
3857 vim_free(epat);
3859 if (r < 1 || lt(curwin->w_cursor, old_end))
3861 /* Can't find other end or it's before the previous end. Could be a
3862 * HTML tag that doesn't have a matching end. Search backwards for
3863 * another starting tag. */
3864 count = 1;
3865 curwin->w_cursor = start_pos;
3866 goto again;
3869 if (do_include || r < 1)
3871 /* Include up to the '>'. */
3872 while (*ml_get_cursor() != '>')
3873 if (inc_cursor() < 0)
3874 break;
3876 else
3878 /* Exclude the '<' of the end tag. */
3879 if (*ml_get_cursor() == '<')
3880 dec_cursor();
3882 end_pos = curwin->w_cursor;
3884 if (!do_include)
3886 /* Exclude the start tag. */
3887 curwin->w_cursor = start_pos;
3888 while (inc_cursor() >= 0)
3889 if (*ml_get_cursor() == '>')
3891 inc_cursor();
3892 start_pos = curwin->w_cursor;
3893 break;
3895 curwin->w_cursor = end_pos;
3897 /* If we now have the same text as before reset "do_include" and try
3898 * again. */
3899 if (equalpos(start_pos, old_start) && equalpos(end_pos, old_end))
3901 do_include = TRUE;
3902 curwin->w_cursor = old_start;
3903 count = count_arg;
3904 goto again;
3908 #ifdef FEAT_VISUAL
3909 if (VIsual_active)
3911 /* If the end is before the start there is no text between tags, select
3912 * the char under the cursor. */
3913 if (lt(end_pos, start_pos))
3914 curwin->w_cursor = start_pos;
3915 else if (*p_sel == 'e')
3916 ++curwin->w_cursor.col;
3917 VIsual = start_pos;
3918 VIsual_mode = 'v';
3919 redraw_curbuf_later(INVERTED); /* update the inversion */
3920 showmode();
3922 else
3923 #endif
3925 oap->start = start_pos;
3926 oap->motion_type = MCHAR;
3927 if (lt(end_pos, start_pos))
3929 /* End is before the start: there is no text between tags; operate
3930 * on an empty area. */
3931 curwin->w_cursor = start_pos;
3932 oap->inclusive = FALSE;
3934 else
3935 oap->inclusive = TRUE;
3937 retval = OK;
3939 theend:
3940 p_ws = save_p_ws;
3941 return retval;
3945 current_par(oap, count, include, type)
3946 oparg_T *oap;
3947 long count;
3948 int include; /* TRUE == include white space */
3949 int type; /* 'p' for paragraph, 'S' for section */
3951 linenr_T start_lnum;
3952 linenr_T end_lnum;
3953 int white_in_front;
3954 int dir;
3955 int start_is_white;
3956 int prev_start_is_white;
3957 int retval = OK;
3958 int do_white = FALSE;
3959 int t;
3960 int i;
3962 if (type == 'S') /* not implemented yet */
3963 return FAIL;
3965 start_lnum = curwin->w_cursor.lnum;
3967 #ifdef FEAT_VISUAL
3969 * When visual area is more than one line: extend it.
3971 if (VIsual_active && start_lnum != VIsual.lnum)
3973 extend:
3974 if (start_lnum < VIsual.lnum)
3975 dir = BACKWARD;
3976 else
3977 dir = FORWARD;
3978 for (i = count; --i >= 0; )
3980 if (start_lnum ==
3981 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
3983 retval = FAIL;
3984 break;
3987 prev_start_is_white = -1;
3988 for (t = 0; t < 2; ++t)
3990 start_lnum += dir;
3991 start_is_white = linewhite(start_lnum);
3992 if (prev_start_is_white == start_is_white)
3994 start_lnum -= dir;
3995 break;
3997 for (;;)
3999 if (start_lnum == (dir == BACKWARD
4000 ? 1 : curbuf->b_ml.ml_line_count))
4001 break;
4002 if (start_is_white != linewhite(start_lnum + dir)
4003 || (!start_is_white
4004 && startPS(start_lnum + (dir > 0
4005 ? 1 : 0), 0, 0)))
4006 break;
4007 start_lnum += dir;
4009 if (!include)
4010 break;
4011 if (start_lnum == (dir == BACKWARD
4012 ? 1 : curbuf->b_ml.ml_line_count))
4013 break;
4014 prev_start_is_white = start_is_white;
4017 curwin->w_cursor.lnum = start_lnum;
4018 curwin->w_cursor.col = 0;
4019 return retval;
4021 #endif
4024 * First move back to the start_lnum of the paragraph or white lines
4026 white_in_front = linewhite(start_lnum);
4027 while (start_lnum > 1)
4029 if (white_in_front) /* stop at first white line */
4031 if (!linewhite(start_lnum - 1))
4032 break;
4034 else /* stop at first non-white line of start of paragraph */
4036 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
4037 break;
4039 --start_lnum;
4043 * Move past the end of any white lines.
4045 end_lnum = start_lnum;
4046 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
4047 ++end_lnum;
4049 --end_lnum;
4050 i = count;
4051 if (!include && white_in_front)
4052 --i;
4053 while (i--)
4055 if (end_lnum == curbuf->b_ml.ml_line_count)
4056 return FAIL;
4058 if (!include)
4059 do_white = linewhite(end_lnum + 1);
4061 if (include || !do_white)
4063 ++end_lnum;
4065 * skip to end of paragraph
4067 while (end_lnum < curbuf->b_ml.ml_line_count
4068 && !linewhite(end_lnum + 1)
4069 && !startPS(end_lnum + 1, 0, 0))
4070 ++end_lnum;
4073 if (i == 0 && white_in_front && include)
4074 break;
4077 * skip to end of white lines after paragraph
4079 if (include || do_white)
4080 while (end_lnum < curbuf->b_ml.ml_line_count
4081 && linewhite(end_lnum + 1))
4082 ++end_lnum;
4086 * If there are no empty lines at the end, try to find some empty lines at
4087 * the start (unless that has been done already).
4089 if (!white_in_front && !linewhite(end_lnum) && include)
4090 while (start_lnum > 1 && linewhite(start_lnum - 1))
4091 --start_lnum;
4093 #ifdef FEAT_VISUAL
4094 if (VIsual_active)
4096 /* Problem: when doing "Vipipip" nothing happens in a single white
4097 * line, we get stuck there. Trap this here. */
4098 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4099 goto extend;
4100 VIsual.lnum = start_lnum;
4101 VIsual_mode = 'V';
4102 redraw_curbuf_later(INVERTED); /* update the inversion */
4103 showmode();
4105 else
4106 #endif
4108 oap->start.lnum = start_lnum;
4109 oap->start.col = 0;
4110 oap->motion_type = MLINE;
4112 curwin->w_cursor.lnum = end_lnum;
4113 curwin->w_cursor.col = 0;
4115 return OK;
4118 static int find_next_quote __ARGS((char_u *top_ptr, int col, int quotechar, char_u *escape));
4119 static int find_prev_quote __ARGS((char_u *line, int col_start, int quotechar, char_u *escape));
4122 * Search quote char from string line[col].
4123 * Quote character escaped by one of the characters in "escape" is not counted
4124 * as a quote.
4125 * Returns column number of "quotechar" or -1 when not found.
4127 static int
4128 find_next_quote(line, col, quotechar, escape)
4129 char_u *line;
4130 int col;
4131 int quotechar;
4132 char_u *escape; /* escape characters, can be NULL */
4134 int c;
4136 for (;;)
4138 c = line[col];
4139 if (c == NUL)
4140 return -1;
4141 else if (escape != NULL && vim_strchr(escape, c))
4142 ++col;
4143 else if (c == quotechar)
4144 break;
4145 #ifdef FEAT_MBYTE
4146 if (has_mbyte)
4147 col += (*mb_ptr2len)(line + col);
4148 else
4149 #endif
4150 ++col;
4152 return col;
4156 * Search backwards in "line" from column "col_start" to find "quotechar".
4157 * Quote character escaped by one of the characters in "escape" is not counted
4158 * as a quote.
4159 * Return the found column or zero.
4161 static int
4162 find_prev_quote(line, col_start, quotechar, escape)
4163 char_u *line;
4164 int col_start;
4165 int quotechar;
4166 char_u *escape; /* escape characters, can be NULL */
4168 int n;
4170 while (col_start > 0)
4172 --col_start;
4173 #ifdef FEAT_MBYTE
4174 col_start -= (*mb_head_off)(line, line + col_start);
4175 #endif
4176 n = 0;
4177 if (escape != NULL)
4178 while (col_start - n > 0 && vim_strchr(escape,
4179 line[col_start - n - 1]) != NULL)
4180 ++n;
4181 if (n & 1)
4182 col_start -= n; /* uneven number of escape chars, skip it */
4183 else if (line[col_start] == quotechar)
4184 break;
4186 return col_start;
4190 * Find quote under the cursor, cursor at end.
4191 * Returns TRUE if found, else FALSE.
4194 current_quote(oap, count, include, quotechar)
4195 oparg_T *oap;
4196 long count;
4197 int include; /* TRUE == include quote char */
4198 int quotechar; /* Quote character */
4200 char_u *line = ml_get_curline();
4201 int col_end;
4202 int col_start = curwin->w_cursor.col;
4203 int inclusive = FALSE;
4204 #ifdef FEAT_VISUAL
4205 int vis_empty = TRUE; /* Visual selection <= 1 char */
4206 int vis_bef_curs = FALSE; /* Visual starts before cursor */
4207 int inside_quotes = FALSE; /* Looks like "i'" done before */
4208 int selected_quote = FALSE; /* Has quote inside selection */
4209 int i;
4211 /* Correct cursor when 'selection' is exclusive */
4212 if (VIsual_active)
4214 vis_bef_curs = lt(VIsual, curwin->w_cursor);
4215 if (*p_sel == 'e' && vis_bef_curs)
4216 dec_cursor();
4217 vis_empty = equalpos(VIsual, curwin->w_cursor);
4220 if (!vis_empty)
4222 /* Check if the existing selection exactly spans the text inside
4223 * quotes. */
4224 if (vis_bef_curs)
4226 inside_quotes = VIsual.col > 0
4227 && line[VIsual.col - 1] == quotechar
4228 && line[curwin->w_cursor.col] != NUL
4229 && line[curwin->w_cursor.col + 1] == quotechar;
4230 i = VIsual.col;
4231 col_end = curwin->w_cursor.col;
4233 else
4235 inside_quotes = curwin->w_cursor.col > 0
4236 && line[curwin->w_cursor.col - 1] == quotechar
4237 && line[VIsual.col] != NUL
4238 && line[VIsual.col + 1] == quotechar;
4239 i = curwin->w_cursor.col;
4240 col_end = VIsual.col;
4243 /* Find out if we have a quote in the selection. */
4244 while (i <= col_end)
4245 if (line[i++] == quotechar)
4247 selected_quote = TRUE;
4248 break;
4252 if (!vis_empty && line[col_start] == quotechar)
4254 /* Already selecting something and on a quote character. Find the
4255 * next quoted string. */
4256 if (vis_bef_curs)
4258 /* Assume we are on a closing quote: move to after the next
4259 * opening quote. */
4260 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4261 if (col_start < 0)
4262 return FALSE;
4263 col_end = find_next_quote(line, col_start + 1, quotechar,
4264 curbuf->b_p_qe);
4265 if (col_end < 0)
4267 /* We were on a starting quote perhaps? */
4268 col_end = col_start;
4269 col_start = curwin->w_cursor.col;
4272 else
4274 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4275 if (line[col_end] != quotechar)
4276 return FALSE;
4277 col_start = find_prev_quote(line, col_end, quotechar,
4278 curbuf->b_p_qe);
4279 if (line[col_start] != quotechar)
4281 /* We were on an ending quote perhaps? */
4282 col_start = col_end;
4283 col_end = curwin->w_cursor.col;
4287 else
4288 #endif
4290 if (line[col_start] == quotechar
4291 #ifdef FEAT_VISUAL
4292 || !vis_empty
4293 #endif
4296 int first_col = col_start;
4298 #ifdef FEAT_VISUAL
4299 if (!vis_empty)
4301 if (vis_bef_curs)
4302 first_col = find_next_quote(line, col_start, quotechar, NULL);
4303 else
4304 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4306 #endif
4307 /* The cursor is on a quote, we don't know if it's the opening or
4308 * closing quote. Search from the start of the line to find out.
4309 * Also do this when there is a Visual area, a' may leave the cursor
4310 * in between two strings. */
4311 col_start = 0;
4312 for (;;)
4314 /* Find open quote character. */
4315 col_start = find_next_quote(line, col_start, quotechar, NULL);
4316 if (col_start < 0 || col_start > first_col)
4317 return FALSE;
4318 /* Find close quote character. */
4319 col_end = find_next_quote(line, col_start + 1, quotechar,
4320 curbuf->b_p_qe);
4321 if (col_end < 0)
4322 return FALSE;
4323 /* If is cursor between start and end quote character, it is
4324 * target text object. */
4325 if (col_start <= first_col && first_col <= col_end)
4326 break;
4327 col_start = col_end + 1;
4330 else
4332 /* Search backward for a starting quote. */
4333 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4334 if (line[col_start] != quotechar)
4336 /* No quote before the cursor, look after the cursor. */
4337 col_start = find_next_quote(line, col_start, quotechar, NULL);
4338 if (col_start < 0)
4339 return FALSE;
4342 /* Find close quote character. */
4343 col_end = find_next_quote(line, col_start + 1, quotechar,
4344 curbuf->b_p_qe);
4345 if (col_end < 0)
4346 return FALSE;
4349 /* When "include" is TRUE, include spaces after closing quote or before
4350 * the starting quote. */
4351 if (include)
4353 if (vim_iswhite(line[col_end + 1]))
4354 while (vim_iswhite(line[col_end + 1]))
4355 ++col_end;
4356 else
4357 while (col_start > 0 && vim_iswhite(line[col_start - 1]))
4358 --col_start;
4361 /* Set start position. After vi" another i" must include the ".
4362 * For v2i" include the quotes. */
4363 if (!include && count < 2
4364 #ifdef FEAT_VISUAL
4365 && (vis_empty || !inside_quotes)
4366 #endif
4368 ++col_start;
4369 curwin->w_cursor.col = col_start;
4370 #ifdef FEAT_VISUAL
4371 if (VIsual_active)
4373 /* Set the start of the Visual area when the Visual area was empty, we
4374 * were just inside quotes or the Visual area didn't start at a quote
4375 * and didn't include a quote.
4377 if (vis_empty
4378 || (vis_bef_curs
4379 && !selected_quote
4380 && (inside_quotes
4381 || (line[VIsual.col] != quotechar
4382 && (VIsual.col == 0
4383 || line[VIsual.col - 1] != quotechar)))))
4385 VIsual = curwin->w_cursor;
4386 redraw_curbuf_later(INVERTED);
4389 else
4390 #endif
4392 oap->start = curwin->w_cursor;
4393 oap->motion_type = MCHAR;
4396 /* Set end position. */
4397 curwin->w_cursor.col = col_end;
4398 if ((include || count > 1
4399 #ifdef FEAT_VISUAL
4400 /* After vi" another i" must include the ". */
4401 || (!vis_empty && inside_quotes)
4402 #endif
4403 ) && inc_cursor() == 2)
4404 inclusive = TRUE;
4405 #ifdef FEAT_VISUAL
4406 if (VIsual_active)
4408 if (vis_empty || vis_bef_curs)
4410 /* decrement cursor when 'selection' is not exclusive */
4411 if (*p_sel != 'e')
4412 dec_cursor();
4414 else
4416 /* Cursor is at start of Visual area. Set the end of the Visual
4417 * area when it was just inside quotes or it didn't end at a
4418 * quote. */
4419 if (inside_quotes
4420 || (!selected_quote
4421 && line[VIsual.col] != quotechar
4422 && (line[VIsual.col] == NUL
4423 || line[VIsual.col + 1] != quotechar)))
4425 dec_cursor();
4426 VIsual = curwin->w_cursor;
4428 curwin->w_cursor.col = col_start;
4430 if (VIsual_mode == 'V')
4432 VIsual_mode = 'v';
4433 redraw_cmdline = TRUE; /* show mode later */
4436 else
4437 #endif
4439 /* Set inclusive and other oap's flags. */
4440 oap->inclusive = inclusive;
4443 return OK;
4446 #endif /* FEAT_TEXTOBJ */
4448 #if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4449 || defined(PROTO)
4451 * return TRUE if line 'lnum' is empty or has white chars only.
4454 linewhite(lnum)
4455 linenr_T lnum;
4457 char_u *p;
4459 p = skipwhite(ml_get(lnum));
4460 return (*p == NUL);
4462 #endif
4464 #if defined(FEAT_FIND_ID) || defined(PROTO)
4466 * Find identifiers or defines in included files.
4467 * if p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
4469 /*ARGSUSED*/
4470 void
4471 find_pattern_in_path(ptr, dir, len, whole, skip_comments,
4472 type, count, action, start_lnum, end_lnum)
4473 char_u *ptr; /* pointer to search pattern */
4474 int dir; /* direction of expansion */
4475 int len; /* length of search pattern */
4476 int whole; /* match whole words only */
4477 int skip_comments; /* don't match inside comments */
4478 int type; /* Type of search; are we looking for a type?
4479 a macro? */
4480 long count;
4481 int action; /* What to do when we find it */
4482 linenr_T start_lnum; /* first line to start searching */
4483 linenr_T end_lnum; /* last line for searching */
4485 SearchedFile *files; /* Stack of included files */
4486 SearchedFile *bigger; /* When we need more space */
4487 int max_path_depth = 50;
4488 long match_count = 1;
4490 char_u *pat;
4491 char_u *new_fname;
4492 char_u *curr_fname = curbuf->b_fname;
4493 char_u *prev_fname = NULL;
4494 linenr_T lnum;
4495 int depth;
4496 int depth_displayed; /* For type==CHECK_PATH */
4497 int old_files;
4498 int already_searched;
4499 char_u *file_line;
4500 char_u *line;
4501 char_u *p;
4502 char_u save_char;
4503 int define_matched;
4504 regmatch_T regmatch;
4505 regmatch_T incl_regmatch;
4506 regmatch_T def_regmatch;
4507 int matched = FALSE;
4508 int did_show = FALSE;
4509 int found = FALSE;
4510 int i;
4511 char_u *already = NULL;
4512 char_u *startp = NULL;
4513 char_u *inc_opt = NULL;
4514 #ifdef RISCOS
4515 int previous_munging = __riscosify_control;
4516 #endif
4517 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4518 win_T *curwin_save = NULL;
4519 #endif
4521 regmatch.regprog = NULL;
4522 incl_regmatch.regprog = NULL;
4523 def_regmatch.regprog = NULL;
4525 file_line = alloc(LSIZE);
4526 if (file_line == NULL)
4527 return;
4529 #ifdef RISCOS
4530 /* UnixLib knows best how to munge c file names - turn munging back on. */
4531 int __riscosify_control = 0;
4532 #endif
4534 if (type != CHECK_PATH && type != FIND_DEFINE
4535 #ifdef FEAT_INS_EXPAND
4536 /* when CONT_SOL is set compare "ptr" with the beginning of the line
4537 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */
4538 && !(compl_cont_status & CONT_SOL)
4539 #endif
4542 pat = alloc(len + 5);
4543 if (pat == NULL)
4544 goto fpip_end;
4545 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
4546 /* ignore case according to p_ic, p_scs and pat */
4547 regmatch.rm_ic = ignorecase(pat);
4548 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4549 vim_free(pat);
4550 if (regmatch.regprog == NULL)
4551 goto fpip_end;
4553 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
4554 if (*inc_opt != NUL)
4556 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
4557 if (incl_regmatch.regprog == NULL)
4558 goto fpip_end;
4559 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */
4561 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
4563 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
4564 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
4565 if (def_regmatch.regprog == NULL)
4566 goto fpip_end;
4567 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */
4569 files = (SearchedFile *)lalloc_clear((long_u)
4570 (max_path_depth * sizeof(SearchedFile)), TRUE);
4571 if (files == NULL)
4572 goto fpip_end;
4573 old_files = max_path_depth;
4574 depth = depth_displayed = -1;
4576 lnum = start_lnum;
4577 if (end_lnum > curbuf->b_ml.ml_line_count)
4578 end_lnum = curbuf->b_ml.ml_line_count;
4579 if (lnum > end_lnum) /* do at least one line */
4580 lnum = end_lnum;
4581 line = ml_get(lnum);
4583 for (;;)
4585 if (incl_regmatch.regprog != NULL
4586 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
4588 char_u *p_fname = (curr_fname == curbuf->b_fname)
4589 ? curbuf->b_ffname : curr_fname;
4591 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
4592 /* Use text from '\zs' to '\ze' (or end) of 'include'. */
4593 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
4594 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
4595 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
4596 else
4597 /* Use text after match with 'include'. */
4598 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
4599 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
4600 already_searched = FALSE;
4601 if (new_fname != NULL)
4603 /* Check whether we have already searched in this file */
4604 for (i = 0;; i++)
4606 if (i == depth + 1)
4607 i = old_files;
4608 if (i == max_path_depth)
4609 break;
4610 if (fullpathcmp(new_fname, files[i].name, TRUE) & FPC_SAME)
4612 if (type != CHECK_PATH &&
4613 action == ACTION_SHOW_ALL && files[i].matched)
4615 msg_putchar('\n'); /* cursor below last one */
4616 if (!got_int) /* don't display if 'q'
4617 typed at "--more--"
4618 mesage */
4620 msg_home_replace_hl(new_fname);
4621 MSG_PUTS(_(" (includes previously listed match)"));
4622 prev_fname = NULL;
4625 vim_free(new_fname);
4626 new_fname = NULL;
4627 already_searched = TRUE;
4628 break;
4633 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
4634 || (new_fname == NULL && !already_searched)))
4636 if (did_show)
4637 msg_putchar('\n'); /* cursor below last one */
4638 else
4640 gotocmdline(TRUE); /* cursor at status line */
4641 MSG_PUTS_TITLE(_("--- Included files "));
4642 if (action != ACTION_SHOW_ALL)
4643 MSG_PUTS_TITLE(_("not found "));
4644 MSG_PUTS_TITLE(_("in path ---\n"));
4646 did_show = TRUE;
4647 while (depth_displayed < depth && !got_int)
4649 ++depth_displayed;
4650 for (i = 0; i < depth_displayed; i++)
4651 MSG_PUTS(" ");
4652 msg_home_replace(files[depth_displayed].name);
4653 MSG_PUTS(" -->\n");
4655 if (!got_int) /* don't display if 'q' typed
4656 for "--more--" message */
4658 for (i = 0; i <= depth_displayed; i++)
4659 MSG_PUTS(" ");
4660 if (new_fname != NULL)
4662 /* using "new_fname" is more reliable, e.g., when
4663 * 'includeexpr' is set. */
4664 msg_outtrans_attr(new_fname, hl_attr(HLF_D));
4666 else
4669 * Isolate the file name.
4670 * Include the surrounding "" or <> if present.
4672 for (p = incl_regmatch.endp[0]; !vim_isfilec(*p); p++)
4674 for (i = 0; vim_isfilec(p[i]); i++)
4676 if (i == 0)
4678 /* Nothing found, use the rest of the line. */
4679 p = incl_regmatch.endp[0];
4680 i = (int)STRLEN(p);
4682 else
4684 if (p[-1] == '"' || p[-1] == '<')
4686 --p;
4687 ++i;
4689 if (p[i] == '"' || p[i] == '>')
4690 ++i;
4692 save_char = p[i];
4693 p[i] = NUL;
4694 msg_outtrans_attr(p, hl_attr(HLF_D));
4695 p[i] = save_char;
4698 if (new_fname == NULL && action == ACTION_SHOW_ALL)
4700 if (already_searched)
4701 MSG_PUTS(_(" (Already listed)"));
4702 else
4703 MSG_PUTS(_(" NOT FOUND"));
4706 out_flush(); /* output each line directly */
4709 if (new_fname != NULL)
4711 /* Push the new file onto the file stack */
4712 if (depth + 1 == old_files)
4714 bigger = (SearchedFile *)lalloc((long_u)(
4715 max_path_depth * 2 * sizeof(SearchedFile)), TRUE);
4716 if (bigger != NULL)
4718 for (i = 0; i <= depth; i++)
4719 bigger[i] = files[i];
4720 for (i = depth + 1; i < old_files + max_path_depth; i++)
4722 bigger[i].fp = NULL;
4723 bigger[i].name = NULL;
4724 bigger[i].lnum = 0;
4725 bigger[i].matched = FALSE;
4727 for (i = old_files; i < max_path_depth; i++)
4728 bigger[i + max_path_depth] = files[i];
4729 old_files += max_path_depth;
4730 max_path_depth *= 2;
4731 vim_free(files);
4732 files = bigger;
4735 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
4736 == NULL)
4737 vim_free(new_fname);
4738 else
4740 if (++depth == old_files)
4743 * lalloc() for 'bigger' must have failed above. We
4744 * will forget one of our already visited files now.
4746 vim_free(files[old_files].name);
4747 ++old_files;
4749 files[depth].name = curr_fname = new_fname;
4750 files[depth].lnum = 0;
4751 files[depth].matched = FALSE;
4752 #ifdef FEAT_INS_EXPAND
4753 if (action == ACTION_EXPAND)
4755 msg_hist_off = TRUE; /* reset in msg_trunc_attr() */
4756 vim_snprintf((char*)IObuff, IOSIZE,
4757 _("Scanning included file: %s"),
4758 (char *)new_fname);
4759 msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
4761 else
4762 #endif
4763 if (p_verbose >= 5)
4765 verbose_enter();
4766 smsg((char_u *)_("Searching included file %s"),
4767 (char *)new_fname);
4768 verbose_leave();
4774 else
4777 * Check if the line is a define (type == FIND_DEFINE)
4779 p = line;
4780 search_line:
4781 define_matched = FALSE;
4782 if (def_regmatch.regprog != NULL
4783 && vim_regexec(&def_regmatch, line, (colnr_T)0))
4786 * Pattern must be first identifier after 'define', so skip
4787 * to that position before checking for match of pattern. Also
4788 * don't let it match beyond the end of this identifier.
4790 p = def_regmatch.endp[0];
4791 while (*p && !vim_iswordc(*p))
4792 p++;
4793 define_matched = TRUE;
4797 * Look for a match. Don't do this if we are looking for a
4798 * define and this line didn't match define_prog above.
4800 if (def_regmatch.regprog == NULL || define_matched)
4802 if (define_matched
4803 #ifdef FEAT_INS_EXPAND
4804 || (compl_cont_status & CONT_SOL)
4805 #endif
4808 /* compare the first "len" chars from "ptr" */
4809 startp = skipwhite(p);
4810 if (p_ic)
4811 matched = !MB_STRNICMP(startp, ptr, len);
4812 else
4813 matched = !STRNCMP(startp, ptr, len);
4814 if (matched && define_matched && whole
4815 && vim_iswordc(startp[len]))
4816 matched = FALSE;
4818 else if (regmatch.regprog != NULL
4819 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
4821 matched = TRUE;
4822 startp = regmatch.startp[0];
4824 * Check if the line is not a comment line (unless we are
4825 * looking for a define). A line starting with "# define"
4826 * is not considered to be a comment line.
4828 if (!define_matched && skip_comments)
4830 #ifdef FEAT_COMMENTS
4831 if ((*line != '#' ||
4832 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
4833 && get_leader_len(line, NULL, FALSE))
4834 matched = FALSE;
4837 * Also check for a "/ *" or "/ /" before the match.
4838 * Skips lines like "int backwards; / * normal index
4839 * * /" when looking for "normal".
4840 * Note: Doesn't skip "/ *" in comments.
4842 p = skipwhite(line);
4843 if (matched
4844 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
4845 #endif
4846 for (p = line; *p && p < startp; ++p)
4848 if (matched
4849 && p[0] == '/'
4850 && (p[1] == '*' || p[1] == '/'))
4852 matched = FALSE;
4853 /* After "//" all text is comment */
4854 if (p[1] == '/')
4855 break;
4856 ++p;
4858 else if (!matched && p[0] == '*' && p[1] == '/')
4860 /* Can find match after "* /". */
4861 matched = TRUE;
4862 ++p;
4869 if (matched)
4871 #ifdef FEAT_INS_EXPAND
4872 if (action == ACTION_EXPAND)
4874 int reuse = 0;
4875 int add_r;
4876 char_u *aux;
4878 if (depth == -1 && lnum == curwin->w_cursor.lnum)
4879 break;
4880 found = TRUE;
4881 aux = p = startp;
4882 if (compl_cont_status & CONT_ADDING)
4884 p += compl_length;
4885 if (vim_iswordp(p))
4886 goto exit_matched;
4887 p = find_word_start(p);
4889 p = find_word_end(p);
4890 i = (int)(p - aux);
4892 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
4894 /* IOSIZE > compl_length, so the STRNCPY works */
4895 STRNCPY(IObuff, aux, i);
4897 /* Get the next line: when "depth" < 0 from the current
4898 * buffer, otherwise from the included file. Jump to
4899 * exit_matched when past the last line. */
4900 if (depth < 0)
4902 if (lnum >= end_lnum)
4903 goto exit_matched;
4904 line = ml_get(++lnum);
4906 else if (vim_fgets(line = file_line,
4907 LSIZE, files[depth].fp))
4908 goto exit_matched;
4910 /* we read a line, set "already" to check this "line" later
4911 * if depth >= 0 we'll increase files[depth].lnum far
4912 * bellow -- Acevedo */
4913 already = aux = p = skipwhite(line);
4914 p = find_word_start(p);
4915 p = find_word_end(p);
4916 if (p > aux)
4918 if (*aux != ')' && IObuff[i-1] != TAB)
4920 if (IObuff[i-1] != ' ')
4921 IObuff[i++] = ' ';
4922 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/
4923 if (p_js
4924 && (IObuff[i-2] == '.'
4925 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4926 && (IObuff[i-2] == '?'
4927 || IObuff[i-2] == '!'))))
4928 IObuff[i++] = ' ';
4930 /* copy as much as posible of the new word */
4931 if (p - aux >= IOSIZE - i)
4932 p = aux + IOSIZE - i - 1;
4933 STRNCPY(IObuff + i, aux, p - aux);
4934 i += (int)(p - aux);
4935 reuse |= CONT_S_IPOS;
4937 IObuff[i] = NUL;
4938 aux = IObuff;
4940 if (i == compl_length)
4941 goto exit_matched;
4944 add_r = ins_compl_add_infercase(aux, i, p_ic,
4945 curr_fname == curbuf->b_fname ? NULL : curr_fname,
4946 dir, reuse);
4947 if (add_r == OK)
4948 /* if dir was BACKWARD then honor it just once */
4949 dir = FORWARD;
4950 else if (add_r == FAIL)
4951 break;
4953 else
4954 #endif
4955 if (action == ACTION_SHOW_ALL)
4957 found = TRUE;
4958 if (!did_show)
4959 gotocmdline(TRUE); /* cursor at status line */
4960 if (curr_fname != prev_fname)
4962 if (did_show)
4963 msg_putchar('\n'); /* cursor below last one */
4964 if (!got_int) /* don't display if 'q' typed
4965 at "--more--" mesage */
4966 msg_home_replace_hl(curr_fname);
4967 prev_fname = curr_fname;
4969 did_show = TRUE;
4970 if (!got_int)
4971 show_pat_in_path(line, type, TRUE, action,
4972 (depth == -1) ? NULL : files[depth].fp,
4973 (depth == -1) ? &lnum : &files[depth].lnum,
4974 match_count++);
4976 /* Set matched flag for this file and all the ones that
4977 * include it */
4978 for (i = 0; i <= depth; ++i)
4979 files[i].matched = TRUE;
4981 else if (--count <= 0)
4983 found = TRUE;
4984 if (depth == -1 && lnum == curwin->w_cursor.lnum
4985 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4986 && g_do_tagpreview == 0
4987 #endif
4989 EMSG(_("E387: Match is on current line"));
4990 else if (action == ACTION_SHOW)
4992 show_pat_in_path(line, type, did_show, action,
4993 (depth == -1) ? NULL : files[depth].fp,
4994 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
4995 did_show = TRUE;
4997 else
4999 #ifdef FEAT_GUI
5000 need_mouse_correct = TRUE;
5001 #endif
5002 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5003 /* ":psearch" uses the preview window */
5004 if (g_do_tagpreview != 0)
5006 curwin_save = curwin;
5007 prepare_tagpreview(TRUE);
5009 #endif
5010 if (action == ACTION_SPLIT)
5012 #ifdef FEAT_WINDOWS
5013 if (win_split(0, 0) == FAIL)
5014 #endif
5015 break;
5016 #ifdef FEAT_SCROLLBIND
5017 curwin->w_p_scb = FALSE;
5018 #endif
5020 if (depth == -1)
5022 /* match in current file */
5023 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5024 if (g_do_tagpreview != 0)
5026 if (getfile(0, curwin_save->w_buffer->b_fname,
5027 NULL, TRUE, lnum, FALSE) > 0)
5028 break; /* failed to jump to file */
5030 else
5031 #endif
5032 setpcmark();
5033 curwin->w_cursor.lnum = lnum;
5035 else
5037 if (getfile(0, files[depth].name, NULL, TRUE,
5038 files[depth].lnum, FALSE) > 0)
5039 break; /* failed to jump to file */
5040 /* autocommands may have changed the lnum, we don't
5041 * want that here */
5042 curwin->w_cursor.lnum = files[depth].lnum;
5045 if (action != ACTION_SHOW)
5047 curwin->w_cursor.col = (colnr_T) (startp - line);
5048 curwin->w_set_curswant = TRUE;
5051 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5052 if (g_do_tagpreview != 0
5053 && curwin != curwin_save && win_valid(curwin_save))
5055 /* Return cursor to where we were */
5056 validate_cursor();
5057 redraw_later(VALID);
5058 win_enter(curwin_save, TRUE);
5060 #endif
5061 break;
5063 #ifdef FEAT_INS_EXPAND
5064 exit_matched:
5065 #endif
5066 matched = FALSE;
5067 /* look for other matches in the rest of the line if we
5068 * are not at the end of it already */
5069 if (def_regmatch.regprog == NULL
5070 #ifdef FEAT_INS_EXPAND
5071 && action == ACTION_EXPAND
5072 && !(compl_cont_status & CONT_SOL)
5073 #endif
5074 && *(p = startp + 1))
5075 goto search_line;
5077 line_breakcheck();
5078 #ifdef FEAT_INS_EXPAND
5079 if (action == ACTION_EXPAND)
5080 ins_compl_check_keys(30);
5081 if (got_int || compl_interrupted)
5082 #else
5083 if (got_int)
5084 #endif
5085 break;
5088 * Read the next line. When reading an included file and encountering
5089 * end-of-file, close the file and continue in the file that included
5090 * it.
5092 while (depth >= 0 && !already
5093 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5095 fclose(files[depth].fp);
5096 --old_files;
5097 files[old_files].name = files[depth].name;
5098 files[old_files].matched = files[depth].matched;
5099 --depth;
5100 curr_fname = (depth == -1) ? curbuf->b_fname
5101 : files[depth].name;
5102 if (depth < depth_displayed)
5103 depth_displayed = depth;
5105 if (depth >= 0) /* we could read the line */
5106 files[depth].lnum++;
5107 else if (!already)
5109 if (++lnum > end_lnum)
5110 break;
5111 line = ml_get(lnum);
5113 already = NULL;
5115 /* End of big for (;;) loop. */
5117 /* Close any files that are still open. */
5118 for (i = 0; i <= depth; i++)
5120 fclose(files[i].fp);
5121 vim_free(files[i].name);
5123 for (i = old_files; i < max_path_depth; i++)
5124 vim_free(files[i].name);
5125 vim_free(files);
5127 if (type == CHECK_PATH)
5129 if (!did_show)
5131 if (action != ACTION_SHOW_ALL)
5132 MSG(_("All included files were found"));
5133 else
5134 MSG(_("No included files"));
5137 else if (!found
5138 #ifdef FEAT_INS_EXPAND
5139 && action != ACTION_EXPAND
5140 #endif
5143 #ifdef FEAT_INS_EXPAND
5144 if (got_int || compl_interrupted)
5145 #else
5146 if (got_int)
5147 #endif
5148 EMSG(_(e_interr));
5149 else if (type == FIND_DEFINE)
5150 EMSG(_("E388: Couldn't find definition"));
5151 else
5152 EMSG(_("E389: Couldn't find pattern"));
5154 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5155 msg_end();
5157 fpip_end:
5158 vim_free(file_line);
5159 vim_free(regmatch.regprog);
5160 vim_free(incl_regmatch.regprog);
5161 vim_free(def_regmatch.regprog);
5163 #ifdef RISCOS
5164 /* Restore previous file munging state. */
5165 __riscosify_control = previous_munging;
5166 #endif
5169 static void
5170 show_pat_in_path(line, type, did_show, action, fp, lnum, count)
5171 char_u *line;
5172 int type;
5173 int did_show;
5174 int action;
5175 FILE *fp;
5176 linenr_T *lnum;
5177 long count;
5179 char_u *p;
5181 if (did_show)
5182 msg_putchar('\n'); /* cursor below last one */
5183 else if (!msg_silent)
5184 gotocmdline(TRUE); /* cursor at status line */
5185 if (got_int) /* 'q' typed at "--more--" message */
5186 return;
5187 for (;;)
5189 p = line + STRLEN(line) - 1;
5190 if (fp != NULL)
5192 /* We used fgets(), so get rid of newline at end */
5193 if (p >= line && *p == '\n')
5194 --p;
5195 if (p >= line && *p == '\r')
5196 --p;
5197 *(p + 1) = NUL;
5199 if (action == ACTION_SHOW_ALL)
5201 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */
5202 msg_puts(IObuff);
5203 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */
5204 /* Highlight line numbers */
5205 msg_puts_attr(IObuff, hl_attr(HLF_N));
5206 MSG_PUTS(" ");
5208 msg_prt_line(line, FALSE);
5209 out_flush(); /* show one line at a time */
5211 /* Definition continues until line that doesn't end with '\' */
5212 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5213 break;
5215 if (fp != NULL)
5217 if (vim_fgets(line, LSIZE, fp)) /* end of file */
5218 break;
5219 ++*lnum;
5221 else
5223 if (++*lnum > curbuf->b_ml.ml_line_count)
5224 break;
5225 line = ml_get(*lnum);
5227 msg_putchar('\n');
5230 #endif
5232 #ifdef FEAT_VIMINFO
5234 read_viminfo_search_pattern(virp, force)
5235 vir_T *virp;
5236 int force;
5238 char_u *lp;
5239 int idx = -1;
5240 int magic = FALSE;
5241 int no_scs = FALSE;
5242 int off_line = FALSE;
5243 int off_end = 0;
5244 long off = 0;
5245 int setlast = FALSE;
5246 #ifdef FEAT_SEARCH_EXTRA
5247 static int hlsearch_on = FALSE;
5248 #endif
5249 char_u *val;
5252 * Old line types:
5253 * "/pat", "&pat": search/subst. pat
5254 * "~/pat", "~&pat": last used search/subst. pat
5255 * New line types:
5256 * "~h", "~H": hlsearch highlighting off/on
5257 * "~<magic><smartcase><line><end><off><last><which>pat"
5258 * <magic>: 'm' off, 'M' on
5259 * <smartcase>: 's' off, 'S' on
5260 * <line>: 'L' line offset, 'l' char offset
5261 * <end>: 'E' from end, 'e' from start
5262 * <off>: decimal, offset
5263 * <last>: '~' last used pattern
5264 * <which>: '/' search pat, '&' subst. pat
5266 lp = virp->vir_line;
5267 if (lp[0] == '~' && (lp[1] == 'm' || lp[1] == 'M')) /* new line type */
5269 if (lp[1] == 'M') /* magic on */
5270 magic = TRUE;
5271 if (lp[2] == 's')
5272 no_scs = TRUE;
5273 if (lp[3] == 'L')
5274 off_line = TRUE;
5275 if (lp[4] == 'E')
5276 off_end = SEARCH_END;
5277 lp += 5;
5278 off = getdigits(&lp);
5280 if (lp[0] == '~') /* use this pattern for last-used pattern */
5282 setlast = TRUE;
5283 lp++;
5285 if (lp[0] == '/')
5286 idx = RE_SEARCH;
5287 else if (lp[0] == '&')
5288 idx = RE_SUBST;
5289 #ifdef FEAT_SEARCH_EXTRA
5290 else if (lp[0] == 'h') /* ~h: 'hlsearch' highlighting off */
5291 hlsearch_on = FALSE;
5292 else if (lp[0] == 'H') /* ~H: 'hlsearch' highlighting on */
5293 hlsearch_on = TRUE;
5294 #endif
5295 if (idx >= 0)
5297 if (force || spats[idx].pat == NULL)
5299 val = viminfo_readstring(virp, (int)(lp - virp->vir_line + 1),
5300 TRUE);
5301 if (val != NULL)
5303 set_last_search_pat(val, idx, magic, setlast);
5304 vim_free(val);
5305 spats[idx].no_scs = no_scs;
5306 spats[idx].off.line = off_line;
5307 spats[idx].off.end = off_end;
5308 spats[idx].off.off = off;
5309 #ifdef FEAT_SEARCH_EXTRA
5310 if (setlast)
5311 no_hlsearch = !hlsearch_on;
5312 #endif
5316 return viminfo_readline(virp);
5319 void
5320 write_viminfo_search_pattern(fp)
5321 FILE *fp;
5323 if (get_viminfo_parameter('/') != 0)
5325 #ifdef FEAT_SEARCH_EXTRA
5326 fprintf(fp, "\n# hlsearch on (H) or off (h):\n~%c",
5327 (no_hlsearch || find_viminfo_parameter('h') != NULL) ? 'h' : 'H');
5328 #endif
5329 wvsp_one(fp, RE_SEARCH, "", '/');
5330 wvsp_one(fp, RE_SUBST, "Substitute ", '&');
5334 static void
5335 wvsp_one(fp, idx, s, sc)
5336 FILE *fp; /* file to write to */
5337 int idx; /* spats[] index */
5338 char *s; /* search pat */
5339 int sc; /* dir char */
5341 if (spats[idx].pat != NULL)
5343 fprintf(fp, _("\n# Last %sSearch Pattern:\n~"), s);
5344 /* off.dir is not stored, it's reset to forward */
5345 fprintf(fp, "%c%c%c%c%ld%s%c",
5346 spats[idx].magic ? 'M' : 'm', /* magic */
5347 spats[idx].no_scs ? 's' : 'S', /* smartcase */
5348 spats[idx].off.line ? 'L' : 'l', /* line offset */
5349 spats[idx].off.end ? 'E' : 'e', /* offset from end */
5350 spats[idx].off.off, /* offset */
5351 last_idx == idx ? "~" : "", /* last used pat */
5352 sc);
5353 viminfo_writestring(fp, spats[idx].pat);
5356 #endif /* FEAT_VIMINFO */