diff src/ex_docmd.c @ 28530:80085afc2f4d v8.2.4789

patch 8.2.4789: cursor pos wrong when using :redraw while editing the cmdline Commit: https://github.com/vim/vim/commit/a653e53b1f4ba08de0dbcea06288cf0cc1c6e752 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Apr 19 11:38:24 2022 +0100 patch 8.2.4789: cursor pos wrong when using :redraw while editing the cmdline Problem: The cursor may be in the in wrong place when using :redraw while editing the cmdline. Solution: When editing the command line let :redraw update the command line too. (closes #10210)
author Bram Moolenaar <Bram@vim.org>
date Tue, 19 Apr 2022 12:45:03 +0200
parents 0ae0946ebf9b
children dfe18756f2ad
line wrap: on
line diff
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -8323,6 +8323,10 @@ ex_redraw(exarg_T *eap)
     // No need to wait after an intentional redraw.
     need_wait_return = FALSE;
 
+    // When invoked from a callback or autocmd the command line may be active.
+    if (State & CMDLINE)
+	redrawcmdline();
+
     out_flush();
 }