tabs.close: rename selectLeft (boolean) -> select ("left" | "right")
before: { "type": "tabs.close", "selectLeft": true | false // (default: false) } after: { "type": "tabs.close", "select": "left" | "right" // (default: "right") }
This commit is contained in:
parent
c57089224e
commit
f65c068c67
6 changed files with 21 additions and 8 deletions
|
@ -24,7 +24,7 @@ module.exports = {
|
|||
"G": { "type": "scroll.bottom" },
|
||||
"$": { "type": "scroll.end" },
|
||||
"d": { "type": "tabs.close" },
|
||||
"D": { "type": "tabs.close", "selectLeft": true },
|
||||
"D": { "type": "tabs.close", "select": "left" },
|
||||
"x$": { "type": "tabs.close.right" },
|
||||
"!d": { "type": "tabs.close.force" },
|
||||
"u": { "type": "tabs.reopen" },
|
||||
|
|
Reference in a new issue