Patch 7.0.070
[MacVim/jjgod.git] / src / search.c
blob97580c01f704af6c1a367348748af8053c38e6b6
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 static char_u *reverse_text __ARGS((char_u *s));
105 #endif
107 #ifdef FEAT_FIND_ID
109 * Type used by find_pattern_in_path() to remember which included files have
110 * been searched already.
112 typedef struct SearchedFile
114 FILE *fp; /* File pointer */
115 char_u *name; /* Full name of file */
116 linenr_T lnum; /* Line we were up to in file */
117 int matched; /* Found a match in this file */
118 } SearchedFile;
119 #endif
122 * translate search pattern for vim_regcomp()
124 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd)
125 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command)
126 * pat_save == RE_BOTH: save pat in both patterns (:global command)
127 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL
128 * pat_use == RE_SUBST: use previous sustitute pattern if "pat" is NULL
129 * pat_use == RE_LAST: use last used pattern if "pat" is NULL
130 * options & SEARCH_HIS: put search string in history
131 * options & SEARCH_KEEP: keep previous search pattern
133 * returns FAIL if failed, OK otherwise.
136 search_regcomp(pat, pat_save, pat_use, options, regmatch)
137 char_u *pat;
138 int pat_save;
139 int pat_use;
140 int options;
141 regmmatch_T *regmatch; /* return: pattern and ignore-case flag */
143 int magic;
144 int i;
146 rc_did_emsg = FALSE;
147 magic = p_magic;
150 * If no pattern given, use a previously defined pattern.
152 if (pat == NULL || *pat == NUL)
154 if (pat_use == RE_LAST)
155 i = last_idx;
156 else
157 i = pat_use;
158 if (spats[i].pat == NULL) /* pattern was never defined */
160 if (pat_use == RE_SUBST)
161 EMSG(_(e_nopresub));
162 else
163 EMSG(_(e_noprevre));
164 rc_did_emsg = TRUE;
165 return FAIL;
167 pat = spats[i].pat;
168 magic = spats[i].magic;
169 no_smartcase = spats[i].no_scs;
171 #ifdef FEAT_CMDHIST
172 else if (options & SEARCH_HIS) /* put new pattern in history */
173 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
174 #endif
176 #ifdef FEAT_RIGHTLEFT
177 if (mr_pattern_alloced)
179 vim_free(mr_pattern);
180 mr_pattern_alloced = FALSE;
183 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
185 char_u *rev_pattern;
187 rev_pattern = reverse_text(pat);
188 if (rev_pattern == NULL)
189 mr_pattern = pat; /* out of memory, keep normal pattern. */
190 else
192 mr_pattern = rev_pattern;
193 mr_pattern_alloced = TRUE;
196 else
197 #endif
198 mr_pattern = pat;
201 * Save the currently used pattern in the appropriate place,
202 * unless the pattern should not be remembered.
204 if (!(options & SEARCH_KEEP))
206 /* search or global command */
207 if (pat_save == RE_SEARCH || pat_save == RE_BOTH)
208 save_re_pat(RE_SEARCH, pat, magic);
209 /* substitute or global command */
210 if (pat_save == RE_SUBST || pat_save == RE_BOTH)
211 save_re_pat(RE_SUBST, pat, magic);
214 regmatch->rmm_ic = ignorecase(pat);
215 regmatch->rmm_maxcol = 0;
216 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0);
217 if (regmatch->regprog == NULL)
218 return FAIL;
219 return OK;
223 * Get search pattern used by search_regcomp().
225 char_u *
226 get_search_pat()
228 return mr_pattern;
231 #ifdef FEAT_RIGHTLEFT
233 * Reverse text into allocated memory.
234 * Returns the allocated string, NULL when out of memory.
236 static char_u *
237 reverse_text(s)
238 char_u *s;
240 unsigned len;
241 unsigned s_i, rev_i;
242 char_u *rev;
245 * Reverse the pattern.
247 len = (unsigned)STRLEN(s);
248 rev = alloc(len + 1);
249 if (rev != NULL)
251 rev_i = len;
252 for (s_i = 0; s_i < len; ++s_i)
254 # ifdef FEAT_MBYTE
255 if (has_mbyte)
257 int mb_len;
259 mb_len = (*mb_ptr2len)(s + s_i);
260 rev_i -= mb_len;
261 mch_memmove(rev + rev_i, s + s_i, mb_len);
262 s_i += mb_len - 1;
264 else
265 # endif
266 rev[--rev_i] = s[s_i];
269 rev[len] = NUL;
271 return rev;
273 #endif
275 static void
276 save_re_pat(idx, pat, magic)
277 int idx;
278 char_u *pat;
279 int magic;
281 if (spats[idx].pat != pat)
283 vim_free(spats[idx].pat);
284 spats[idx].pat = vim_strsave(pat);
285 spats[idx].magic = magic;
286 spats[idx].no_scs = no_smartcase;
287 last_idx = idx;
288 #ifdef FEAT_SEARCH_EXTRA
289 /* If 'hlsearch' set and search pat changed: need redraw. */
290 if (p_hls)
291 redraw_all_later(SOME_VALID);
292 no_hlsearch = FALSE;
293 #endif
297 #if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO)
299 * Save the search patterns, so they can be restored later.
300 * Used before/after executing autocommands and user functions.
302 static int save_level = 0;
304 void
305 save_search_patterns()
307 if (save_level++ == 0)
309 saved_spats[0] = spats[0];
310 if (spats[0].pat != NULL)
311 saved_spats[0].pat = vim_strsave(spats[0].pat);
312 saved_spats[1] = spats[1];
313 if (spats[1].pat != NULL)
314 saved_spats[1].pat = vim_strsave(spats[1].pat);
315 saved_last_idx = last_idx;
316 # ifdef FEAT_SEARCH_EXTRA
317 saved_no_hlsearch = no_hlsearch;
318 # endif
322 void
323 restore_search_patterns()
325 if (--save_level == 0)
327 vim_free(spats[0].pat);
328 spats[0] = saved_spats[0];
329 vim_free(spats[1].pat);
330 spats[1] = saved_spats[1];
331 last_idx = saved_last_idx;
332 # ifdef FEAT_SEARCH_EXTRA
333 no_hlsearch = saved_no_hlsearch;
334 # endif
337 #endif
339 #if defined(EXITFREE) || defined(PROTO)
340 void
341 free_search_patterns()
343 vim_free(spats[0].pat);
344 vim_free(spats[1].pat);
346 #endif
349 * Return TRUE when case should be ignored for search pattern "pat".
350 * Uses the 'ignorecase' and 'smartcase' options.
353 ignorecase(pat)
354 char_u *pat;
356 char_u *p;
357 int ic;
359 ic = p_ic;
360 if (ic && !no_smartcase && p_scs
361 #ifdef FEAT_INS_EXPAND
362 && !(ctrl_x_mode && curbuf->b_p_inf)
363 #endif
366 /* don't ignore case if pattern has uppercase */
367 for (p = pat; *p; )
369 #ifdef FEAT_MBYTE
370 int l;
372 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
374 if (enc_utf8 && utf_isupper(utf_ptr2char(p)))
376 ic = FALSE;
377 break;
379 p += l;
381 else
382 #endif
383 if (*p == '\\' && p[1] != NUL) /* skip "\S" et al. */
384 p += 2;
385 else if (isupper(*p))
387 ic = FALSE;
388 break;
390 else
391 ++p;
394 no_smartcase = FALSE;
396 return ic;
399 char_u *
400 last_search_pat()
402 return spats[last_idx].pat;
406 * Reset search direction to forward. For "gd" and "gD" commands.
408 void
409 reset_search_dir()
411 spats[0].off.dir = '/';
414 #if defined(FEAT_EVAL) || defined(FEAT_VIMINFO)
416 * Set the last search pattern. For ":let @/ =" and viminfo.
417 * Also set the saved search pattern, so that this works in an autocommand.
419 void
420 set_last_search_pat(s, idx, magic, setlast)
421 char_u *s;
422 int idx;
423 int magic;
424 int setlast;
426 vim_free(spats[idx].pat);
427 /* An empty string means that nothing should be matched. */
428 if (*s == NUL)
429 spats[idx].pat = NULL;
430 else
431 spats[idx].pat = vim_strsave(s);
432 spats[idx].magic = magic;
433 spats[idx].no_scs = FALSE;
434 spats[idx].off.dir = '/';
435 spats[idx].off.line = FALSE;
436 spats[idx].off.end = FALSE;
437 spats[idx].off.off = 0;
438 if (setlast)
439 last_idx = idx;
440 if (save_level)
442 vim_free(saved_spats[idx].pat);
443 saved_spats[idx] = spats[0];
444 if (spats[idx].pat == NULL)
445 saved_spats[idx].pat = NULL;
446 else
447 saved_spats[idx].pat = vim_strsave(spats[idx].pat);
448 saved_last_idx = last_idx;
450 # ifdef FEAT_SEARCH_EXTRA
451 /* If 'hlsearch' set and search pat changed: need redraw. */
452 if (p_hls && idx == last_idx && !no_hlsearch)
453 redraw_all_later(SOME_VALID);
454 # endif
456 #endif
458 #ifdef FEAT_SEARCH_EXTRA
460 * Get a regexp program for the last used search pattern.
461 * This is used for highlighting all matches in a window.
462 * Values returned in regmatch->regprog and regmatch->rmm_ic.
464 void
465 last_pat_prog(regmatch)
466 regmmatch_T *regmatch;
468 if (spats[last_idx].pat == NULL)
470 regmatch->regprog = NULL;
471 return;
473 ++emsg_off; /* So it doesn't beep if bad expr */
474 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch);
475 --emsg_off;
477 #endif
480 * lowest level search function.
481 * Search for 'count'th occurrence of pattern 'pat' in direction 'dir'.
482 * Start at position 'pos' and return the found position in 'pos'.
484 * if (options & SEARCH_MSG) == 0 don't give any messages
485 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages
486 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages
487 * if (options & SEARCH_HIS) put search pattern in history
488 * if (options & SEARCH_END) return position at end of match
489 * if (options & SEARCH_START) accept match at pos itself
490 * if (options & SEARCH_KEEP) keep previous search pattern
491 * if (options & SEARCH_FOLD) match only once in a closed fold
492 * if (options & SEARCH_PEEK) check for typed char, cancel search
494 * Return FAIL (zero) for failure, non-zero for success.
495 * When FEAT_EVAL is defined, returns the index of the first matching
496 * subpattern plus one; one if there was none.
499 searchit(win, buf, pos, dir, pat, count, options, pat_use, stop_lnum)
500 win_T *win; /* window to search in; can be NULL for a
501 buffer without a window! */
502 buf_T *buf;
503 pos_T *pos;
504 int dir;
505 char_u *pat;
506 long count;
507 int options;
508 int pat_use; /* which pattern to use when "pat" is empty */
509 linenr_T stop_lnum; /* stop after this line number when != 0 */
511 int found;
512 linenr_T lnum; /* no init to shut up Apollo cc */
513 regmmatch_T regmatch;
514 char_u *ptr;
515 colnr_T matchcol;
516 lpos_T endpos;
517 lpos_T matchpos;
518 int loop;
519 pos_T start_pos;
520 int at_first_line;
521 int extra_col;
522 int match_ok;
523 long nmatched;
524 int submatch = 0;
525 int save_called_emsg = called_emsg;
526 #ifdef FEAT_SEARCH_EXTRA
527 int break_loop = FALSE;
528 #else
529 # define break_loop FALSE
530 #endif
532 if (search_regcomp(pat, RE_SEARCH, pat_use,
533 (options & (SEARCH_HIS + SEARCH_KEEP)), &regmatch) == FAIL)
535 if ((options & SEARCH_MSG) && !rc_did_emsg)
536 EMSG2(_("E383: Invalid search string: %s"), mr_pattern);
537 return FAIL;
540 if (options & SEARCH_START)
541 extra_col = 0;
542 #ifdef FEAT_MBYTE
543 /* Watch out for the "col" being MAXCOL - 2, used in a closed fold. */
544 else if (has_mbyte && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count
545 && pos->col < MAXCOL - 2)
547 ptr = ml_get_buf(buf, pos->lnum, FALSE) + pos->col;
548 if (*ptr == NUL)
549 extra_col = 1;
550 else
551 extra_col = (*mb_ptr2len)(ptr);
553 #endif
554 else
555 extra_col = 1;
558 * find the string
560 called_emsg = FALSE;
561 do /* loop for count */
563 start_pos = *pos; /* remember start pos for detecting no match */
564 found = 0; /* default: not found */
565 at_first_line = TRUE; /* default: start in first line */
566 if (pos->lnum == 0) /* correct lnum for when starting in line 0 */
568 pos->lnum = 1;
569 pos->col = 0;
570 at_first_line = FALSE; /* not in first line now */
574 * Start searching in current line, unless searching backwards and
575 * we're in column 0.
577 if (dir == BACKWARD && start_pos.col == 0)
579 lnum = pos->lnum - 1;
580 at_first_line = FALSE;
582 else
583 lnum = pos->lnum;
585 for (loop = 0; loop <= 1; ++loop) /* loop twice if 'wrapscan' set */
587 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count;
588 lnum += dir, at_first_line = FALSE)
590 /* Stop after checking "stop_lnum", if it's set. */
591 if (stop_lnum != 0 && (dir == FORWARD
592 ? lnum > stop_lnum : lnum < stop_lnum))
593 break;
596 * Look for a match somewhere in line "lnum".
598 nmatched = vim_regexec_multi(&regmatch, win, buf,
599 lnum, (colnr_T)0);
600 /* Abort searching on an error (e.g., out of stack). */
601 if (called_emsg)
602 break;
603 if (nmatched > 0)
605 /* match may actually be in another line when using \zs */
606 matchpos = regmatch.startpos[0];
607 endpos = regmatch.endpos[0];
608 # ifdef FEAT_EVAL
609 submatch = first_submatch(&regmatch);
610 # endif
611 /* Line me be past end of buffer for "\n\zs". */
612 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count)
613 ptr = (char_u *)"";
614 else
615 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
618 * Forward search in the first line: match should be after
619 * the start position. If not, continue at the end of the
620 * match (this is vi compatible) or on the next char.
622 if (dir == FORWARD && at_first_line)
624 match_ok = TRUE;
626 * When the match starts in a next line it's certainly
627 * past the start position.
628 * When match lands on a NUL the cursor will be put
629 * one back afterwards, compare with that position,
630 * otherwise "/$" will get stuck on end of line.
632 while (matchpos.lnum == 0
633 && ((options & SEARCH_END)
634 ? (nmatched == 1
635 && (int)endpos.col - 1
636 < (int)start_pos.col + extra_col)
637 : ((int)matchpos.col
638 - (ptr[matchpos.col] == NUL)
639 < (int)start_pos.col + extra_col)))
642 * If vi-compatible searching, continue at the end
643 * of the match, otherwise continue one position
644 * forward.
646 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
648 if (nmatched > 1)
650 /* end is in next line, thus no match in
651 * this line */
652 match_ok = FALSE;
653 break;
655 matchcol = endpos.col;
656 /* for empty match: advance one char */
657 if (matchcol == matchpos.col
658 && ptr[matchcol] != NUL)
660 #ifdef FEAT_MBYTE
661 if (has_mbyte)
662 matchcol +=
663 (*mb_ptr2len)(ptr + matchcol);
664 else
665 #endif
666 ++matchcol;
669 else
671 matchcol = matchpos.col;
672 if (ptr[matchcol] != NUL)
674 #ifdef FEAT_MBYTE
675 if (has_mbyte)
676 matchcol += (*mb_ptr2len)(ptr
677 + matchcol);
678 else
679 #endif
680 ++matchcol;
683 if (ptr[matchcol] == NUL
684 || (nmatched = vim_regexec_multi(&regmatch,
685 win, buf, lnum + matchpos.lnum,
686 matchcol)) == 0)
688 match_ok = FALSE;
689 break;
691 matchpos = regmatch.startpos[0];
692 endpos = regmatch.endpos[0];
693 # ifdef FEAT_EVAL
694 submatch = first_submatch(&regmatch);
695 # endif
697 /* Need to get the line pointer again, a
698 * multi-line search may have made it invalid. */
699 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
701 if (!match_ok)
702 continue;
704 if (dir == BACKWARD)
707 * Now, if there are multiple matches on this line,
708 * we have to get the last one. Or the last one before
709 * the cursor, if we're on that line.
710 * When putting the new cursor at the end, compare
711 * relative to the end of the match.
713 match_ok = FALSE;
714 for (;;)
716 /* Remember a position that is before the start
717 * position, we use it if it's the last match in
718 * the line. Always accept a position after
719 * wrapping around. */
720 if (loop
721 || ((options & SEARCH_END)
722 ? (lnum + regmatch.endpos[0].lnum
723 < start_pos.lnum
724 || (lnum + regmatch.endpos[0].lnum
725 == start_pos.lnum
726 && (int)regmatch.endpos[0].col - 1
727 + extra_col
728 <= (int)start_pos.col))
729 : (lnum + regmatch.startpos[0].lnum
730 < start_pos.lnum
731 || (lnum + regmatch.startpos[0].lnum
732 == start_pos.lnum
733 && (int)regmatch.startpos[0].col
734 + extra_col
735 <= (int)start_pos.col))))
737 match_ok = TRUE;
738 matchpos = regmatch.startpos[0];
739 endpos = regmatch.endpos[0];
740 # ifdef FEAT_EVAL
741 submatch = first_submatch(&regmatch);
742 # endif
744 else
745 break;
748 * We found a valid match, now check if there is
749 * another one after it.
750 * If vi-compatible searching, continue at the end
751 * of the match, otherwise continue one position
752 * forward.
754 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL)
756 if (nmatched > 1)
757 break;
758 matchcol = endpos.col;
759 /* for empty match: advance one char */
760 if (matchcol == matchpos.col
761 && ptr[matchcol] != NUL)
763 #ifdef FEAT_MBYTE
764 if (has_mbyte)
765 matchcol +=
766 (*mb_ptr2len)(ptr + matchcol);
767 else
768 #endif
769 ++matchcol;
772 else
774 /* Stop when the match is in a next line. */
775 if (matchpos.lnum > 0)
776 break;
777 matchcol = matchpos.col;
778 if (ptr[matchcol] != NUL)
780 #ifdef FEAT_MBYTE
781 if (has_mbyte)
782 matchcol +=
783 (*mb_ptr2len)(ptr + matchcol);
784 else
785 #endif
786 ++matchcol;
789 if (ptr[matchcol] == NUL
790 || (nmatched = vim_regexec_multi(&regmatch,
791 win, buf, lnum + matchpos.lnum,
792 matchcol)) == 0)
793 break;
795 /* Need to get the line pointer again, a
796 * multi-line search may have made it invalid. */
797 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE);
801 * If there is only a match after the cursor, skip
802 * this match.
804 if (!match_ok)
805 continue;
808 if (options & SEARCH_END && !(options & SEARCH_NOOF))
810 pos->lnum = lnum + endpos.lnum;
811 pos->col = endpos.col - 1;
812 #ifdef FEAT_MBYTE
813 if (has_mbyte)
815 ptr = ml_get_buf(buf, pos->lnum, FALSE);
816 pos->col -= (*mb_head_off)(ptr, ptr + pos->col);
818 #endif
820 else
822 pos->lnum = lnum + matchpos.lnum;
823 pos->col = matchpos.col;
825 #ifdef FEAT_VIRTUALEDIT
826 pos->coladd = 0;
827 #endif
828 found = 1;
830 /* Set variables used for 'incsearch' highlighting. */
831 search_match_lines = endpos.lnum - matchpos.lnum;
832 search_match_endcol = endpos.col;
833 break;
835 line_breakcheck(); /* stop if ctrl-C typed */
836 if (got_int)
837 break;
839 #ifdef FEAT_SEARCH_EXTRA
840 /* Cancel searching if a character was typed. Used for
841 * 'incsearch'. Don't check too often, that would slowdown
842 * searching too much. */
843 if ((options & SEARCH_PEEK)
844 && ((lnum - pos->lnum) & 0x3f) == 0
845 && char_avail())
847 break_loop = TRUE;
848 break;
850 #endif
852 if (loop && lnum == start_pos.lnum)
853 break; /* if second loop, stop where started */
855 at_first_line = FALSE;
858 * Stop the search if wrapscan isn't set, "stop_lnum" is
859 * specified, after an interrupt, after a match and after looping
860 * twice.
862 if (!p_ws || stop_lnum != 0 || got_int || called_emsg
863 || break_loop || found || loop)
864 break;
867 * If 'wrapscan' is set we continue at the other end of the file.
868 * If 'shortmess' does not contain 's', we give a message.
869 * This message is also remembered in keep_msg for when the screen
870 * is redrawn. The keep_msg is cleared whenever another message is
871 * written.
873 if (dir == BACKWARD) /* start second loop at the other end */
874 lnum = buf->b_ml.ml_line_count;
875 else
876 lnum = 1;
877 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG))
878 give_warning((char_u *)_(dir == BACKWARD
879 ? top_bot_msg : bot_top_msg), TRUE);
881 if (got_int || called_emsg || break_loop)
882 break;
884 while (--count > 0 && found); /* stop after count matches or no match */
886 vim_free(regmatch.regprog);
888 called_emsg |= save_called_emsg;
890 if (!found) /* did not find it */
892 if (got_int)
893 EMSG(_(e_interr));
894 else if ((options & SEARCH_MSG) == SEARCH_MSG)
896 if (p_ws)
897 EMSG2(_(e_patnotf2), mr_pattern);
898 else if (lnum == 0)
899 EMSG2(_("E384: search hit TOP without match for: %s"),
900 mr_pattern);
901 else
902 EMSG2(_("E385: search hit BOTTOM without match for: %s"),
903 mr_pattern);
905 return FAIL;
908 /* A pattern like "\n\zs" may go past the last line. */
909 if (pos->lnum > buf->b_ml.ml_line_count)
911 pos->lnum = buf->b_ml.ml_line_count;
912 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE));
913 if (pos->col > 0)
914 --pos->col;
917 return submatch + 1;
920 #ifdef FEAT_EVAL
922 * Return the number of the first subpat that matched.
924 static int
925 first_submatch(rp)
926 regmmatch_T *rp;
928 int submatch;
930 for (submatch = 1; ; ++submatch)
932 if (rp->startpos[submatch].lnum >= 0)
933 break;
934 if (submatch == 9)
936 submatch = 0;
937 break;
940 return submatch;
942 #endif
945 * Highest level string search function.
946 * Search for the 'count'th occurence of pattern 'pat' in direction 'dirc'
947 * If 'dirc' is 0: use previous dir.
948 * If 'pat' is NULL or empty : use previous string.
949 * If 'options & SEARCH_REV' : go in reverse of previous dir.
950 * If 'options & SEARCH_ECHO': echo the search command and handle options
951 * If 'options & SEARCH_MSG' : may give error message
952 * If 'options & SEARCH_OPT' : interpret optional flags
953 * If 'options & SEARCH_HIS' : put search pattern in history
954 * If 'options & SEARCH_NOOF': don't add offset to position
955 * If 'options & SEARCH_MARK': set previous context mark
956 * If 'options & SEARCH_KEEP': keep previous search pattern
957 * If 'options & SEARCH_START': accept match at curpos itself
958 * If 'options & SEARCH_PEEK': check for typed char, cancel search
960 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this
961 * makes the movement linewise without moving the match position.
963 * return 0 for failure, 1 for found, 2 for found and line offset added
966 do_search(oap, dirc, pat, count, options)
967 oparg_T *oap; /* can be NULL */
968 int dirc; /* '/' or '?' */
969 char_u *pat;
970 long count;
971 int options;
973 pos_T pos; /* position of the last match */
974 char_u *searchstr;
975 struct soffset old_off;
976 int retval; /* Return value */
977 char_u *p;
978 long c;
979 char_u *dircp;
980 char_u *strcopy = NULL;
981 char_u *ps;
984 * A line offset is not remembered, this is vi compatible.
986 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL)
988 spats[0].off.line = FALSE;
989 spats[0].off.off = 0;
993 * Save the values for when (options & SEARCH_KEEP) is used.
994 * (there is no "if ()" around this because gcc wants them initialized)
996 old_off = spats[0].off;
998 pos = curwin->w_cursor; /* start searching at the cursor position */
1001 * Find out the direction of the search.
1003 if (dirc == 0)
1004 dirc = spats[0].off.dir;
1005 else
1006 spats[0].off.dir = dirc;
1007 if (options & SEARCH_REV)
1009 #ifdef WIN32
1010 /* There is a bug in the Visual C++ 2.2 compiler which means that
1011 * dirc always ends up being '/' */
1012 dirc = (dirc == '/') ? '?' : '/';
1013 #else
1014 if (dirc == '/')
1015 dirc = '?';
1016 else
1017 dirc = '/';
1018 #endif
1021 #ifdef FEAT_FOLDING
1022 /* If the cursor is in a closed fold, don't find another match in the same
1023 * fold. */
1024 if (dirc == '/')
1026 if (hasFolding(pos.lnum, NULL, &pos.lnum))
1027 pos.col = MAXCOL - 2; /* avoid overflow when adding 1 */
1029 else
1031 if (hasFolding(pos.lnum, &pos.lnum, NULL))
1032 pos.col = 0;
1034 #endif
1036 #ifdef FEAT_SEARCH_EXTRA
1038 * Turn 'hlsearch' highlighting back on.
1040 if (no_hlsearch && !(options & SEARCH_KEEP))
1042 redraw_all_later(SOME_VALID);
1043 no_hlsearch = FALSE;
1045 #endif
1048 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar".
1050 for (;;)
1052 searchstr = pat;
1053 dircp = NULL;
1054 /* use previous pattern */
1055 if (pat == NULL || *pat == NUL || *pat == dirc)
1057 if (spats[RE_SEARCH].pat == NULL) /* no previous pattern */
1059 EMSG(_(e_noprevre));
1060 retval = 0;
1061 goto end_do_search;
1063 /* make search_regcomp() use spats[RE_SEARCH].pat */
1064 searchstr = (char_u *)"";
1067 if (pat != NULL && *pat != NUL) /* look for (new) offset */
1070 * Find end of regular expression.
1071 * If there is a matching '/' or '?', toss it.
1073 ps = strcopy;
1074 p = skip_regexp(pat, dirc, (int)p_magic, &strcopy);
1075 if (strcopy != ps)
1077 /* made a copy of "pat" to change "\?" to "?" */
1078 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy));
1079 pat = strcopy;
1080 searchstr = strcopy;
1082 if (*p == dirc)
1084 dircp = p; /* remember where we put the NUL */
1085 *p++ = NUL;
1087 spats[0].off.line = FALSE;
1088 spats[0].off.end = FALSE;
1089 spats[0].off.off = 0;
1091 * Check for a line offset or a character offset.
1092 * For get_address (echo off) we don't check for a character
1093 * offset, because it is meaningless and the 's' could be a
1094 * substitute command.
1096 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p))
1097 spats[0].off.line = TRUE;
1098 else if ((options & SEARCH_OPT) &&
1099 (*p == 'e' || *p == 's' || *p == 'b'))
1101 if (*p == 'e') /* end */
1102 spats[0].off.end = SEARCH_END;
1103 ++p;
1105 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') /* got an offset */
1107 /* 'nr' or '+nr' or '-nr' */
1108 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1)))
1109 spats[0].off.off = atol((char *)p);
1110 else if (*p == '-') /* single '-' */
1111 spats[0].off.off = -1;
1112 else /* single '+' */
1113 spats[0].off.off = 1;
1114 ++p;
1115 while (VIM_ISDIGIT(*p)) /* skip number */
1116 ++p;
1119 /* compute length of search command for get_address() */
1120 searchcmdlen += (int)(p - pat);
1122 pat = p; /* put pat after search command */
1125 if ((options & SEARCH_ECHO) && messaging()
1126 && !cmd_silent && msg_silent == 0)
1128 char_u *msgbuf;
1129 char_u *trunc;
1131 if (*searchstr == NUL)
1132 p = spats[last_idx].pat;
1133 else
1134 p = searchstr;
1135 msgbuf = alloc((unsigned)(STRLEN(p) + 40));
1136 if (msgbuf != NULL)
1138 msgbuf[0] = dirc;
1139 #ifdef FEAT_MBYTE
1140 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p)))
1142 /* Use a space to draw the composing char on. */
1143 msgbuf[1] = ' ';
1144 STRCPY(msgbuf + 2, p);
1146 else
1147 #endif
1148 STRCPY(msgbuf + 1, p);
1149 if (spats[0].off.line || spats[0].off.end || spats[0].off.off)
1151 p = msgbuf + STRLEN(msgbuf);
1152 *p++ = dirc;
1153 if (spats[0].off.end)
1154 *p++ = 'e';
1155 else if (!spats[0].off.line)
1156 *p++ = 's';
1157 if (spats[0].off.off > 0 || spats[0].off.line)
1158 *p++ = '+';
1159 if (spats[0].off.off != 0 || spats[0].off.line)
1160 sprintf((char *)p, "%ld", spats[0].off.off);
1161 else
1162 *p = NUL;
1165 msg_start();
1166 trunc = msg_strtrunc(msgbuf, FALSE);
1168 #ifdef FEAT_RIGHTLEFT
1169 /* The search pattern could be shown on the right in rightleft
1170 * mode, but the 'ruler' and 'showcmd' area use it too, thus
1171 * it would be blanked out again very soon. Show it on the
1172 * left, but do reverse the text. */
1173 if (curwin->w_p_rl && *curwin->w_p_rlc == 's')
1175 char_u *r;
1177 r = reverse_text(trunc != NULL ? trunc : msgbuf);
1178 if (r != NULL)
1180 vim_free(trunc);
1181 trunc = r;
1184 #endif
1185 if (trunc != NULL)
1187 msg_outtrans(trunc);
1188 vim_free(trunc);
1190 else
1191 msg_outtrans(msgbuf);
1192 msg_clr_eos();
1193 msg_check();
1194 vim_free(msgbuf);
1196 gotocmdline(FALSE);
1197 out_flush();
1198 msg_nowait = TRUE; /* don't wait for this message */
1203 * If there is a character offset, subtract it from the current
1204 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2".
1205 * Skip this if pos.col is near MAXCOL (closed fold).
1206 * This is not done for a line offset, because then we would not be vi
1207 * compatible.
1209 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2)
1211 if (spats[0].off.off > 0)
1213 for (c = spats[0].off.off; c; --c)
1214 if (decl(&pos) == -1)
1215 break;
1216 if (c) /* at start of buffer */
1218 pos.lnum = 0; /* allow lnum == 0 here */
1219 pos.col = MAXCOL;
1222 else
1224 for (c = spats[0].off.off; c; ++c)
1225 if (incl(&pos) == -1)
1226 break;
1227 if (c) /* at end of buffer */
1229 pos.lnum = curbuf->b_ml.ml_line_count + 1;
1230 pos.col = 0;
1235 #ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
1236 if (p_altkeymap && curwin->w_p_rl)
1237 lrFswap(searchstr,0);
1238 #endif
1240 c = searchit(curwin, curbuf, &pos, dirc == '/' ? FORWARD : BACKWARD,
1241 searchstr, count, spats[0].off.end + (options &
1242 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS
1243 + SEARCH_MSG + SEARCH_START
1244 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))),
1245 RE_LAST, (linenr_T)0);
1247 if (dircp != NULL)
1248 *dircp = dirc; /* restore second '/' or '?' for normal_cmd() */
1249 if (c == FAIL)
1251 retval = 0;
1252 goto end_do_search;
1254 if (spats[0].off.end && oap != NULL)
1255 oap->inclusive = TRUE; /* 'e' includes last character */
1257 retval = 1; /* pattern found */
1260 * Add character and/or line offset
1262 if (!(options & SEARCH_NOOF) || *pat == ';')
1264 if (spats[0].off.line) /* Add the offset to the line number. */
1266 c = pos.lnum + spats[0].off.off;
1267 if (c < 1)
1268 pos.lnum = 1;
1269 else if (c > curbuf->b_ml.ml_line_count)
1270 pos.lnum = curbuf->b_ml.ml_line_count;
1271 else
1272 pos.lnum = c;
1273 pos.col = 0;
1275 retval = 2; /* pattern found, line offset added */
1277 else if (pos.col < MAXCOL - 2) /* just in case */
1279 /* to the right, check for end of file */
1280 if (spats[0].off.off > 0)
1282 for (c = spats[0].off.off; c; --c)
1283 if (incl(&pos) == -1)
1284 break;
1286 /* to the left, check for start of file */
1287 else
1289 if ((c = pos.col + spats[0].off.off) >= 0)
1290 pos.col = c;
1291 else
1292 for (c = spats[0].off.off; c; ++c)
1293 if (decl(&pos) == -1)
1294 break;
1300 * The search command can be followed by a ';' to do another search.
1301 * For example: "/pat/;/foo/+3;?bar"
1302 * This is like doing another search command, except:
1303 * - The remembered direction '/' or '?' is from the first search.
1304 * - When an error happens the cursor isn't moved at all.
1305 * Don't do this when called by get_address() (it handles ';' itself).
1307 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';')
1308 break;
1310 dirc = *++pat;
1311 if (dirc != '?' && dirc != '/')
1313 retval = 0;
1314 EMSG(_("E386: Expected '?' or '/' after ';'"));
1315 goto end_do_search;
1317 ++pat;
1320 if (options & SEARCH_MARK)
1321 setpcmark();
1322 curwin->w_cursor = pos;
1323 curwin->w_set_curswant = TRUE;
1325 end_do_search:
1326 if (options & SEARCH_KEEP)
1327 spats[0].off = old_off;
1328 vim_free(strcopy);
1330 return retval;
1333 #if defined(FEAT_INS_EXPAND) || defined(PROTO)
1335 * search_for_exact_line(buf, pos, dir, pat)
1337 * Search for a line starting with the given pattern (ignoring leading
1338 * white-space), starting from pos and going in direction dir. pos will
1339 * contain the position of the match found. Blank lines match only if
1340 * ADDING is set. if p_ic is set then the pattern must be in lowercase.
1341 * Return OK for success, or FAIL if no line found.
1344 search_for_exact_line(buf, pos, dir, pat)
1345 buf_T *buf;
1346 pos_T *pos;
1347 int dir;
1348 char_u *pat;
1350 linenr_T start = 0;
1351 char_u *ptr;
1352 char_u *p;
1354 if (buf->b_ml.ml_line_count == 0)
1355 return FAIL;
1356 for (;;)
1358 pos->lnum += dir;
1359 if (pos->lnum < 1)
1361 if (p_ws)
1363 pos->lnum = buf->b_ml.ml_line_count;
1364 if (!shortmess(SHM_SEARCH))
1365 give_warning((char_u *)_(top_bot_msg), TRUE);
1367 else
1369 pos->lnum = 1;
1370 break;
1373 else if (pos->lnum > buf->b_ml.ml_line_count)
1375 if (p_ws)
1377 pos->lnum = 1;
1378 if (!shortmess(SHM_SEARCH))
1379 give_warning((char_u *)_(bot_top_msg), TRUE);
1381 else
1383 pos->lnum = 1;
1384 break;
1387 if (pos->lnum == start)
1388 break;
1389 if (start == 0)
1390 start = pos->lnum;
1391 ptr = ml_get_buf(buf, pos->lnum, FALSE);
1392 p = skipwhite(ptr);
1393 pos->col = (colnr_T) (p - ptr);
1395 /* when adding lines the matching line may be empty but it is not
1396 * ignored because we are interested in the next line -- Acevedo */
1397 if ((compl_cont_status & CONT_ADDING)
1398 && !(compl_cont_status & CONT_SOL))
1400 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0)
1401 return OK;
1403 else if (*p != NUL) /* ignore empty lines */
1404 { /* expanding lines or words */
1405 if ((p_ic ? MB_STRNICMP(p, pat, compl_length)
1406 : STRNCMP(p, pat, compl_length)) == 0)
1407 return OK;
1410 return FAIL;
1412 #endif /* FEAT_INS_EXPAND */
1415 * Character Searches
1419 * Search for a character in a line. If "t_cmd" is FALSE, move to the
1420 * position of the character, otherwise move to just before the char.
1421 * Do this "cap->count1" times.
1422 * Return FAIL or OK.
1425 searchc(cap, t_cmd)
1426 cmdarg_T *cap;
1427 int t_cmd;
1429 int c = cap->nchar; /* char to search for */
1430 int dir = cap->arg; /* TRUE for searching forward */
1431 long count = cap->count1; /* repeat count */
1432 static int lastc = NUL; /* last character searched for */
1433 static int lastcdir; /* last direction of character search */
1434 static int last_t_cmd; /* last search t_cmd */
1435 int col;
1436 char_u *p;
1437 int len;
1438 #ifdef FEAT_MBYTE
1439 static char_u bytes[MB_MAXBYTES];
1440 static int bytelen = 1; /* >1 for multi-byte char */
1441 #endif
1443 if (c != NUL) /* normal search: remember args for repeat */
1445 if (!KeyStuffed) /* don't remember when redoing */
1447 lastc = c;
1448 lastcdir = dir;
1449 last_t_cmd = t_cmd;
1450 #ifdef FEAT_MBYTE
1451 bytelen = (*mb_char2bytes)(c, bytes);
1452 if (cap->ncharC1 != 0)
1454 bytelen += (*mb_char2bytes)(cap->ncharC1, bytes + bytelen);
1455 if (cap->ncharC2 != 0)
1456 bytelen += (*mb_char2bytes)(cap->ncharC2, bytes + bytelen);
1458 #endif
1461 else /* repeat previous search */
1463 if (lastc == NUL)
1464 return FAIL;
1465 if (dir) /* repeat in opposite direction */
1466 dir = -lastcdir;
1467 else
1468 dir = lastcdir;
1469 t_cmd = last_t_cmd;
1470 c = lastc;
1471 /* For multi-byte re-use last bytes[] and bytelen. */
1474 if (dir == BACKWARD)
1475 cap->oap->inclusive = FALSE;
1476 else
1477 cap->oap->inclusive = TRUE;
1479 p = ml_get_curline();
1480 col = curwin->w_cursor.col;
1481 len = (int)STRLEN(p);
1483 while (count--)
1485 #ifdef FEAT_MBYTE
1486 if (has_mbyte)
1488 for (;;)
1490 if (dir > 0)
1492 col += (*mb_ptr2len)(p + col);
1493 if (col >= len)
1494 return FAIL;
1496 else
1498 if (col == 0)
1499 return FAIL;
1500 col -= (*mb_head_off)(p, p + col - 1) + 1;
1502 if (bytelen == 1)
1504 if (p[col] == c)
1505 break;
1507 else
1509 if (vim_memcmp(p + col, bytes, bytelen) == 0)
1510 break;
1514 else
1515 #endif
1517 for (;;)
1519 if ((col += dir) < 0 || col >= len)
1520 return FAIL;
1521 if (p[col] == c)
1522 break;
1527 if (t_cmd)
1529 /* backup to before the character (possibly double-byte) */
1530 col -= dir;
1531 #ifdef FEAT_MBYTE
1532 if (has_mbyte)
1534 if (dir < 0)
1535 /* Landed on the search char which is bytelen long */
1536 col += bytelen - 1;
1537 else
1538 /* To previous char, which may be multi-byte. */
1539 col -= (*mb_head_off)(p, p + col);
1541 #endif
1543 curwin->w_cursor.col = col;
1545 return OK;
1549 * "Other" Searches
1553 * findmatch - find the matching paren or brace
1555 * Improvement over vi: Braces inside quotes are ignored.
1557 pos_T *
1558 findmatch(oap, initc)
1559 oparg_T *oap;
1560 int initc;
1562 return findmatchlimit(oap, initc, 0, 0);
1566 * Return TRUE if the character before "linep[col]" equals "ch".
1567 * Return FALSE if "col" is zero.
1568 * Update "*prevcol" to the column of the previous character, unless "prevcol"
1569 * is NULL.
1570 * Handles multibyte string correctly.
1572 static int
1573 check_prevcol(linep, col, ch, prevcol)
1574 char_u *linep;
1575 int col;
1576 int ch;
1577 int *prevcol;
1579 --col;
1580 #ifdef FEAT_MBYTE
1581 if (col > 0 && has_mbyte)
1582 col -= (*mb_head_off)(linep, linep + col);
1583 #endif
1584 if (prevcol)
1585 *prevcol = col;
1586 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1590 * findmatchlimit -- find the matching paren or brace, if it exists within
1591 * maxtravel lines of here. A maxtravel of 0 means search until falling off
1592 * the edge of the file.
1594 * "initc" is the character to find a match for. NUL means to find the
1595 * character at or after the cursor.
1597 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#')
1598 * FM_FORWARD search forwards (when initc is '/', '*' or '#')
1599 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0)
1600 * FM_SKIPCOMM skip comments (not implemented yet!)
1602 * "oap" is only used to set oap->motion_type for a linewise motion, it be
1603 * NULL
1606 pos_T *
1607 findmatchlimit(oap, initc, flags, maxtravel)
1608 oparg_T *oap;
1609 int initc;
1610 int flags;
1611 int maxtravel;
1613 static pos_T pos; /* current search position */
1614 int findc = 0; /* matching brace */
1615 int c;
1616 int count = 0; /* cumulative number of braces */
1617 int backwards = FALSE; /* init for gcc */
1618 int inquote = FALSE; /* TRUE when inside quotes */
1619 char_u *linep; /* pointer to current line */
1620 char_u *ptr;
1621 int do_quotes; /* check for quotes in current line */
1622 int at_start; /* do_quotes value at start position */
1623 int hash_dir = 0; /* Direction searched for # things */
1624 int comment_dir = 0; /* Direction searched for comments */
1625 pos_T match_pos; /* Where last slash-star was found */
1626 int start_in_quotes; /* start position is in quotes */
1627 int traveled = 0; /* how far we've searched so far */
1628 int ignore_cend = FALSE; /* ignore comment end */
1629 int cpo_match; /* vi compatible matching */
1630 int cpo_bsl; /* don't recognize backslashes */
1631 int match_escaped = 0; /* search for escaped match */
1632 int dir; /* Direction to search */
1633 int comment_col = MAXCOL; /* start of / / comment */
1634 #ifdef FEAT_LISP
1635 int lispcomm = FALSE; /* inside of Lisp-style comment */
1636 int lisp = curbuf->b_p_lisp; /* engage Lisp-specific hacks ;) */
1637 #endif
1639 pos = curwin->w_cursor;
1640 linep = ml_get(pos.lnum);
1642 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL);
1643 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL);
1645 /* Direction to search when initc is '/', '*' or '#' */
1646 if (flags & FM_BACKWARD)
1647 dir = BACKWARD;
1648 else if (flags & FM_FORWARD)
1649 dir = FORWARD;
1650 else
1651 dir = 0;
1654 * if initc given, look in the table for the matching character
1655 * '/' and '*' are special cases: look for start or end of comment.
1656 * When '/' is used, we ignore running backwards into an star-slash, for
1657 * "[*" command, we just want to find any comment.
1659 if (initc == '/' || initc == '*')
1661 comment_dir = dir;
1662 if (initc == '/')
1663 ignore_cend = TRUE;
1664 backwards = (dir == FORWARD) ? FALSE : TRUE;
1665 initc = NUL;
1667 else if (initc != '#' && initc != NUL)
1669 /* 'matchpairs' is "x:y,x:y" */
1670 for (ptr = curbuf->b_p_mps; *ptr; ptr += 2)
1672 if (*ptr == initc)
1674 findc = initc;
1675 initc = ptr[2];
1676 backwards = TRUE;
1677 break;
1679 ptr += 2;
1680 if (*ptr == initc)
1682 findc = initc;
1683 initc = ptr[-2];
1684 backwards = FALSE;
1685 break;
1687 if (ptr[1] != ',')
1688 break;
1690 if (!findc) /* invalid initc! */
1691 return NULL;
1694 * Either initc is '#', or no initc was given and we need to look under the
1695 * cursor.
1697 else
1699 if (initc == '#')
1701 hash_dir = dir;
1703 else
1706 * initc was not given, must look for something to match under
1707 * or near the cursor.
1708 * Only check for special things when 'cpo' doesn't have '%'.
1710 if (!cpo_match)
1712 /* Are we before or at #if, #else etc.? */
1713 ptr = skipwhite(linep);
1714 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep))
1716 ptr = skipwhite(ptr + 1);
1717 if ( STRNCMP(ptr, "if", 2) == 0
1718 || STRNCMP(ptr, "endif", 5) == 0
1719 || STRNCMP(ptr, "el", 2) == 0)
1720 hash_dir = 1;
1723 /* Are we on a comment? */
1724 else if (linep[pos.col] == '/')
1726 if (linep[pos.col + 1] == '*')
1728 comment_dir = FORWARD;
1729 backwards = FALSE;
1730 pos.col++;
1732 else if (pos.col > 0 && linep[pos.col - 1] == '*')
1734 comment_dir = BACKWARD;
1735 backwards = TRUE;
1736 pos.col--;
1739 else if (linep[pos.col] == '*')
1741 if (linep[pos.col + 1] == '/')
1743 comment_dir = BACKWARD;
1744 backwards = TRUE;
1746 else if (pos.col > 0 && linep[pos.col - 1] == '/')
1748 comment_dir = FORWARD;
1749 backwards = FALSE;
1755 * If we are not on a comment or the # at the start of a line, then
1756 * look for brace anywhere on this line after the cursor.
1758 if (!hash_dir && !comment_dir)
1761 * Find the brace under or after the cursor.
1762 * If beyond the end of the line, use the last character in
1763 * the line.
1765 if (linep[pos.col] == NUL && pos.col)
1766 --pos.col;
1767 for (;;)
1769 initc = linep[pos.col];
1770 if (initc == NUL)
1771 break;
1773 for (ptr = curbuf->b_p_mps; *ptr; ++ptr)
1775 if (*ptr == initc)
1777 findc = ptr[2];
1778 backwards = FALSE;
1779 break;
1781 ptr += 2;
1782 if (*ptr == initc)
1784 findc = ptr[-2];
1785 backwards = TRUE;
1786 break;
1788 if (!*++ptr)
1789 break;
1791 if (findc)
1792 break;
1793 #ifdef FEAT_MBYTE
1794 if (has_mbyte)
1795 pos.col += (*mb_ptr2len)(linep + pos.col);
1796 else
1797 #endif
1798 ++pos.col;
1800 if (!findc)
1802 /* no brace in the line, maybe use " #if" then */
1803 if (!cpo_match && *skipwhite(linep) == '#')
1804 hash_dir = 1;
1805 else
1806 return NULL;
1808 else if (!cpo_bsl)
1810 int col, bslcnt = 0;
1812 /* Set "match_escaped" if there are an odd number of
1813 * backslashes. */
1814 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
1815 bslcnt++;
1816 match_escaped = (bslcnt & 1);
1820 if (hash_dir)
1823 * Look for matching #if, #else, #elif, or #endif
1825 if (oap != NULL)
1826 oap->motion_type = MLINE; /* Linewise for this case only */
1827 if (initc != '#')
1829 ptr = skipwhite(skipwhite(linep) + 1);
1830 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0)
1831 hash_dir = 1;
1832 else if (STRNCMP(ptr, "endif", 5) == 0)
1833 hash_dir = -1;
1834 else
1835 return NULL;
1837 pos.col = 0;
1838 while (!got_int)
1840 if (hash_dir > 0)
1842 if (pos.lnum == curbuf->b_ml.ml_line_count)
1843 break;
1845 else if (pos.lnum == 1)
1846 break;
1847 pos.lnum += hash_dir;
1848 linep = ml_get(pos.lnum);
1849 line_breakcheck(); /* check for CTRL-C typed */
1850 ptr = skipwhite(linep);
1851 if (*ptr != '#')
1852 continue;
1853 pos.col = (colnr_T) (ptr - linep);
1854 ptr = skipwhite(ptr + 1);
1855 if (hash_dir > 0)
1857 if (STRNCMP(ptr, "if", 2) == 0)
1858 count++;
1859 else if (STRNCMP(ptr, "el", 2) == 0)
1861 if (count == 0)
1862 return &pos;
1864 else if (STRNCMP(ptr, "endif", 5) == 0)
1866 if (count == 0)
1867 return &pos;
1868 count--;
1871 else
1873 if (STRNCMP(ptr, "if", 2) == 0)
1875 if (count == 0)
1876 return &pos;
1877 count--;
1879 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0)
1881 if (count == 0)
1882 return &pos;
1884 else if (STRNCMP(ptr, "endif", 5) == 0)
1885 count++;
1888 return NULL;
1892 #ifdef FEAT_RIGHTLEFT
1893 /* This is just guessing: when 'rightleft' is set, search for a maching
1894 * paren/brace in the other direction. */
1895 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL)
1896 backwards = !backwards;
1897 #endif
1899 do_quotes = -1;
1900 start_in_quotes = MAYBE;
1901 clearpos(&match_pos);
1903 /* backward search: Check if this line contains a single-line comment */
1904 if ((backwards && comment_dir)
1905 #ifdef FEAT_LISP
1906 || lisp
1907 #endif
1909 comment_col = check_linecomment(linep);
1910 #ifdef FEAT_LISP
1911 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col)
1912 lispcomm = TRUE; /* find match inside this comment */
1913 #endif
1914 while (!got_int)
1917 * Go to the next position, forward or backward. We could use
1918 * inc() and dec() here, but that is much slower
1920 if (backwards)
1922 #ifdef FEAT_LISP
1923 /* char to match is inside of comment, don't search outside */
1924 if (lispcomm && pos.col < (colnr_T)comment_col)
1925 break;
1926 #endif
1927 if (pos.col == 0) /* at start of line, go to prev. one */
1929 if (pos.lnum == 1) /* start of file */
1930 break;
1931 --pos.lnum;
1933 if (maxtravel > 0 && ++traveled > maxtravel)
1934 break;
1936 linep = ml_get(pos.lnum);
1937 pos.col = (colnr_T)STRLEN(linep); /* pos.col on trailing NUL */
1938 do_quotes = -1;
1939 line_breakcheck();
1941 /* Check if this line contains a single-line comment */
1942 if (comment_dir
1943 #ifdef FEAT_LISP
1944 || lisp
1945 #endif
1947 comment_col = check_linecomment(linep);
1948 #ifdef FEAT_LISP
1949 /* skip comment */
1950 if (lisp && comment_col != MAXCOL)
1951 pos.col = comment_col;
1952 #endif
1954 else
1956 --pos.col;
1957 #ifdef FEAT_MBYTE
1958 if (has_mbyte)
1959 pos.col -= (*mb_head_off)(linep, linep + pos.col);
1960 #endif
1963 else /* forward search */
1965 if (linep[pos.col] == NUL
1966 /* at end of line, go to next one */
1967 #ifdef FEAT_LISP
1968 /* don't search for match in comment */
1969 || (lisp && comment_col != MAXCOL
1970 && pos.col == (colnr_T)comment_col)
1971 #endif
1974 if (pos.lnum == curbuf->b_ml.ml_line_count /* end of file */
1975 #ifdef FEAT_LISP
1976 /* line is exhausted and comment with it,
1977 * don't search for match in code */
1978 || lispcomm
1979 #endif
1981 break;
1982 ++pos.lnum;
1984 if (maxtravel && traveled++ > maxtravel)
1985 break;
1987 linep = ml_get(pos.lnum);
1988 pos.col = 0;
1989 do_quotes = -1;
1990 line_breakcheck();
1991 #ifdef FEAT_LISP
1992 if (lisp) /* find comment pos in new line */
1993 comment_col = check_linecomment(linep);
1994 #endif
1996 else
1998 #ifdef FEAT_MBYTE
1999 if (has_mbyte)
2000 pos.col += (*mb_ptr2len)(linep + pos.col);
2001 else
2002 #endif
2003 ++pos.col;
2008 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0.
2010 if (pos.col == 0 && (flags & FM_BLOCKSTOP) &&
2011 (linep[0] == '{' || linep[0] == '}'))
2013 if (linep[0] == findc && count == 0) /* match! */
2014 return &pos;
2015 break; /* out of scope */
2018 if (comment_dir)
2020 /* Note: comments do not nest, and we ignore quotes in them */
2021 /* TODO: ignore comment brackets inside strings */
2022 if (comment_dir == FORWARD)
2024 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/')
2026 pos.col++;
2027 return &pos;
2030 else /* Searching backwards */
2033 * A comment may contain / * or / /, it may also start or end
2034 * with / * /. Ignore a / * after / /.
2036 if (pos.col == 0)
2037 continue;
2038 else if ( linep[pos.col - 1] == '/'
2039 && linep[pos.col] == '*'
2040 && (int)pos.col < comment_col)
2042 count++;
2043 match_pos = pos;
2044 match_pos.col--;
2046 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/')
2048 if (count > 0)
2049 pos = match_pos;
2050 else if (pos.col > 1 && linep[pos.col - 2] == '/'
2051 && (int)pos.col <= comment_col)
2052 pos.col -= 2;
2053 else if (ignore_cend)
2054 continue;
2055 else
2056 return NULL;
2057 return &pos;
2060 continue;
2064 * If smart matching ('cpoptions' does not contain '%'), braces inside
2065 * of quotes are ignored, but only if there is an even number of
2066 * quotes in the line.
2068 if (cpo_match)
2069 do_quotes = 0;
2070 else if (do_quotes == -1)
2073 * Count the number of quotes in the line, skipping \" and '"'.
2074 * Watch out for "\\".
2076 at_start = do_quotes;
2077 for (ptr = linep; *ptr; ++ptr)
2079 if (ptr == linep + pos.col + backwards)
2080 at_start = (do_quotes & 1);
2081 if (*ptr == '"'
2082 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\''))
2083 ++do_quotes;
2084 if (*ptr == '\\' && ptr[1] != NUL)
2085 ++ptr;
2087 do_quotes &= 1; /* result is 1 with even number of quotes */
2090 * If we find an uneven count, check current line and previous
2091 * one for a '\' at the end.
2093 if (!do_quotes)
2095 inquote = FALSE;
2096 if (ptr[-1] == '\\')
2098 do_quotes = 1;
2099 if (start_in_quotes == MAYBE)
2101 /* Do we need to use at_start here? */
2102 inquote = TRUE;
2103 start_in_quotes = TRUE;
2105 else if (backwards)
2106 inquote = TRUE;
2108 if (pos.lnum > 1)
2110 ptr = ml_get(pos.lnum - 1);
2111 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\')
2113 do_quotes = 1;
2114 if (start_in_quotes == MAYBE)
2116 inquote = at_start;
2117 if (inquote)
2118 start_in_quotes = TRUE;
2120 else if (!backwards)
2121 inquote = TRUE;
2126 if (start_in_quotes == MAYBE)
2127 start_in_quotes = FALSE;
2130 * If 'smartmatch' is set:
2131 * Things inside quotes are ignored by setting 'inquote'. If we
2132 * find a quote without a preceding '\' invert 'inquote'. At the
2133 * end of a line not ending in '\' we reset 'inquote'.
2135 * In lines with an uneven number of quotes (without preceding '\')
2136 * we do not know which part to ignore. Therefore we only set
2137 * inquote if the number of quotes in a line is even, unless this
2138 * line or the previous one ends in a '\'. Complicated, isn't it?
2140 switch (c = linep[pos.col])
2142 case NUL:
2143 /* at end of line without trailing backslash, reset inquote */
2144 if (pos.col == 0 || linep[pos.col - 1] != '\\')
2146 inquote = FALSE;
2147 start_in_quotes = FALSE;
2149 break;
2151 case '"':
2152 /* a quote that is preceded with an odd number of backslashes is
2153 * ignored */
2154 if (do_quotes)
2156 int col;
2158 for (col = pos.col - 1; col >= 0; --col)
2159 if (linep[col] != '\\')
2160 break;
2161 if ((((int)pos.col - 1 - col) & 1) == 0)
2163 inquote = !inquote;
2164 start_in_quotes = FALSE;
2167 break;
2170 * If smart matching ('cpoptions' does not contain '%'):
2171 * Skip things in single quotes: 'x' or '\x'. Be careful for single
2172 * single quotes, eg jon's. Things like '\233' or '\x3f' are not
2173 * skipped, there is never a brace in them.
2174 * Ignore this when finding matches for `'.
2176 case '\'':
2177 if (!cpo_match && initc != '\'' && findc != '\'')
2179 if (backwards)
2181 if (pos.col > 1)
2183 if (linep[pos.col - 2] == '\'')
2185 pos.col -= 2;
2186 break;
2188 else if (linep[pos.col - 2] == '\\' &&
2189 pos.col > 2 && linep[pos.col - 3] == '\'')
2191 pos.col -= 3;
2192 break;
2196 else if (linep[pos.col + 1]) /* forward search */
2198 if (linep[pos.col + 1] == '\\' &&
2199 linep[pos.col + 2] && linep[pos.col + 3] == '\'')
2201 pos.col += 3;
2202 break;
2204 else if (linep[pos.col + 2] == '\'')
2206 pos.col += 2;
2207 break;
2211 /* FALLTHROUGH */
2213 default:
2214 #ifdef FEAT_LISP
2216 * For Lisp skip over backslashed (), {} and [].
2217 * (actually, we skip #\( et al)
2219 if (curbuf->b_p_lisp
2220 && vim_strchr((char_u *)"(){}[]", c) != NULL
2221 && pos.col > 1
2222 && check_prevcol(linep, pos.col, '\\', NULL)
2223 && check_prevcol(linep, pos.col - 1, '#', NULL))
2224 break;
2225 #endif
2227 /* Check for match outside of quotes, and inside of
2228 * quotes when the start is also inside of quotes. */
2229 if ((!inquote || start_in_quotes == TRUE)
2230 && (c == initc || c == findc))
2232 int col, bslcnt = 0;
2234 if (!cpo_bsl)
2236 for (col = pos.col; check_prevcol(linep, col, '\\', &col);)
2237 bslcnt++;
2239 /* Only accept a match when 'M' is in 'cpo' or when ecaping is
2240 * what we expect. */
2241 if (cpo_bsl || (bslcnt & 1) == match_escaped)
2243 if (c == initc)
2244 count++;
2245 else
2247 if (count == 0)
2248 return &pos;
2249 count--;
2256 if (comment_dir == BACKWARD && count > 0)
2258 pos = match_pos;
2259 return &pos;
2261 return (pos_T *)NULL; /* never found it */
2265 * Check if line[] contains a / / comment.
2266 * Return MAXCOL if not, otherwise return the column.
2267 * TODO: skip strings.
2269 static int
2270 check_linecomment(line)
2271 char_u *line;
2273 char_u *p;
2275 p = line;
2276 #ifdef FEAT_LISP
2277 /* skip Lispish one-line comments */
2278 if (curbuf->b_p_lisp)
2280 if (vim_strchr(p, ';') != NULL) /* there may be comments */
2282 int instr = FALSE; /* inside of string */
2284 p = line; /* scan from start */
2285 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL)
2287 if (*p == '"')
2289 if (instr)
2291 if (*(p - 1) != '\\') /* skip escaped quote */
2292 instr = FALSE;
2294 else if (p == line || ((p - line) >= 2
2295 /* skip #\" form */
2296 && *(p - 1) != '\\' && *(p - 2) != '#'))
2297 instr = TRUE;
2299 else if (!instr && ((p - line) < 2
2300 || (*(p - 1) != '\\' && *(p - 2) != '#')))
2301 break; /* found! */
2302 ++p;
2305 else
2306 p = NULL;
2308 else
2309 #endif
2310 while ((p = vim_strchr(p, '/')) != NULL)
2312 if (p[1] == '/')
2313 break;
2314 ++p;
2317 if (p == NULL)
2318 return MAXCOL;
2319 return (int)(p - line);
2323 * Move cursor briefly to character matching the one under the cursor.
2324 * Used for Insert mode and "r" command.
2325 * Show the match only if it is visible on the screen.
2326 * If there isn't a match, then beep.
2328 void
2329 showmatch(c)
2330 int c; /* char to show match for */
2332 pos_T *lpos, save_cursor;
2333 pos_T mpos;
2334 colnr_T vcol;
2335 long save_so;
2336 long save_siso;
2337 #ifdef CURSOR_SHAPE
2338 int save_state;
2339 #endif
2340 colnr_T save_dollar_vcol;
2341 char_u *p;
2344 * Only show match for chars in the 'matchpairs' option.
2346 /* 'matchpairs' is "x:y,x:y" */
2347 for (p = curbuf->b_p_mps; *p != NUL; p += 2)
2349 #ifdef FEAT_RIGHTLEFT
2350 if (*p == c && (curwin->w_p_rl ^ p_ri))
2351 break;
2352 #endif
2353 p += 2;
2354 if (*p == c
2355 #ifdef FEAT_RIGHTLEFT
2356 && !(curwin->w_p_rl ^ p_ri)
2357 #endif
2359 break;
2360 if (p[1] != ',')
2361 return;
2364 if ((lpos = findmatch(NULL, NUL)) == NULL) /* no match, so beep */
2365 vim_beep();
2366 else if (lpos->lnum >= curwin->w_topline)
2368 if (!curwin->w_p_wrap)
2369 getvcol(curwin, lpos, NULL, &vcol, NULL);
2370 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
2371 && vcol < curwin->w_leftcol + W_WIDTH(curwin)))
2373 mpos = *lpos; /* save the pos, update_screen() may change it */
2374 save_cursor = curwin->w_cursor;
2375 save_so = p_so;
2376 save_siso = p_siso;
2377 /* Handle "$" in 'cpo': If the ')' is typed on top of the "$",
2378 * stop displaying the "$". */
2379 if (dollar_vcol > 0 && dollar_vcol == curwin->w_virtcol)
2380 dollar_vcol = 0;
2381 ++curwin->w_virtcol; /* do display ')' just before "$" */
2382 update_screen(VALID); /* show the new char first */
2384 save_dollar_vcol = dollar_vcol;
2385 #ifdef CURSOR_SHAPE
2386 save_state = State;
2387 State = SHOWMATCH;
2388 ui_cursor_shape(); /* may show different cursor shape */
2389 #endif
2390 curwin->w_cursor = mpos; /* move to matching char */
2391 p_so = 0; /* don't use 'scrolloff' here */
2392 p_siso = 0; /* don't use 'sidescrolloff' here */
2393 showruler(FALSE);
2394 setcursor();
2395 cursor_on(); /* make sure that the cursor is shown */
2396 out_flush();
2397 #ifdef FEAT_GUI
2398 if (gui.in_use)
2400 gui_update_cursor(TRUE, FALSE);
2401 gui_mch_flush();
2403 #endif
2404 /* Restore dollar_vcol(), because setcursor() may call curs_rows()
2405 * which resets it if the matching position is in a previous line
2406 * and has a higher column number. */
2407 dollar_vcol = save_dollar_vcol;
2410 * brief pause, unless 'm' is present in 'cpo' and a character is
2411 * available.
2413 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL)
2414 ui_delay(p_mat * 100L, TRUE);
2415 else if (!char_avail())
2416 ui_delay(p_mat * 100L, FALSE);
2417 curwin->w_cursor = save_cursor; /* restore cursor position */
2418 p_so = save_so;
2419 p_siso = save_siso;
2420 #ifdef CURSOR_SHAPE
2421 State = save_state;
2422 ui_cursor_shape(); /* may show different cursor shape */
2423 #endif
2429 * findsent(dir, count) - Find the start of the next sentence in direction
2430 * "dir" Sentences are supposed to end in ".", "!" or "?" followed by white
2431 * space or a line break. Also stop at an empty line.
2432 * Return OK if the next sentence was found.
2435 findsent(dir, count)
2436 int dir;
2437 long count;
2439 pos_T pos, tpos;
2440 int c;
2441 int (*func) __ARGS((pos_T *));
2442 int startlnum;
2443 int noskip = FALSE; /* do not skip blanks */
2444 int cpo_J;
2445 int found_dot;
2447 pos = curwin->w_cursor;
2448 if (dir == FORWARD)
2449 func = incl;
2450 else
2451 func = decl;
2453 while (count--)
2456 * if on an empty line, skip upto a non-empty line
2458 if (gchar_pos(&pos) == NUL)
2461 if ((*func)(&pos) == -1)
2462 break;
2463 while (gchar_pos(&pos) == NUL);
2464 if (dir == FORWARD)
2465 goto found;
2468 * if on the start of a paragraph or a section and searching forward,
2469 * go to the next line
2471 else if (dir == FORWARD && pos.col == 0 &&
2472 startPS(pos.lnum, NUL, FALSE))
2474 if (pos.lnum == curbuf->b_ml.ml_line_count)
2475 return FAIL;
2476 ++pos.lnum;
2477 goto found;
2479 else if (dir == BACKWARD)
2480 decl(&pos);
2482 /* go back to the previous non-blank char */
2483 found_dot = FALSE;
2484 while ((c = gchar_pos(&pos)) == ' ' || c == '\t' ||
2485 (dir == BACKWARD && vim_strchr((char_u *)".!?)]\"'", c) != NULL))
2487 if (vim_strchr((char_u *)".!?", c) != NULL)
2489 /* Only skip over a '.', '!' and '?' once. */
2490 if (found_dot)
2491 break;
2492 found_dot = TRUE;
2494 if (decl(&pos) == -1)
2495 break;
2496 /* when going forward: Stop in front of empty line */
2497 if (lineempty(pos.lnum) && dir == FORWARD)
2499 incl(&pos);
2500 goto found;
2504 /* remember the line where the search started */
2505 startlnum = pos.lnum;
2506 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL;
2508 for (;;) /* find end of sentence */
2510 c = gchar_pos(&pos);
2511 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE)))
2513 if (dir == BACKWARD && pos.lnum != startlnum)
2514 ++pos.lnum;
2515 break;
2517 if (c == '.' || c == '!' || c == '?')
2519 tpos = pos;
2521 if ((c = inc(&tpos)) == -1)
2522 break;
2523 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos))
2524 != NULL);
2525 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL
2526 || (cpo_J && (c == ' ' && inc(&tpos) >= 0
2527 && gchar_pos(&tpos) == ' ')))
2529 pos = tpos;
2530 if (gchar_pos(&pos) == NUL) /* skip NUL at EOL */
2531 inc(&pos);
2532 break;
2535 if ((*func)(&pos) == -1)
2537 if (count)
2538 return FAIL;
2539 noskip = TRUE;
2540 break;
2543 found:
2544 /* skip white space */
2545 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t'))
2546 if (incl(&pos) == -1)
2547 break;
2550 setpcmark();
2551 curwin->w_cursor = pos;
2552 return OK;
2556 * Find the next paragraph or section in direction 'dir'.
2557 * Paragraphs are currently supposed to be separated by empty lines.
2558 * If 'what' is NUL we go to the next paragraph.
2559 * If 'what' is '{' or '}' we go to the next section.
2560 * If 'both' is TRUE also stop at '}'.
2561 * Return TRUE if the next paragraph or section was found.
2564 findpar(pincl, dir, count, what, both)
2565 int *pincl; /* Return: TRUE if last char is to be included */
2566 int dir;
2567 long count;
2568 int what;
2569 int both;
2571 linenr_T curr;
2572 int did_skip; /* TRUE after separating lines have been skipped */
2573 int first; /* TRUE on first line */
2574 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL);
2575 #ifdef FEAT_FOLDING
2576 linenr_T fold_first; /* first line of a closed fold */
2577 linenr_T fold_last; /* last line of a closed fold */
2578 int fold_skipped; /* TRUE if a closed fold was skipped this
2579 iteration */
2580 #endif
2582 curr = curwin->w_cursor.lnum;
2584 while (count--)
2586 did_skip = FALSE;
2587 for (first = TRUE; ; first = FALSE)
2589 if (*ml_get(curr) != NUL)
2590 did_skip = TRUE;
2592 #ifdef FEAT_FOLDING
2593 /* skip folded lines */
2594 fold_skipped = FALSE;
2595 if (first && hasFolding(curr, &fold_first, &fold_last))
2597 curr = ((dir > 0) ? fold_last : fold_first) + dir;
2598 fold_skipped = TRUE;
2600 #endif
2602 /* POSIX has it's own ideas of what a paragraph boundary is and it
2603 * doesn't match historical Vi: It also stops at a "{" in the
2604 * first column and at an empty line. */
2605 if (!first && did_skip && (startPS(curr, what, both)
2606 || (posix && what == NUL && *ml_get(curr) == '{')))
2607 break;
2609 #ifdef FEAT_FOLDING
2610 if (fold_skipped)
2611 curr -= dir;
2612 #endif
2613 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count)
2615 if (count)
2616 return FALSE;
2617 curr -= dir;
2618 break;
2622 setpcmark();
2623 if (both && *ml_get(curr) == '}') /* include line with '}' */
2624 ++curr;
2625 curwin->w_cursor.lnum = curr;
2626 if (curr == curbuf->b_ml.ml_line_count && what != '}')
2628 if ((curwin->w_cursor.col = (colnr_T)STRLEN(ml_get(curr))) != 0)
2630 --curwin->w_cursor.col;
2631 *pincl = TRUE;
2634 else
2635 curwin->w_cursor.col = 0;
2636 return TRUE;
2640 * check if the string 's' is a nroff macro that is in option 'opt'
2642 static int
2643 inmacro(opt, s)
2644 char_u *opt;
2645 char_u *s;
2647 char_u *macro;
2649 for (macro = opt; macro[0]; ++macro)
2651 /* Accept two characters in the option being equal to two characters
2652 * in the line. A space in the option matches with a space in the
2653 * line or the line having ended. */
2654 if ( (macro[0] == s[0]
2655 || (macro[0] == ' '
2656 && (s[0] == NUL || s[0] == ' ')))
2657 && (macro[1] == s[1]
2658 || ((macro[1] == NUL || macro[1] == ' ')
2659 && (s[0] == NUL || s[1] == NUL || s[1] == ' '))))
2660 break;
2661 ++macro;
2662 if (macro[0] == NUL)
2663 break;
2665 return (macro[0] != NUL);
2669 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph.
2670 * If 'para' is '{' or '}' only check for sections.
2671 * If 'both' is TRUE also stop at '}'
2674 startPS(lnum, para, both)
2675 linenr_T lnum;
2676 int para;
2677 int both;
2679 char_u *s;
2681 s = ml_get(lnum);
2682 if (*s == para || *s == '\f' || (both && *s == '}'))
2683 return TRUE;
2684 if (*s == '.' && (inmacro(p_sections, s + 1) ||
2685 (!para && inmacro(p_para, s + 1))))
2686 return TRUE;
2687 return FALSE;
2691 * The following routines do the word searches performed by the 'w', 'W',
2692 * 'b', 'B', 'e', and 'E' commands.
2696 * To perform these searches, characters are placed into one of three
2697 * classes, and transitions between classes determine word boundaries.
2699 * The classes are:
2701 * 0 - white space
2702 * 1 - punctuation
2703 * 2 or higher - keyword characters (letters, digits and underscore)
2706 static int cls_bigword; /* TRUE for "W", "B" or "E" */
2709 * cls() - returns the class of character at curwin->w_cursor
2711 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars
2712 * from class 2 and higher are reported as class 1 since only white space
2713 * boundaries are of interest.
2715 static int
2716 cls()
2718 int c;
2720 c = gchar_cursor();
2721 #ifdef FEAT_FKMAP /* when 'akm' (Farsi mode), take care of Farsi blank */
2722 if (p_altkeymap && c == F_BLANK)
2723 return 0;
2724 #endif
2725 if (c == ' ' || c == '\t' || c == NUL)
2726 return 0;
2727 #ifdef FEAT_MBYTE
2728 if (enc_dbcs != 0 && c > 0xFF)
2730 /* If cls_bigword, report multi-byte chars as class 1. */
2731 if (enc_dbcs == DBCS_KOR && cls_bigword)
2732 return 1;
2734 /* process code leading/trailing bytes */
2735 return dbcs_class(((unsigned)c >> 8), (c & 0xFF));
2737 if (enc_utf8)
2739 c = utf_class(c);
2740 if (c != 0 && cls_bigword)
2741 return 1;
2742 return c;
2744 #endif
2746 /* If cls_bigword is TRUE, report all non-blanks as class 1. */
2747 if (cls_bigword)
2748 return 1;
2750 if (vim_iswordc(c))
2751 return 2;
2752 return 1;
2757 * fwd_word(count, type, eol) - move forward one word
2759 * Returns FAIL if the cursor was already at the end of the file.
2760 * If eol is TRUE, last word stops at end of line (for operators).
2763 fwd_word(count, bigword, eol)
2764 long count;
2765 int bigword; /* "W", "E" or "B" */
2766 int eol;
2768 int sclass; /* starting class */
2769 int i;
2770 int last_line;
2772 #ifdef FEAT_VIRTUALEDIT
2773 curwin->w_cursor.coladd = 0;
2774 #endif
2775 cls_bigword = bigword;
2776 while (--count >= 0)
2778 #ifdef FEAT_FOLDING
2779 /* When inside a range of folded lines, move to the last char of the
2780 * last line. */
2781 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
2782 coladvance((colnr_T)MAXCOL);
2783 #endif
2784 sclass = cls();
2787 * We always move at least one character, unless on the last
2788 * character in the buffer.
2790 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count);
2791 i = inc_cursor();
2792 if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */
2793 return FAIL;
2794 if (i == 1 && eol && count == 0) /* started at last char in line */
2795 return OK;
2798 * Go one char past end of current word (if any)
2800 if (sclass != 0)
2801 while (cls() == sclass)
2803 i = inc_cursor();
2804 if (i == -1 || (i >= 1 && eol && count == 0))
2805 return OK;
2809 * go to next non-white
2811 while (cls() == 0)
2814 * We'll stop if we land on a blank line
2816 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL)
2817 break;
2819 i = inc_cursor();
2820 if (i == -1 || (i >= 1 && eol && count == 0))
2821 return OK;
2824 return OK;
2828 * bck_word() - move backward 'count' words
2830 * If stop is TRUE and we are already on the start of a word, move one less.
2832 * Returns FAIL if top of the file was reached.
2835 bck_word(count, bigword, stop)
2836 long count;
2837 int bigword;
2838 int stop;
2840 int sclass; /* starting class */
2842 #ifdef FEAT_VIRTUALEDIT
2843 curwin->w_cursor.coladd = 0;
2844 #endif
2845 cls_bigword = bigword;
2846 while (--count >= 0)
2848 #ifdef FEAT_FOLDING
2849 /* When inside a range of folded lines, move to the first char of the
2850 * first line. */
2851 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL))
2852 curwin->w_cursor.col = 0;
2853 #endif
2854 sclass = cls();
2855 if (dec_cursor() == -1) /* started at start of file */
2856 return FAIL;
2858 if (!stop || sclass == cls() || sclass == 0)
2861 * Skip white space before the word.
2862 * Stop on an empty line.
2864 while (cls() == 0)
2866 if (curwin->w_cursor.col == 0
2867 && lineempty(curwin->w_cursor.lnum))
2868 goto finished;
2869 if (dec_cursor() == -1) /* hit start of file, stop here */
2870 return OK;
2874 * Move backward to start of this word.
2876 if (skip_chars(cls(), BACKWARD))
2877 return OK;
2880 inc_cursor(); /* overshot - forward one */
2881 finished:
2882 stop = FALSE;
2884 return OK;
2888 * end_word() - move to the end of the word
2890 * There is an apparent bug in the 'e' motion of the real vi. At least on the
2891 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e'
2892 * motion crosses blank lines. When the real vi crosses a blank line in an
2893 * 'e' motion, the cursor is placed on the FIRST character of the next
2894 * non-blank line. The 'E' command, however, works correctly. Since this
2895 * appears to be a bug, I have not duplicated it here.
2897 * Returns FAIL if end of the file was reached.
2899 * If stop is TRUE and we are already on the end of a word, move one less.
2900 * If empty is TRUE stop on an empty line.
2903 end_word(count, bigword, stop, empty)
2904 long count;
2905 int bigword;
2906 int stop;
2907 int empty;
2909 int sclass; /* starting class */
2911 #ifdef FEAT_VIRTUALEDIT
2912 curwin->w_cursor.coladd = 0;
2913 #endif
2914 cls_bigword = bigword;
2915 while (--count >= 0)
2917 #ifdef FEAT_FOLDING
2918 /* When inside a range of folded lines, move to the last char of the
2919 * last line. */
2920 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum))
2921 coladvance((colnr_T)MAXCOL);
2922 #endif
2923 sclass = cls();
2924 if (inc_cursor() == -1)
2925 return FAIL;
2928 * If we're in the middle of a word, we just have to move to the end
2929 * of it.
2931 if (cls() == sclass && sclass != 0)
2934 * Move forward to end of the current word
2936 if (skip_chars(sclass, FORWARD))
2937 return FAIL;
2939 else if (!stop || sclass == 0)
2942 * We were at the end of a word. Go to the end of the next word.
2943 * First skip white space, if 'empty' is TRUE, stop at empty line.
2945 while (cls() == 0)
2947 if (empty && curwin->w_cursor.col == 0
2948 && lineempty(curwin->w_cursor.lnum))
2949 goto finished;
2950 if (inc_cursor() == -1) /* hit end of file, stop here */
2951 return FAIL;
2955 * Move forward to the end of this word.
2957 if (skip_chars(cls(), FORWARD))
2958 return FAIL;
2960 dec_cursor(); /* overshot - one char backward */
2961 finished:
2962 stop = FALSE; /* we move only one word less */
2964 return OK;
2968 * Move back to the end of the word.
2970 * Returns FAIL if start of the file was reached.
2973 bckend_word(count, bigword, eol)
2974 long count;
2975 int bigword; /* TRUE for "B" */
2976 int eol; /* TRUE: stop at end of line. */
2978 int sclass; /* starting class */
2979 int i;
2981 #ifdef FEAT_VIRTUALEDIT
2982 curwin->w_cursor.coladd = 0;
2983 #endif
2984 cls_bigword = bigword;
2985 while (--count >= 0)
2987 sclass = cls();
2988 if ((i = dec_cursor()) == -1)
2989 return FAIL;
2990 if (eol && i == 1)
2991 return OK;
2994 * Move backward to before the start of this word.
2996 if (sclass != 0)
2998 while (cls() == sclass)
2999 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3000 return OK;
3004 * Move backward to end of the previous word
3006 while (cls() == 0)
3008 if (curwin->w_cursor.col == 0 && lineempty(curwin->w_cursor.lnum))
3009 break;
3010 if ((i = dec_cursor()) == -1 || (eol && i == 1))
3011 return OK;
3014 return OK;
3018 * Skip a row of characters of the same class.
3019 * Return TRUE when end-of-file reached, FALSE otherwise.
3021 static int
3022 skip_chars(cclass, dir)
3023 int cclass;
3024 int dir;
3026 while (cls() == cclass)
3027 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1)
3028 return TRUE;
3029 return FALSE;
3032 #ifdef FEAT_TEXTOBJ
3034 * Go back to the start of the word or the start of white space
3036 static void
3037 back_in_line()
3039 int sclass; /* starting class */
3041 sclass = cls();
3042 for (;;)
3044 if (curwin->w_cursor.col == 0) /* stop at start of line */
3045 break;
3046 dec_cursor();
3047 if (cls() != sclass) /* stop at start of word */
3049 inc_cursor();
3050 break;
3055 static void
3056 find_first_blank(posp)
3057 pos_T *posp;
3059 int c;
3061 while (decl(posp) != -1)
3063 c = gchar_pos(posp);
3064 if (!vim_iswhite(c))
3066 incl(posp);
3067 break;
3073 * Skip count/2 sentences and count/2 separating white spaces.
3075 static void
3076 findsent_forward(count, at_start_sent)
3077 long count;
3078 int at_start_sent; /* cursor is at start of sentence */
3080 while (count--)
3082 findsent(FORWARD, 1L);
3083 if (at_start_sent)
3084 find_first_blank(&curwin->w_cursor);
3085 if (count == 0 || at_start_sent)
3086 decl(&curwin->w_cursor);
3087 at_start_sent = !at_start_sent;
3092 * Find word under cursor, cursor at end.
3093 * Used while an operator is pending, and in Visual mode.
3096 current_word(oap, count, include, bigword)
3097 oparg_T *oap;
3098 long count;
3099 int include; /* TRUE: include word and white space */
3100 int bigword; /* FALSE == word, TRUE == WORD */
3102 pos_T start_pos;
3103 pos_T pos;
3104 int inclusive = TRUE;
3105 int include_white = FALSE;
3107 cls_bigword = bigword;
3108 clearpos(&start_pos);
3110 #ifdef FEAT_VISUAL
3111 /* Correct cursor when 'selection' is exclusive */
3112 if (VIsual_active && *p_sel == 'e' && lt(VIsual, curwin->w_cursor))
3113 dec_cursor();
3116 * When Visual mode is not active, or when the VIsual area is only one
3117 * character, select the word and/or white space under the cursor.
3119 if (!VIsual_active || equalpos(curwin->w_cursor, VIsual))
3120 #endif
3123 * Go to start of current word or white space.
3125 back_in_line();
3126 start_pos = curwin->w_cursor;
3129 * If the start is on white space, and white space should be included
3130 * (" word"), or start is not on white space, and white space should
3131 * not be included ("word"), find end of word.
3133 if ((cls() == 0) == include)
3135 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3136 return FAIL;
3138 else
3141 * If the start is not on white space, and white space should be
3142 * included ("word "), or start is on white space and white
3143 * space should not be included (" "), find start of word.
3144 * If we end up in the first column of the next line (single char
3145 * word) back up to end of the line.
3147 fwd_word(1L, bigword, TRUE);
3148 if (curwin->w_cursor.col == 0)
3149 decl(&curwin->w_cursor);
3150 else
3151 oneleft();
3153 if (include)
3154 include_white = TRUE;
3157 #ifdef FEAT_VISUAL
3158 if (VIsual_active)
3160 /* should do something when inclusive == FALSE ! */
3161 VIsual = start_pos;
3162 redraw_curbuf_later(INVERTED); /* update the inversion */
3164 else
3165 #endif
3167 oap->start = start_pos;
3168 oap->motion_type = MCHAR;
3170 --count;
3174 * When count is still > 0, extend with more objects.
3176 while (count > 0)
3178 inclusive = TRUE;
3179 #ifdef FEAT_VISUAL
3180 if (VIsual_active && lt(curwin->w_cursor, VIsual))
3183 * In Visual mode, with cursor at start: move cursor back.
3185 if (decl(&curwin->w_cursor) == -1)
3186 return FAIL;
3187 if (include != (cls() != 0))
3189 if (bck_word(1L, bigword, TRUE) == FAIL)
3190 return FAIL;
3192 else
3194 if (bckend_word(1L, bigword, TRUE) == FAIL)
3195 return FAIL;
3196 (void)incl(&curwin->w_cursor);
3199 else
3200 #endif
3203 * Move cursor forward one word and/or white area.
3205 if (incl(&curwin->w_cursor) == -1)
3206 return FAIL;
3207 if (include != (cls() == 0))
3209 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1)
3210 return FAIL;
3212 * If end is just past a new-line, we don't want to include
3213 * the first character on the line.
3214 * Put cursor on last char of white.
3216 if (oneleft() == FAIL)
3217 inclusive = FALSE;
3219 else
3221 if (end_word(1L, bigword, TRUE, TRUE) == FAIL)
3222 return FAIL;
3225 --count;
3228 if (include_white && (cls() != 0
3229 || (curwin->w_cursor.col == 0 && !inclusive)))
3232 * If we don't include white space at the end, move the start
3233 * to include some white space there. This makes "daw" work
3234 * better on the last word in a sentence (and "2daw" on last-but-one
3235 * word). Also when "2daw" deletes "word." at the end of the line
3236 * (cursor is at start of next line).
3237 * But don't delete white space at start of line (indent).
3239 pos = curwin->w_cursor; /* save cursor position */
3240 curwin->w_cursor = start_pos;
3241 if (oneleft() == OK)
3243 back_in_line();
3244 if (cls() == 0 && curwin->w_cursor.col > 0)
3246 #ifdef FEAT_VISUAL
3247 if (VIsual_active)
3248 VIsual = curwin->w_cursor;
3249 else
3250 #endif
3251 oap->start = curwin->w_cursor;
3254 curwin->w_cursor = pos; /* put cursor back at end */
3257 #ifdef FEAT_VISUAL
3258 if (VIsual_active)
3260 if (*p_sel == 'e' && inclusive && ltoreq(VIsual, curwin->w_cursor))
3261 inc_cursor();
3262 if (VIsual_mode == 'V')
3264 VIsual_mode = 'v';
3265 redraw_cmdline = TRUE; /* show mode later */
3268 else
3269 #endif
3270 oap->inclusive = inclusive;
3272 return OK;
3276 * Find sentence(s) under the cursor, cursor at end.
3277 * When Visual active, extend it by one or more sentences.
3280 current_sent(oap, count, include)
3281 oparg_T *oap;
3282 long count;
3283 int include;
3285 pos_T start_pos;
3286 pos_T pos;
3287 int start_blank;
3288 int c;
3289 int at_start_sent;
3290 long ncount;
3292 start_pos = curwin->w_cursor;
3293 pos = start_pos;
3294 findsent(FORWARD, 1L); /* Find start of next sentence. */
3296 #ifdef FEAT_VISUAL
3298 * When visual area is bigger than one character: Extend it.
3300 if (VIsual_active && !equalpos(start_pos, VIsual))
3302 extend:
3303 if (lt(start_pos, VIsual))
3306 * Cursor at start of Visual area.
3307 * Find out where we are:
3308 * - in the white space before a sentence
3309 * - in a sentence or just after it
3310 * - at the start of a sentence
3312 at_start_sent = TRUE;
3313 decl(&pos);
3314 while (lt(pos, curwin->w_cursor))
3316 c = gchar_pos(&pos);
3317 if (!vim_iswhite(c))
3319 at_start_sent = FALSE;
3320 break;
3322 incl(&pos);
3324 if (!at_start_sent)
3326 findsent(BACKWARD, 1L);
3327 if (equalpos(curwin->w_cursor, start_pos))
3328 at_start_sent = TRUE; /* exactly at start of sentence */
3329 else
3330 /* inside a sentence, go to its end (start of next) */
3331 findsent(FORWARD, 1L);
3333 if (include) /* "as" gets twice as much as "is" */
3334 count *= 2;
3335 while (count--)
3337 if (at_start_sent)
3338 find_first_blank(&curwin->w_cursor);
3339 c = gchar_cursor();
3340 if (!at_start_sent || (!include && !vim_iswhite(c)))
3341 findsent(BACKWARD, 1L);
3342 at_start_sent = !at_start_sent;
3345 else
3348 * Cursor at end of Visual area.
3349 * Find out where we are:
3350 * - just before a sentence
3351 * - just before or in the white space before a sentence
3352 * - in a sentence
3354 incl(&pos);
3355 at_start_sent = TRUE;
3356 if (!equalpos(pos, curwin->w_cursor)) /* not just before a sentence */
3358 at_start_sent = FALSE;
3359 while (lt(pos, curwin->w_cursor))
3361 c = gchar_pos(&pos);
3362 if (!vim_iswhite(c))
3364 at_start_sent = TRUE;
3365 break;
3367 incl(&pos);
3369 if (at_start_sent) /* in the sentence */
3370 findsent(BACKWARD, 1L);
3371 else /* in/before white before a sentence */
3372 curwin->w_cursor = start_pos;
3375 if (include) /* "as" gets twice as much as "is" */
3376 count *= 2;
3377 findsent_forward(count, at_start_sent);
3378 if (*p_sel == 'e')
3379 ++curwin->w_cursor.col;
3381 return OK;
3383 #endif
3386 * If cursor started on blank, check if it is just before the start of the
3387 * next sentence.
3389 while (c = gchar_pos(&pos), vim_iswhite(c)) /* vim_iswhite() is a macro */
3390 incl(&pos);
3391 if (equalpos(pos, curwin->w_cursor))
3393 start_blank = TRUE;
3394 find_first_blank(&start_pos); /* go back to first blank */
3396 else
3398 start_blank = FALSE;
3399 findsent(BACKWARD, 1L);
3400 start_pos = curwin->w_cursor;
3402 if (include)
3403 ncount = count * 2;
3404 else
3406 ncount = count;
3407 if (start_blank)
3408 --ncount;
3410 if (ncount > 0)
3411 findsent_forward(ncount, TRUE);
3412 else
3413 decl(&curwin->w_cursor);
3415 if (include)
3418 * If the blank in front of the sentence is included, exclude the
3419 * blanks at the end of the sentence, go back to the first blank.
3420 * If there are no trailing blanks, try to include leading blanks.
3422 if (start_blank)
3424 find_first_blank(&curwin->w_cursor);
3425 c = gchar_pos(&curwin->w_cursor); /* vim_iswhite() is a macro */
3426 if (vim_iswhite(c))
3427 decl(&curwin->w_cursor);
3429 else if (c = gchar_cursor(), !vim_iswhite(c))
3430 find_first_blank(&start_pos);
3433 #ifdef FEAT_VISUAL
3434 if (VIsual_active)
3436 /* avoid getting stuck with "is" on a single space before a sent. */
3437 if (equalpos(start_pos, curwin->w_cursor))
3438 goto extend;
3439 if (*p_sel == 'e')
3440 ++curwin->w_cursor.col;
3441 VIsual = start_pos;
3442 VIsual_mode = 'v';
3443 redraw_curbuf_later(INVERTED); /* update the inversion */
3445 else
3446 #endif
3448 /* include a newline after the sentence, if there is one */
3449 if (incl(&curwin->w_cursor) == -1)
3450 oap->inclusive = TRUE;
3451 else
3452 oap->inclusive = FALSE;
3453 oap->start = start_pos;
3454 oap->motion_type = MCHAR;
3456 return OK;
3460 * Find block under the cursor, cursor at end.
3461 * "what" and "other" are two matching parenthesis/paren/etc.
3464 current_block(oap, count, include, what, other)
3465 oparg_T *oap;
3466 long count;
3467 int include; /* TRUE == include white space */
3468 int what; /* '(', '{', etc. */
3469 int other; /* ')', '}', etc. */
3471 pos_T old_pos;
3472 pos_T *pos = NULL;
3473 pos_T start_pos;
3474 pos_T *end_pos;
3475 pos_T old_start, old_end;
3476 char_u *save_cpo;
3477 int sol = FALSE; /* '{' at start of line */
3479 old_pos = curwin->w_cursor;
3480 old_end = curwin->w_cursor; /* remember where we started */
3481 old_start = old_end;
3484 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive.
3486 #ifdef FEAT_VISUAL
3487 if (!VIsual_active || equalpos(VIsual, curwin->w_cursor))
3488 #endif
3490 setpcmark();
3491 if (what == '{') /* ignore indent */
3492 while (inindent(1))
3493 if (inc_cursor() != 0)
3494 break;
3495 if (gchar_cursor() == what)
3496 /* cursor on '(' or '{', move cursor just after it */
3497 ++curwin->w_cursor.col;
3499 #ifdef FEAT_VISUAL
3500 else if (lt(VIsual, curwin->w_cursor))
3502 old_start = VIsual;
3503 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3505 else
3506 old_end = VIsual;
3507 #endif
3510 * Search backwards for unclosed '(', '{', etc..
3511 * Put this position in start_pos.
3512 * Ignore quotes here.
3514 save_cpo = p_cpo;
3515 p_cpo = (char_u *)"%";
3516 while (count-- > 0)
3518 if ((pos = findmatch(NULL, what)) == NULL)
3519 break;
3520 curwin->w_cursor = *pos;
3521 start_pos = *pos; /* the findmatch for end_pos will overwrite *pos */
3523 p_cpo = save_cpo;
3526 * Search for matching ')', '}', etc.
3527 * Put this position in curwin->w_cursor.
3529 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL)
3531 curwin->w_cursor = old_pos;
3532 return FAIL;
3534 curwin->w_cursor = *end_pos;
3537 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE.
3538 * If the ending '}' is only preceded by indent, skip that indent.
3539 * But only if the resulting area is not smaller than what we started with.
3541 while (!include)
3543 incl(&start_pos);
3544 sol = (curwin->w_cursor.col == 0);
3545 decl(&curwin->w_cursor);
3546 if (what == '{')
3547 while (inindent(1))
3549 sol = TRUE;
3550 if (decl(&curwin->w_cursor) != 0)
3551 break;
3553 #ifdef FEAT_VISUAL
3555 * In Visual mode, when the resulting area is not bigger than what we
3556 * started with, extend it to the next block, and then exclude again.
3558 if (!lt(start_pos, old_start) && !lt(old_end, curwin->w_cursor)
3559 && VIsual_active)
3561 curwin->w_cursor = old_start;
3562 decl(&curwin->w_cursor);
3563 if ((pos = findmatch(NULL, what)) == NULL)
3565 curwin->w_cursor = old_pos;
3566 return FAIL;
3568 start_pos = *pos;
3569 curwin->w_cursor = *pos;
3570 if ((end_pos = findmatch(NULL, other)) == NULL)
3572 curwin->w_cursor = old_pos;
3573 return FAIL;
3575 curwin->w_cursor = *end_pos;
3577 else
3578 #endif
3579 break;
3582 #ifdef FEAT_VISUAL
3583 if (VIsual_active)
3585 if (*p_sel == 'e')
3586 ++curwin->w_cursor.col;
3587 if (sol && gchar_cursor() != NUL)
3588 inc(&curwin->w_cursor); /* include the line break */
3589 VIsual = start_pos;
3590 VIsual_mode = 'v';
3591 redraw_curbuf_later(INVERTED); /* update the inversion */
3592 showmode();
3594 else
3595 #endif
3597 oap->start = start_pos;
3598 oap->motion_type = MCHAR;
3599 if (sol)
3601 incl(&curwin->w_cursor);
3602 oap->inclusive = FALSE;
3604 else
3605 oap->inclusive = TRUE;
3608 return OK;
3611 static int in_html_tag __ARGS((int));
3614 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>".
3615 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>".
3617 static int
3618 in_html_tag(end_tag)
3619 int end_tag;
3621 char_u *line = ml_get_curline();
3622 char_u *p;
3623 int c;
3624 int lc = NUL;
3625 pos_T pos;
3627 #ifdef FEAT_MBYTE
3628 if (enc_dbcs)
3630 char_u *lp = NULL;
3632 /* We search forward until the cursor, because searching backwards is
3633 * very slow for DBCS encodings. */
3634 for (p = line; p < line + curwin->w_cursor.col; mb_ptr_adv(p))
3635 if (*p == '>' || *p == '<')
3637 lc = *p;
3638 lp = p;
3640 if (*p != '<') /* check for '<' under cursor */
3642 if (lc != '<')
3643 return FALSE;
3644 p = lp;
3647 else
3648 #endif
3650 for (p = line + curwin->w_cursor.col; p > line; )
3652 if (*p == '<') /* find '<' under/before cursor */
3653 break;
3654 mb_ptr_back(line, p);
3655 if (*p == '>') /* find '>' before cursor */
3656 break;
3658 if (*p != '<')
3659 return FALSE;
3662 pos.lnum = curwin->w_cursor.lnum;
3663 pos.col = (colnr_T)(p - line);
3665 mb_ptr_adv(p);
3666 if (end_tag)
3667 /* check that there is a '/' after the '<' */
3668 return *p == '/';
3670 /* check that there is no '/' after the '<' */
3671 if (*p == '/')
3672 return FALSE;
3674 /* check that the matching '>' is not preceded by '/' */
3675 for (;;)
3677 if (inc(&pos) < 0)
3678 return FALSE;
3679 c = *ml_get_pos(&pos);
3680 if (c == '>')
3681 break;
3682 lc = c;
3684 return lc != '/';
3688 * Find tag block under the cursor, cursor at end.
3691 current_tagblock(oap, count_arg, include)
3692 oparg_T *oap;
3693 long count_arg;
3694 int include; /* TRUE == include white space */
3696 long count = count_arg;
3697 long n;
3698 pos_T old_pos;
3699 pos_T start_pos;
3700 pos_T end_pos;
3701 pos_T old_start, old_end;
3702 char_u *spat, *epat;
3703 char_u *p;
3704 char_u *cp;
3705 int len;
3706 int r;
3707 int do_include = include;
3708 int save_p_ws = p_ws;
3709 int retval = FAIL;
3711 p_ws = FALSE;
3713 old_pos = curwin->w_cursor;
3714 old_end = curwin->w_cursor; /* remember where we started */
3715 old_start = old_end;
3718 * If we start on "<aaa>" select that block.
3720 #ifdef FEAT_VISUAL
3721 if (!VIsual_active || equalpos(VIsual, curwin->w_cursor))
3722 #endif
3724 setpcmark();
3726 /* ignore indent */
3727 while (inindent(1))
3728 if (inc_cursor() != 0)
3729 break;
3731 if (in_html_tag(FALSE))
3733 /* cursor on start tag, move to just after it */
3734 while (*ml_get_cursor() != '>')
3735 if (inc_cursor() < 0)
3736 break;
3738 else if (in_html_tag(TRUE))
3740 /* cursor on end tag, move to just before it */
3741 while (*ml_get_cursor() != '<')
3742 if (dec_cursor() < 0)
3743 break;
3744 dec_cursor();
3745 old_end = curwin->w_cursor;
3748 #ifdef FEAT_VISUAL
3749 else if (lt(VIsual, curwin->w_cursor))
3751 old_start = VIsual;
3752 curwin->w_cursor = VIsual; /* cursor at low end of Visual */
3754 else
3755 old_end = VIsual;
3756 #endif
3758 again:
3760 * Search backwards for unclosed "<aaa>".
3761 * Put this position in start_pos.
3763 for (n = 0; n < count; ++n)
3765 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)",
3766 (char_u *)"",
3767 (char_u *)"</[^>]*>", BACKWARD, (char_u *)"", 0,
3768 NULL, (linenr_T)0) <= 0)
3770 curwin->w_cursor = old_pos;
3771 goto theend;
3774 start_pos = curwin->w_cursor;
3777 * Search for matching "</aaa>". First isolate the "aaa".
3779 inc_cursor();
3780 p = ml_get_cursor();
3781 for (cp = p; *cp != NUL && *cp != '>' && !vim_iswhite(*cp); mb_ptr_adv(cp))
3783 len = (int)(cp - p);
3784 if (len == 0)
3786 curwin->w_cursor = old_pos;
3787 goto theend;
3789 spat = alloc(len + 29);
3790 epat = alloc(len + 9);
3791 if (spat == NULL || epat == NULL)
3793 vim_free(spat);
3794 vim_free(epat);
3795 curwin->w_cursor = old_pos;
3796 goto theend;
3798 sprintf((char *)spat, "<%.*s\\%%(\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p);
3799 sprintf((char *)epat, "</%.*s>\\c", len, p);
3801 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, (char_u *)"",
3802 0, NULL, (linenr_T)0);
3804 vim_free(spat);
3805 vim_free(epat);
3807 if (r < 1 || lt(curwin->w_cursor, old_end))
3809 /* Can't find other end or it's before the previous end. Could be a
3810 * HTML tag that doesn't have a matching end. Search backwards for
3811 * another starting tag. */
3812 count = 1;
3813 curwin->w_cursor = start_pos;
3814 goto again;
3817 if (do_include || r < 1)
3819 /* Include up to the '>'. */
3820 while (*ml_get_cursor() != '>')
3821 if (inc_cursor() < 0)
3822 break;
3824 else
3826 /* Exclude the '<' of the end tag. */
3827 if (*ml_get_cursor() == '<')
3828 dec_cursor();
3830 end_pos = curwin->w_cursor;
3832 if (!do_include)
3834 /* Exclude the start tag. */
3835 curwin->w_cursor = start_pos;
3836 while (inc_cursor() >= 0)
3837 if (*ml_get_cursor() == '>' && lt(curwin->w_cursor, end_pos))
3839 inc_cursor();
3840 start_pos = curwin->w_cursor;
3841 break;
3843 curwin->w_cursor = end_pos;
3845 /* If we now have the same text as before reset "do_include" and try
3846 * again. */
3847 if (equalpos(start_pos, old_start) && equalpos(end_pos, old_end))
3849 do_include = TRUE;
3850 curwin->w_cursor = old_start;
3851 count = count_arg;
3852 goto again;
3856 #ifdef FEAT_VISUAL
3857 if (VIsual_active)
3859 if (*p_sel == 'e')
3860 ++curwin->w_cursor.col;
3861 VIsual = start_pos;
3862 VIsual_mode = 'v';
3863 redraw_curbuf_later(INVERTED); /* update the inversion */
3864 showmode();
3866 else
3867 #endif
3869 oap->start = start_pos;
3870 oap->motion_type = MCHAR;
3871 oap->inclusive = TRUE;
3873 retval = OK;
3875 theend:
3876 p_ws = save_p_ws;
3877 return retval;
3881 current_par(oap, count, include, type)
3882 oparg_T *oap;
3883 long count;
3884 int include; /* TRUE == include white space */
3885 int type; /* 'p' for paragraph, 'S' for section */
3887 linenr_T start_lnum;
3888 linenr_T end_lnum;
3889 int white_in_front;
3890 int dir;
3891 int start_is_white;
3892 int prev_start_is_white;
3893 int retval = OK;
3894 int do_white = FALSE;
3895 int t;
3896 int i;
3898 if (type == 'S') /* not implemented yet */
3899 return FAIL;
3901 start_lnum = curwin->w_cursor.lnum;
3903 #ifdef FEAT_VISUAL
3905 * When visual area is more than one line: extend it.
3907 if (VIsual_active && start_lnum != VIsual.lnum)
3909 extend:
3910 if (start_lnum < VIsual.lnum)
3911 dir = BACKWARD;
3912 else
3913 dir = FORWARD;
3914 for (i = count; --i >= 0; )
3916 if (start_lnum ==
3917 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count))
3919 retval = FAIL;
3920 break;
3923 prev_start_is_white = -1;
3924 for (t = 0; t < 2; ++t)
3926 start_lnum += dir;
3927 start_is_white = linewhite(start_lnum);
3928 if (prev_start_is_white == start_is_white)
3930 start_lnum -= dir;
3931 break;
3933 for (;;)
3935 if (start_lnum == (dir == BACKWARD
3936 ? 1 : curbuf->b_ml.ml_line_count))
3937 break;
3938 if (start_is_white != linewhite(start_lnum + dir)
3939 || (!start_is_white
3940 && startPS(start_lnum + (dir > 0
3941 ? 1 : 0), 0, 0)))
3942 break;
3943 start_lnum += dir;
3945 if (!include)
3946 break;
3947 if (start_lnum == (dir == BACKWARD
3948 ? 1 : curbuf->b_ml.ml_line_count))
3949 break;
3950 prev_start_is_white = start_is_white;
3953 curwin->w_cursor.lnum = start_lnum;
3954 curwin->w_cursor.col = 0;
3955 return retval;
3957 #endif
3960 * First move back to the start_lnum of the paragraph or white lines
3962 white_in_front = linewhite(start_lnum);
3963 while (start_lnum > 1)
3965 if (white_in_front) /* stop at first white line */
3967 if (!linewhite(start_lnum - 1))
3968 break;
3970 else /* stop at first non-white line of start of paragraph */
3972 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0))
3973 break;
3975 --start_lnum;
3979 * Move past the end of any white lines.
3981 end_lnum = start_lnum;
3982 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum))
3983 ++end_lnum;
3985 --end_lnum;
3986 i = count;
3987 if (!include && white_in_front)
3988 --i;
3989 while (i--)
3991 if (end_lnum == curbuf->b_ml.ml_line_count)
3992 return FAIL;
3994 if (!include)
3995 do_white = linewhite(end_lnum + 1);
3997 if (include || !do_white)
3999 ++end_lnum;
4001 * skip to end of paragraph
4003 while (end_lnum < curbuf->b_ml.ml_line_count
4004 && !linewhite(end_lnum + 1)
4005 && !startPS(end_lnum + 1, 0, 0))
4006 ++end_lnum;
4009 if (i == 0 && white_in_front && include)
4010 break;
4013 * skip to end of white lines after paragraph
4015 if (include || do_white)
4016 while (end_lnum < curbuf->b_ml.ml_line_count
4017 && linewhite(end_lnum + 1))
4018 ++end_lnum;
4022 * If there are no empty lines at the end, try to find some empty lines at
4023 * the start (unless that has been done already).
4025 if (!white_in_front && !linewhite(end_lnum) && include)
4026 while (start_lnum > 1 && linewhite(start_lnum - 1))
4027 --start_lnum;
4029 #ifdef FEAT_VISUAL
4030 if (VIsual_active)
4032 /* Problem: when doing "Vipipip" nothing happens in a single white
4033 * line, we get stuck there. Trap this here. */
4034 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum)
4035 goto extend;
4036 VIsual.lnum = start_lnum;
4037 VIsual_mode = 'V';
4038 redraw_curbuf_later(INVERTED); /* update the inversion */
4039 showmode();
4041 else
4042 #endif
4044 oap->start.lnum = start_lnum;
4045 oap->start.col = 0;
4046 oap->motion_type = MLINE;
4048 curwin->w_cursor.lnum = end_lnum;
4049 curwin->w_cursor.col = 0;
4051 return OK;
4054 static int find_next_quote __ARGS((char_u *top_ptr, int col, int quotechar, char_u *escape));
4055 static int find_prev_quote __ARGS((char_u *line, int col_start, int quotechar, char_u *escape));
4058 * Search quote char from string line[col].
4059 * Quote character escaped by one of the characters in "escape" is not counted
4060 * as a quote.
4061 * Returns column number of "quotechar" or -1 when not found.
4063 static int
4064 find_next_quote(line, col, quotechar, escape)
4065 char_u *line;
4066 int col;
4067 int quotechar;
4068 char_u *escape; /* escape characters, can be NULL */
4070 int c;
4072 for (;;)
4074 c = line[col];
4075 if (c == NUL)
4076 return -1;
4077 else if (escape != NULL && vim_strchr(escape, c))
4078 ++col;
4079 else if (c == quotechar)
4080 break;
4081 #ifdef FEAT_MBYTE
4082 if (has_mbyte)
4083 col += (*mb_ptr2len)(line + col);
4084 else
4085 #endif
4086 ++col;
4088 return col;
4092 * Search backwards in "line" from column "col_start" to find "quotechar".
4093 * Quote character escaped by one of the characters in "escape" is not counted
4094 * as a quote.
4095 * Return the found column or zero.
4097 static int
4098 find_prev_quote(line, col_start, quotechar, escape)
4099 char_u *line;
4100 int col_start;
4101 int quotechar;
4102 char_u *escape; /* escape characters, can be NULL */
4104 int n;
4106 while (col_start > 0)
4108 --col_start;
4109 #ifdef FEAT_MBYTE
4110 col_start -= (*mb_head_off)(line, line + col_start);
4111 #endif
4112 n = 0;
4113 if (escape != NULL)
4114 while (col_start - n > 0 && vim_strchr(escape,
4115 line[col_start - n - 1]) != NULL)
4116 ++n;
4117 if (n & 1)
4118 col_start -= n; /* uneven number of escape chars, skip it */
4119 else if (line[col_start] == quotechar)
4120 break;
4122 return col_start;
4126 * Find quote under the cursor, cursor at end.
4127 * Returns TRUE if found, else FALSE.
4130 current_quote(oap, count, include, quotechar)
4131 oparg_T *oap;
4132 long count;
4133 int include; /* TRUE == include quote char */
4134 int quotechar; /* Quote character */
4136 char_u *line = ml_get_curline();
4137 int col_end;
4138 int col_start = curwin->w_cursor.col;
4139 int inclusive = FALSE;
4140 #ifdef FEAT_VISUAL
4141 int vis_empty = TRUE; /* Visual selection <= 1 char */
4142 int vis_bef_curs = FALSE; /* Visual starts before cursor */
4143 int inside_quotes = FALSE; /* Looks like "i'" done before */
4144 int selected_quote = FALSE; /* Has quote inside selection */
4145 int i;
4147 /* Correct cursor when 'selection' is exclusive */
4148 if (VIsual_active)
4150 vis_bef_curs = lt(VIsual, curwin->w_cursor);
4151 if (*p_sel == 'e' && vis_bef_curs)
4152 dec_cursor();
4153 vis_empty = equalpos(VIsual, curwin->w_cursor);
4156 if (!vis_empty)
4158 /* Check if the existing selection exactly spans the text inside
4159 * quotes. */
4160 if (vis_bef_curs)
4162 inside_quotes = VIsual.col > 0
4163 && line[VIsual.col - 1] == quotechar
4164 && line[curwin->w_cursor.col] != NUL
4165 && line[curwin->w_cursor.col + 1] == quotechar;
4166 i = VIsual.col;
4167 col_end = curwin->w_cursor.col;
4169 else
4171 inside_quotes = curwin->w_cursor.col > 0
4172 && line[curwin->w_cursor.col - 1] == quotechar
4173 && line[VIsual.col] != NUL
4174 && line[VIsual.col + 1] == quotechar;
4175 i = curwin->w_cursor.col;
4176 col_end = VIsual.col;
4179 /* Find out if we have a quote in the selection. */
4180 while (i <= col_end)
4181 if (line[i++] == quotechar)
4183 selected_quote = TRUE;
4184 break;
4188 if (!vis_empty && line[col_start] == quotechar)
4190 /* Already selecting something and on a quote character. Find the
4191 * next quoted string. */
4192 if (vis_bef_curs)
4194 /* Assume we are on a closing quote: move to after the next
4195 * opening quote. */
4196 col_start = find_next_quote(line, col_start + 1, quotechar, NULL);
4197 if (col_start < 0)
4198 return FALSE;
4199 col_end = find_next_quote(line, col_start + 1, quotechar,
4200 curbuf->b_p_qe);
4201 if (col_end < 0)
4203 /* We were on a starting quote perhaps? */
4204 col_end = col_start;
4205 col_start = curwin->w_cursor.col;
4208 else
4210 col_end = find_prev_quote(line, col_start, quotechar, NULL);
4211 if (line[col_end] != quotechar)
4212 return FALSE;
4213 col_start = find_prev_quote(line, col_end, quotechar,
4214 curbuf->b_p_qe);
4215 if (line[col_start] != quotechar)
4217 /* We were on an ending quote perhaps? */
4218 col_start = col_end;
4219 col_end = curwin->w_cursor.col;
4223 else
4224 #endif
4226 if (line[col_start] == quotechar
4227 #ifdef FEAT_VISUAL
4228 || !vis_empty
4229 #endif
4232 int first_col = col_start;
4234 #ifdef FEAT_VISUAL
4235 if (!vis_empty)
4237 if (vis_bef_curs)
4238 first_col = find_next_quote(line, col_start, quotechar, NULL);
4239 else
4240 first_col = find_prev_quote(line, col_start, quotechar, NULL);
4242 #endif
4243 /* The cursor is on a quote, we don't know if it's the opening or
4244 * closing quote. Search from the start of the line to find out.
4245 * Also do this when there is a Visual area, a' may leave the cursor
4246 * in between two strings. */
4247 col_start = 0;
4248 for (;;)
4250 /* Find open quote character. */
4251 col_start = find_next_quote(line, col_start, quotechar, NULL);
4252 if (col_start < 0 || col_start > first_col)
4253 return FALSE;
4254 /* Find close quote character. */
4255 col_end = find_next_quote(line, col_start + 1, quotechar,
4256 curbuf->b_p_qe);
4257 if (col_end < 0)
4258 return FALSE;
4259 /* If is cursor between start and end quote character, it is
4260 * target text object. */
4261 if (col_start <= first_col && first_col <= col_end)
4262 break;
4263 col_start = col_end + 1;
4266 else
4268 /* Search backward for a starting quote. */
4269 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe);
4270 if (line[col_start] != quotechar)
4272 /* No quote before the cursor, look after the cursor. */
4273 col_start = find_next_quote(line, col_start, quotechar, NULL);
4274 if (col_start < 0)
4275 return FALSE;
4278 /* Find close quote character. */
4279 col_end = find_next_quote(line, col_start + 1, quotechar,
4280 curbuf->b_p_qe);
4281 if (col_end < 0)
4282 return FALSE;
4285 /* When "include" is TRUE, include spaces after closing quote or before
4286 * the starting quote. */
4287 if (include)
4289 if (vim_iswhite(line[col_end + 1]))
4290 while (vim_iswhite(line[col_end + 1]))
4291 ++col_end;
4292 else
4293 while (col_start > 0 && vim_iswhite(line[col_start - 1]))
4294 --col_start;
4297 /* Set start position. After vi" another i" must include the ".
4298 * For v2i" include the quotes. */
4299 if (!include && count < 2
4300 #ifdef FEAT_VISUAL
4301 && (vis_empty || !inside_quotes)
4302 #endif
4304 ++col_start;
4305 curwin->w_cursor.col = col_start;
4306 #ifdef FEAT_VISUAL
4307 if (VIsual_active)
4309 /* Set the start of the Visual area when the Visual area was empty, we
4310 * were just inside quotes or the Visual area didn't start at a quote
4311 * and didn't include a quote.
4313 if (vis_empty
4314 || (vis_bef_curs
4315 && !selected_quote
4316 && (inside_quotes
4317 || (line[VIsual.col] != quotechar
4318 && (VIsual.col == 0
4319 || line[VIsual.col - 1] != quotechar)))))
4321 VIsual = curwin->w_cursor;
4322 redraw_curbuf_later(INVERTED);
4325 else
4326 #endif
4328 oap->start = curwin->w_cursor;
4329 oap->motion_type = MCHAR;
4332 /* Set end position. */
4333 curwin->w_cursor.col = col_end;
4334 if ((include || count > 1
4335 #ifdef FEAT_VISUAL
4336 /* After vi" another i" must include the ". */
4337 || (!vis_empty && inside_quotes)
4338 #endif
4339 ) && inc_cursor() == 2)
4340 inclusive = TRUE;
4341 #ifdef FEAT_VISUAL
4342 if (VIsual_active)
4344 if (vis_empty || vis_bef_curs)
4346 /* decrement cursor when 'selection' is not exclusive */
4347 if (*p_sel != 'e')
4348 dec_cursor();
4350 else
4352 /* Cursor is at start of Visual area. Set the end of the Visual
4353 * area when it was just inside quotes or it didn't end at a
4354 * quote. */
4355 if (inside_quotes
4356 || (!selected_quote
4357 && line[VIsual.col] != quotechar
4358 && (line[VIsual.col] == NUL
4359 || line[VIsual.col + 1] != quotechar)))
4361 dec_cursor();
4362 VIsual = curwin->w_cursor;
4364 curwin->w_cursor.col = col_start;
4366 if (VIsual_mode == 'V')
4368 VIsual_mode = 'v';
4369 redraw_cmdline = TRUE; /* show mode later */
4372 else
4373 #endif
4375 /* Set inclusive and other oap's flags. */
4376 oap->inclusive = inclusive;
4379 return OK;
4382 #endif /* FEAT_TEXTOBJ */
4384 #if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
4385 || defined(PROTO)
4387 * return TRUE if line 'lnum' is empty or has white chars only.
4390 linewhite(lnum)
4391 linenr_T lnum;
4393 char_u *p;
4395 p = skipwhite(ml_get(lnum));
4396 return (*p == NUL);
4398 #endif
4400 #if defined(FEAT_FIND_ID) || defined(PROTO)
4402 * Find identifiers or defines in included files.
4403 * if p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase.
4405 /*ARGSUSED*/
4406 void
4407 find_pattern_in_path(ptr, dir, len, whole, skip_comments,
4408 type, count, action, start_lnum, end_lnum)
4409 char_u *ptr; /* pointer to search pattern */
4410 int dir; /* direction of expansion */
4411 int len; /* length of search pattern */
4412 int whole; /* match whole words only */
4413 int skip_comments; /* don't match inside comments */
4414 int type; /* Type of search; are we looking for a type?
4415 a macro? */
4416 long count;
4417 int action; /* What to do when we find it */
4418 linenr_T start_lnum; /* first line to start searching */
4419 linenr_T end_lnum; /* last line for searching */
4421 SearchedFile *files; /* Stack of included files */
4422 SearchedFile *bigger; /* When we need more space */
4423 int max_path_depth = 50;
4424 long match_count = 1;
4426 char_u *pat;
4427 char_u *new_fname;
4428 char_u *curr_fname = curbuf->b_fname;
4429 char_u *prev_fname = NULL;
4430 linenr_T lnum;
4431 int depth;
4432 int depth_displayed; /* For type==CHECK_PATH */
4433 int old_files;
4434 int already_searched;
4435 char_u *file_line;
4436 char_u *line;
4437 char_u *p;
4438 char_u save_char;
4439 int define_matched;
4440 regmatch_T regmatch;
4441 regmatch_T incl_regmatch;
4442 regmatch_T def_regmatch;
4443 int matched = FALSE;
4444 int did_show = FALSE;
4445 int found = FALSE;
4446 int i;
4447 char_u *already = NULL;
4448 char_u *startp = NULL;
4449 char_u *inc_opt = NULL;
4450 #ifdef RISCOS
4451 int previous_munging = __riscosify_control;
4452 #endif
4453 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4454 win_T *curwin_save = NULL;
4455 #endif
4457 regmatch.regprog = NULL;
4458 incl_regmatch.regprog = NULL;
4459 def_regmatch.regprog = NULL;
4461 file_line = alloc(LSIZE);
4462 if (file_line == NULL)
4463 return;
4465 #ifdef RISCOS
4466 /* UnixLib knows best how to munge c file names - turn munging back on. */
4467 int __riscosify_control = 0;
4468 #endif
4470 if (type != CHECK_PATH && type != FIND_DEFINE
4471 #ifdef FEAT_INS_EXPAND
4472 /* when CONT_SOL is set compare "ptr" with the beginning of the line
4473 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */
4474 && !(compl_cont_status & CONT_SOL)
4475 #endif
4478 pat = alloc(len + 5);
4479 if (pat == NULL)
4480 goto fpip_end;
4481 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr);
4482 /* ignore case according to p_ic, p_scs and pat */
4483 regmatch.rm_ic = ignorecase(pat);
4484 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
4485 vim_free(pat);
4486 if (regmatch.regprog == NULL)
4487 goto fpip_end;
4489 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc;
4490 if (*inc_opt != NUL)
4492 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0);
4493 if (incl_regmatch.regprog == NULL)
4494 goto fpip_end;
4495 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */
4497 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL))
4499 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL
4500 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0);
4501 if (def_regmatch.regprog == NULL)
4502 goto fpip_end;
4503 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */
4505 files = (SearchedFile *)lalloc_clear((long_u)
4506 (max_path_depth * sizeof(SearchedFile)), TRUE);
4507 if (files == NULL)
4508 goto fpip_end;
4509 old_files = max_path_depth;
4510 depth = depth_displayed = -1;
4512 lnum = start_lnum;
4513 if (end_lnum > curbuf->b_ml.ml_line_count)
4514 end_lnum = curbuf->b_ml.ml_line_count;
4515 if (lnum > end_lnum) /* do at least one line */
4516 lnum = end_lnum;
4517 line = ml_get(lnum);
4519 for (;;)
4521 if (incl_regmatch.regprog != NULL
4522 && vim_regexec(&incl_regmatch, line, (colnr_T)0))
4524 char_u *p_fname = (curr_fname == curbuf->b_fname)
4525 ? curbuf->b_ffname : curr_fname;
4527 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL)
4528 /* Use text from '\zs' to '\ze' (or end) of 'include'. */
4529 new_fname = find_file_name_in_path(incl_regmatch.startp[0],
4530 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]),
4531 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname);
4532 else
4533 /* Use text after match with 'include'. */
4534 new_fname = file_name_in_line(incl_regmatch.endp[0], 0,
4535 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL);
4536 already_searched = FALSE;
4537 if (new_fname != NULL)
4539 /* Check whether we have already searched in this file */
4540 for (i = 0;; i++)
4542 if (i == depth + 1)
4543 i = old_files;
4544 if (i == max_path_depth)
4545 break;
4546 if (fullpathcmp(new_fname, files[i].name, TRUE) & FPC_SAME)
4548 if (type != CHECK_PATH &&
4549 action == ACTION_SHOW_ALL && files[i].matched)
4551 msg_putchar('\n'); /* cursor below last one */
4552 if (!got_int) /* don't display if 'q'
4553 typed at "--more--"
4554 mesage */
4556 msg_home_replace_hl(new_fname);
4557 MSG_PUTS(_(" (includes previously listed match)"));
4558 prev_fname = NULL;
4561 vim_free(new_fname);
4562 new_fname = NULL;
4563 already_searched = TRUE;
4564 break;
4569 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL
4570 || (new_fname == NULL && !already_searched)))
4572 if (did_show)
4573 msg_putchar('\n'); /* cursor below last one */
4574 else
4576 gotocmdline(TRUE); /* cursor at status line */
4577 MSG_PUTS_TITLE(_("--- Included files "));
4578 if (action != ACTION_SHOW_ALL)
4579 MSG_PUTS_TITLE(_("not found "));
4580 MSG_PUTS_TITLE(_("in path ---\n"));
4582 did_show = TRUE;
4583 while (depth_displayed < depth && !got_int)
4585 ++depth_displayed;
4586 for (i = 0; i < depth_displayed; i++)
4587 MSG_PUTS(" ");
4588 msg_home_replace(files[depth_displayed].name);
4589 MSG_PUTS(" -->\n");
4591 if (!got_int) /* don't display if 'q' typed
4592 for "--more--" message */
4594 for (i = 0; i <= depth_displayed; i++)
4595 MSG_PUTS(" ");
4596 if (new_fname != NULL)
4598 /* using "new_fname" is more reliable, e.g., when
4599 * 'includeexpr' is set. */
4600 msg_outtrans_attr(new_fname, hl_attr(HLF_D));
4602 else
4605 * Isolate the file name.
4606 * Include the surrounding "" or <> if present.
4608 for (p = incl_regmatch.endp[0]; !vim_isfilec(*p); p++)
4610 for (i = 0; vim_isfilec(p[i]); i++)
4612 if (i == 0)
4614 /* Nothing found, use the rest of the line. */
4615 p = incl_regmatch.endp[0];
4616 i = (int)STRLEN(p);
4618 else
4620 if (p[-1] == '"' || p[-1] == '<')
4622 --p;
4623 ++i;
4625 if (p[i] == '"' || p[i] == '>')
4626 ++i;
4628 save_char = p[i];
4629 p[i] = NUL;
4630 msg_outtrans_attr(p, hl_attr(HLF_D));
4631 p[i] = save_char;
4634 if (new_fname == NULL && action == ACTION_SHOW_ALL)
4636 if (already_searched)
4637 MSG_PUTS(_(" (Already listed)"));
4638 else
4639 MSG_PUTS(_(" NOT FOUND"));
4642 out_flush(); /* output each line directly */
4645 if (new_fname != NULL)
4647 /* Push the new file onto the file stack */
4648 if (depth + 1 == old_files)
4650 bigger = (SearchedFile *)lalloc((long_u)(
4651 max_path_depth * 2 * sizeof(SearchedFile)), TRUE);
4652 if (bigger != NULL)
4654 for (i = 0; i <= depth; i++)
4655 bigger[i] = files[i];
4656 for (i = depth + 1; i < old_files + max_path_depth; i++)
4658 bigger[i].fp = NULL;
4659 bigger[i].name = NULL;
4660 bigger[i].lnum = 0;
4661 bigger[i].matched = FALSE;
4663 for (i = old_files; i < max_path_depth; i++)
4664 bigger[i + max_path_depth] = files[i];
4665 old_files += max_path_depth;
4666 max_path_depth *= 2;
4667 vim_free(files);
4668 files = bigger;
4671 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r"))
4672 == NULL)
4673 vim_free(new_fname);
4674 else
4676 if (++depth == old_files)
4679 * lalloc() for 'bigger' must have failed above. We
4680 * will forget one of our already visited files now.
4682 vim_free(files[old_files].name);
4683 ++old_files;
4685 files[depth].name = curr_fname = new_fname;
4686 files[depth].lnum = 0;
4687 files[depth].matched = FALSE;
4688 #ifdef FEAT_INS_EXPAND
4689 if (action == ACTION_EXPAND)
4691 vim_snprintf((char*)IObuff, IOSIZE,
4692 _("Scanning included file: %s"),
4693 (char *)new_fname);
4694 msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
4696 else
4697 #endif
4698 if (p_verbose >= 5)
4700 verbose_enter();
4701 smsg((char_u *)_("Searching included file %s"),
4702 (char *)new_fname);
4703 verbose_leave();
4709 else
4712 * Check if the line is a define (type == FIND_DEFINE)
4714 p = line;
4715 search_line:
4716 define_matched = FALSE;
4717 if (def_regmatch.regprog != NULL
4718 && vim_regexec(&def_regmatch, line, (colnr_T)0))
4721 * Pattern must be first identifier after 'define', so skip
4722 * to that position before checking for match of pattern. Also
4723 * don't let it match beyond the end of this identifier.
4725 p = def_regmatch.endp[0];
4726 while (*p && !vim_iswordc(*p))
4727 p++;
4728 define_matched = TRUE;
4732 * Look for a match. Don't do this if we are looking for a
4733 * define and this line didn't match define_prog above.
4735 if (def_regmatch.regprog == NULL || define_matched)
4737 if (define_matched
4738 #ifdef FEAT_INS_EXPAND
4739 || (compl_cont_status & CONT_SOL)
4740 #endif
4743 /* compare the first "len" chars from "ptr" */
4744 startp = skipwhite(p);
4745 if (p_ic)
4746 matched = !MB_STRNICMP(startp, ptr, len);
4747 else
4748 matched = !STRNCMP(startp, ptr, len);
4749 if (matched && define_matched && whole
4750 && vim_iswordc(startp[len]))
4751 matched = FALSE;
4753 else if (regmatch.regprog != NULL
4754 && vim_regexec(&regmatch, line, (colnr_T)(p - line)))
4756 matched = TRUE;
4757 startp = regmatch.startp[0];
4759 * Check if the line is not a comment line (unless we are
4760 * looking for a define). A line starting with "# define"
4761 * is not considered to be a comment line.
4763 if (!define_matched && skip_comments)
4765 #ifdef FEAT_COMMENTS
4766 if ((*line != '#' ||
4767 STRNCMP(skipwhite(line + 1), "define", 6) != 0)
4768 && get_leader_len(line, NULL, FALSE))
4769 matched = FALSE;
4772 * Also check for a "/ *" or "/ /" before the match.
4773 * Skips lines like "int backwards; / * normal index
4774 * * /" when looking for "normal".
4775 * Note: Doesn't skip "/ *" in comments.
4777 p = skipwhite(line);
4778 if (matched
4779 || (p[0] == '/' && p[1] == '*') || p[0] == '*')
4780 #endif
4781 for (p = line; *p && p < startp; ++p)
4783 if (matched
4784 && p[0] == '/'
4785 && (p[1] == '*' || p[1] == '/'))
4787 matched = FALSE;
4788 /* After "//" all text is comment */
4789 if (p[1] == '/')
4790 break;
4791 ++p;
4793 else if (!matched && p[0] == '*' && p[1] == '/')
4795 /* Can find match after "* /". */
4796 matched = TRUE;
4797 ++p;
4804 if (matched)
4806 #ifdef FEAT_INS_EXPAND
4807 if (action == ACTION_EXPAND)
4809 int reuse = 0;
4810 int add_r;
4811 char_u *aux;
4813 if (depth == -1 && lnum == curwin->w_cursor.lnum)
4814 break;
4815 found = TRUE;
4816 aux = p = startp;
4817 if (compl_cont_status & CONT_ADDING)
4819 p += compl_length;
4820 if (vim_iswordp(p))
4821 goto exit_matched;
4822 p = find_word_start(p);
4824 p = find_word_end(p);
4825 i = (int)(p - aux);
4827 if ((compl_cont_status & CONT_ADDING) && i == compl_length)
4829 /* IOSIZE > compl_length, so the STRNCPY works */
4830 STRNCPY(IObuff, aux, i);
4832 /* Get the next line: when "depth" < 0 from the current
4833 * buffer, otherwise from the included file. Jump to
4834 * exit_matched when past the last line. */
4835 if (depth < 0)
4837 if (lnum >= end_lnum)
4838 goto exit_matched;
4839 line = ml_get(++lnum);
4841 else if (vim_fgets(line = file_line,
4842 LSIZE, files[depth].fp))
4843 goto exit_matched;
4845 /* we read a line, set "already" to check this "line" later
4846 * if depth >= 0 we'll increase files[depth].lnum far
4847 * bellow -- Acevedo */
4848 already = aux = p = skipwhite(line);
4849 p = find_word_start(p);
4850 p = find_word_end(p);
4851 if (p > aux)
4853 if (*aux != ')' && IObuff[i-1] != TAB)
4855 if (IObuff[i-1] != ' ')
4856 IObuff[i++] = ' ';
4857 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/
4858 if (p_js
4859 && (IObuff[i-2] == '.'
4860 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4861 && (IObuff[i-2] == '?'
4862 || IObuff[i-2] == '!'))))
4863 IObuff[i++] = ' ';
4865 /* copy as much as posible of the new word */
4866 if (p - aux >= IOSIZE - i)
4867 p = aux + IOSIZE - i - 1;
4868 STRNCPY(IObuff + i, aux, p - aux);
4869 i += (int)(p - aux);
4870 reuse |= CONT_S_IPOS;
4872 IObuff[i] = NUL;
4873 aux = IObuff;
4875 if (i == compl_length)
4876 goto exit_matched;
4879 add_r = ins_compl_add_infercase(aux, i, p_ic,
4880 curr_fname == curbuf->b_fname ? NULL : curr_fname,
4881 dir, reuse);
4882 if (add_r == OK)
4883 /* if dir was BACKWARD then honor it just once */
4884 dir = FORWARD;
4885 else if (add_r == FAIL)
4886 break;
4888 else
4889 #endif
4890 if (action == ACTION_SHOW_ALL)
4892 found = TRUE;
4893 if (!did_show)
4894 gotocmdline(TRUE); /* cursor at status line */
4895 if (curr_fname != prev_fname)
4897 if (did_show)
4898 msg_putchar('\n'); /* cursor below last one */
4899 if (!got_int) /* don't display if 'q' typed
4900 at "--more--" mesage */
4901 msg_home_replace_hl(curr_fname);
4902 prev_fname = curr_fname;
4904 did_show = TRUE;
4905 if (!got_int)
4906 show_pat_in_path(line, type, TRUE, action,
4907 (depth == -1) ? NULL : files[depth].fp,
4908 (depth == -1) ? &lnum : &files[depth].lnum,
4909 match_count++);
4911 /* Set matched flag for this file and all the ones that
4912 * include it */
4913 for (i = 0; i <= depth; ++i)
4914 files[i].matched = TRUE;
4916 else if (--count <= 0)
4918 found = TRUE;
4919 if (depth == -1 && lnum == curwin->w_cursor.lnum
4920 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4921 && g_do_tagpreview == 0
4922 #endif
4924 EMSG(_("E387: Match is on current line"));
4925 else if (action == ACTION_SHOW)
4927 show_pat_in_path(line, type, did_show, action,
4928 (depth == -1) ? NULL : files[depth].fp,
4929 (depth == -1) ? &lnum : &files[depth].lnum, 1L);
4930 did_show = TRUE;
4932 else
4934 #ifdef FEAT_GUI
4935 need_mouse_correct = TRUE;
4936 #endif
4937 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4938 /* ":psearch" uses the preview window */
4939 if (g_do_tagpreview != 0)
4941 curwin_save = curwin;
4942 prepare_tagpreview(TRUE);
4944 #endif
4945 if (action == ACTION_SPLIT)
4947 #ifdef FEAT_WINDOWS
4948 if (win_split(0, 0) == FAIL)
4949 #endif
4950 break;
4951 #ifdef FEAT_SCROLLBIND
4952 curwin->w_p_scb = FALSE;
4953 #endif
4955 if (depth == -1)
4957 /* match in current file */
4958 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4959 if (g_do_tagpreview != 0)
4961 if (getfile(0, curwin_save->w_buffer->b_fname,
4962 NULL, TRUE, lnum, FALSE) > 0)
4963 break; /* failed to jump to file */
4965 else
4966 #endif
4967 setpcmark();
4968 curwin->w_cursor.lnum = lnum;
4970 else
4972 if (getfile(0, files[depth].name, NULL, TRUE,
4973 files[depth].lnum, FALSE) > 0)
4974 break; /* failed to jump to file */
4975 /* autocommands may have changed the lnum, we don't
4976 * want that here */
4977 curwin->w_cursor.lnum = files[depth].lnum;
4980 if (action != ACTION_SHOW)
4982 curwin->w_cursor.col = (colnr_T) (startp - line);
4983 curwin->w_set_curswant = TRUE;
4986 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4987 if (g_do_tagpreview != 0
4988 && curwin != curwin_save && win_valid(curwin_save))
4990 /* Return cursor to where we were */
4991 validate_cursor();
4992 redraw_later(VALID);
4993 win_enter(curwin_save, TRUE);
4995 #endif
4996 break;
4998 #ifdef FEAT_INS_EXPAND
4999 exit_matched:
5000 #endif
5001 matched = FALSE;
5002 /* look for other matches in the rest of the line if we
5003 * are not at the end of it already */
5004 if (def_regmatch.regprog == NULL
5005 #ifdef FEAT_INS_EXPAND
5006 && action == ACTION_EXPAND
5007 && !(compl_cont_status & CONT_SOL)
5008 #endif
5009 && *(p = startp + 1))
5010 goto search_line;
5012 line_breakcheck();
5013 #ifdef FEAT_INS_EXPAND
5014 if (action == ACTION_EXPAND)
5015 ins_compl_check_keys(30);
5016 if (got_int || compl_interrupted)
5017 #else
5018 if (got_int)
5019 #endif
5020 break;
5023 * Read the next line. When reading an included file and encountering
5024 * end-of-file, close the file and continue in the file that included
5025 * it.
5027 while (depth >= 0 && !already
5028 && vim_fgets(line = file_line, LSIZE, files[depth].fp))
5030 fclose(files[depth].fp);
5031 --old_files;
5032 files[old_files].name = files[depth].name;
5033 files[old_files].matched = files[depth].matched;
5034 --depth;
5035 curr_fname = (depth == -1) ? curbuf->b_fname
5036 : files[depth].name;
5037 if (depth < depth_displayed)
5038 depth_displayed = depth;
5040 if (depth >= 0) /* we could read the line */
5041 files[depth].lnum++;
5042 else if (!already)
5044 if (++lnum > end_lnum)
5045 break;
5046 line = ml_get(lnum);
5048 already = NULL;
5050 /* End of big for (;;) loop. */
5052 /* Close any files that are still open. */
5053 for (i = 0; i <= depth; i++)
5055 fclose(files[i].fp);
5056 vim_free(files[i].name);
5058 for (i = old_files; i < max_path_depth; i++)
5059 vim_free(files[i].name);
5060 vim_free(files);
5062 if (type == CHECK_PATH)
5064 if (!did_show)
5066 if (action != ACTION_SHOW_ALL)
5067 MSG(_("All included files were found"));
5068 else
5069 MSG(_("No included files"));
5072 else if (!found
5073 #ifdef FEAT_INS_EXPAND
5074 && action != ACTION_EXPAND
5075 #endif
5078 #ifdef FEAT_INS_EXPAND
5079 if (got_int || compl_interrupted)
5080 #else
5081 if (got_int)
5082 #endif
5083 EMSG(_(e_interr));
5084 else if (type == FIND_DEFINE)
5085 EMSG(_("E388: Couldn't find definition"));
5086 else
5087 EMSG(_("E389: Couldn't find pattern"));
5089 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL)
5090 msg_end();
5092 fpip_end:
5093 vim_free(file_line);
5094 vim_free(regmatch.regprog);
5095 vim_free(incl_regmatch.regprog);
5096 vim_free(def_regmatch.regprog);
5098 #ifdef RISCOS
5099 /* Restore previous file munging state. */
5100 __riscosify_control = previous_munging;
5101 #endif
5104 static void
5105 show_pat_in_path(line, type, did_show, action, fp, lnum, count)
5106 char_u *line;
5107 int type;
5108 int did_show;
5109 int action;
5110 FILE *fp;
5111 linenr_T *lnum;
5112 long count;
5114 char_u *p;
5116 if (did_show)
5117 msg_putchar('\n'); /* cursor below last one */
5118 else if (!msg_silent)
5119 gotocmdline(TRUE); /* cursor at status line */
5120 if (got_int) /* 'q' typed at "--more--" message */
5121 return;
5122 for (;;)
5124 p = line + STRLEN(line) - 1;
5125 if (fp != NULL)
5127 /* We used fgets(), so get rid of newline at end */
5128 if (p >= line && *p == '\n')
5129 --p;
5130 if (p >= line && *p == '\r')
5131 --p;
5132 *(p + 1) = NUL;
5134 if (action == ACTION_SHOW_ALL)
5136 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */
5137 msg_puts(IObuff);
5138 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */
5139 /* Highlight line numbers */
5140 msg_puts_attr(IObuff, hl_attr(HLF_N));
5141 MSG_PUTS(" ");
5143 msg_prt_line(line, FALSE);
5144 out_flush(); /* show one line at a time */
5146 /* Definition continues until line that doesn't end with '\' */
5147 if (got_int || type != FIND_DEFINE || p < line || *p != '\\')
5148 break;
5150 if (fp != NULL)
5152 if (vim_fgets(line, LSIZE, fp)) /* end of file */
5153 break;
5154 ++*lnum;
5156 else
5158 if (++*lnum > curbuf->b_ml.ml_line_count)
5159 break;
5160 line = ml_get(*lnum);
5162 msg_putchar('\n');
5165 #endif
5167 #ifdef FEAT_VIMINFO
5169 read_viminfo_search_pattern(virp, force)
5170 vir_T *virp;
5171 int force;
5173 char_u *lp;
5174 int idx = -1;
5175 int magic = FALSE;
5176 int no_scs = FALSE;
5177 int off_line = FALSE;
5178 int off_end = 0;
5179 long off = 0;
5180 int setlast = FALSE;
5181 #ifdef FEAT_SEARCH_EXTRA
5182 static int hlsearch_on = FALSE;
5183 #endif
5184 char_u *val;
5187 * Old line types:
5188 * "/pat", "&pat": search/subst. pat
5189 * "~/pat", "~&pat": last used search/subst. pat
5190 * New line types:
5191 * "~h", "~H": hlsearch highlighting off/on
5192 * "~<magic><smartcase><line><end><off><last><which>pat"
5193 * <magic>: 'm' off, 'M' on
5194 * <smartcase>: 's' off, 'S' on
5195 * <line>: 'L' line offset, 'l' char offset
5196 * <end>: 'E' from end, 'e' from start
5197 * <off>: decimal, offset
5198 * <last>: '~' last used pattern
5199 * <which>: '/' search pat, '&' subst. pat
5201 lp = virp->vir_line;
5202 if (lp[0] == '~' && (lp[1] == 'm' || lp[1] == 'M')) /* new line type */
5204 if (lp[1] == 'M') /* magic on */
5205 magic = TRUE;
5206 if (lp[2] == 's')
5207 no_scs = TRUE;
5208 if (lp[3] == 'L')
5209 off_line = TRUE;
5210 if (lp[4] == 'E')
5211 off_end = SEARCH_END;
5212 lp += 5;
5213 off = getdigits(&lp);
5215 if (lp[0] == '~') /* use this pattern for last-used pattern */
5217 setlast = TRUE;
5218 lp++;
5220 if (lp[0] == '/')
5221 idx = RE_SEARCH;
5222 else if (lp[0] == '&')
5223 idx = RE_SUBST;
5224 #ifdef FEAT_SEARCH_EXTRA
5225 else if (lp[0] == 'h') /* ~h: 'hlsearch' highlighting off */
5226 hlsearch_on = FALSE;
5227 else if (lp[0] == 'H') /* ~H: 'hlsearch' highlighting on */
5228 hlsearch_on = TRUE;
5229 #endif
5230 if (idx >= 0)
5232 if (force || spats[idx].pat == NULL)
5234 val = viminfo_readstring(virp, (int)(lp - virp->vir_line + 1),
5235 TRUE);
5236 if (val != NULL)
5238 set_last_search_pat(val, idx, magic, setlast);
5239 vim_free(val);
5240 spats[idx].no_scs = no_scs;
5241 spats[idx].off.line = off_line;
5242 spats[idx].off.end = off_end;
5243 spats[idx].off.off = off;
5244 #ifdef FEAT_SEARCH_EXTRA
5245 if (setlast)
5246 no_hlsearch = !hlsearch_on;
5247 #endif
5251 return viminfo_readline(virp);
5254 void
5255 write_viminfo_search_pattern(fp)
5256 FILE *fp;
5258 if (get_viminfo_parameter('/') != 0)
5260 #ifdef FEAT_SEARCH_EXTRA
5261 fprintf(fp, "\n# hlsearch on (H) or off (h):\n~%c",
5262 (no_hlsearch || find_viminfo_parameter('h') != NULL) ? 'h' : 'H');
5263 #endif
5264 wvsp_one(fp, RE_SEARCH, "", '/');
5265 wvsp_one(fp, RE_SUBST, "Substitute ", '&');
5269 static void
5270 wvsp_one(fp, idx, s, sc)
5271 FILE *fp; /* file to write to */
5272 int idx; /* spats[] index */
5273 char *s; /* search pat */
5274 int sc; /* dir char */
5276 if (spats[idx].pat != NULL)
5278 fprintf(fp, _("\n# Last %sSearch Pattern:\n~"), s);
5279 /* off.dir is not stored, it's reset to forward */
5280 fprintf(fp, "%c%c%c%c%ld%s%c",
5281 spats[idx].magic ? 'M' : 'm', /* magic */
5282 spats[idx].no_scs ? 's' : 'S', /* smartcase */
5283 spats[idx].off.line ? 'L' : 'l', /* line offset */
5284 spats[idx].off.end ? 'E' : 'e', /* offset from end */
5285 spats[idx].off.off, /* offset */
5286 last_idx == idx ? "~" : "", /* last used pat */
5287 sc);
5288 viminfo_writestring(fp, spats[idx].pat);
5291 #endif /* FEAT_VIMINFO */