Move pane keymap #33985
dreamawakening
started this conversation in
Config, Settings and Keymaps
Move pane keymap
#33985
Replies: 2 comments 7 replies
-
|
With normal keybinds (no vim mode) you have this: "ctrl-k shift-left": "workspace::SwapPaneLeft",
"ctrl-k shift-right": "workspace::SwapPaneRight",
"ctrl-k shift-up": "workspace::SwapPaneUp",
"ctrl-k shift-down": "workspace::SwapPaneDown" |
Beta Was this translation helpful? Give feedback.
4 replies
-
|
What you are looking for is "cmd-alt-l": [
"workspace::MoveItemToPaneInDirection",
{ "direction": "right" }
],
"cmd-alt-h": [
"workspace::MoveItemToPaneInDirection",
{ "direction": "left" }
],
"cmd-alt-j": [
"workspace::MoveItemToPaneInDirection",
{ "direction": "down" }
],
"cmd-alt-k": [
"workspace::MoveItemToPaneInDirection",
{ "direction": "up" }
], |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
VSCode has a keymap for moving a pane up/down/left/right.
The closest thing I've found in Zed is the split pane option, but this doesn't do the same thing. Instead, it duplicates the current pane to whatever side you specify (up/down/left/right).
But I never want to do this, I only want to move the pane (not duplicate it).
It would be great if there's a keymap for moving a pane instead of just splitting (duplicating) it in a different direction.
Beta Was this translation helpful? Give feedback.
All reactions