# HG changeset patch # User Christian Brabandt # Date 1512506704 -3600 # Node ID 6f98a5fd0c1996ae18df4bd3daaedeb348c925d6 # Parent 933cf0c7fb9c0751f27b969e7b65ea89cece759a patch 8.0.1376: cursor in terminal not always updated commit https://github.com/vim/vim/commit/23c1b2b018c8121ca5fcc247e37966428bf8ca66 Author: Bram Moolenaar Date: Tue Dec 5 21:32:33 2017 +0100 patch 8.0.1376: cursor in terminal not always updated Problem: Cursor in terminal not always updated. Solution: Call gui_mch_flush(). (Ken Takata) diff --git a/src/terminal.c b/src/terminal.c --- a/src/terminal.c +++ b/src/terminal.c @@ -675,7 +675,10 @@ update_cursor(term_T *term, int redraw) out_flush(); #ifdef FEAT_GUI if (gui.in_use) + { gui_update_cursor(FALSE, FALSE); + gui_mch_flush(); + } #endif } } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -772,6 +772,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1376, +/**/ 1375, /**/ 1374,