
Problem: Initial keymap has "j k" keymap, which if uncommented will add +-1s delay to every "j" key press This workaround was taken from https://github.com/zed-industries/zed/discussions/6661 Release Notes: - N/A *or* Added/Fixed/Improved ... --------- Co-authored-by: Michael Sloan <michael@zed.dev>
21 lines
456 B
JSON
21 lines
456 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 && vim_mode == insert && !menu",
|
|
"bindings": {
|
|
// "j k": "vim::SwitchToNormalMode"
|
|
}
|
|
}
|
|
]
|