mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 08:35:33 +03:00
Default keybindings for activating pane by direction
Breaking change: previously cmd-k cmd-{left,right} moved to the {previous,next} pane; now they will move in the specified direction.
This commit is contained in:
parent
2762f9b1c6
commit
15dc8b43c4
@ -446,8 +446,22 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bindings": {
|
"bindings": {
|
||||||
"cmd-k cmd-left": "workspace::ActivatePreviousPane",
|
"cmd-k cmd-left": [
|
||||||
"cmd-k cmd-right": "workspace::ActivateNextPane"
|
"workspace::ActivatePaneInDirection",
|
||||||
|
"Left"
|
||||||
|
],
|
||||||
|
"cmd-k cmd-right": [
|
||||||
|
"workspace::ActivatePaneInDirection",
|
||||||
|
"Right"
|
||||||
|
],
|
||||||
|
"cmd-k cmd-up": [
|
||||||
|
"workspace::ActivatePaneInDirection",
|
||||||
|
"Up"
|
||||||
|
],
|
||||||
|
"cmd-k cmd-down": [
|
||||||
|
"workspace::ActivatePaneInDirection",
|
||||||
|
"Down"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// Bindings from Atom
|
// Bindings from Atom
|
||||||
|
Loading…
Reference in New Issue
Block a user