huu duy
huu duy

Reputation: 2059

Shortcut move cursor to the next/previous param in method android studio?

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

Answers (1)

vovahost
vovahost

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

Related Questions