Question in topic title. Currently, class methods don't appear in the auto-completion popup, so I don't know what methods/properties are available. Are there plans to include these?
1 Like
Well, you do get class method autocomplete, but there's no local knowledge of variable types/instances. That's something I'd like to add, but it's also a big task that can't really be broken down, so it's not first priority.
1 Like
Ah yes, the objects themselves don't have auto-completion, but the library ref itself does (duh ). Although it would be nice to have completion on the objects themselves, as you say
1 Like
AST is unlikely to be up to the task, since any given variable name can take on objects and instances of multiple types at various times, including from outside the scope of the script at hand.
In other words, don't hold your breath waiting for that.
1 Like