Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove unused IntelliJ IDEA features?

Is there any possibility to remove unused features from IntelliJ IDEA 14?

Purpose:

  • better performance
  • ease of use

Some examples for unused features:

  • File > New Project... - Griffon, Flash
  • File > Settings... > Editor > Code Style - ActionScript, CoffeeScript, Gherkin
  • Tools > Capture Memory Snapshot
like image 957
ROMANIA_engineer Avatar asked Feb 13 '15 13:02

ROMANIA_engineer


People also ask

How do I delete unused methods in IntelliJ?

That would be helpful ! @Snicolas right-click on the inspection result (Declaration redundancy->Unused declaration) and choose "Safe delete". Or if you want button, there's the light-bulb in the left toolbar.

How do I delete unused variables in IntelliJ?

In IntelliJ, in a . java file, some unused code is greyed out indicating that the declared variable or function is never used. Unused imports are removed using Ctrl+Alt+O.

How do I get rid of unused imports in IntelliJ Mac?

In IntelliJ IDEA, Ctrl + Alt + O is the shortcut keys to remove/optimize unused imports for Windows/Linux operating system, and control + option + O is for Mac OS.


3 Answers

Choose Menu File \ Settings... or press Ctrl+Alt+S. Choose Plugins, disable unnecessary plugin:

enter image description here

Then press Apply, OK, restart IntelliJ IDEA to feeling the difference. That help decrement IntelliJ IDEA's start up time, and increment performance (like suggest code , operation faster etc.)

Need speed up more? you see: http://hamletdarcy.blogspot.com/2008/02/10-tips-to-increase-intellij-idea.html

Reference: https://www.jetbrains.com/idea/help/enabling-and-disabling-plugins.html

like image 197
Do Nhu Vy Avatar answered Oct 22 '22 13:10

Do Nhu Vy


There were 2 purposes in the question: performance & usability.

The first one already has some good answers.

Regarding the usability, it can be improved in IntelliJ IDEA 14.1.3. To achieve this, go to:

File > Settings... > Appearance & Behavior > Menus and Toolbars and remove the unused features. You can also add horizontal lines as separators in menus or change the items order.

enter image description here

I don't know if the performance is affected by this change.

like image 21
ROMANIA_engineer Avatar answered Oct 22 '22 13:10

ROMANIA_engineer


As far as I know you can only do this by disabling built-in plugins in Settings > Plugins

like image 26
Igor Konoplyanko Avatar answered Oct 22 '22 13:10

Igor Konoplyanko