| Author |
Eclipse shortcut hotkeys in typing.
|
Marvin Porte
Greenhorn
Joined: Nov 11, 2012
Posts: 11
|
|
Hello everyone. I just want to learn some typing shortcuts that can be used while typing. All I knew ctrl + spacebar:
* type "sysout" then press ctrl + spacebar for System.out.println()
* type keywords then press ctrl + spacebar for suggested keywords etc.
* type a keyword then press ctrl + spacebar if you know that it needs to import a package. it will automatically imported.
I want to know other shortcuts like this to save some time typing. Thanks!
|
 |
I Wayan Saryada
Ranch Hand
Joined: Feb 05, 2004
Posts: 83
|
|
|
For sure you can see it when you are using the Eclipse IDE. There are shorcuts displayed for each menu in the IDE. You can also find it in Google, here is one example that I found when googling: Eclipse Shorcuts
|
Website: Learn Java by Examples
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32638
|
|
|
This discussion would fit better in our IDEs forum. Moving.
|
 |
Martin Vajsar
Bartender
Joined: Aug 22, 2010
Posts: 2327
|
|
Ctrl+spacebar also activates the code templates. I don't use Eclipse myself, but Google says you can view and modify them in Window->Preferences->Java->Editor->Templates.
|
 |
James Boswell
Ranch Hand
Joined: Nov 09, 2011
Posts: 657
|
|
Ctrl+Shift+t
List of classes available from open projects
Ctrl+Shift+r
List of resources available from open projects
|
 |
dennis deems
Ranch Hand
Joined: Mar 12, 2011
Posts: 808
|
|
Ctrl + D
Deletes the current line. By far my most frequently used shortcut in Eclipse.
Ctrl + Up Arrow, Ctrl + Down Arrow
Moves the current line up or down. Also very frequently used.
Ctrl + /
Sets the current line to be a comment. This works as a toggle: if the current line is already commented, this shortcut un-comments it making it active code.
If you type all the upper-case letters in the name of a class, then press Ctrl + space, Eclipse will replace it with the name of the class. If you type only some of the upper case letters, such that more than one class can match, Eclipse will open a list and allow you to select the class you need.
|
 |
 |
|
|
subject: Eclipse shortcut hotkeys in typing.
|
|
|