diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-12-10 14:53:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-10 14:53:02 +0800 |
commit | d1fd674df3eb07049c780d6b7821e17d471fdc4c (patch) | |
tree | 61c4eea43636e9979310746e8896b27ed0c93770 /src/nvim/normal.c | |
parent | 98694c36756f747e7929033343e8479f39094461 (diff) | |
download | rneovim-d1fd674df3eb07049c780d6b7821e17d471fdc4c.tar.gz rneovim-d1fd674df3eb07049c780d6b7821e17d471fdc4c.tar.bz2 rneovim-d1fd674df3eb07049c780d6b7821e17d471fdc4c.zip |
fix(ui): update title in more cases (#31508)
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 92a6068c5a..4d2abf1c8c 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -1372,10 +1372,6 @@ static void normal_redraw(NormalState *s) } } - if (need_maketitle) { - maketitle(); - } - curbuf->b_last_used = time(NULL); // Display message after redraw. If an external message is still visible, |