From a5fd5782f87362b8ee31cd5c6975728e112db9ff Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 12 Oct 2017 11:32:27 +0000 Subject: Show exit status and time in the remain-on-exit pane text, mostly from Timo Boettcher in GitHub issue 1103. --- tmux.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index a661a6da..ad35c336 100644 --- a/tmux.h +++ b/tmux.h @@ -778,6 +778,8 @@ struct window_pane { #define PANE_INPUTOFF 0x40 #define PANE_CHANGED 0x80 #define PANE_EXITED 0x100 +#define PANE_STATUSREADY 0x200 +#define PANE_STATUSDRAWN 0x400 int argc; char **argv; -- cgit