Dmitriusan
Dmitriusan

Reputation: 12369

How can I highlight library classes differently in Intellij Idea?

I'm trying to configure IntelliJ Idea to highlight classes from the current project and classes from libraries/JDK differently. That would help to easily understand origin of all these classes like Transaction, Request, Query, Column. Also, during debugging, it would allow to step only into lines with code from project (it is usually much more buggy and suspicious).

Yes, I know about Ctrl+hover on symbol/ Ctrl+Q / Smart step into. But visual indication may be much easier to recognize.

Is there a way to get that (maybe with some plugin)?

Upvotes: 3

Views: 209

Answers (1)

Jama A.
Jama A.

Reputation: 16079

It might not be exactly what you're asking but it's very similar and could help with differentiating library and project files.

  • Project Files - that's your source code, etc
  • Non-Project Files - files that are from Jar files

Appearance & Behavior > File Colors

Upvotes: 1

Related Questions