Created
March 26, 2025 04:20
-
-
Save azdanov/e24d3b0ef5c9c2629c84489e4fa7eaea to your computer and use it in GitHub Desktop.
Zed keymap insipred by AstroNvim
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", | |
"bindings": { | |
"ctrl-h": ["workspace::ActivatePaneInDirection", "Left"], | |
"ctrl-j": ["workspace::ActivatePaneInDirection", "Down"], | |
"ctrl-k": ["workspace::ActivatePaneInDirection", "Up"], | |
"ctrl-l": ["workspace::ActivatePaneInDirection", "Right"], | |
"ctrl-s": "workspace::Save" | |
} | |
}, | |
{ | |
"context": "Editor && vim_mode == normal", | |
"bindings": { | |
"H": "pane::ActivatePrevItem", | |
"K": "editor::Hover", | |
"L": "pane::ActivateNextItem", | |
"[ d": "editor::GoToPrevDiagnostic", | |
"] d": "editor::GoToDiagnostic", | |
"g I": "editor::GoToImplementation", | |
"g K": "editor::ShowSignatureHelp", | |
"g c c": "vim::ToggleComments", | |
"g d": "editor::GoToDefinition", | |
"g r": "editor::FindAllReferences", | |
"g y": "editor::GoToTypeDefinition", | |
"space b [": "pane::ActivatePrevItem", | |
"space b ]": "pane::ActivateNextItem", | |
"space b d": "pane::CloseActiveItem", | |
"space b n": "workspace::NewFile", | |
"space c a": "editor::ToggleCodeActions", | |
"space c f": "editor::Format", | |
"space c r": "editor::Rename", | |
"space e": "workspace::ToggleLeftDock", | |
"space f f": "file_finder::Toggle", | |
"space f p": "projects::OpenRecent", | |
"space space": "file_finder::Toggle", | |
"space f n": "workspace::NewFile", | |
"space q q": "zed::Quit", | |
"space s w": "buffer_search::Deploy", | |
"space s d": "diagnostics::Deploy", | |
"space s g": "workspace::NewSearch", | |
"space t t": "workspace::ToggleBottomDock", | |
"space u d": "workspace::ClearAllNotifications", | |
"space u w": "editor::ToggleSoftWrap", | |
"space |": "pane::SplitRight" | |
} | |
}, | |
{ | |
"context": "Editor && vim_mode == insert", | |
"bindings": { | |
"alt-h": "vim::Left", | |
"alt-j": "vim::Down", | |
"alt-k": "vim::Up", | |
"alt-l": "vim::Right" | |
} | |
}, | |
{ | |
"context": "ProjectPanel", | |
"bindings": { | |
"space e": "workspace::ToggleLeftDock" | |
} | |
}, | |
{ | |
"context": "Terminal", | |
"bindings": { | |
"ctrl-/": "workspace::ToggleBottomDock", | |
"space f t": "workspace::ToggleBottomDock" | |
} | |
}, | |
{ | |
"context": "Dock", | |
"bindings": { | |
"ctrl-h": ["workspace::ActivatePaneInDirection", "Left"], | |
"ctrl-j": ["workspace::ActivatePaneInDirection", "Down"], | |
"ctrl-k": ["workspace::ActivatePaneInDirection", "Up"], | |
"ctrl-l": ["workspace::ActivatePaneInDirection", "Right"] | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment