diff options
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r-- | src/nvim/getchar.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index 555eadb5d4..1fb3f827c1 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -3248,6 +3248,9 @@ int buf_do_map(int maptype, MapArguments *args, int mode, bool is_abbrev, buf_T 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; @@ -3319,7 +3322,9 @@ int buf_do_map(int maptype, MapArguments *args, int mode, bool is_abbrev, buf_T if (maptype == 1) { // delete entry if (!did_it) { - retval = 2; // no match + if (!did_simplify || keyround == 2) { + retval = 2; // no match + } } else if (*lhs == Ctrl_C) { // If CTRL-C has been unmapped, reuse it for Interrupting. if (map_table == buf->b_maphash) { |