diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2022-03-08 18:31:48 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2022-03-08 18:31:48 +0000 |
commit | 1e10183c9977b821866c78ebb602f930ac1b1965 (patch) | |
tree | 4cde90826a78c4533f1844f56b15e23837ee362e /usr.bin/tmux/tmux.h | |
parent | 272ec4e37eeb969ba3ebbcfa076ec3091ed372c7 (diff) |
Add remain-on-exit-format to set text shown when pane is dead.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index d88f9cb1a02..ccdb6188086 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.1163 2022/03/08 12:01:19 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.1164 2022/03/08 18:31:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1026,6 +1026,7 @@ struct window_pane { pid_t pid; char tty[TTY_NAME_MAX]; int status; + struct timeval dead_time; int fd; struct bufferevent *event; |