summaryrefslogtreecommitdiff
path: root/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'app.go')
-rw-r--r--app.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/app.go b/app.go
index 90ba980..8263c9e 100644
--- a/app.go
+++ b/app.go
@@ -232,6 +232,10 @@ func (app *App) handleUIEvent(ev tcell.Event) {
} else {
app.win.InputLeft()
}
+ case tcell.KeyUp:
+ app.win.InputUp()
+ case tcell.KeyDown:
+ app.win.InputDown()
case tcell.KeyHome:
app.win.InputHome()
case tcell.KeyEnd: