Eclipse – How to go to the next Eclipse marker (e.g. build error) using the keyboard

eclipsekeyboard shortcuts

Suppose I make a method signature change that breaks several callers, and I want to review the call sites manually to update them.

Once I change the signature, my "Problems" view shows, say, a dozen errors.

What keys can I hit to navigate through them while leaving the keyboard focus in the editor for fast fixups?

(It's been a while, but I think the Visual Studio equivalent is F8.)

Note that this question does not duplicate Eclipse: How to go to a error using only the keyboard (keyboard-shortcut)?, as that one seeks to navigate only between markers in the current file. In this case, I want to go to the next error regardless of which file it's in.

("Marker" is the general Eclipse term for errors, warnings, etc.)

Best Answer

The best I've come up with so far is Ctrl + F7 to flip to the Problems view, then to pick the topmost error, then Enter to go to it (which returns focus to the editor).