1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Add key codes for shift arrow keys on ITerm

This commit is contained in:
James Booth 2014-10-08 00:50:28 +01:00
parent ef62104d63
commit f6e0a219ff

View File

@ -2891,7 +2891,7 @@ _win_handle_page(const wint_t * const ch, const int result)
if (current->type == WIN_MUC) {
// alt up arrow
if ((result == KEY_CODE_YES) && (*ch == 565)) {
if ((result == KEY_CODE_YES) && ((*ch == 565) || (*ch == 337))) {
current->sub_y_pos -= page_space;
// went past beginning, show first page
@ -2901,7 +2901,7 @@ _win_handle_page(const wint_t * const ch, const int result)
win_update_virtual(current);
// alt down arrow
} else if ((result == KEY_CODE_YES) && (*ch == 524)) {
} else if ((result == KEY_CODE_YES) && ((*ch == 524) || (*ch == 336))) {
current->sub_y_pos += page_space;
// only got half a screen, show full screen