summaryrefslogtreecommitdiffstats
path: root/src/proto/map.pro
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2022-02-27 12:07:30 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-27 12:07:30 +0000
commit6caeda2fce4bccac2dd43ca9fee1d32ee96b708d (patch)
tree2a3de1990e27aa46b59806f74228347f59ceff65 /src/proto/map.pro
parent00333cb3b341499df8729b9345f0bbad968cda0b (diff)
patch 8.2.4479: no fuzzy completieon for maps and abbreviationsv8.2.4479
Problem: No fuzzy completieon for maps and abbreviations. Solution: Fuzzy complete maps and abbreviations. (Yegappan Lakshmanan, closes #9856)
Diffstat (limited to 'src/proto/map.pro')
-rw-r--r--src/proto/map.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/map.pro b/src/proto/map.pro
index 42ebd4b613..8b8bc06246 100644
--- a/src/proto/map.pro
+++ b/src/proto/map.pro
@@ -8,7 +8,7 @@ int mode_str2flags(char_u *modechars);
int map_to_exists(char_u *str, char_u *modechars, int abbr);
int map_to_exists_mode(char_u *rhs, int mode, int abbr);
char_u *set_context_in_map_cmd(expand_T *xp, char_u *cmd, char_u *arg, int forceit, int isabbrev, int isunmap, cmdidx_T cmdidx);
-int ExpandMappings(regmatch_T *regmatch, int *num_file, char_u ***file);
+int ExpandMappings(char_u *pat, regmatch_T *regmatch, int *num_file, char_u ***file);
int check_abbr(int c, char_u *ptr, int col, int mincol);
char_u *eval_map_expr(mapblock_T *mp, int c);
char_u *vim_strsave_escape_csi(char_u *p);