Add half-page-{up,down} actions (#784)

This commit is contained in:
Amos Bird
2017-01-16 10:58:13 +08:00
committed by Junegunn Choi
parent 05ed57a9f0
commit 11015df52f
3 changed files with 14 additions and 0 deletions

View File

@@ -688,6 +688,10 @@ func parseKeymap(keymap map[int]actionType, execmap map[int]string, str string)
keymap[key] = actPageUp
case "page-down":
keymap[key] = actPageDown
case "half-page-up":
keymap[key] = actHalfPageUp
case "half-page-down":
keymap[key] = actHalfPageDown
case "previous-history":
keymap[key] = actPreviousHistory
case "next-history":