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.
Trying to bind 0 to ^ in normal mode with this:
0
^
"vim.otherModesKeyBindingsNonRecursive": [ { "before": ["0"], "after": ["^"] } ]
When I press 0, I go to the first non-whitespace character in the line
Pressing 0 make the cursor go to the first character in the line, whether whitespace or non-whitespace
The text was updated successfully, but these errors were encountered:
https://github.com/VSCodeVim/Vim/blob/master/src/mode/modeHandler.ts#L775
The problem is here due to it being seen as ONLY a count
Sorry, something went wrong.
Fixes VSCodeVim#1492
3107199
This was fixed with #2793
No branches or pull requests
The VSCodeVim team prioritizes issues based on reaction count.
What did you do?
Trying to bind
0
to^
in normal mode with this:"vim.otherModesKeyBindingsNonRecursive": [ { "before": ["0"], "after": ["^"] } ]
What did you expect to happen?
When I press
0
, I go to the first non-whitespace character in the lineWhat happened instead?
Pressing
0
make the cursor go to the first character in the line, whether whitespace or non-whitespaceTechnical details:
The text was updated successfully, but these errors were encountered: