Kevin Bowersox
Kevin Bowersox

Reputation: 94499

Productive Eclipse Shorcuts

I currently use a variety of keyboard shortcuts in Eclipse such as:

Ctrl + Shift + R: Open Resources
Ctrl + F6: Switch Files in Editor
Ctrl + Q, ? To switch to desired window
Ctrl + Alt + R: To Restart My server
Ctrl + O: To view an outline of a class
F12: to go to the editor

What are some other productive shortcuts I may not be using?

Upvotes: 0

Views: 206

Answers (3)

Ken Chan
Ken Chan

Reputation: 90517

Here are my frequently used hot keys and I do think they improve my productivity very much

Alt+/ to use the code templates that are defined in the Windows→Preferences→Java→Editor→Template

Ctrl + Shift + R to find files of any type.

Ctrl + Shift + O to organize imports and import the missing imports automatically

Ctrl + Click on a variables / functions to go to its declaration

Ctrl + T on a method or class shows the whole inheritance tree, for example all methods which implement an interface.

Upvotes: 1

Fabian Steeg
Fabian Steeg

Reputation: 45754

My favorite is quick access: Ctrl+3 and start typing anything you are looking for...

Upvotes: 4

phlogratos
phlogratos

Reputation: 13924

Shift + Ctr + L

This opens the list of keyboard shortcuts ;-)

Upvotes: 4

Related Questions