Home > Software design >  How to show usages in UI within Intellij IDE
How to show usages in UI within Intellij IDE

Time:10-25

I accidentally disabled the "show usages" UI feature in intellij and I cannot seem to figure out how to find it.

For example, it would sit above any fields, methods, or classes that were used within the project.

So, if I used the field in this image, it would show "usages" which I could highlight and go to its use in the project.

How do I restore this feature?

CodePudding user response:

ctrl b to show usages

ctrl alt b to show implementations

  • Related