AzzamAziz
AzzamAziz

Reputation: 2171

How do I remove IntelliJ's blank line numbers?

IntelliJ 2022.1 is showing blank line numbers above @s and methods.

Example:

enter image description here

Upvotes: 15

Views: 1657

Answers (2)

CrazyCoder
CrazyCoder

Reputation: 402503

It's a known bug.

Since the issue is usually caused by the long refresh from the VCS, it should help if you disable this option:

Settings (Preferences on macOS) | Editor | Inlay Hints | Code Vision | Code authors.

Code author

Other possible workarounds:

  • disable Subversion integration
  • add editor.codeVision.new=false at Help | Edit Custom Properties and restart the IDE.

The fix will be available in the next IDE update.

Upvotes: 19

HyperProgrammer
HyperProgrammer

Reputation: 204

Go to Settings then Editor then Inlay Hints and disable Inheritors, Usages, and Code author

enter image description here

Upvotes: 10

Related Questions