Add filters to Find in Files, to ignore Code, Strings, or Comments for find/replace #100839
+123
−3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Partially supersedes #67796
Partially addresses Proposal #563
PR: For Find in Files, add filters to include/exclude Code, Strings, or Comments from your search results.
See it in action:
godot.windows.editor.x86_64_B5vbC8DonX.webm
Notes:
func pie(/*old_param,*/ new_param);
.#
or c style// /**/
, which as far as I'm aware are the only other languages(gdshader, csharp) supported in the editor. Maybe we could expose an option so users can add delimiters.TextEdit
to handle and draw the search highlights, which we can't do much about unless we copy pasta a lot of code or add coding related flags toTextEdit::SearchFlags
. The latter of which was said to be avoided in the superseded PR.