Vim icon indicating copy to clipboard operation
Vim copied to clipboard

Move down by pressing [j] always jump more one line.

Open tnexlor opened this issue 1 year ago • 3 comments

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

tnexlor avatar Jun 06 '24 16:06 tnexlor

I've had a similar issue in the past. For me it was simply an issue of VSCode being slow for whatever reason.

Sheepolution avatar Jul 18 '24 16:07 Sheepolution

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.

sidouglas avatar Aug 03 '24 04:08 sidouglas

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.

sidouglas avatar Aug 03 '24 16:08 sidouglas