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