0

Is there a way to shorten my number of clicks to get to my source code? I know that search can do this but is there a way to create short cut?

Raptor
  • 53,206
  • 45
  • 230
  • 366
Calace Sac
  • 31
  • 1
  • 6

2 Answers2

1

When you are in the 'Java' Perspective, press Ctrl + Shift + T, then type the name of a Java class. Eclipse will find it and open it. You can also specify wildcards e.g. * and ?

You can also type Ctrl + H to search content contained within a variety of workspaces resources.

cmd
  • 11,622
  • 7
  • 51
  • 61
  • Ctrl+Shift+R has the added benefit of searching all resources, not just Java classes, so it will also show XML, property files, your POMs (if you're using Maven), etc. Though keep in mind that you'll have to use Ctrl+Shift+T to search for classes outside of your projects. – Brian Nov 13 '13 at 03:52
1

Ctrl + Shift + R is the shortcut for searching a resource in eclipse

Raptor
  • 53,206
  • 45
  • 230
  • 366
Vamshi
  • 510
  • 2
  • 10
  • 26