diff src/screen.c @ 13968:d111462e0173 v8.1.0002

patch 8.1.0002: :stopinsert changes the message position commit https://github.com/vim/vim/commit/2abad54cede7c33f090fbde19a9a3eb3dbf78e53 Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 19 14:43:45 2018 +0200 patch 8.1.0002: :stopinsert changes the message position Problem: :stopinsert changes the message position. Solution: Save and restore msg_col and msg_row in clearmode(). (Jason Franklin)
author Christian Brabandt <cb@256bit.org>
date Sat, 19 May 2018 14:45:04 +0200
parents 81e8e6181aeb
children e124262d435e
line wrap: on
line diff
--- a/src/screen.c
+++ b/src/screen.c
@@ -10485,10 +10485,16 @@ unshowmode(int force)
     void
 clearmode(void)
 {
+    int save_msg_row = msg_row;
+    int save_msg_col = msg_col;
+
     msg_pos_mode();
     if (Recording)
 	recording_mode(HL_ATTR(HLF_CM));
     msg_clr_eos();
+
+    msg_col = save_msg_col;
+    msg_row = save_msg_row;
 }
 
     static void