diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-14 11:18:19 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-14 11:18:19 +0100 |
commit | 0bdbf47ef946b3535cc32b45ea8d971de5baddb5 (patch) | |
tree | a44b650fc7eb232083f25e070f243899ed9cbedc /tmux.1 | |
parent | 12eceaf2b3ef2b028a55d8ad11951be700be0446 (diff) | |
download | rtmux-0bdbf47ef946b3535cc32b45ea8d971de5baddb5.tar.gz rtmux-0bdbf47ef946b3535cc32b45ea8d971de5baddb5.tar.bz2 rtmux-0bdbf47ef946b3535cc32b45ea8d971de5baddb5.zip |
Add a client flag 'active-pane' which stores the active pane in the client and
allows it to be changed independently from the real active pane stored in the
window. This is can be used with session groups which allow an independent
current window (although it would be nice to have a flag for this too and
remove session groups). The client active pane is only really useful
interactively, many things (hooks, window-style, zooming) still use the window
active pane.
Diffstat (limited to 'tmux.1')
-rw-r--r-- | tmux.1 | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -986,6 +986,8 @@ the client is read-only the client does not affect the size of other clients .It no-output the client does not receive pane output in control mode +.It active-pane +the client has an independent active pane .El .Pp A leading @@ -1000,6 +1002,13 @@ When a client is read-only, only keys bound to the or .Ic switch-client commands have any effect. +A client with the +.Ar active-pane +flag allows the active pane to be selected independently of the window's active +pane used by clients without the flag. +This only affects the cursor position and commands issued from the client; +other features such as hooks and styles continue to use the window's active +pane. .Pp If no server is started, .Ic attach-session |