diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-17 12:55:43 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-17 12:55:43 +0900 |
commit | ac8f7e65dc90327e05fb30fd5b20d56c3799f3d8 (patch) | |
tree | 05cea028a87f067a83d02638f187b92b3ec6ecd9 /src/background | |
parent | e9863299abf9498c67660e8a97c70ddb090baffe (diff) |
implement go-root command
Diffstat (limited to 'src/background')
-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 992b42d..34483a0 100644 --- a/src/background/keys.js +++ b/src/background/keys.js @@ -33,6 +33,7 @@ const defaultKeymap = { '[[': { type: operations.NAVIGATE_LINK_PREV }, ']]': { type: operations.NAVIGATE_LINK_NEXT }, 'gu': { type: operations.NAVIGATE_PARENT }, + 'gU': { type: operations.NAVIGATE_ROOT }, }; const asKeymapChars = (keys) => { |