Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

showing in popup window method implementation in intellij

I'm using Intellij 2016.1 and I was wondering if there's a shortcut to see the method body in a popup window , instead of jumping to source code like Ctrl + Left Mouse Button does .

like image 762
nadavgam Avatar asked May 08 '16 08:05

nadavgam


People also ask

How do I get to implementation method in IntelliJ?

To navigate to the implementation, press Ctrl+Alt+B .

How do I show methods in IntelliJ?

By default, IntelliJ IDEA shows all classes, methods, and other elements of the current file. To toggle the elements you want to show, click the corresponding buttons on the Structure tool window toolbar.

Where is the implementation class of interface in IntelliJ?

Press Ctrl+F12 or choose Navigate | Implementation(s) from the main menu . Alternatively, you can press Ctrl+Shift+A , start typing the command name in the popup, and then choose it there.


1 Answers

The feature is called "Quick Definition Lookup" (Main menu > View > Tool Windows in the keymap settings). The default combination is Ctrl+Shift+I (or +Q for Mac).

enter image description here

It appears like

enter image description here

Any editing actions in the popup window lead to jumping into the file where the code is defined.

like image 51
Andrew Tobilko Avatar answered Sep 28 '22 15:09

Andrew Tobilko