diff options
author | nicm <nicm> | 2020-12-15 08:31:50 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-12-15 08:31:50 +0000 |
commit | 8bd29a30bff4e9d50765e2168a7aad11e163ccde (patch) | |
tree | 1abded8e63d57c6b6174209e8051c30d885d0595 /options-table.c | |
parent | f6095cad993293ec0f1988c1f6ae22921f9d2b2e (diff) | |
download | rtmux-8bd29a30bff4e9d50765e2168a7aad11e163ccde.tar.gz rtmux-8bd29a30bff4e9d50765e2168a7aad11e163ccde.tar.bz2 rtmux-8bd29a30bff4e9d50765e2168a7aad11e163ccde.zip |
Make synchronize-panes a pane option and add -U flag to set-option to
unset an option on all panes. GitHub issue 2491 from Rostislav Nesin.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options-table.c b/options-table.c index 56e1c895..34a4c57b 100644 --- a/options-table.c +++ b/options-table.c @@ -958,7 +958,7 @@ const struct options_table_entry options_table[] = { { .name = "synchronize-panes", .type = OPTIONS_TABLE_FLAG, - .scope = OPTIONS_TABLE_WINDOW, + .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE, .default_num = 0, .text = "Whether typing should be sent to all panes simultaneously." }, |