Editor: Add classic text search functionality to Output panel#107148
Open
yangyey wants to merge 1 commit intogodotengine:masterfrom
Open
Editor: Add classic text search functionality to Output panel#107148yangyey wants to merge 1 commit intogodotengine:masterfrom
yangyey wants to merge 1 commit intogodotengine:masterfrom
Conversation
Contributor
Contributor
Author
Member
|
Match label can push the buttons to the right: godot.windows.editor.dev.x86_64_KOeCFOHGd7.mp4It would be better to avoid that. Compare with script editor's search: godot.windows.editor.dev.x86_64_XfOv2bO0oZ.mp4Also there are some text differences, and the strings don't get translated. It would be better to make them consistent. |
Contributor
Author
Implements classic search in the Output (EditorLog) panel, including: - Search box with toggles for "Match Case" and "Whole Words" - Navigation buttons for next/previous match - Highlights matches, with distinction for the currently selected - Scroll to active match when navigating This improves usability for developers debugging or scanning log output by allowing quick and flexible keyword searching. This looks to implement what was referenced in godot-proposals features godotengine#12074 and godotengine#10249. Co-authored-by: Sun Chenwei <sunchenwei@tecnico.ulisboa.pt> fix: re-added a line that was deleted by accident fix : inconsistent text and unwanted checkbox being pushed off to the right.
Member
You could also experiment with adding some spacing Control node. |
Contributor
Author
Yes that's what I decided to do. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.



Implements classic search in the Output (EditorLog) panel, including:
This improves usability for developers debugging or scanning log output by allowing quick and flexible keyword searching. This looks to implement what was referenced in godot-proposals features godotengine/godot-proposals#12074 and godotengine/godot-proposals#10249.
Co-authored-by: @SunChenWei