You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Moving up and down the line using <number>j or <number>k is not instantaneous.
To Reproduce
Steps to reproduce the behavior:
Open a file with 1000s of lines
move up or down using 100j / 500j / 900k
Expected behavior
Cursor moves extremely slowly.
Environment (please complete the following information):
Extension (VsCodeVim) version: v1.21.4
VSCode version: v1.57.1
OS: Linux
Additional context
<number>h/l happens instantly.
<number>gg happens instantly.
Up and down movements are repeated <number> times. But: <number>j is effectively min(last line, current line + <number>) gg <number>k is effectively max(0, current line - <number>) gg
The text was updated successfully, but these errors were encountered:
Describe the bug
Moving up and down the line using
<number>j
or<number>k
is not instantaneous.To Reproduce
Steps to reproduce the behavior:
100j
/500j
/900k
Expected behavior
Cursor moves extremely slowly.
Environment (please complete the following information):
v1.21.4
v1.57.1
Linux
Additional context
<number>h/l
happens instantly.<number>gg
happens instantly.<number>
times. But:<number>j
is effectivelymin(last line, current line + <number>) gg
<number>k
is effectivelymax(0, current line - <number>) gg
The text was updated successfully, but these errors were encountered: