Reputation: 28648
I'm looking for a plugin/addin for Visual Studio in order to bookmark a line of code.
For example bookmark line xx in file yy with mark "(1)" with keyboard shortcut alt+1 and then just pressing ctrl+1 in order to move to the line (1).
Is there anything like this?
Thanks!
Upvotes: 3
Views: 466
Reputation: 1644
A better solution to standard bookmarks...
Go to Tools/Options/Environment/Task List
and add a new tag to record them. I wanted to use the phrase MARK but this word is too common in my code, so I'm using BOOKMARK set as low priority.
Whenever I want to leave a bookmark I just type //BOOKMARK: this is a bookmark
, and that's it, simple!
To view them just open the Task List
window and sort by priority or description and scroll down.
This is hugely better than standard bookmarks because they ...
Upvotes: 0
Reputation: 300549
Built-in:
CTRL+K, CTRL+K
Create a bookmark
CTRL+K, CTRL+N
Next Bookmark
CTRL+K, CTRL+P
Previous Bookmark
Upvotes: 4