I am familiar with What is a short cut in eclipse to complete debugging / launching? . But nothing works for me. I want to be able to complete a running program from a Java perspective in the same way that I can do this in a Debug perspective using CTRL + F2 .
If specific details could be given on how to achieve this, it would be really great!
UPDATE
To eliminate any doubts, suppose an example of a toy, when all we have is the following:
public class ToyExample { public static void main(String[] args) { while (true); } }
I want to execute (run) the program above normally ( CTRL + F11 ), that is, not in debug mode, and be able to complete it using CTRL + F2 (or another keyboard shortcut).
Mroth source share