Skip to content

Commit 86ec6d7

Browse files
committed
patch 8.1.1185: mapping for CTRL-X is inconsistent
Problem: Mapping for CTRL-X is inconsistent. Solution: Map CTRL-X to "*d also for the MS-Windows console. (Ken Takata, closes #4265)
1 parent 137c14b commit 86ec6d7

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/getchar.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5269,7 +5269,7 @@ static struct initmap
52695269
{(char_u *)"\316\325 \"*y", VIS_SEL}, /* CTRL-Insert is "*y */
52705270
{(char_u *)"\316\327 \"*d", VIS_SEL}, /* SHIFT-Del is "*d */
52715271
{(char_u *)"\316\330 \"*d", VIS_SEL}, /* CTRL-Del is "*d */
5272-
{(char_u *)"\030 \"-d", VIS_SEL}, /* CTRL-X is "-d */
5272+
{(char_u *)"\030 \"*d", VIS_SEL}, /* CTRL-X is "*d */
52735273
# else
52745274
{(char_u *)"\316\324 P", NORMAL}, /* SHIFT-Insert is P */
52755275
{(char_u *)"\316\324 \"-dP", VIS_SEL}, /* SHIFT-Insert is "-dP */

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -771,6 +771,8 @@ static char *(features[]) =
771771

772772
static int included_patches[] =
773773
{ /* Add new patch number below this line */
774+
/**/
775+
1185,
774776
/**/
775777
1184,
776778
/**/

0 commit comments

Comments
 (0)