aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-11-19 19:47:28 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-11-19 19:47:28 +0000
commit33b337f6185aba3b59962db17de9b08af48de301 (patch)
treea824682df5669942c5ead73278beb6882d16e7e5 /tmux.h
parent543fb99bc60a82eeb8c1e3fa47cdcb86a1e2fb33 (diff)
downloadrtmux-33b337f6185aba3b59962db17de9b08af48de301.tar.gz
rtmux-33b337f6185aba3b59962db17de9b08af48de301.tar.bz2
rtmux-33b337f6185aba3b59962db17de9b08af48de301.zip
Change status line drawing to create the window list in a separate screen and
then copy it into the status line screen. This allows UTF-8 in window names and fixes some problems with #[] in window-status-format.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 0dda8cff..852203ee 100644
--- a/tmux.h
+++ b/tmux.h
@@ -844,6 +844,10 @@ struct winlink {
int idx;
struct window *window;
+ size_t status_width;
+ struct grid_cell status_cell;
+ char *status_text;
+
RB_ENTRY(winlink) entry;
TAILQ_ENTRY(winlink) sentry;
};