diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2016-04-29 15:00:49 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2016-04-29 15:00:49 +0000 |
commit | 33f0661ccfd3f3fb7649c9c1c1503171b4a557eb (patch) | |
tree | 2abb40841d0fba69063672e0c1866ea73636d607 /usr.bin/tmux/tmux.h | |
parent | f4bcd1acc00bfdb816780ce4ec8c6a0771db7e48 (diff) |
Add option to include status text in the pane borders. If
pane-border-status is set to "top" or "bottom" (rather than "off"),
every pane has a permanent top or bottom border containing the text from
pane-border-format.
Based on a diff sent long ago by Jonathan Slenders, mostly rewritten and
simplified by me.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 9c33c4bf790..78dd385f7d1 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.626 2016/04/29 13:36:10 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.627 2016/04/29 15:00:48 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -894,6 +894,9 @@ struct window_pane { struct screen *screen; struct screen base; + struct screen status_screen; + size_t status_size; + /* Saved in alternative screen mode. */ u_int saved_cx; u_int saved_cy; |