Pinned tabs are not closeable by 'd'
Added binding 'DD' to force tab close which also closes pinned tabs
This commit is contained in:
parent
423d17aeb6
commit
e7dcd7f500
4 changed files with 16 additions and 3 deletions
|
@ -17,6 +17,8 @@ const exec = (operation, tab) => {
|
|||
switch (operation.type) {
|
||||
case operations.TAB_CLOSE:
|
||||
return tabs.closeTab(tab.id);
|
||||
case operations.TAB_CLOSE_FORCE:
|
||||
return tabs.closeTabForce(tab.id);
|
||||
case operations.TAB_REOPEN:
|
||||
return tabs.reopenTab();
|
||||
case operations.TAB_PREV:
|
||||
|
|
Reference in a new issue