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
Describe the bug
When searching for a hole in an environment, only the first match will be found, even if multiple passes would detect multiple holes in the context.
Reproducing
the config below locates XYZ(); within brackets and moves it to the end of the brackets.
Additional context
It seems uncertain to me whether this is a bug or the expected behavior; if it isn't a bug, I'm curious how one would achieve the result I'm looking for. The reason brackets are necessary is that there are multiple methods in the file which need to be arranged in this way, rather than collecting all the matches in one place.
The text was updated successfully, but these errors were encountered:
Describe the bug
When searching for a hole in an environment, only the first match will be found, even if multiple passes would detect multiple holes in the context.
Reproducing
the config below locates
XYZ();
within brackets and moves it to the end of the brackets.Expected behavior
Given the following method, I would like to find all matches and move them to the end.
My expected result would be
however I end up with the following, because the brackets are no longer inspected once a match is found.
Additional context
It seems uncertain to me whether this is a bug or the expected behavior; if it isn't a bug, I'm curious how one would achieve the result I'm looking for. The reason brackets are necessary is that there are multiple methods in the file which need to be arranged in this way, rather than collecting all the matches in one place.
The text was updated successfully, but these errors were encountered: