mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 21:48:35 +00:00
vim-patch:8.2.4828: fix for unmapping simplified key not fully tested
Problem: Fix for unmapping simplified key not fully tested.
Solution: Add a test case. (closes vim/vim#10292)
abeb09b2c5
This commit is contained in:
@@ -3249,6 +3249,8 @@ int buf_do_map(int maptype, MapArguments *args, int mode, bool is_abbrev, buf_T
|
||||
mpp = &(mp->m_next);
|
||||
continue;
|
||||
}
|
||||
// In keyround for simplified keys, don't unmap
|
||||
// a mapping without m_simplified flag.
|
||||
if (keyround1_simplified && !mp->m_simplified) {
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user