mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-05 00:41:44 +05:30
34 lines
754 B
JSON
34 lines
754 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"
|
|
}
|
|
},
|
|
{
|
|
"bindings": {
|
|
"ctrl-k z": "workspace::ToggleZoom"
|
|
}
|
|
},
|
|
{
|
|
"context": "Workspace",
|
|
"bindings": {
|
|
"ctrl ctrl": "command_palette::Toggle"
|
|
}
|
|
},
|
|
{
|
|
"context": "Editor",
|
|
"bindings": {
|
|
// "j k": ["workspace::SendKeystrokes", "escape"]
|
|
"ctrl-alt-j": "journal::NewJournalEntry"
|
|
}
|
|
}
|
|
]
|