diff options
| author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-08-01 21:29:32 +0900 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-01 21:29:32 +0900 | 
| commit | 7104f122f94e17ece56d2bd832d007c716e5631e (patch) | |
| tree | 5de9d7ee7047402d8e341d342e6d5f5c44a1348d /src/shared/SettingData.ts | |
| parent | 3db11041c5b75c30b584893937876b6471e67cf2 (diff) | |
| parent | f65c068c67371f00b7853b4790b926e672f3ca4f (diff) | |
Merge pull request #621 from chocolateboy/tab-close-select-left
Add an option to close the current tab and select the tab to the left
Diffstat (limited to 'src/shared/SettingData.ts')
| -rw-r--r-- | src/shared/SettingData.ts | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/shared/SettingData.ts b/src/shared/SettingData.ts index 1c085cf..14a7d35 100644 --- a/src/shared/SettingData.ts +++ b/src/shared/SettingData.ts @@ -353,7 +353,8 @@ export const DefaultSettingData: SettingData = SettingData.valueOf({      "G": { "type": "scroll.bottom" },      "$": { "type": "scroll.end" },      "d": { "type": "tabs.close" }, -    "D": { "type": "tabs.close.right" }, +    "D": { "type": "tabs.close", "select": "left" }, +    "x$": { "type": "tabs.close.right" },      "!d": { "type": "tabs.close.force" },      "u": { "type": "tabs.reopen" },      "K": { "type": "tabs.prev" }, | 
