How to navigate to a bookmark in eclipse 3.4.1?

JavaEclipseEditorBookmarks

Java Problem Overview


I am able to set bookmarks in a source file, but are there shortcut keys to navigate to a bookmark ? The navigate menu has a goto line. But that is not useful.

Java Solutions


Solution 1 - Java

If you check the "Bookmark" item in the "Next Annotation"/"Previous Annotation" toolbar dropdown item, you can use Ctrl+, and Ctrl+. to navigate to previous/next bookmark in the current opened file.

toolbar

from Tutorial

Solution 2 - Java

There is not a shortcut key but you can make appear a 'Bookmark view' which is located in Window > Show view > Other... and in the dialog inside the General classification, Then just double-click on the desired bookmark to reach it

Solution 3 - Java

You can navigate to bookmarks using a plugin like:

http://www.etc.to/eclipse_bookmarks_plugin

Solution 4 - Java

I am using Quick Bookmarks Plugin which is very handy;

You can create named bookmarks using digits (e.g., 1 to 9):

Example:

> Set bookmark #4 with [Alt+4] > > Go to bookmark #4 with [Alt+Shift+4]

and so on.

Solution 5 - Java

ctrl f2 will create a booksmark shift f2 will navigate through all bookmarks I using eclipse with build id: 20130919-0819

Hope it helps

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionashitakaView Question on Stackoverflow
Solution 1 - JavaWillian MitsudaView Answer on Stackoverflow
Solution 2 - Javavictor hugoView Answer on Stackoverflow
Solution 3 - JavarushmoreView Answer on Stackoverflow
Solution 4 - JavaAlisaView Answer on Stackoverflow
Solution 5 - JavaJeff JiangView Answer on Stackoverflow