clayton33
clayton33

Reputation: 4216

is there a shortcut key to find a function in eclipse?

lets say i have a function called simpleFunction(); that i call a bunch of times in my program. i don't want to do a ctrl+f to find it, is there a faster way to just jump straight to the function?

Upvotes: 5

Views: 769

Answers (3)

Lalit Poptani
Lalit Poptani

Reputation: 67286

Use ctrl + o to find any method in the class and use ctrl + shift + r to find any file. Also if you are on the particular method you can just press F3 and it will take you to that method.

For more short-cuts about Eclipse refer Eclipse ShortCuts

Upvotes: 3

Nikolay Ivanov
Nikolay Ivanov

Reputation: 8935

use ctrl + o for quick member lookup

Upvotes: 5

Nicholas Magnussen
Nicholas Magnussen

Reputation: 769

Ctrl+Mouse on an occurence of the function will take you to it.

Upvotes: 5

Related Questions