add more keys for jump setting

pull/4/head
Blake DeMarcy 2017-04-28 22:16:30 -05:00
parent 4a4ed88ff2
commit 59404cfe87
1 changed files with 2 additions and 2 deletions

View File

@ -1769,10 +1769,10 @@ class ActionBox(urwid.ListBox):
elif key in "<," and not overlay:
app.header_jump_previous()
elif key == "x" and not overlay:
elif key in ("x", "meta >", "meta .") and not overlay:
app.incr_jump()
elif key == "X" and not overlay:
elif key in ("X", "meta <", "meta ,") and not overlay:
app.decr_jump()
elif keyl in "1234567890g" and not overlay: