Vim
Vim copied to clipboard
Move down by pressing [j] always jump more one line.
Describe the bug
After unpressing j. The cursor still jump a next line.
To Reproduce
Steps to reproduce the behavior:
At normal mode. Pressing and hold j.
Screenshots
I press and hold j line 28. But the cursor always jump next line.
https://github.com/VSCodeVim/Vim/assets/3463991/8190a32d-e9da-40d3-87e2-a61029932b80
Environment (please complete the following information):
- Extension (VsCodeVim) version: v1.27.3
- VSCode version: 1.90.0
- OS: mac 14.5
I've had a similar issue in the past. For me it was simply an issue of VSCode being slow for whatever reason.
I have this problem too. I have turned off a pile of extensions, turned off status bar colors, turned on affinity A lot of users are experiencing the same slow downs.
Actually - in my case I had these in my settings:
"vim.normalModeKeyBindingsNonRecursive": [
// panes
{
"before": ["h", "leader"],
"commands": ["workbench.action.focusLeftGroup"]
},
{
"before": ["j", "leader"],
"commands": ["workbench.action.focusBelowGroup"]
},
{
"before": ["k", "leader"],
"commands": ["workbench.action.focusAboveGroup"]
},
{
"before": ["l", "leader"],
"commands": ["workbench.action.focusRightGroup"]
},
...
]
These are the culprits in my case - as they allow me to jump around editor panes. Guess I'll have to use something else now.