Last active
April 25, 2024 14:47
-
-
Save Kerollmops/4aaa7eebca37288bcc79f331abb23b29 to your computer and use it in GitHub Desktop.
This is my zed keymap who fake the Sublime Text ones as mush as possible.
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
[ | |
{ | |
"bindings": { | |
"cmd-shift-[": "pane::ActivatePrevItem", | |
"cmd-shift-]": "pane::ActivateNextItem", | |
"ctrl-pagedown": "pane::ActivatePrevItem", | |
"ctrl-pageup": "pane::ActivateNextItem", | |
"ctrl-shift-tab": "pane::ActivateNextItem", | |
"ctrl-tab": "pane::ActivatePrevItem", | |
"cmd-+": "zed::IncreaseBufferFontSize" | |
} | |
}, | |
{ | |
"context": "Editor", | |
"bindings": { | |
"ctrl-shift-up": "editor::AddSelectionAbove", | |
"ctrl-shift-down": "editor::AddSelectionBelow", | |
"cmd-shift-space": "editor::SelectAll", | |
"ctrl-cmd-up": "editor::MoveLineUp", | |
"ctrl-cmd-down": "editor::MoveLineDown", | |
"cmd-shift-d": "editor::DuplicateLineDown", | |
"ctrl-shift-m": "editor::SelectLargerSyntaxNode", | |
"cmd-shift-l": "editor::SplitSelectionIntoLines", | |
"cmd-shift-a": "editor::SelectLargerSyntaxNode", | |
"shift-f12": "editor::FindAllReferences", | |
"alt-cmd-down": "editor::GoToDefinition", | |
"ctrl-alt-cmd-down": "editor::GoToDefinitionSplit", | |
"alt-shift-cmd-down": "editor::FindAllReferences", | |
"ctrl-.": "editor::GoToHunk", | |
"ctrl-,": "editor::GoToPrevHunk", | |
"ctrl-backspace": "editor::DeleteToPreviousWordStart", | |
"ctrl-delete": "editor::DeleteToNextWordEnd" | |
} | |
}, | |
{ | |
"context": "Editor && mode == full", | |
"bindings": { | |
"cmd-r": "outline::Toggle" | |
} | |
}, | |
{ | |
"context": "Pane", | |
"bindings": { | |
"f4": "search::SelectNextMatch", | |
"shift-f4": "search::SelectPrevMatch" | |
} | |
}, | |
{ | |
"context": "Workspace", | |
"bindings": { | |
"cmd-k cmd-b": "workspace::ToggleLeftDock", | |
"cmd-t": "file_finder::Toggle", | |
"shift-cmd-r": "project_symbols::Toggle", | |
// Currently busted: https://github.com/zed-industries/feedback/issues/898 | |
"ctrl-0": "project_panel::ToggleFocus" | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment