summaryrefslogtreecommitdiffstats
path: root/src/proto/terminal.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-11-19 17:01:08 +0000
committerBram Moolenaar <Bram@vim.org>2021-11-19 17:01:08 +0000
commit3ad695328f94e0197e84454f125c7f3464091d0c (patch)
tree111a817a7ffe3f04b1a367ad2dd1d63b194f942a /src/proto/terminal.pro
parent8b8d829faf04fe3706c04f7f7000054acd3254e7 (diff)
patch 8.2.3624: when renaming a terminal buffer status text is not updatedv8.2.3624
Problem: When renaming a terminal buffer the status text is not updated. Solution: Clear the cached status text when renaming a terminal buffer. (closes #9162)
Diffstat (limited to 'src/proto/terminal.pro')
-rw-r--r--src/proto/terminal.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/terminal.pro b/src/proto/terminal.pro
index 061a668bf8..f5e3258d1f 100644
--- a/src/proto/terminal.pro
+++ b/src/proto/terminal.pro
@@ -31,6 +31,7 @@ int term_get_attr(win_T *wp, linenr_T lnum, int col);
void term_update_colors(term_T *term);
void term_update_colors_all(void);
char_u *term_get_status_text(term_T *term);
+void term_clear_status_text(term_T *term);
int set_ref_in_term(int copyID);
void f_term_dumpwrite(typval_T *argvars, typval_T *rettv);
int term_swap_diff(void);