Skip to content

Commit

Permalink
patch 8.2.5055: statusline is not updated when terminal title changes
Browse files Browse the repository at this point in the history
Problem:    Statusline is not updated when terminal title changes.
Solution:   Redraw the status line when the title changes. (issue #10425)
  • Loading branch information
LemonBoy authored and brammool committed Jun 4, 2022
1 parent cfa8f9a commit 327e6dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/terminal.c
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -734,6 +734,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
5055,
/**/
5054,
/**/
Expand Down

0 comments on commit 327e6dd

Please sign in to comment.