aboutsummaryrefslogtreecommitdiff
path: root/main.ha
diff options
context:
space:
mode:
Diffstat (limited to 'main.ha')
-rw-r--r--main.ha4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.ha b/main.ha
index 0aeda39..1af7662 100644
--- a/main.ha
+++ b/main.ha
@@ -35,6 +35,10 @@ fn runehandler(l: *widget::widget, r: rune) bool = {
list::down(l);
case 'k' =>
list::up(l);
+ case 'd' =>
+ list::pagedown(l);
+ case 'u' =>
+ list::pageup(l);
case 'l' =>
// to print properly suspend the ui, print, then resume
libui::suspend(&l.ui);