Files
dotfiles/zed/keymap.json
T
2026-06-23 15:54:06 +03:00

67 lines
1.2 KiB
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": {
// "shift shift": "file_finder::Toggle"
},
},
{
"context": "Editor && vim_mode == insert",
"bindings": {
// "j k": "vim::NormalBefore"
},
},
{
"context": "Pane",
"bindings": {
"alt-4": "outline_panel::ToggleFocus"
}
},
{
"context": "Pane",
"unbind": {
"alt-7": "outline_panel::ToggleFocus"
}
},
{
"context": "Workspace",
"unbind": {
"alt-7": "outline_panel::ToggleFocus"
}
},
{
"context": "Workspace || Editor",
"bindings": {
"alt-3": "terminal_panel::Toggle"
}
},
{
"context": "Workspace || Editor",
"unbind": {
"alt-f12": "terminal_panel::Toggle"
}
},
{
"bindings": {
"alt-4": "git_panel::Toggle"
}
},
{
"bindings": {
"alt-2": "outline_panel::Toggle"
}
},
{
"bindings": {
"alt-3": "terminal_panel::ToggleFocus"
}
}
]