Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stop IntelliJ polluting Project tool window with module names?

On the back of this question, is there a way in IntelliJ to disable displaying the full .iml module name [in bold and in square brackets] next to folder name when it is simply a fully qualified version of it? It is unnecessarily noisy on a big project...

http://i.stack.imgur.com/eE5nz.png

enter image description here

like image 988
Ilya Kozhevnikov Avatar asked Apr 08 '15 08:04

Ilya Kozhevnikov


People also ask

How do I focus a project tool window in IntelliJ?

To open the tool window again (and restore the associated features), use the main menu: View | Tool Windows | <Window Name> or press Alt+1 . Hide the tool window. This command opens the description of the Project tool window in the IntelliJ IDEA online help.

Where is module settings in IntelliJ?

From the main menu, select File | Project Structure Ctrl+Alt+Shift+S . Under Project Settings, select Modules | Sources.

How do I close a module in IntelliJ?

In the Project tool window, right-click a module, and select Load/Unload Modules. You can double-click a module in the dialog to load or unload it, or use the buttons in the middle of the dialog.

Where is Project tool window in IntelliJ?

From the main menu, select a tool window under View | Tool Windows. Use the corresponding shortcut, for example, Alt+1 to open the Project tool window. If there is no shortcut for a tool window, you can assign it as described in Configure keyboard shortcuts.


2 Answers

There is a related feature request open in IntelliJ IDEA issue tracker:

  • IDEA-82965 Clean module names

Feel free to vote/comment.

like image 69
CrazyCoder Avatar answered Oct 13 '22 00:10

CrazyCoder


As a newcomer to both IntelliJ and Maven, I also found the module names to be noisy. Perhaps I'll need them later, but for now I needed to be able to focus on the file directory structure and just needed them gone. Switching from "Project" to "Project Files" did the trick. The Project Files view has an option in its Options Menu to Show Modules that I was able to disable. Maven module information is no longer visible. It might not be the perfect long term solution, as I don't fully understand the difference in the views yet, but it did reduce the as-yet-unnecessary information I was being bombarded with.

(Thanks to https://youtrack.jetbrains.com/issue/IDEA-126014 for pointing this out while working on a similar issue.)

like image 45
ojchase Avatar answered Oct 12 '22 23:10

ojchase