mirror of
https://github.com/mikkelsvartveit/dotfiles.git
synced 2025-12-22 19:22:38 +00:00
27 lines
556 B
JSON
27 lines
556 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": {
|
|
// "shift shift": "file_finder::Toggle"
|
|
}
|
|
},
|
|
{
|
|
"context": "Editor",
|
|
"bindings": {
|
|
// "j k": ["workspace::SendKeystrokes", "escape"]
|
|
}
|
|
},
|
|
{
|
|
"context": "vim_mode == visual",
|
|
"bindings": {
|
|
"shift-s": ["vim::PushAddSurrounds", {}]
|
|
}
|
|
}
|
|
]
|