Reputation: 14879
Normally you would expect just hovering over a method it would show a popup of the return type.
How do you get this information in intellij ultimate?
Upvotes: 31
Views: 16793
Reputation: 11
Ctrl+Shift+P
works great with extra bonus by highlighting relevant return expression (IntelliJ 2020.2.3 CE)
Upvotes: 1
Reputation: 1006
In intellij, Go to Help > Productivity Guide you will find a list of useful shortcuts to increase productivity
Regarding, this question in mac Press option+command+V to get the list of names that you can choose
Ctrl+ J in mac for getting the documentation
Find screenshots for ease:-
Upvotes: 1
Reputation: 61
Try Ctrl + Space for quick definition
Also Ctrl + Shift + P may help
Upvotes: 6
Reputation: 340733
Hit Ctrl + Q (or ⌃J on Mac) when cursor is on a method declaration or call. It will show you the pop-up you want. As a bonus: Ctrl + Shift + I will display method body as well in a pop-up.
Upvotes: 39