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