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
|
@ -18,7 +18,7 @@ const fields = [
|
|||
['mark.set.prefix', 'Set mark at current position'],
|
||||
['mark.jump.prefix', 'Jump to the mark'],
|
||||
], [
|
||||
['tabs.close?{"selectLeft":false}', 'Close a tab'],
|
||||
['tabs.close?{"select":"right"}', 'Close a tab'],
|
||||
['tabs.close.right', 'Close all tabs to the right'],
|
||||
['tabs.reopen', 'Reopen closed tab'],
|
||||
['tabs.next', 'Select next tab'],
|
||||
|
|
Reference in a new issue