Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to navigate to a Type in IntelliJ? or what is the equivalent to Eclipse's Ctrl + Shift + T?

In Eclipse, the "Open Type" dialog (Ctrl + Shift + T) allows you to open any type, including those that are in jar dependencies. What's the equivalent for Intellij IDEA?

like image 627
Καrτhικ Avatar asked Nov 26 '14 21:11

Καrτhικ


People also ask

How do I open type in IntelliJ?

Press Shift twice to open the search window and type / . IntelliJ IDEA lists the available groups of settings. Select the one you need and press Enter . As a result, IntelliJ IDEA gives you a quick access to the selected setting and its options.

How do I navigate code in IntelliJ?

To navigate backwards, press Ctrl+Alt+Left . To navigate forward, press Ctrl+Alt+Right . To navigate to the last edited location, press Ctrl+Shift+Backspace . To find the current caret location in the editor, press Ctrl+M .

What does Ctrl Shift F do in IntelliJ?

In past IntelliJ versions, ctrl+shift+f would search the entire project (no matter whether you had at some point used "find in path").


1 Answers

CTRL+N is the shortcut you're looking for.

After you hit it, dialog will be shown where you can search through project types, hit that shortcut again and it will include non-project types (dependencies). There is also checkbox for that in the dialog.

The documentation, which includes some tips and tricks for this feature is available here.

Other alternative is the search everywhere dialog (SHIFT+SHIFT). You can search through classes, commands, and a lot of other stuff in this dialog.

like image 144
Bohuslav Burghardt Avatar answered Oct 05 '22 23:10

Bohuslav Burghardt