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 2061552 commit e21d69eCopy full SHA for e21d69e
src/getchar.c
@@ -2913,8 +2913,16 @@ vgetorpeek(int advance)
2913
}
2914
#ifdef FEAT_GUI
2915
/* may unshow different cursor shape */
2916
- if (gui.in_use && shape_changed)
2917
- gui_update_cursor(TRUE, FALSE);
+ if (gui.in_use)
+ {
2918
+ if (cmd_silent)
2919
+ gui_dont_update_cursor(TRUE);
2920
+ else
2921
+ gui_can_update_cursor();
2922
+
2923
+ if (shape_changed)
2924
+ gui_update_cursor(TRUE, FALSE);
2925
+ }
2926
#endif
2927
2928
--vgetc_busy;
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 626,
769
/**/
770
625,
771
0 commit comments