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
r
\n
The VSCodeVim team prioritizes issues based on reaction count.
Is this a BUG REPORT or FEATURE REQUEST? (choose one): BUG REPORT
Environment:
What happened:
Note: I'm using the neovim support.
With line like this:
this, is, a, test
In command mode, I put the cursor on the space after the first comma, and pressed r<enter> to replace the space with a newline.
r<enter>
The result was this:
this,<-- cursor on this comma is, a, test
with the cursor in command mode on the , after this
,
this
What did you expect to happen:
I expected the cursor to be on the i on the second line.
i
How to reproduce it:
Type r<enter> on any line, and notice that the cursor stays on the current line, rather than going to the next line
The text was updated successfully, but these errors were encountered:
Fix replace character (r) behavior with newline (#3735)
490e16a
The cursor now ends up at the beginning of the next line and will only ever insert one newline, regardless of count prefix. Fixes #1884
Successfully merging a pull request may close this issue.
The VSCodeVim team prioritizes issues based on reaction count.
Is this a BUG REPORT or FEATURE REQUEST? (choose one): BUG REPORT
Environment:
What happened:
Note: I'm using the neovim support.
With line like this:
this, is, a, test
In command mode, I put the cursor on the space after the first comma, and pressed
r<enter>
to replace the space with a newline.The result was this:
with the cursor in command mode on the
,
afterthis
What did you expect to happen:
I expected the cursor to be on the
i
on the second line.How to reproduce it:
Type
r<enter>
on any line, and notice that the cursor stays on the current line, rather than going to the next lineThe text was updated successfully, but these errors were encountered: