Fix "j" key latency in vim mode with "j k" keymap
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 ...
Thanks! Added a commit to switch it from SendKeystrokes to vim::SwitchToNormalMode. This is an improvement, but I don't think this solves the input delay? AFAIK there is no current solution for the input delay.
Thanks! adding the vim_mode = insert is important to prevent slowness in normal mode.
https://github.com/zed-industries/zed/pull/32007 has a potential fix to show the j immediately in insert mode. (thanks @little-dude!)