diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-17 12:52:24 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-17 12:52:24 +0900 |
commit | e9863299abf9498c67660e8a97c70ddb090baffe (patch) | |
tree | da322c6d1cac671da59b34dac884905718503516 /src/background/keys.js | |
parent | 0be9776cb3d9033bcd3ae569bec71b300f2d4073 (diff) |
implement go-parent command
Diffstat (limited to 'src/background/keys.js')
-rw-r--r-- | src/background/keys.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/background/keys.js b/src/background/keys.js index 2549c8d..992b42d 100644 --- a/src/background/keys.js +++ b/src/background/keys.js @@ -32,6 +32,7 @@ const defaultKeymap = { 'L': { type: operations.NAVIGATE_HISTORY_NEXT }, '[[': { type: operations.NAVIGATE_LINK_PREV }, ']]': { type: operations.NAVIGATE_LINK_NEXT }, + 'gu': { type: operations.NAVIGATE_PARENT }, }; const asKeymapChars = (keys) => { |