aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-11-19 22:37:04 +0000
committerTiago Cunha <tcunha@gmx.com>2009-11-19 22:37:04 +0000
commit7a9bfabf7ad3899c8217df72e8d883282f9224af (patch)
tree112dd95e968ba04f125ceb3abc38237c16d52e15 /tmux.h
parentcbc7a23e33784b8de530caa83214c484e94f6403 (diff)
downloadrtmux-7a9bfabf7ad3899c8217df72e8d883282f9224af.tar.gz
rtmux-7a9bfabf7ad3899c8217df72e8d883282f9224af.tar.bz2
rtmux-7a9bfabf7ad3899c8217df72e8d883282f9224af.zip
Sync OpenBSD patchset 554:
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.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index c8291f37..c2a94aa9 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.521 2009-11-19 22:35:10 tcunha Exp $ */
+/* $Id: tmux.h,v 1.522 2009-11-19 22:37:04 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -843,6 +843,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;
};