aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/terminal.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-12-10 14:53:02 +0800
committerGitHub <noreply@github.com>2024-12-10 14:53:02 +0800
commitd1fd674df3eb07049c780d6b7821e17d471fdc4c (patch)
tree61c4eea43636e9979310746e8896b27ed0c93770 /src/nvim/terminal.c
parent98694c36756f747e7929033343e8479f39094461 (diff)
downloadrneovim-d1fd674df3eb07049c780d6b7821e17d471fdc4c.tar.gz
rneovim-d1fd674df3eb07049c780d6b7821e17d471fdc4c.tar.bz2
rneovim-d1fd674df3eb07049c780d6b7821e17d471fdc4c.zip
fix(ui): update title in more cases (#31508)
Diffstat (limited to 'src/nvim/terminal.c')
-rw-r--r--src/nvim/terminal.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c
index b4496d6758..6d4af0fc57 100644
--- a/src/nvim/terminal.c
+++ b/src/nvim/terminal.c
@@ -619,6 +619,7 @@ bool terminal_enter(void)
invalidate_terminal(s->term, s->term->cursor.row, s->term->cursor.row + 1);
showmode();
curwin->w_redr_status = true; // For mode() in statusline. #8323
+ redraw_custom_title_later();
ui_busy_start();
apply_autocmds(EVENT_TERMENTER, NULL, NULL, false, curbuf);
may_trigger_modechanged();