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
I often have the case that I want to update the code of multiple methods in the same way.
For example, I am currently replacing some string copyReplaceAll: String cr with: String lf by string withPlatformLineEnding to fix a bug breaking some tests on windows and I have 33 occurrences.
I think it would be great to extend the Find and replace to be able to work on a larger scope. Instead of working in just one method, I would like it to work on all the methods of a Message browser.
For example here I could just have looked for the senders of copyReplaceAll:with: and add a filter with the name of my package and do a find and replace in all the results in the list
The text was updated successfully, but these errors were encountered:
I often have the case that I want to update the code of multiple methods in the same way.
For example, I am currently replacing some
string copyReplaceAll: String cr with: String lf
bystring withPlatformLineEnding
to fix a bug breaking some tests on windows and I have 33 occurrences.I think it would be great to extend the Find and replace to be able to work on a larger scope. Instead of working in just one method, I would like it to work on all the methods of a Message browser.
For example here I could just have looked for the senders of
copyReplaceAll:with:
and add a filter with the name of my package and do a find and replace in all the results in the listThe text was updated successfully, but these errors were encountered: