Maran23 / script-ide

Script-IDE is a plugin for Godot. It transforms the Script UI into an IDE like UI. Tabs are used for navigating between scripts. The default Outline got an overhaul and now shows all members of the script (not just methods) with unique icons for faster navigation.
MIT License
368 stars 16 forks source link

Feature Request: Enhanced Code Navigation and Contextual Awareness for the Godot Script Editor #48

Closed EiTaNBaRiBoA closed 3 months ago

EiTaNBaRiBoA commented 3 months ago
Maran23 commented 3 months ago

Thanks for your request. Your first point is somewhat implemented already with the three dots at the top right of the tabs: image

The other points you mentioned are out of scope for a plugin like this. Especially stuff like reference counts should be implemented at a much lower level, at the GD compiler tracking reference for us (so that we can use that information). If implemented by us, we can only count by the 'String' name, which is prone to errors as we have no contextual information.

I will therefore close this as not planned.

(Note that the idea is to get this plugin hopefully into Godot at one point, as any modern IDE has feature like that. Reference counting is a subject of its own, something with much value that would be nice to have in Godot core too)