summaryrefslogtreecommitdiffstats
path: root/src/map.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-04-24 17:07:53 +0100
committerBram Moolenaar <Bram@vim.org>2022-04-24 17:07:53 +0100
commita4e3332650021921068ef12923b4501c5b9918cb (patch)
tree89004ee99786454fed5b603a31ebf3df798e3bf3 /src/map.c
parentac92ab771952b2a9ee39ea6fa5e70e4c072942d5 (diff)
patch 8.2.4819: unmapping simplified keys also deletes other mappingv8.2.4819
Problem: Unmapping simplified keys also deletes other mapping. Solution: Only unmap a mapping with m_simplified set. (closes #10270)
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/map.c b/src/map.c
index d99a84fc39..f3ff00729b 100644
--- a/src/map.c
+++ b/src/map.c
@@ -725,6 +725,9 @@ do_map(
mpp = &(mp->m_next);
continue;
}
+ if (did_simplify && keyround == 1
+ && !mp->m_simplified)
+ break;
// We reset the indicated mode bits. If nothing
// is left the entry is deleted below.
mp->m_mode &= ~mode;
@@ -814,7 +817,10 @@ do_map(
{
// delete entry
if (!did_it)
- retval = 2; // no match
+ {
+ if (!did_simplify || keyround == 2)
+ retval = 2; // no match
+ }
else if (*keys == Ctrl_C)
{
// If CTRL-C has been unmapped, reuse it for Interrupting.