Reputation: 1673
Is there any way to jump to the method parameters from any point inside of this method?
Upvotes: 4
Views: 2371
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
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