We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c153193 + 5f1fea2 commit cd6fe9aCopy full SHA for cd6fe9a
src/edit.c
@@ -3903,6 +3903,12 @@ ins_compl_prep(c)
3903
showmode();
3904
}
3905
3906
+#ifdef FEAT_CMDWIN
3907
+ if (c == Ctrl_C && cmdwin_type != 0)
3908
+ /* Avoid the popup menu remains displayed when leaving the
3909
+ * command line window. */
3910
+ update_screen(0);
3911
+#endif
3912
#ifdef FEAT_CINDENT
3913
/*
3914
* Indent now if a key was typed that is in 'cinkeys'.
src/version.c
@@ -741,6 +741,8 @@ static char *(features[]) =
741
742
static int included_patches[] =
743
{ /* Add new patch number below this line */
744
+/**/
745
+ 882,
746
/**/
747
881,
748
0 commit comments