diff options
author | 2017-10-12 11:32:27 +0000 | |
---|---|---|
committer | 2017-10-12 11:32:27 +0000 | |
commit | 514fd64db65eb8fdaad8eb512948cdee09ecebcf (patch) | |
tree | e2fa375efe72c9b2216fb2f6ae796dff6583ae2e /usr.bin/tmux/tmux.h | |
parent | add -G to usage(); (diff) | |
download | wireguard-openbsd-514fd64db65eb8fdaad8eb512948cdee09ecebcf.tar.xz wireguard-openbsd-514fd64db65eb8fdaad8eb512948cdee09ecebcf.zip |
Show exit status and time in the remain-on-exit pane text, mostly from
Timo Boettcher in GitHub issue 1103.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index d35363c171d..9feda04c683 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.805 2017/10/05 13:29:18 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.806 2017/10/12 11:32:27 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -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; |