Skip to content

Commit d0e026b

Browse files
committed
updated for version 7.3.384
Problem: Mapping CTRL-K in Insert mode breaks CTRL-X CTRL-K for dictionary completion. Solution: Add CTRL-K to the list of recognized keys. (James McCoy)
1 parent c731303 commit d0e026b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/edit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2183,7 +2183,7 @@ vim_is_ctrl_x_key(c)
21832183
|| c == Ctrl_I || c == Ctrl_D || c == Ctrl_P
21842184
|| c == Ctrl_N || c == Ctrl_T || c == Ctrl_V
21852185
|| c == Ctrl_Q || c == Ctrl_U || c == Ctrl_O
2186-
|| c == Ctrl_S || c == 's');
2186+
|| c == Ctrl_S || c == Ctrl_K || c == 's');
21872187
case CTRL_X_SCROLL:
21882188
return (c == Ctrl_Y || c == Ctrl_E);
21892189
case CTRL_X_WHOLE_LINE:

src/version.c

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

715715
static int included_patches[] =
716716
{ /* Add new patch number below this line */
717+
/**/
718+
384,
717719
/**/
718720
383,
719721
/**/

0 commit comments

Comments
 (0)