Is it possible to enable detailed inspections/tooltips when hovering/cmd + hovering variables similar to VSCode?

Answered

For example VSCode allows you to peek into a Typescript interface

```

interface Thing {
    some: {
        thing: 'hello world';
    }
}

interface Test {
    hello: string;
    world: number;
    thing?: Thing;
}

const test = (a: Test) => {
    a.thing;
}
```

in this example (using VSCode) when hovering over Test in the test function while holding CMD (Mac) it shows you the typescript interface for Test (not including a deep inspection for Thing)
e.g.
```
interface Test {
    hello: string;
    world: number;
    thing?: Thing;
}
------------------------
interface Test
```


in Intellij it does not expand the interface to anything useful and just shows
```
interface Test
```
1
5 comments

View | Quick Definition?

1
Avatar
Permanently deleted user

Yes! Thank you!

0
Avatar
Permanently deleted user

This feature is very useful indeed and somehow it is missing.

0

Is there any way to enable Quick Definitions on hover?

0

Please sign in to leave a comment.