CrazySynthax
CrazySynthax

Reputation: 14988

IntelliJ - keymap to navigate to function

When I use IntelliJ, and a certain line in the code calls a function, if I put the cursor on the function call, hold the ctrl key and pound the left button in the mouse, IntelliJ brings me to the function that I call.

My question is do I have any option to get the same functionality without touching the mouse?

Upvotes: 0

Views: 159

Answers (1)

Darek Kay
Darek Kay

Reputation: 16649

This navigation shortcut is called Go to declaration.

It can be used by either pressing Ctrl + Mouse Click or Ctrl + B

Additionally, there is also a Go to implementation shortcut:

Ctrl + Shift + Mouse Click or Ctrl + Shift + B

Upvotes: 2

Related Questions