-
Notifications
You must be signed in to change notification settings - Fork 12.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Expandable Quick Info/Hover Verbosity #59029
Comments
Moving this out of the issue body, since this is more of my own suggestion than a spec. A good experience here may need some clever thinking. Some parts of quick info which a user may want to expand may be totally unrelated to what actually gets expanded out. One possible direction here is to expand in a breadth-first way instead of depth-first. For example, if a user sees the following type: /* Verbosity 0 */
{
foo: Foo,
bar: Bar,
baz: Baz,
} expanding on a depth-first basis might pop everything out in the following way /* Verbosity 0 */
{
foo: Foo,
bar: Bar,
baz: Baz,
}
/* Verbosity 1 */
{
foo: {
fooProp: string
},
bar: {
barProp: string
},
baz {
bazProp: string
},
} whereas allowing expansion on a breadth-first level might be a little less daunting, albeit more tedious: /* Verbosity 0 */
{
foo: Foo,
bar: Bar,
baz: Baz,
}
/* Verbosity 1 */
{
foo: {
fooProp: string
},
bar: Bar,
baz: Baz,
}
/* Verbosity 2 */
{
foo: {
fooProp: string
},
bar: {
barProp: string
},
baz: Baz,
}
/* Verbosity 3 */
{
foo: {
fooProp: string
},
bar: {
barProp: string
},
baz {
bazProp: string
},
} |
Ref #31384 which previously experimented with instrumenting diagnostic message construction to allow expandable spans like this. |
Related on Stack Overflow: |
At least in my experience and opinion this is the number 1 pain point with TS. Many times a day (or even hour) I run into situations where TS is truncating the useful parts of a type or error. |
Would this also include the other way around? I have complex inferred types that I would like to collapse, because more often than not the type signature is longer than what VS code shows me. |
@florianbepunkt I'm not sure I understand precisely what you mean by "collapse" here, could you provide an example? |
Sure. For example we have an event sourcing system that uses the functional Effect lib. Works pretty well, but given a type of Invoice with lots of props, I get this type signature in VS code on hover:
What would be great is to drill in and out of types. In the example above, I would like to collapse the the |
There is a lot of interest and discussion in #38040 and #56010 when it comes to showing/hiding details of a quick info request. In microsoft/vscode#195394, we have a proposed client/editor API to serve up such an experience, and we'd like to provide it.
There are some questions that still need to be answered and prototyped. For example, what precisely should be expanded? In some cases, a type reference can be expanded into its structural form. In others, an elision (
...
) can possibly be shown. Whether this is always desirable is questionable.The text was updated successfully, but these errors were encountered: