You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
When batch-replacing parts of the text matched by a regular expression which captures some groups, the captured groups of the first instance are used in all occurrences, instead the groups captured in each occurrence. The issue only happens when finding in the project.
Steps to Reproduce
Have a text file that includes several strings with a common part, e.g. "000".
Press Cmd+Shift+F to launch replace menu in the project (to replace in all files)
Search for something like (.+)000(.+), where the non-captured part is to be removed.
Replace with $1$2 so as to replace the whole matched string with the captured groups (thus removing the common non-captured part).
Expected behavior:
In every occurrence, the text matched is replaced with the groups captured in that occurrence.
Actual behavior:
In every occurrence, the text matched is replaced with the groups captured in the first occurrence. https://youtu.be/d7I5Y4-jaOs