Add close tabs to the right command
This commit is contained in:
parent
1fc44c783a
commit
c03ab2862b
5 changed files with 17 additions and 0 deletions
|
@ -11,6 +11,8 @@ export default class OperationController {
|
|||
switch (operation.type) {
|
||||
case operations.TAB_CLOSE:
|
||||
return this.operationInteractor.close(false);
|
||||
case operations.TAB_CLOSE_RIGHT:
|
||||
return this.operationInteractor.closeRight();
|
||||
case operations.TAB_CLOSE_FORCE:
|
||||
return this.operationInteractor.close(true);
|
||||
case operations.TAB_REOPEN:
|
||||
|
|
Reference in a new issue