From: nicm Date: Wed, 28 Jul 2021 07:06:54 +0000 (+0000) Subject: Make window-linked and window-unlinked window options, GitHub issue X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=480d0dfec1c482070c91e85cf0fa6fd9f0dd01e2;p=openbsd Make window-linked and window-unlinked window options, GitHub issue 2790. --- 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 @@ -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 } };