Closed
Description
example follows
--a.lua
local t = GlobalTable
t.settings = {
test = 1
}
--b.lua
local b = GlobalTable.settings
print(b.test)
when hovering over settings i can see test = 1
when i type b. i get NO autocomplete and hovering over b says local b: any {}
b shows test:any only because i hard coded it inside print.
Reverting to 0.21.12 for now