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.
diff --git a/src/screen.c b/src/screen.c
index 2fae180..3dde1b7 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -10263,7 +10263,7 @@
do_mode = ((p_smd && msg_silent == 0)
&& ((State & INSERT)
- || restart_edit
+ || restart_edit != NUL
|| VIsual_active));
if (do_mode || reg_recording != 0)
{
@@ -10370,7 +10370,7 @@
#endif
MSG_PUTS_ATTR(_(" INSERT"), attr);
}
- else if (restart_edit == 'I')
+ else if (restart_edit == 'I' || restart_edit == 'A')
MSG_PUTS_ATTR(_(" (insert)"), attr);
else if (restart_edit == 'R')
MSG_PUTS_ATTR(_(" (replace)"), attr);