Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse's "Outline" window equivalent in IntelliJ

I am thinking to switch from Eclipse to IntelliJ. But I want first make sure that my favorite tools exists in IntelliJ.

Does IntelliJ has an equivalent to Eclipse's docked Outline window?

Eclipse outline window example

like image 840
Daniel Hári Avatar asked Jul 31 '15 17:07

Daniel Hári


People also ask

What is Ctrl O equivalent IntelliJ?

CTRL+O in eclipse searches in current class/file. CTRL+F12 is the correct equivalent. – Ejaz Ahmed. Sep 16, 2015 at 8:54. The scope is too wide for double shift based search in IntelliJ.

How do I open STS project in IntelliJ?

Import a project to IntelliJ IDEA Launch IntelliJ IDEA. If the Welcome screen opens, click Open. Otherwise, from the main menu, select File | Open. In the dialog that opens, select the directory in which your sources, libraries, and other assets are located and click Open.

Can we use Eclipse shortcuts in IntelliJ?

IntelliJ IDEA automatically suggests a predefined keymap based on your environment. Make sure that it matches the OS you are using or select the one that matches shortcuts from another IDE or editor you are used to (for example, Eclipse or NetBeans).

How do I act like an Eclipse in IntelliJ?

If you want to mimic the Eclipse behavior, you can invoke the Build Project action Ctrl+F9 - it will save the changed files and compile them. You can also enable the Build project save action in Settings/Preferences | Tools | Actions on Save.


Video Answer


2 Answers

I think you're looking for this:

To view the file structure, do one of the following

  • On the main menu, choose View | Tool Windows | Structure.
  • Pres StructureTool Button
  • Press Alt+7.
  • Press Ctrl+F12.
like image 52
arodriguezdonaire Avatar answered Oct 10 '22 19:10

arodriguezdonaire


File structure popup shortcut:

  • Windows: CTRL+F12
  • Mac: +F12
like image 31
Saikat Avatar answered Oct 10 '22 18:10

Saikat