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