From bfc9fb4b3bd626b3183728f8d781ebbb5ecd9872 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 21 Aug 2018 09:27:19 +0100 Subject: 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. --- tmux.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index f075215c..4f2848ec 100644 --- a/tmux.h +++ b/tmux.h @@ -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); -- cgit