diff options
author | 2016-04-29 15:00:48 +0000 | |
---|---|---|
committer | 2016-04-29 15:00:48 +0000 | |
commit | bc3b19faf8c0a279e283433e2ae90152b2351585 (patch) | |
tree | 88b8443f41dc6f048d9ccaa300152d7cbd9fc55b /usr.bin/tmux/tmux.h | |
parent | Fix some gibbering horrors due to uninitialized struct nameidata's (diff) | |
download | wireguard-openbsd-bc3b19faf8c0a279e283433e2ae90152b2351585.tar.xz wireguard-openbsd-bc3b19faf8c0a279e283433e2ae90152b2351585.zip |
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; |