I have a project where everything is done through interfaces. In most of the cases these interfaces have only one implementation.
Q: Is there a way to setup IntelliJ IDEA to automatically jump to a method implementation if there is only one implementation to the interface that I am navigating to?
Example:
MyServiceInterface service = ...;
service.doWork();
I want to navigate directly to doWork()
implementation when I click on it.