You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When autocompleting g.hello.<tab>, the language server gives an additional hello before going deeper into the object ending up with g.hello.hello.to which will fail to render.
local g = import'hello2.jsonnet';
{
a: g.hello.<tab>,
}