Eclipse: show the problem the (keyboard) cursor is in?

Eclipse notes problems with this red underline; if you place the mouse cursor over this line, an error message will appear. - How to see the same error description for the text cursor?

Viewing the probe / marker is not a solution, because they will show all errors, and I only need the β€œcurrent” error.

The solution should work without a mouse!

+4
source share
4 answers

You can move the cursor over the error and press F2 , which shows the error and offers solutions.

+8
source

Try Ctrl + 1. It opens a quick menu for the current problem. You can see a description of the problem and possible quick fixes.

+4
source

When your carriage is in the error area, Eclipse displays a description of the error in the lower left corner, below, where the package explorer is located by default.

+2
source

You can get warnings / errors through "ctr +". "ctr +", then press f2 to see a description of the problem and quick fixes, then select the appropriate quick fixes or press "ctr + 1" to get quick fixes, and then select the appropriate option.

+1
source

All Articles