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