From 6c012839737b60442e582e08209f551536ca2e81 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Mon, 25 Sep 2017 19:49:37 +0900 Subject: support t/T command and fix alter mode --- src/background/keys.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/background') 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 }, -- cgit v1.2.3