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. --- server.c | 1 + 1 file changed, 1 insertion(+) (limited to 'server.c') diff --git a/server.c b/server.c index 753f6d01..82b5a6b8 100644 --- a/server.c +++ b/server.c @@ -424,6 +424,7 @@ server_child_exited(pid_t pid, int status) TAILQ_FOREACH(wp, &w->panes, entry) { if (wp->pid == pid) { wp->status = status; + wp->flags |= PANE_STATUSREADY; log_debug("%%%u exited", wp->id); wp->flags |= PANE_EXITED; -- cgit