diff options
author | chocolateboy <chocolate@cpan.org> | 2019-07-31 16:17:37 +0100 |
---|---|---|
committer | chocolateboy <chocolate@cpan.org> | 2019-07-31 17:06:48 +0100 |
commit | f65c068c67371f00b7853b4790b926e672f3ca4f (patch) | |
tree | 5de9d7ee7047402d8e341d342e6d5f5c44a1348d /src/shared/Settings.ts | |
parent | c57089224ea671178dcf66f5e36b9aed8e6db323 (diff) |
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")
}
Diffstat (limited to 'src/shared/Settings.ts')
-rw-r--r-- | src/shared/Settings.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/Settings.ts b/src/shared/Settings.ts index 19101c1..2a392df 100644 --- a/src/shared/Settings.ts +++ b/src/shared/Settings.ts @@ -146,7 +146,7 @@ export const DefaultSetting: Settings = { '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' }, |