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 /tmux.1 | |
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 'tmux.1')
-rw-r--r-- | tmux.1 | 19 |
1 files changed, 12 insertions, 7 deletions
@@ -3136,7 +3136,7 @@ abc123 Commands which set options are as follows: .Bl -tag -width Ds .It Xo Ic set-option -.Op Fl aFgopqsuw +.Op Fl aFgopqsuUw .Op Fl t Ar target-pane .Ar option Ar value .Xc @@ -3169,6 +3169,11 @@ flag unsets an option, so a session inherits the option from the global options (or with .Fl g , restores a global option to the default). +.Fl U +unsets an option (like +.Fl u ) +but if the option is a pane option also unsets the option on any panes in the +window. .Ar value depends on the option and may be a number, a string, or a flag (on, off, or omitted to toggle). @@ -4062,12 +4067,6 @@ see the section. Attributes are ignored. .Pp -.It Xo Ic synchronize-panes -.Op Ic on | off -.Xc -Duplicate input to any pane to all other panes in the same window (only -for panes that are not in any special mode). -.Pp .It Ic window-status-activity-style Ar style Set status line style for windows with an activity alert. For how to specify @@ -4190,6 +4189,12 @@ The pane may be reactivated with the .Ic respawn-pane command. .Pp +.It Xo Ic synchronize-panes +.Op Ic on | off +.Xc +Duplicate input to all other panes in the same window where this option is also +on (only for panes that are not in any mode). +.Pp .It Ic window-active-style Ar style Set the pane style when it is the active pane. For how to specify |