diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-11-28 10:55:46 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-11-28 10:55:46 +0000 |
commit | 9db8f7799ce6770c4fb74ca26ef14987cda6b8d1 (patch) | |
tree | 8684dad5356569f4faf035ee1b873db0608d899f /usr.bin | |
parent | c9dfdfd5d9624a9915c59c9b3942831a95e6fc1f (diff) |
Missing after-kill-pane option.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/options-table.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c index 77903228e25..f5fe00e759c 100644 --- a/usr.bin/tmux/options-table.c +++ b/usr.bin/tmux/options-table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options-table.c,v 1.114 2019/11/28 08:38:04 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.115 2019/11/28 10:55:45 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -811,6 +811,7 @@ const struct options_table_entry options_table[] = { OPTIONS_TABLE_HOOK("after-copy-mode", ""), OPTIONS_TABLE_HOOK("after-display-message", ""), OPTIONS_TABLE_HOOK("after-display-panes", ""), + OPTIONS_TABLE_HOOK("after-kill-pane", ""), OPTIONS_TABLE_HOOK("after-list-buffers", ""), OPTIONS_TABLE_HOOK("after-list-clients", ""), OPTIONS_TABLE_HOOK("after-list-keys", ""), |