summaryrefslogtreecommitdiff
path: root/main.lua
diff options
context:
space:
mode:
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.lua b/main.lua
index f5bf09c..6d8425b 100644
--- a/main.lua
+++ b/main.lua
@@ -1326,6 +1326,8 @@ function bind_menu_keys()
bind_key('?', open_option_info)
bind_key('Ctrl+p', goto_playing)
+ bind_key('j', cursor_down, {repeatable = true})
+ bind_key('k', cursor_up, {repeatable = true})
bind_key('UP', cursor_up, {repeatable = true})
bind_key('DOWN', cursor_down, {repeatable = true})
bind_key('HOME', cursor_start)