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.
```
in Intellij it does not expand the interface to anything useful and just shows
```
interface Test
```
```
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
```
------------------------
interface Test
```
in Intellij it does not expand the interface to anything useful and just shows
```
interface Test
```
Please sign in to leave a comment.
View | Quick Definition?
Yes! Thank you!
This feature is very useful indeed and somehow it is missing.
Is there any way to enable Quick Definitions on hover?
No: https://youtrack.jetbrains.com/issue/IDEABKL-5345.