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