diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-17 09:26:51 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-17 09:26:51 +0900 |
commit | aeb0e0f96de7b2f9b5a143c8a900e2349bb0702a (patch) | |
tree | 32ae863a6af7472b20c3380f7ba5e060651e4985 /src/background | |
parent | ae317113e76b593949385102e6bea16e50c16ce5 (diff) |
rename history navigation
Diffstat (limited to 'src/background')
-rw-r--r-- | src/background/keys.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/background/keys.js b/src/background/keys.js index 9121e0f..577f023 100644 --- a/src/background/keys.js +++ b/src/background/keys.js @@ -28,8 +28,8 @@ const defaultKeymap = { 'zz': { type: operations.ZOOM_NEUTRAL }, 'f': { type: operations.FOLLOW_START, newTab: false }, 'F': { type: operations.FOLLOW_START, newTab: true }, - 'H': { type: operations.HISTORY_PREV }, - 'L': { type: operations.HISTORY_NEXT }, + 'H': { type: operations.NAVIGATE_HISTORY_PREV }, + 'L': { type: operations.NAVIGATE_HISTORY_NEXT }, }; const asKeymapChars = (keys) => { |