Home > other >  Shortcut in intelliJ to jump to corresponding method
Shortcut in intelliJ to jump to corresponding method

Time:11-17

On windows, I know that we can search for all the methods in the current class by using Ctrl F12.

Suppose, that I am in the class Car.java and there we have a method called accelerate();

The method is really long and now I did some modifications at the end of this method. How can I jump back to the place where the method accelerate() starts?

I used Ctrl U but that just does not do anything at all.

CodePudding user response:

Refer to this page from IntelliJ's manual: Method navigation

It's Alt Up or Alt Down

  • Related