Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse keyboard shortcut: goto function name

Suppose I know a function name, but I don't know which file it's declared in. What Eclipse keyboard shortcut can take me to the function I'm looking for?


What I'm looking for is similar to Eclipse's:

Ctrl + Shift + R

except it will search for method names instead.


Sidenote

With Visual Assist X, I can do this by using the "Find Symbol" feature, which is executed with:

Shift + Alt + S

like image 411
sivabudh Avatar asked Apr 21 '10 18:04

sivabudh


People also ask

How do I go to a specific function in Eclipse?

You can open any method or type in your workspace using the "Open Type" wizard or the "Open Method" wizard. -Or- press Ctrl+Shift+T (for a type) or Ctrl+Shift+M (for a method). The "Open Type/Method" dialog will appear. If a type/method was previously selected in the editor or outline views, it will be displayed.

What is Ctrl G in Eclipse?

Search – Eclipse Shortcuts CTRL SHIFT G – Search for current cursor positioned word reference in workspace. CTRL H – Java search in workspace.


1 Answers

This is an old question, but for the sake of people Googling this, Ctrl + O opens the code outline search, which is what you were looking for.

like image 138
user35147863 Avatar answered Sep 20 '22 20:09

user35147863