Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In various projects there's certain parts I will keep jumping to.

Is there a way to effectively "bookmark" these parts so I can quickly jump back to a certain line in a certain file (or a certain method)?

I keep getting lost navigation the solution or doing a "find in whole project/solution", and if anyone knows a way then us lot will somewhere.

share|improve this question

5 Answers

up vote 15 down vote accepted

In Visual Studio, you can set markers in the code.

To jump between Markers:

Ctrl + K + N (for next)

and

Ctrl + K + P (for preivous)

To set a new marker

Ctrl + K + K

share|improve this answer
That's super - is there a way to label them and look them up? Or are they designed as a temporary thing? Also, is there a way to jump between breakpoints? – joshcomley May 29 '09 at 14:12
Unfortunately, you can't label markers. There might be a plug-in that does it, but I'm not sure. I'm unaware of a keyboard shortcut to jump between breakpoints. – Jordan Parmer May 29 '09 at 14:23
Did you make it look like that, or did SO detect a key combo being shown?! – joshcomley May 29 '09 at 15:10
I think John Nolan updated it to use images instead. – Jordan Parmer May 29 '09 at 15:18
how did you do to make it look like that, it is not an image – pablito Jun 1 '09 at 18:51
show 1 more comment

Yes, press the hotkey combination ctrl + k, k (thats ctrl and k, followed by another k) to toggle a bookmark.

then you can do ctrl + k, n for next bookmark and ctrl + k, p for previous bookmark

works like a charm!

share|improve this answer

This is an old thread, but I too was looking for a better solution to this, having moved from the Delphi 7 IDE to Visual Studio 2010 recently, and @j0rd4n's comment that there might be a plug-in that does this directed me to the Extension Manager & a search for Bookmark brought up DPack.

This gives @joshcomley exactly what he is looking for, and I thought this reply might give a better solution than the currently accepted one.

Note: Once installed I had to edit the keyboard mappings via Tools | Options | Environment | Keyboard. I put DPack into the Show commands containing edit box, and then scrolled down to find the GoToBookmark[x] and ToggleBookmark[x] that were not working for me and assigned them using the Press shortcut keys edit box. (Make a note of what the "Shortcut [is] currently being used by" before you do this, though; I wouldn't want you to overwrite a function that you don't realize you use extensively!)

share|improve this answer
thanks @agf - I'll do those markups from now on. – lukkea Aug 13 '11 at 21:24
No problem. Good first answer! – agf Aug 14 '11 at 0:50

I literally thought of a way of doing this as I clicked post!

I could use the TODO feature, adding my own custom prefix of "BOOKMARK", or "BM" if I'm going to be lazy.

share|improve this answer
2  
use built-in bookmarks instead. it will keep you from unnecessary code modification. – Andrey May 29 '09 at 13:53

Go to View | Toolbars and check the Text Editor toolbar so it shows up. It has toolbar buttons to Toggle (create/delete) a bookmark on the current line Ctrl-B, T, as well as navigation to the next/prev bookmark, where the navigation is scoped to the solution, folder, or document, depending on which button you use.

Once you have a bookmark created, go to View | Other Windows and select the Bookmark Window (or just press Ctrl-W, B). That will display the list of all the bookmarks. You can double-click any bookmark to jump to it, or use the toolbar button in the Bookmark window for prev/next.

You can also name/rename your bookmarks in the Bookmark window. Right-click on the name and choose rename, or select the name and click it again to enter in to the edit mode.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.