Most Useful Eclipse shortcuts

This blog is about useful Eclipse shortcuts ,this list is by no means complete and I will suggest you guys to share eclipse shortcuts listed other than here to make this more useful.Knowing Eclipse shortcuts not only improve your productivity but also makes your more efficient, you will have more time for things you like to do.I was big fan of Netbeans IDE before coming across Eclipse because I was from J2ME background and Netbeans provide sofisticated IDE environment to enable you to build, debug and run your application in various emulator including some advanced processing options e.g. PreProcessing , setting up Exception breakpoint etc.
But when I join a big bank I came acorss Eclipse IDE , since everybody in my team is using and etbeans IDE was not available in company ( don't know why that was not allowed netbeans even though it was free) I have decided to go Eclipse way , later I found that Eclipse was most suited for those application give some of cool feature of eclipse e.g. Remote Debugging, Conditionnal Breakpoint , Exception breakpoint and Ctrl+T and Ctrl+R kind of shortcuts.
Here I am sharing list of Eclipse shortcut which I found most useful and using in my day to day life while writing code, reading code or debugging .
Eclipse Shortcut
1) Ctrl + T for finding class even from jar
2) Ctrl + R for finding any resource (file) including config xml files
3) Ctrl + 1 for quick fix
4) Ctrl + Shift + o for organize imports
5) Ctrl + / for commenting , uncommenting lines and blocks
6) Ctrl + Shift + / for commenting ,uncommenting lines with block comment
7) Ctrl + o for quick outline going quickly to method
8) Selecting class and pressing F4 to see its Type hierarchy
9) Alt + right and Alt + left for going back and forth while editing.
10) Ctrl + F4 or Ctrl + w for closing current file
11) Ctrl+Shirt+W for closing all files.
12) Alt + Shift + W for show in package explorer
13) Ctrl + Shift + Up and down for navigating from member to member (variables and methods) 14) Ctrl + l go to line
15) Ctrl + k and Ctrl + Shift +K for find next/previous
16) select text and press Ctrl + Shift + F for formatting.
17) Ctrl + F for find , find/replace
18) Ctrl + D to delete a line
19) Ctrl + Q for going to last edited place
20) Ctrl + T for toggling between super type and subtype
21) Go to other open editors: Ctrl + E.
22) Move to one problem (i.e.: error, warning) to the next (or previous) in a file: Ctrl + . for next, and Ctrl + , for previous problem
23) Hop back and forth through the files you have visited: Alt + ← and Alt + →, respectively.
24) Go to a type declaration: F3
25) CTRL+Shift+G, which searches the workspace for references to the selected method or variable
26) Ctrl+Shift+L to view listing
27) Alt + Shift + j to add javadoc at any place in java source file.
28) CTRL+SHIFT+P to find closing brace. place the cursor at opening brace and use this.
29) Alt+Shift+X, Q to run Ant build file using keyboard shortcuts.
30) Ctrl + Shift +F for Autoformating.
Please post if you guys have some more useful Eclipse shortcuts as comments , I will include them in this list.
1 comments:

Post a Comment

Followers