diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-07-28 07:06:55 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-07-28 07:06:55 +0000 |
commit | 650befca653df0f1f840c662cb72a0d7d4485545 (patch) | |
tree | bfb1cc87a910955395a649f49c537582c73f7a65 /usr.bin/tmux/options-table.c | |
parent | e436d9c1c2715f647696bfda3fb419eb2dfd8e26 (diff) |
Make window-linked and window-unlinked window options, GitHub issue
2790.
Diffstat (limited to 'usr.bin/tmux/options-table.c')
-rw-r--r-- | usr.bin/tmux/options-table.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c index 52c64ea774c..172fc6bd282 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.145 2021/07/14 08:56:00 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.146 2021/07/28 07:06:54 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1161,10 +1161,10 @@ const struct options_table_entry options_table[] = { OPTIONS_TABLE_HOOK("session-renamed", ""), OPTIONS_TABLE_HOOK("session-window-changed", ""), OPTIONS_TABLE_WINDOW_HOOK("window-layout-changed", ""), - OPTIONS_TABLE_WINDOW_HOOK("window-linked", ""), + OPTIONS_TABLE_HOOK("window-linked", ""), OPTIONS_TABLE_WINDOW_HOOK("window-pane-changed", ""), OPTIONS_TABLE_WINDOW_HOOK("window-renamed", ""), - OPTIONS_TABLE_WINDOW_HOOK("window-unlinked", ""), + OPTIONS_TABLE_HOOK("window-unlinked", ""), { .name = NULL } }; |