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