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.
1 parent 9603bbe commit 46953c7Copy full SHA for 46953c7
src/popupmnu.c
@@ -643,6 +643,12 @@ pum_set_selected(n, repeat)
643
644
if (curwin != curwin_save && win_valid(curwin_save))
645
{
646
+ /* When the first completion is done and the preview
647
+ * window is not resized, skip the preview window's
648
+ * status line redrawing. */
649
+ if (ins_compl_active() && !resized)
650
+ curwin->w_redr_status = FALSE;
651
+
652
/* Return cursor to where we were */
653
validate_cursor();
654
redraw_later(SOME_VALID);
src/version.c
@@ -734,6 +734,8 @@ static char *(features[]) =
734
735
static int included_patches[] =
736
{ /* Add new patch number below this line */
737
+/**/
738
+ 383,
739
/**/
740
382,
741
0 commit comments