[Request] Add global object properties to autocomplete project-wide
-
global accessMeFromAnywhere = {}; accessMeFromAnywhere.prop1 = 666;
In some other script processor, typing accessMeFromAnywhere should pop up all the properties it has, like it does for objects declared as var, or namespaces.
-
@aaronventure it already works here:
-
@Christoph-Hart Alright, my bad. Object properties don't show up in autocomplete anyway, global or no. I somehow thought they did...
To clarify what I mean, e.g. if you now wrote in any script
funky.funk = 1;
then typing "funky." wouldn't drop down the option to select funky.funk in autocomplete, like it does for namespaces and everything declared within the namespace.