aboutsummaryrefslogtreecommitdiff
path: root/src/actions
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-09-25 19:49:37 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-09-25 19:50:11 +0900
commit6c012839737b60442e582e08209f551536ca2e81 (patch)
tree24c7e2dffab2776c57b2ddfcb5fc50d7e64a0779 /src/actions
parent2b6aca17b04f687f5a52fe930fdd0b0b45f62d23 (diff)
support t/T command and fix alter mode
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/operation.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/actions/operation.js b/src/actions/operation.js
index b0d67f0..50329f8 100644
--- a/src/actions/operation.js
+++ b/src/actions/operation.js
@@ -25,11 +25,17 @@ const exec = (operation, tab) => {
case operations.COMMAND_OPEN:
return consoleActions.showCommand('');
case operations.COMMAND_TABS_OPEN:
- if (operations.alter) {
+ if (operation.alter) {
// alter url
return consoleActions.showCommand('open ' + tab.url);
}
return consoleActions.showCommand('open ');
+ case operations.COMMAND_TABS_NEW:
+ if (operation.alter) {
+ // alter url
+ return consoleActions.showCommand('tabopen ' + tab.url);
+ }
+ return consoleActions.showCommand('tabopen ');
case operations.COMMAND_BUFFER:
return consoleActions.showCommand('buffer ');
default: