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
According to https://github.com/wellle/targets.vim/blob/master/cheatsheet.md in" should target next quotes
in"
In this example(^ means cursor position):
cy.url().should("first", "second"); ^
Using cin" should change "second" quoted text, but it changes first, what am I missing here?
cin"
The text was updated successfully, but these errors were encountered:
n means next from your cursor position, so "first" is the next one starting from your cursor. If you want "second", you should use 2in".
n
next
2in"
Sorry, something went wrong.
Can we set cin" is for the next(second) " and ci" is for current " or next(second) "?
"
ci"
No branches or pull requests
According to https://github.com/wellle/targets.vim/blob/master/cheatsheet.md
in"
should target next quotesIn this example(^ means cursor position):
Using
cin"
should change "second" quoted text, but it changes first, what am I missing here?The text was updated successfully, but these errors were encountered: