0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.2.0916: mapping with partly modifyOtherKeys code does not work

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)
This commit is contained in:
Bram Moolenaar
2020-06-06 22:36:24 +02:00
parent adc17a5f9d
commit 975a880a13
7 changed files with 74 additions and 11 deletions

View File

@@ -1609,7 +1609,7 @@ decodeModifyOtherKeys(int c)
#endif
mod_mask = decode_modifiers(arg[!form]);
c = merge_modifyOtherKeys(arg[form]);
c = merge_modifyOtherKeys(arg[form], &mod_mask);
}
}