Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 802
Ghedeon Avatar asked Oct 21 '25 15:10

Ghedeon


1 Answers

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

like image 101
clausavram Avatar answered Oct 24 '25 13:10

clausavram