Ghedeon
Ghedeon

Reputation: 1673

Is there a shortcut for 'go to method parameters'?

Is there any way to jump to the method parameters from any point inside of this method?

Upvotes: 4

Views: 2371

Answers (2)

clausavram
clausavram

Reputation: 576

You can use Navigate Between Methods and Tags and while with the cursor in the function:

On OSX: ^+

On Windows: alt+Up

which will move you to the next method header upwards — actually the current method — and then ctrl+Right or + to your parameters. No mouse / parameter usage lookup needed

Upvotes: 8

Chris K
Chris K

Reputation: 11917

Place the cursor on a parameter name within the method and press the following key combination.

On OSX: cmd +b

On Windows: ctrl + b

Upvotes: 1

Related Questions