SO the background to this question can be found here: Slow Java Debugging Performance in Long-running Method. Essentially what this is sttaing is that using the Step over
functionality in the (Eclipse) Java Debugger is incredibly slow which is really cumbersome if one just wants to step over a line of code.
A solution to this is to place the cursor into the next line and hit Ctrl+R
(Run to Line
) but this is not quite as comfortable as simply hitting a button (like hitting F6
for stepping over the line).
Therefore my question is whether there is a way to either make the Step over
command run to the next line instead of whatever it is doing right now or to create a shortcut that places the cursor into the next line and then invokes Run to Line
automatically so that this functionality is available with a single keystroke as well.
If there is no "default" way of achieving this, does someone know of a plugin that provides such functionality?