Currently folding in VS Code hides too much of the folded item, so you can't identify it. For example folding ``` @open @complex model customSecurityAttributeValue { } ``` shows the following: <img width="474" alt="image" src="https://github.com/microsoft/typespec/assets/1190037/0f66a734-cfbe-4c55-8fd2-a9d6f6959d06"> Whereas folding: ``` @open @complex model customSecurityAttributeValue { dooo: int32; hooo: int32; vooo: int32; gooo: int32; mooo: int32; zooo: int32; booo: int32; } ``` shows: <img width="250" alt="image" src="https://github.com/microsoft/typespec/assets/1190037/d1b421dc-7120-432b-94c6-b094826fe78b"> Expected: In both cases, the content of the `model` should be folded Actual: Both cases are broken, albeit differently.