Every time I hit the debug button in my IDE is create a new process running on the OS.
Is there a way to configure things so that only one JAVA process can be running on my OS at once when hitting the debug button?
What I know is if I hit the red stop button in the debugging panel that number will decrement. So long as I remember to stop before hitting the debug button each time I can manage the number of running processes. But this is easy to forget to do. In addition, once i have 5-10 running debug sessions it is very tedious to delete them all. I must go to Run->Show Running List and a list of the "VM Connections" appear and I must delete them one by one. Often this UI component that lists them will simply disappear and I must pull it out again. Is there a way to end all of these processes at once?

