diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2020-05-16 15:24:29 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2020-05-16 15:24:29 +0000 |
commit | 4d0108c2832ca062ae18270d3016b6b11eba26b7 (patch) | |
tree | 21ab95dd5c87b1f0b320100c09e15033e574447b /usr.bin/tmux/server.c | |
parent | 3f33fb00a112af4bee22b475aa8aa7010c80bc79 (diff) |
Add 'e' key in buffer mode to open the buffer in an editor.
Diffstat (limited to 'usr.bin/tmux/server.c')
-rw-r--r-- | usr.bin/tmux/server.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/server.c b/usr.bin/tmux/server.c index 67ecdb08767..28dcccc6695 100644 --- a/usr.bin/tmux/server.c +++ b/usr.bin/tmux/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.188 2020/03/12 09:26:34 nicm Exp $ */ +/* $OpenBSD: server.c,v 1.189 2020/05/16 15:24:28 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -481,4 +481,5 @@ server_child_stopped(pid_t pid, int status) } } } + job_check_died(pid, status); } |