# HG changeset patch # User Bram Moolenaar # Date 1662380104 -7200 # Node ID 5b4f3129cadc71322dcade502dd71ab5ccd8b26e # Parent 6a519b687eb4edc70857f2216bd8272f7ad563b5 patch 9.0.0385: GUI: when CTRL-D is mapped in Insert mode it gets inserted Commit: https://github.com/vim/vim/commit/c47b16a47063735413ebe3885604c4460f724246 Author: zeertzjq Date: Mon Sep 5 13:05:29 2022 +0100 patch 9.0.0385: GUI: when CTRL-D is mapped in Insert mode it gets inserted Problem: GUI: when CTRL-D is mapped in Insert mode it gets inserted. (Yasuhiro Matsumoto) Solution: Also recognize modifier starting with CSI. (closes #11057) diff --git a/src/getchar.c b/src/getchar.c --- 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. diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 385, +/**/ 384, /**/ 383,