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 d76626f + 84dbd49 commit 8610e74Copy full SHA for 8610e74
src/screen.c
@@ -765,6 +765,9 @@ update_screen(int type)
765
* uses that. */
766
gui.col = gui_cursor_col;
767
gui.row = gui_cursor_row;
768
+# ifdef FEAT_MBYTE
769
+ gui.col = mb_fix_col(gui.col, gui.row);
770
+# endif
771
gui_update_cursor(FALSE, FALSE);
772
screen_cur_col = gui.col;
773
screen_cur_row = gui.row;
src/version.c
@@ -779,6 +779,8 @@ static char *(features[]) =
779
780
static int included_patches[] =
781
{ /* Add new patch number below this line */
782
+/**/
783
+ 21,
784
/**/
785
20,
786
0 commit comments