top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are most and commonly used key-words short-cut in Eclipse?

+3 votes
327 views
What are most and commonly used key-words short-cut in Eclipse?
posted Jan 19, 2015 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Following TOP 10 Eclipse Shortcuts helps everyone in their happy day coding.

Ctrl + Shift + O : Organize imports
Ctrl + Shift + T : Open Type
Ctrl + Shift + F4 : Close all Opened Editors
Ctrl + O : Open declarations
Ctrl + E : Open Editor
Ctrl + / : Line Comment
Alt + Shift + R : Rename
Alt + Shift + L : extract to Local Variable
Alt + Shift + M : extract to Method
F3 : Open Declaration
Let me explain how i got these TOP 10 shortcuts.

I start developing a plugin. As the development goes i want to refactor the code with “Alt + Shift + L” and “Alt + Shift + L” and “Alt + Shift + M“.

And not i have many methods and probably 500+ lines of code in java file. A typical development involves commenting and uncommenting via “Ctrl + /” (Even though we have shortcuts for Block Commenting, looks like many developers use more of Ctrl + /).

As we comment and uncomment and many more class references, we have so many imports that need to be cleaned. We do copy very often from one class to another class, now i want to organize my imports by “Ctrl + Shift + O“

Now i want to find variable and method declarations via “Ctrl + O“.

In the course of development i would like to view/analyze the declarations of the methods or classes via “F3″.

All well till now, i want to use an interface/class and want to search for it via “Ctrl + Shift + T“.

By the time we do all this we have too many editors opened and we would like to navigate among multiple open editors via “Ctrl + E“.

And finally you feel frustrated with so many opened editors and want to close all of them via “Ctrl + Shift + F4“.

answer Jun 18, 2015 by Karthick.c
Similar Questions
+1 vote

I have a java project in eclipse but my project using some of the javascript and jsp file. I want to debug some of the jsp and javascript file in eclipse but those files are not appearing in debug mode.

Please mention the steps for configure the debug setup in eclipse.

+2 votes

I need all shortcut keys for eclipse.Am new to eclipse editor.Please any one provide the shortcut keys .

...