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 search and replace functionality does not account for line change when replacing all occurences.
Example: Write a simple file with the following content:
A_A_
and have the cursor on the last position. When replacing every A with XXX (or anything of length 3 or greater) the following change will be made:
A
XXX
XXX_A_
The expected bahavior would be to have the following result:
XXX_XXX_
The text was updated successfully, but these errors were encountered:
should be pretty easy to fix if you'd like to send a patch
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The search and replace functionality does not account for line change when replacing all occurences.
Example:
Write a simple file with the following content:
and have the cursor on the last position.
When replacing every
A
withXXX
(or anything of length 3 or greater) the following change will be made:The expected bahavior would be to have the following result:
The text was updated successfully, but these errors were encountered: