Reputation: 2059
I have a method with many parameter, and I want to move the cursor (next/previous) through the method parameters quickly. What's the shortcut to do this in android studio.
private void updatePersonalData(String frirstName, String lastName,int age,int weight,int grade,String nationality,....)
Upvotes: 3
Views: 2019
Reputation: 36027
I don't know how you imagine it would work but usually I use CTRL + LEFT/RIGHT Arrows to quickly navigate between words.
Upvotes: 1