Replies: 2 comments
-
Ability to find tab characters. \t doesn't work and copying and pasting the tab character doesn't work. Using the tab key takes you to the next field, which is probably correct. You can search for spaces but not tabs. Godot uses tabs by default and tabs seem to be the common practice for GDScript indentation. I know some people might be tempted to wonder if the difficulty of searching for tab characters is part of a larger problem with using tabs in programming, but we all know to avoid the tabs vs spaces argument. Spaces have issues too. Tabs are fine. Ability to search for newlines as well. |
Beta Was this translation helpful? Give feedback.
-
This is done in godotengine/godot#105968 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The find tool only shows one occurrence of the search term at once. This makes it really difficult to find what you're looking for in a large documentation page with a lot of occurrences of your search term.
Consider this example:
Say I'm looking for a way to set the text of an item in the
ItemList
class. I just want to quickly see occurrences of the term 'text' in the method list.2025-02-13.14-05-51.mp4
My proposal is to:
Ctrl + F
should automatically put the selected text into the search bar and search for itBeta Was this translation helpful? Give feedback.
All reactions