Files
dotfiles/.config/zed/keymap.json
Belal Elsabbagh d53e39e221 added code actions
2025-01-16 12:17:05 +02:00

24 lines
522 B
JSON

// 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.
[
{
"context": "Workspace",
"bindings": {
"space space": "file_finder::Toggle"
}
},
{
"context": "Editor",
"bindings": {
// "j k": ["workspace::SendKeystrokes", "escape"]
"g d": "editor::GoToDefinition",
"space c a": "editor::ToggleCodeActions"
}
}
]