When I debug a program using IntelliJ' debugger, how can I return to the normal execution of the program after debugging a part of the code ?
- I start a program, test it.
- When the debugger find breakpoints, it starts the step by step debugging of the program.
- I do my stuff and my checks, nothing goes wrong.
- I want to exit step by step debugging and go back to a fluid execution of the program (without having to press a button for all actions) until the debugger find a new breakpoint.
How can I do that and exit the step by step debugging?
