diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-17 10:52:09 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-17 11:54:21 +0900 |
commit | ac8b40a2f3a50bb30f121dcc1a454074498e7bf7 (patch) | |
tree | 23cfcc61c02bf2e475a003d581027506bab34902 /src/background | |
parent | aeb0e0f96de7b2f9b5a143c8a900e2349bb0702a (diff) |
pagenate by prev/next links
Diffstat (limited to 'src/background')
-rw-r--r-- | src/background/keys.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/background/keys.js b/src/background/keys.js index 577f023..2549c8d 100644 --- a/src/background/keys.js +++ b/src/background/keys.js @@ -30,6 +30,8 @@ const defaultKeymap = { 'F': { type: operations.FOLLOW_START, newTab: true }, 'H': { type: operations.NAVIGATE_HISTORY_PREV }, 'L': { type: operations.NAVIGATE_HISTORY_NEXT }, + '[[': { type: operations.NAVIGATE_LINK_PREV }, + ']]': { type: operations.NAVIGATE_LINK_NEXT }, }; const asKeymapChars = (keys) => { |