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
Put this into a new buffer:
ONE TWO
Exit insert mode.
Put cursor on first line (xxx).
xxx
Vj to select both lines.
Vj
:'<,'>s/ONE/THREE/ to replace ONE with THREE.
:'<,'>s/ONE/THREE/
ONE
THREE
I am out of visual mode.
If I press u at this point, it should undo the operation, leaving me with
u
I am still in visual mode.
If I press u at this point, it runs vim-mode-plus:lower-case, which result in this:
vim-mode-plus:lower-case
three two
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce
Put this into a new buffer:
Exit insert mode.
Put cursor on first line (
xxx
).Vj
to select both lines.:'<,'>s/ONE/THREE/
to replaceONE
withTHREE
.Expected
I am out of visual mode.
If I press
u
at this point, it should undo the operation, leaving me withActual Result
I am still in visual mode.
If I press
u
at this point, it runsvim-mode-plus:lower-case
, which result in this:The text was updated successfully, but these errors were encountered: