Eclipse Java Shortcuts for Debugging in "Edit Java Source"

I like to use shortcuts when debugging my java applications in eclipse. The F5, F6, F7, and F8 keys work only in debug mode. Therefore, I tried to copy all the keys (Preference β†’ General β†’ Keys) using the "Copy command" button and make them work when "Edit Java Source". I clicked the Apply button, but it still doesn’t work.

How to make keys (F5, F6, F7 and F8) work in java perspective? Thanks!

Respectfully,

Con

Edit: I am using Eclipse Indigo Service Release 1

+6
source share
1 answer

From this old error 13513 :

To make the " F " buttons work, you must currently activate the debug action set.

Window->Customize Perspective->Action Sets->Debug. 

Therefore, you do not need to copy key preferences, just to activate debug commands in your current perspective.

+4
source

Source: https://habr.com/ru/post/906654/


All Articles