Skip to content

Instantly share code, notes, and snippets.

@wldevries
Last active November 21, 2025 09:40
Show Gist options
  • Select an option

  • Save wldevries/57740c3923f1f2234e338998b5c58ba1 to your computer and use it in GitHub Desktop.

Select an option

Save wldevries/57740c3923f1f2234e338998b5c58ba1 to your computer and use it in GitHub Desktop.
Visual Studio keymap for Zed
// Zed keymap
//
// For information on binding keys, see the Zed
// documentation: https://zed.dev/docs/key-bindings
//
// To see the default key bindings run `zed: open default keymap`
// from the command palette.
[
{
"bindings": {
"ctrl-shift-,": [
"zed::DecreaseBufferFontSize",
{
"persist": false
}
]
}
},
{
"bindings": {
"ctrl-shift-.": [
"zed::IncreaseBufferFontSize",
{
"persist": false
}
]
}
},
{
"context": "Editor",
"bindings": {
"ctrl-r ctrl-r": "editor::Rename",
"alt-shift-.": "editor::SelectNext",
"alt-shift-,": "editor::UndoSelection",
"shift-alt-;": "editor::SelectAllMatches",
"ctrl--": "pane::GoBack",
"ctrl-=": "pane::GoForward"
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment