# HG changeset patch # User Bram Moolenaar # Date 1654369203 -7200 # Node ID 87c00c420d2794ef2f88393f213b034bad4fa343 # Parent f8e9d5023bf693e553b77cdc6b679d8e91e15907 patch 8.2.5055: statusline is not updated when terminal title changes Commit: https://github.com/vim/vim/commit/327e6dd82235d70f6d5aa33ac8281e7fd79b7381 Author: LemonBoy Date: Sat Jun 4 19:57:59 2022 +0100 patch 8.2.5055: statusline is not updated when terminal title changes Problem: Statusline is not updated when terminal title changes. Solution: Redraw the status line when the title changes. (issue https://github.com/vim/vim/issues/10425) diff --git a/src/terminal.c b/src/terminal.c --- a/src/terminal.c +++ b/src/terminal.c @@ -3153,7 +3153,10 @@ handle_settermprop( } VIM_CLEAR(term->tl_status_text); if (term == curbuf->b_term) + { maketitle(); + curwin->w_redr_status = TRUE; + } break; case VTERM_PROP_CURSORVISIBLE: diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -735,6 +735,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 5055, +/**/ 5054, /**/ 5053,