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
The VSCodeVim team prioritizes issues based on reaction count.
BUG REPORT
Environment:
Failure mode for tabs as spaces with the dot command:
What happened:
i
<Tab>
<ESC>
.
What did you expect to happen:
What happened instead:
Failure mode for inserting " (double quote) with the dot command (the same behavior happens when inserting any of the following chars (, {, ', [):
"
(
{
'
[
j
The text was updated successfully, but these errors were encountered:
The first part is a duplicate of #612 , which is also fixed by PR #1663 .
The second one is strange, I'll take a look later.
Sorry, something went wrong.
This is the part of code that's causing issues for the second problem. https://github.com/VSCodeVim/Vim/blob/master/src/mode/modeHandler.ts#L895
It's not always true that vscode will insert a paired character. It depends on context.
9c412c2
Merge pull request #1700 from Chillee/1674
7a33511
Fixes #1674: repeating . with characters like " or ) leaves cursor in wrong place
No branches or pull requests
The VSCodeVim team prioritizes issues based on reaction count.
BUG REPORT
Environment:
Failure mode for tabs as spaces with the dot command:
What happened:
i
to enter insert mode<Tab>
to insert tabs as spaces<ESC>
to exit insert mode.
to repeat the last commandWhat did you expect to happen:
<Tab>
(as spaces)What happened instead:
Failure mode for inserting
"
(double quote) with the dot command (the same behavior happens when inserting any of the following chars(
,{
,'
,[
):What happened:
i
to enter insert mode"
(double quote), to insert a double quote<ESC>
to exit insert modej
.
to repeat the last commandj
.
to repeat the last command yet againWhat did you expect to happen:
"
(double quote) to the beginning of the next lineWhat happened instead:
"
(double quote) to be in the wrong placeThe text was updated successfully, but these errors were encountered: