We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test for #9609 and #9786
Complexity 4
This will run Vim sample extension and is referred as Vim editor from here after. Verify following scenarios on this.
Normal
Visual
Edit
i
esc
v
A line is a complete line that can consists of one or more wrapped lines in the screen.
Note: All of these scenarios have to be tested in non-edit mode Note: When window scrolls downwards, cursor/lines move upwards and vice-versa
Make sure during scrolling, cursor is always revealed in the current window.
The text was updated successfully, but these errors were encountered:
@sandy081 As you know i'm not a fan of cursorMove at all 😄
cursorMove
But i found a bug while working around every single principle in VsCodeVim to get things done.
await vscode.commands.executeCommand("cursorMove", { to: "up", by: "wrappedLine", select: false, noOfLines: noOfLines });
noOfLines has no effect, none! It just gets ignored.
noOfLines
Update: It seems the wrong issue for this comment (related issue #9143) Update2: Not a bug, That field has been renamed to value!
value
Sorry, something went wrong.
weinand
No branches or pull requests
Test for #9609 and #9786
Complexity 4
Set up
This will run Vim sample extension and is referred as Vim editor from here after. Verify following scenarios on this.
Good to know
Normal
,Visual
,Edit
.Mode change
i
for edit mode when in normal or visual mode.esc
for normal node when in edit mode.v
for visual mode when in normal mode.Line vs wrapped line
A line is a complete line that can consists of one or more wrapped lines in the screen.
Note: All of these scenarios have to be tested in non-edit mode
Note: When window scrolls downwards, cursor/lines move upwards and vice-versa
Test up and down scrolling
Make sure during scrolling, cursor is always revealed in the current window.
Test revealing current line
Test folding / unfolding
The text was updated successfully, but these errors were encountered: