mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-10 00:48:23 -06:00
Change default pane keybindings to duplicate, rather than use default profile (#16951)
As we discussed in length over at #7657. This changes the default <kbd>alt+shift+-</kbd> and <kbd>alt+shift+plus</kbd> keybindings to split panes by duplicating the pane by default. Closes #7657
This commit is contained in:
parent
6a69b94fc6
commit
c063d2bad6
@ -484,9 +484,11 @@
|
||||
{ "command": "closeOtherPanes" },
|
||||
{ "command": "closePane", "keys": "ctrl+shift+w" },
|
||||
{ "command": { "action": "splitPane", "split": "up" } },
|
||||
{ "command": { "action": "splitPane", "split": "down" }, "keys": "alt+shift+-" },
|
||||
{ "command": { "action": "splitPane", "split": "down" } },
|
||||
{ "command": { "action": "splitPane", "split": "left" } },
|
||||
{ "command": { "action": "splitPane", "split": "right" }, "keys": "alt+shift+plus" },
|
||||
{ "command": { "action": "splitPane", "split": "right" } },
|
||||
{ "command": { "action": "splitPane", "splitMode": "duplicate", "split": "down" }, "keys": "alt+shift+-" },
|
||||
{ "command": { "action": "splitPane", "splitMode": "duplicate", "split": "right" }, "keys": "alt+shift+plus" },
|
||||
{ "command": { "action": "resizePane", "direction": "down" }, "keys": "alt+shift+down" },
|
||||
{ "command": { "action": "resizePane", "direction": "left" }, "keys": "alt+shift+left" },
|
||||
{ "command": { "action": "resizePane", "direction": "right" }, "keys": "alt+shift+right" },
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user