Home > Net >  IntelliJ highlight errors and warnings more prominent
IntelliJ highlight errors and warnings more prominent

Time:09-22

In IntelliJ I find it cumbersome to find syntax errors and warnings:

Warnings are only listed on the right side at the scroll bar.
Errors are displayed in red - and the at the right side of the scroll bar.

Breakpoints on the other hand are highlited extremly prominent on the left bar of the editor plus a shadow in the whole line.

How to change / customize the style that errors and warnings are more prominent e.g. underlined like in eclipse?

IntelliJ default syntax colors

CodePudding user response:

You can edit your color scheme or change it to another one. Maybe that solves the problem. Go to settings > editor > Color Scheme > General. you can edit your error or warning style. Maybe adding a background or foreground color will help

Example making "Unknown symbol" and "Unused symbol" more prominent:

enter image description here

  • Related