support w/W command
This commit is contained in:
parent
940f3c7f79
commit
d262fd1a2f
3 changed files with 9 additions and 0 deletions
|
@ -42,6 +42,12 @@ const exec = (operation, tab) => {
|
|||
return sendConsoleShowCommand(tab, 'tabopen ' + tab.url);
|
||||
}
|
||||
return sendConsoleShowCommand(tab, 'tabopen ');
|
||||
case operations.COMMAND_SHOW_WINOPEN:
|
||||
if (operation.alter) {
|
||||
// alter url
|
||||
return sendConsoleShowCommand(tab, 'winopen ' + tab.url);
|
||||
}
|
||||
return sendConsoleShowCommand(tab, 'winopen ');
|
||||
case operations.COMMAND_SHOW_BUFFER:
|
||||
return sendConsoleShowCommand(tab, 'buffer ');
|
||||
default:
|
||||
|
|
Reference in a new issue