aboutsummaryrefslogtreecommitdiff
path: root/src/background
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-08-27 17:59:25 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-08-27 17:59:25 +0900
commit21404ad534278eff643be089da9c07882b29da82 (patch)
tree985d8efa303288e6a24c328496173825177e6e57 /src/background
parentb1908a28764850e650a1e0f2cebdb2f24c43d45a (diff)
support 0/$ commands
Diffstat (limited to 'src/background')
-rw-r--r--src/background/key-queue.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/background/key-queue.js b/src/background/key-queue.js
index d936233..3805305 100644
--- a/src/background/key-queue.js
+++ b/src/background/key-queue.js
@@ -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 ],