summaryrefslogtreecommitdiffstats
path: root/src/getchar.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-09-05 13:05:29 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-05 13:05:29 +0100
commitc47b16a47063735413ebe3885604c4460f724246 (patch)
tree72e4b67af3a549089d4f0413a1c961ef7e87ce1a /src/getchar.c
parentc7d2ff2ca03f1f36544a92cb93300eae06bcd0c0 (diff)
patch 9.0.0385: GUI: when CTRL-D is mapped in Insert mode it gets insertedv9.0.0385
Problem: GUI: when CTRL-D is mapped in Insert mode it gets inserted. (Yasuhiro Matsumoto) Solution: Also recognize modifier starting with CSI. (closes #11057)
Diffstat (limited to 'src/getchar.c')
-rw-r--r--src/getchar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/getchar.c b/src/getchar.c
index fee9191ba0..51faa2382c 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -2356,7 +2356,7 @@ check_simplify_modifier(int max_offset)
if (offset + 3 >= typebuf.tb_len)
break;
tp = typebuf.tb_buf + typebuf.tb_off + offset;
- if (tp[0] == K_SPECIAL && tp[1] == KS_MODIFIER)
+ if ((tp[0] == K_SPECIAL || tp[0] == CSI) && tp[1] == KS_MODIFIER)
{
// A modifier was not used for a mapping, apply it to ASCII keys.
// Shift would already have been applied.