Monday, 22 May 2023

Eclipse Keyboard Shortcuts

Eclipse Settings :
1. on desktop --> right click --> graphics options --> hotkeys --> disable.   ==> This allows us to use CTRL+ALT+ Down arrow to copy the code line to the below line

2. Eclipse >> windows >> Preference  >> General >> key >> search "watch" >> press Shift + W to set  shortcut for watch. 

3. Eclipse >> windows >> Preference  >> General >> Apperiance >> color and fonts >> text font >> edit >> select the font size.




ALL Eclipse Keyboard Shortcuts: go to Help → Help Contents → Java Development User Guide → Reference → Menus and Actions. 

Open any file quickly without browsing for it in the Package Explorer: Ctrl + Shift + R.

Open a type (e.g.: a class, an interface) without clicking through interminable list of packages: Ctrl + Shift + T

Go directly to a member (method, variable) of a huge class file, especially when a lot of methods are named similarly: Ctrl + O

 if you just want to jump from one member to the next (or previous), you can use Ctrl + Shift + ↓ or Ctrl + Shift + ↑, respectively.

Go to line number N in the source file: Ctrl + L, enter line number. 

Go to a supertype/subtype: Ctrl + T. - just press Ctrl + T and I get this dialog below, which toggles between supertypes and subtypes when you press Ctrl + T again.

Go to other open editors: Ctrl + E.

Move to one problem (i.e.: error, warning) to the next (or previous) in a file: Ctrl + . for next, and Ctrl + ,

Go to the last edit location: Ctrl + Q

No comments:

Post a Comment