From 33f0661ccfd3f3fb7649c9c1c1503171b4a557eb Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 29 Apr 2016 15:00:49 +0000 Subject: 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. --- usr.bin/tmux/tmux.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'usr.bin/tmux/tmux.h') 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 @@ -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; -- cgit v1.2.3