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 /key-string.c | |
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 'key-string.c')
-rw-r--r-- | key-string.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/key-string.c b/key-string.c index 45073efd..344881c7 100644 --- a/key-string.c +++ b/key-string.c @@ -43,7 +43,9 @@ static const struct { { "F11", KEYC_F11 }, { "F12", KEYC_F12 }, { "IC", KEYC_IC }, + { "Insert", KEYC_IC }, { "DC", KEYC_DC }, + { "Delete", KEYC_DC }, { "Home", KEYC_HOME }, { "End", KEYC_END }, { "NPage", KEYC_NPAGE }, |