diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-06-06 22:36:24 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-06-06 22:36:24 +0200 |
commit | 975a880a1389e8ce6dea8d66a7c109140b2f94ec (patch) | |
tree | 64e2a6019a20c05e2b399f73e2f29f7cb20c0d49 /src/proto/getchar.pro | |
parent | adc17a5f9d207fd1623fd923457a46efc9214777 (diff) | |
download | vim-git-975a880a1389e8ce6dea8d66a7c109140b2f94ec.tar.gz |
patch 8.2.0916: mapping with partly modifyOtherKeys code does not workv8.2.0916
Problem: Mapping with partly modifyOtherKeys code does not work.
Solution: If there is no mapping with a separate modifier include the
modifier in the key and then try mapping again. (closes #6200)
Diffstat (limited to 'src/proto/getchar.pro')
-rw-r--r-- | src/proto/getchar.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/getchar.pro b/src/proto/getchar.pro index 57d78b594..bf131a5ac 100644 --- a/src/proto/getchar.pro +++ b/src/proto/getchar.pro @@ -37,7 +37,7 @@ void openscript(char_u *name, int directly); void close_all_scripts(void); int using_script(void); void before_blocking(void); -int merge_modifyOtherKeys(int c_arg); +int merge_modifyOtherKeys(int c_arg, int *modifiers); int vgetc(void); int safe_vgetc(void); int plain_vgetc(void); |