Mercurial > vim
diff src/proto/search.pro @ 22232:f22acf6472da v8.2.1665
patch 8.2.1665: cannot do fuzzy string matching
Commit: https://github.com/vim/vim/commit/635414dd2f3ae7d4d972d79b806348a6516cb91a
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Sep 11 22:25:15 2020 +0200
patch 8.2.1665: cannot do fuzzy string matching
Problem: Cannot do fuzzy string matching.
Solution: Add matchfuzzy(). (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/6932)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 11 Sep 2020 22:30:04 +0200 |
parents | 8a2b86a39ef4 |
children | 0491b9cafd44 |
line wrap: on
line diff
--- a/src/proto/search.pro +++ b/src/proto/search.pro @@ -36,4 +36,5 @@ void find_pattern_in_path(char_u *ptr, i spat_T *get_spat(int idx); int get_spat_last_idx(void); void f_searchcount(typval_T *argvars, typval_T *rettv); +void f_matchfuzzy(typval_T *argvars, typval_T *rettv); /* vim: set ft=c : */