Skip to content

Commit a21ccb7

Browse files
committed
patch 8.0.0589: :simalt still does not work
Problem: :simalt still does not work. Solution: Use K_NOP instead of K_IGNORE. (Christian Brabandt)
1 parent 1a9020d commit a21ccb7

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/gui_w32.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2642,11 +2642,11 @@ ex_simalt(exarg_T *eap)
26422642
}
26432643
if (fill_typebuf)
26442644
{
2645-
/* Put something in the typeahead buffer so that the message will get
2645+
/* Put a NOP in the typeahead buffer so that the message will get
26462646
* processed. */
26472647
key_name[0] = K_SPECIAL;
26482648
key_name[1] = KS_EXTRA;
2649-
key_name[2] = KE_IGNORE;
2649+
key_name[2] = KE_NOP;
26502650
key_name[3] = NUL;
26512651
typebuf_was_filled = TRUE;
26522652
(void)ins_typebuf(key_name, REMAP_NONE, 0, TRUE, FALSE);

src/version.c

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

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
589,
767769
/**/
768770
588,
769771
/**/

0 commit comments

Comments
 (0)