diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-03 22:08:33 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-03 22:08:33 +0200 |
commit | 581ba39aefe837298a9943b04a1dab13a7ec6772 (patch) | |
tree | 156f0c8dd74bd6e76c850239f753cbaa17c12924 /src/proto/map.pro | |
parent | 27da7de7c547dbf983ed7dd901ea59be4e7c9ab2 (diff) | |
download | vim-git-581ba39aefe837298a9943b04a1dab13a7ec6772.tar.gz |
patch 8.1.1969: popup window filter is used in all modesv8.1.1969
Problem: Popup window filter is used in all modes.
Solution: Add the "filtermode" property.
Diffstat (limited to 'src/proto/map.pro')
-rw-r--r-- | src/proto/map.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/map.pro b/src/proto/map.pro index 05d66fb87..cf1b31a4c 100644 --- a/src/proto/map.pro +++ b/src/proto/map.pro @@ -4,6 +4,7 @@ mapblock_T *get_buf_maphash_list(int state, int c); int is_maphash_valid(void); int do_map(int maptype, char_u *arg, int mode, int abbrev); void map_clear_int(buf_T *buf, int mode, int local, int abbr); +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); |