Last active
October 14, 2024 15:08
-
-
Save hungify/8a578f8878c4006c69ce71a607e18bf1 to your computer and use it in GitHub Desktop.
My Zed keymap Settings
This file contains 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 from VS Code | |
{ | |
"context": "Editor", | |
"bindings": { | |
"cmd-shift-k": "editor::DeleteLine", | |
"cmd-i": "editor::ShowCompletions", | |
"shift-pageup": "editor::SelectToBeginning", | |
"shift-pagedown": "editor::SelectToEnd", | |
"cmd-pageup": "editor::PageUp", | |
"cmd-pagedown": "editor::PageDown", | |
"cmd-\\": "pane::SplitRight", | |
"cmd-delete": "editor::Delete" | |
} | |
}, | |
{ | |
"context": "ProjectPanel", | |
"bindings": { | |
"cmd-backspace": "project_panel::Delete" | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment