Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the opposite of ctrl+click in Eclipse?

Tags:

java

eclipse

Ctrl + click in Eclipse passes to the code of the selected function.

What is the "undo" command? meaning After I did Ctrl+Click how do I auto return to where I was?

like image 240
MeMoses Avatar asked Jul 05 '15 07:07

MeMoses


1 Answers

To go back to where you came from in Eclipse, choose Navigate -> Back from the menu bar, or press Alt+Left (Cmd+Alt+Left on a Mac).

This navigates backwards through the cursor history, and therefore works in general when you need to navigate to a previous position, not only after an Open Declaration command.

To navigate forward through the cursor history, press Alt+Right.

like image 125
jpaugh Avatar answered Oct 24 '22 09:10

jpaugh