Eclipse eclipse

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).

+2
source share
2 answers

Try turning on the Debug command group in the Java perspective:

Window → Perspective Settings → Command Group Availability

+1
source

Perhaps you have another plugin command overriding Ctrl + F2 shortcut? Check out the extra plugins that you installed on your Eclipse.

0
source

All Articles