The `inherits` and `network` attributes should not show anything since we are actually inside a `variable` block. ```HCL variable "var" { inherits = [""] network = "" } target "base" { } ``` ```JSON { "textDocument": { "uri": "file:///tmp/docker-bake.hcl" }, "position": { "line": 1, "character": 15 }, "context": { "triggerKind": 1 } } ``` ```JSON { "isIncomplete": false, "items": [ { "label": "base" } ] } ``` ```JSON { "textDocument": { "uri": "file:///tmp/docker-bake.hcl" }, "position": { "line": 2, "character": 13 }, "context": { "triggerKind": 1 } } ``` ```JSON { "isIncomplete": false, "items": [ { "label": "default" }, { "label": "host" }, { "label": "none" } ] } ```