Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make error pop-up appear using keyboard in IntelliJ IDEA

Tags:

When using IntelliJ IDEA and writing code, and when code you wrote has an error, the only way I know to make IDEA show you the error details is to hover the mouse cursor over the problem.

Example error pop-up

But that requires moving my hands from the keyboard to the mouse. Is there a hotkey that causes that pop-up with the error message to appear, or a way to configure such a hotkey?

like image 521
dhblah Avatar asked Oct 30 '13 11:10

dhblah


People also ask

What is Ctrl Alt L in IntelliJ?

If you choose Code | Reformat Code from the main menu or press Ctrl+Alt+L , IntelliJ IDEA tries to reformat the source code of the specified scope automatically. For more details on how to reformat, or exclude files from formatting, refer toReformat code.


1 Answers

On a Mac:

Cmd + F1

On Windows:

Ctrl + F1

On Linux:

Ctrl + F1

You can check for anything else in Preferences -> Keymap

like image 129
huggyfee Avatar answered Sep 25 '22 12:09

huggyfee