Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse shortcut "debug last debug configuration" (not F11)

I'm looking for a shortcut to debug the last debug configuration. I know about the existence of F11, but the problem is, that I want to start debugging the last configuration. F11 runs the debugging of the class currently opened.

I thought it would be easy to find that shortcut on the net, but no luck...

like image 858
martin Avatar asked Jan 04 '11 08:01

martin


People also ask

What are the shortcut keys for debugging in eclipse?

Select Debug As → Java Application or use the shortcut Alt + Shift + D, J instead. Either actions mentioned above creates a new Debug Launch Configuration and uses it to start the Java application. In most cases, users can edit and save the code while debugging without restarting the program.

What is debug configuration in Eclipse?

An eclipse debug configuration is similar to a run configuration but it used to start an application in the debug mode. Because the application is started in the debug mode the users are prompted to switch to the debug perspective.


1 Answers

Check the prefs, namely "Run/Debug" -> "Launching" -> "Launch Operation". There you can select what F11 does: Run/Debug the file open in the current editor or use the last launch config again (first option in the last block in the page).

like image 110
Aaron Digulla Avatar answered Oct 07 '22 17:10

Aaron Digulla