Skip to content

Commit e7ca3fe

Browse files
committed
Do flush in ex_redraw and ex_redrawstatus
Fix #174
1 parent ddc5c14 commit e7ca3fe

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/ex_docmd.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9662,6 +9662,10 @@ ex_redraw(eap)
96629662
need_wait_return = FALSE;
96639663

96649664
out_flush();
9665+
#ifdef FEAT_GUI_MACVIM
9666+
if (gui.in_use)
9667+
gui_macvim_flush();
9668+
#endif
96659669
}
96669670

96679671
/*
@@ -9685,6 +9689,10 @@ ex_redrawstatus(eap)
96859689
RedrawingDisabled = r;
96869690
p_lz = p;
96879691
out_flush();
9692+
# ifdef FEAT_GUI_MACVIM
9693+
if (gui.in_use)
9694+
gui_macvim_flush();
9695+
# endif
96889696
#endif
96899697
}
96909698

0 commit comments

Comments
 (0)