Most used eclipse shortcuts?

Most used eclipse shortcuts?

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.

  1. Go to Matching parenthisis
CTRL SHIFT P – Go to the matching parenthesis.
  1. How to format?
Ctrl + Shift + F
  1. Single line comment
Ctrl + /
  1. Multiline comments
Ctrl + Shift + /
  1. How to search for any file in your project using eclipse ?
Ctrl + Shift + R
  1. How to delete a line in eclipse ?
Ctrl + d
  1. 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 ```