vscode-vim
vscode-vim copied to clipboard
'b' and 'B' on second digit of number returns to incorrect place
Using the following tests, the back command can be shown to behave inappropriately. ^ represents the cursor position.
word 8888.8888
^
b
word 8888.8888
^
With B
word 8888.8888
^
B
word 8888.8888
^
Correct behavior would yield this:
word 8888.8888
^
b
word 8888.8888
^
Thank you!
It actually appears to be any second character. I just happened to be editing a ton of numbers in a column at once.
b during visual selection mode can also not pass special characters like : or ( )
Example (^ is cursor, - is a selected character)
test select:special
^
vEE
test select:special
------------------^
b
test select:special
------------^
b
test select:special
-----------^
b
test select:special
-----------^
bbbbbbbbbb
test select:special
-----------^
OK, I confirmed it has a problem.