Update Split bindings in terminal (#29188)
Closes #29087 Release Notes: - Changed default bindings for splitting terminals from `ctrl-k {up,down,left,right}` to `ctrl-alt-{up,down,left,right}`. `ctrl-k` is used by Readline to cut to the end of the line.
This commit is contained in:
parent
2e8ee9b64f
commit
dfbd132d9f
1 changed files with 4 additions and 4 deletions
|
@ -1028,10 +1028,10 @@
|
|||
// Using `ctrl-shift-space` in Zed requires disabling the macOS global shortcut.
|
||||
// System Preferences->Keyboard->Keyboard Shortcuts->Input Sources->Select the previous input source (uncheck)
|
||||
"ctrl-shift-space": "terminal::ToggleViMode",
|
||||
"ctrl-k up": "pane::SplitUp",
|
||||
"ctrl-k down": "pane::SplitDown",
|
||||
"ctrl-k left": "pane::SplitLeft",
|
||||
"ctrl-k right": "pane::SplitRight"
|
||||
"ctrl-alt-up": "pane::SplitUp",
|
||||
"ctrl-alt-down": "pane::SplitDown",
|
||||
"ctrl-alt-left": "pane::SplitLeft",
|
||||
"ctrl-alt-right": "pane::SplitRight"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue