diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2018-08-21 09:27:19 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2018-08-21 09:27:19 +0100 |
commit | bfc9fb4b3bd626b3183728f8d781ebbb5ecd9872 (patch) | |
tree | 80d4bdd0cc7acb884aa53921b545d4ad4d3c5854 /tmux.1 | |
parent | 314ee137a91fcbed7459716f600c19d220e05845 (diff) | |
download | rtmux-bfc9fb4b3bd626b3183728f8d781ebbb5ecd9872.tar.gz rtmux-bfc9fb4b3bd626b3183728f8d781ebbb5ecd9872.tar.bz2 rtmux-bfc9fb4b3bd626b3183728f8d781ebbb5ecd9872.zip |
Add flags to refresh-client (-U -D -L -R and -c) to pan a window that
is larger than the client manually. Bound to S-Up, S-Down, S-Left,
S-Right and Delete manually.
Also add aliases for keys DC = Delete, IC = Insert, and make
refresh-client -C accept XxY as well as X,Y to match default-size.
Diffstat (limited to 'tmux.1')
-rw-r--r-- | tmux.1 | 34 |
1 files changed, 33 insertions, 1 deletions
@@ -930,9 +930,11 @@ is used, the .Ic update-environment option will not be applied. .It Xo Ic refresh-client -.Op Fl C Ar width,height +.Op Fl cDLRU +.Op Fl C Ar XxY .Op Fl S .Op Fl t Ar target-client +.Op Ar adjustment .Xc .D1 (alias: Ic refresh ) Refresh the current client if bound to a key, or a single client if one is given @@ -942,6 +944,36 @@ If .Fl S is specified, only update the client's status line. .Pp +The +.Fl U , +.Fl D , +.Fl L +.Fl R , +and +.Fl c +flags allow the visible portion of a window which is larger than the client +to be changed. +.Fl U +moves the visible part up by +.Ar adjustment +rows and +.Fl D +down, +.Fl L +left by +.Ar adjustment +columns and +.Fl R +right. +.Fl c +returns to tracking the cursor automatically. +If +.Ar adjustment +is omitted, 1 is used. +Note that the visible position is a property of the client not of the +window, changing the current window in the attached session will reset +it. +.Pp .Fl C sets the width and height of a control client. .It Xo Ic rename-session |