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.
This commit is contained in:
Nicholas Marriott
2018-08-21 09:27:19 +01:00
parent 314ee137a9
commit bfc9fb4b3b
6 changed files with 125 additions and 11 deletions

4
tmux.h
View File

@ -1421,6 +1421,10 @@ struct client {
int references;
void *pan_window;
u_int pan_ox;
u_int pan_oy;
TAILQ_ENTRY(client) entry;
};
TAILQ_HEAD(clients, client);