Since i was refactoring my codebase these are some of the most used eclipse shortcuts.
javapapers.com/core-java/eclipse-shortcuts
CTRL PAGE UP or PAGE DOWN –
Navigate to previous or next file from within the list of all open files.
ALT <- or ALT ->
Go to previous or next edit positions from editor history list.
- Go to Matching parenthisis
CTRL SHIFT P – Go to the matching parenthesis.
- How to format?
Ctrl + Shift + F
- Single line comment
Ctrl + /
- Multiline comments
Ctrl + Shift + /
- How to search for any file in your project using eclipse ?
Ctrl + Shift + R
- How to delete a line in eclipse ?
Ctrl + d
- How to navigate to particular line number in eclipse ?
Ctrl + L
and then enter the line number
``
7. How to navigate code in eclipse ?
use control with the arrow keys
right word by word
ctrl + ->
respectively for left
one line down
Ctrl + down Arrorw ```