aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nvim/terminal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c
index 959126dd24..61b55f71de 100644
--- a/src/nvim/terminal.c
+++ b/src/nvim/terminal.c
@@ -693,7 +693,6 @@ bool terminal_enter(void)
refresh_cursor(s->term);
adjust_topline(s->term, buf, 0); // scroll to end
- showmode();
curwin->w_redr_status = true; // For mode() in statusline. #8323
redraw_custom_title_later();
if (!s->term->cursor.visible) {
@@ -701,6 +700,7 @@ bool terminal_enter(void)
ui_busy_start();
}
ui_cursor_shape();
+ showmode();
apply_autocmds(EVENT_TERMENTER, NULL, NULL, false, curbuf);
may_trigger_modechanged();