IntelliJ line highlight color

While working with IntelliJ, I used the shortcut incorrectly, and now I have a blue line with a backlight, which means nothing.

This is some kind of marker highlight.

How can I get rid of it? See Image.

enter image description here

+4
source share
1 answer

If you were executing code using the debugger, the current line of the execution point would be highlighted in the same way (although the default color is different):

execution point

Stopping the debugger should delete the line.

+9
source

Source: https://habr.com/ru/post/1669395/


All Articles