Created
March 1, 2024 15:00
-
-
Save nwjsmith/24f35d9428078dbb0fe49e7532514eeb to your computer and use it in GitHub Desktop.
DOOM-like window movement bindings for Zed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"context": "Editor && (vim_mode == normal || vim_mode == visual) && !VimWaiting && !menu", | |
"bindings": { | |
"space w v": "pane::SplitRight", | |
"space w s": "pane::SplitDown", | |
"space w h": ["workspace::ActivatePaneInDirection", "Left"], | |
"space w j": ["workspace::ActivatePaneInDirection", "Down"], | |
"space w k": ["workspace::ActivatePaneInDirection", "Up"], | |
"space w l": ["workspace::ActivatePaneInDirection", "Right"] | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment