From 0509be07404a4f4626bbdab56d858f657dc68604 Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 29 Apr 2016 15:00:48 +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. --- tmux.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index d6cf114e..f81ed127 100644 --- a/tmux.h +++ b/tmux.h @@ -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