aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2018-08-21 09:27:19 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2018-08-21 09:27:19 +0100
commitbfc9fb4b3bd626b3183728f8d781ebbb5ecd9872 (patch)
tree80d4bdd0cc7acb884aa53921b545d4ad4d3c5854 /tmux.h
parent314ee137a91fcbed7459716f600c19d220e05845 (diff)
downloadrtmux-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.h')
-rw-r--r--tmux.h4
1 files changed, 4 insertions, 0 deletions
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);