aboutsummaryrefslogtreecommitdiff
path: root/vis.c
diff options
context:
space:
mode:
Diffstat (limited to 'vis.c')
-rw-r--r--vis.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/vis.c b/vis.c
index 6b5d458..3fabe5b 100644
--- a/vis.c
+++ b/vis.c
@@ -116,6 +116,10 @@ void vis_window_name(Win *win, const char *filename) {
}
}
+void vis_window_status(Win *win, const char *status) {
+ win->ui->status(win->ui, status);
+}
+
static void windows_invalidate(Vis *vis, size_t start, size_t end) {
for (Win *win = vis->windows; win; win = win->next) {
if (vis->win != win && vis->win->file == win->file) {