Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I stop all processes in IntelliJ?

I am using intelliJ IDEA.

When I run my programs and close the window, the process still remains. If I run a lot of programs, I need to click disconnect many times.

Is there any way to stop all processes?

Eclipse doesn't have this problem.

PNG1

PNG2

like image 460
Ives Avatar asked Mar 25 '16 02:03

Ives


People also ask

How do I see what processes are running in IntelliJ?

Show running processesFrom the main menu, select Run | Show Running List. In the top-right corner of the editor, IntelliJ IDEA shows a list with all active applications.

How do I clean IntelliJ settings?

From the main menu, select File | Manage IDE Settings | Restore Default Settings. Alternatively, press Shift twice and type Restore default settings . Click Restore and Restart.

How do I make IntelliJ consume less memory?

From the main menu, select Help | Change Memory Settings. Set the necessary amount of memory that you want to allocate and click Save and Restart.


1 Answers

IntelliJ 2017.2 now has a "Stop All" button in the "Stop process" menu (the button on the top bar), with the default shortcut +F2 on OSX:

screenshot

For older versions:

  1. Click the Stop button from the top bar. It will pop open a menu listing all processes. (The stop button at the side of the debug window is per-process, as in your screenshot.)

  2. Hover over the first process, hold Shift, and then click on the last process.

  3. Press Enter.

Screenshot showing the result of steps 1 & 2:

screenshot

like image 178
Matthew Read Avatar answered Oct 07 '22 05:10

Matthew Read