From 942b4541a2d8e8df8369ab70e112dbbbe0c7c0aa Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 17 Jun 2018 16:23:34 +0200 Subject: patch 8.1.0064: typing CTRL-W in a prompt buffer shows mode "-- --" Problem: Typing CTRL-W in a prompt buffer shows mode "-- --". Solution: Set restart_edit to 'A' and check for it. --- src/window.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/window.c') diff --git a/src/window.c b/src/window.c index 4f4f08b67..f059b3766 100644 --- a/src/window.c +++ b/src/window.c @@ -2114,6 +2114,8 @@ leaving_window(win_T *win) // When leaving a prompt window stop Insert mode and perhaps restart // it when entering that window again. win->w_buffer->b_prompt_insert = restart_edit; + if (restart_edit != 0 && mode_displayed) + clear_cmdline = TRUE; /* unshow mode later */ restart_edit = NUL; // When leaving the window (or closing the window) was done from a -- cgit v1.2.1