Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable showing of run window in IntelliJ

Tags:

In IntelliJ every time I make a change in code and I run the app afterwards, "run window" is automatically popped up. Is there any way to disable this annoying behaviour or how to make it less distracting?

enter image description here

like image 566
sealskej Avatar asked May 23 '14 09:05

sealskej


People also ask

How do I show the Run tab in IntelliJ?

IntelliJ IDEA enables you to split the active Run tool window by invoking specific actions from the context menu. You can right-click the desired tab and select one of the split options: Split and Move Right or Split and Move Down. Another way to do this is by dragging and dropping the desired tab.

Why run option is disabled in IntelliJ?

One possible problem is that the program is still running in the background and hasn't exited completely. Check your running processes for java applications and see if it exists. Or a variation - close Intellij window and reopen. That worked for me based on this tip.


2 Answers

I finally could solve this one. At least it worked for me. At the bottom of "Run/Debug configurations" window and in "Before launch" part, uncheck "Activate tool window" check box.

enter image description here

like image 180
user2971399 Avatar answered Sep 22 '22 15:09

user2971399


There is currently no solution to do this permanently. However, there is a workaround to prevent it from popping up. Try this:

After the first time the window pops-up simply resize it all the way to the bottom (i.e. grab the TOP and drag down until the window disappears). This will prevent it from popping up again until you manually click one of the buttons to open any window in the same area (i.e. Run, TODO, Android, Terminal, Messages, (and Find Results) - or whatever you have in that same area if you've customized it).

To keep it from popping up, never click the hide button on any of these windows but rather use the same "drag from top to bottom" to hide them (the effect is the same).

This is annoying, to say the least, but once you get used to it it works fine and is much less annoying than dealing with that blasted Run popup window :)

NOTE
I should mention that this is completely safe to do as the windows are only hidden when you do this, and clicking the window's button at the bottom will show it in its original size - so nothing goes missing or breaks using this method :-)

like image 44
free3dom Avatar answered Sep 21 '22 15:09

free3dom