How to navigate to the last cursor position in Eclipse?

eclipse, keyboard-shortcuts

Solution

Go to `Preferences / General / Keys`. You'll be able to see or edit the bindings for:

- `Backward History`: default is Alt←

- `Forward History`: default is Alt→

You may also use those shortcuts (and see the key bindings) in the toolbar:

Problem

Recently, I switched from Visual Studio to Eclipse. Now I am missing the shortcut for navigating to the last cursor position in Eclipse. In Visual Studio, the same can be done with the help of the Ctrl + - shortcut. How do I do this in Eclipse?

Original source

Related problems