summary refs log tree commit diff
path: root/ui.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-02-22 22:22:02 -0500
committerJune McEnroe <june@causal.agency>2019-02-22 22:22:16 -0500
commit200842aa64f1f66e902dc186de15e49d0dba7830 (patch)
tree55591fae2fc329e17156d217a78bab666504f98a /ui.c
parentRemove topic TODO (diff)
downloadcatgirl-200842aa64f1f66e902dc186de15e49d0dba7830.tar.gz
catgirl-200842aa64f1f66e902dc186de15e49d0dba7830.zip
Bind up and down arrows to scroll
Honestly it's kind of weird that IRC clients usually use these for input
history.
Diffstat (limited to '')
-rw-r--r--ui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui.c b/ui.c
index 62a992e..9a83bfc 100644
--- a/ui.c
+++ b/ui.c
@@ -429,8 +429,8 @@ static void keyCode(wchar_t code) {
 	struct Window *win = windows.active;
 	if (!win) return;
 	switch (code) {
-		break; case KEY_SLEFT:     windowScroll(win, -1);
-		break; case KEY_SRIGHT:    windowScroll(win, +1);
+		break; case KEY_UP:        windowScroll(win, -1);
+		break; case KEY_DOWN:      windowScroll(win, +1);
 		break; case KEY_PPAGE:     windowScroll(win, -logHeight() / 2);
 		break; case KEY_NPAGE:     windowScroll(win, +logHeight() / 2);
 		break; case KEY_LEFT:      edit(win->tag, EditLeft, 0);