diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-25 21:14:52 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-25 21:14:52 +0900 |
commit | c2a5a41cb6bc7780db580e6325e25b6a81729851 (patch) | |
tree | cd8731edaf3f432e166739cddd6a4112a5ca2083 /src/background | |
parent | 2b6aca17b04f687f5a52fe930fdd0b0b45f62d23 (diff) | |
parent | 1a21e548d924514e7b23add22e9ecd4fb071ea84 (diff) |
Merge branch 'some-fix'
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 34483a0..e4a8b19 100644 --- a/src/background/keys.js +++ b/src/background/keys.js @@ -4,6 +4,8 @@ const defaultKeymap = { ':': { type: operations.COMMAND_OPEN }, 'o': { type: operations.COMMAND_TABS_OPEN, alter: false }, 'O': { type: operations.COMMAND_TABS_OPEN, alter: true }, + 't': { type: operations.COMMAND_TABS_NEW, alter: false }, + 'T': { type: operations.COMMAND_TABS_NEW, alter: true }, 'b': { type: operations.COMMAND_BUFFER }, 'k': { type: operations.SCROLL_LINES, count: -1 }, 'j': { type: operations.SCROLL_LINES, count: 1 }, |