Add close tabs to the right command

This commit is contained in:
Shin'ya Ueoka 2018-12-27 19:17:07 +09:00
parent 1fc44c783a
commit c03ab2862b
5 changed files with 17 additions and 0 deletions

View file

@ -45,6 +45,7 @@ export default {
// Tabs
TAB_CLOSE: 'tabs.close',
TAB_CLOSE_FORCE: 'tabs.close.force',
TAB_CLOSE_RIGHT: 'tabs.close.right',
TAB_REOPEN: 'tabs.reopen',
TAB_PREV: 'tabs.prev',
TAB_NEXT: 'tabs.next',

View file

@ -24,6 +24,7 @@ export default {
"G": { "type": "scroll.bottom" },
"$": { "type": "scroll.end" },
"d": { "type": "tabs.close" },
"D": { "type": "tabs.close.right" },
"!d": { "type": "tabs.close.force" },
"u": { "type": "tabs.reopen" },
"K": { "type": "tabs.prev", "count": 1 },