support 0/$ commands

This commit is contained in:
Shin'ya Ueoka 2017-08-27 17:59:25 +09:00
parent b1908a2876
commit 21404ad534
4 changed files with 27 additions and 3 deletions

View file

@ -14,6 +14,8 @@ const DEFAULT_KEYMAP = {
'<C-F>': [ actions.SCROLL_PAGES, 1 ],
'gg': [ actions.SCROLL_TOP ],
'G': [ actions.SCROLL_BOTTOM ],
'0': [ actions.SCROLL_LEFT ],
'$': [ actions.SCROLL_RIGHT ],
'd': [ actions.TABS_CLOSE ],
'u': [ actions.TABS_REOPEN],
'h': [ actions.TABS_PREV, 1 ],