devoured elysium
devoured elysium

Reputation: 105077

What symbol is this that appears on the VS.NET IDE?

Everyonce in a while I click in something that makes this symbol appear. What is it and what does it serve for?

alt text http://img13.imageshack.us/img13/7335/unknownlsk.jpg

Upvotes: 1

Views: 204

Answers (2)

Wael Dalloul
Wael Dalloul

Reputation: 23014

Yes, it's a bookmark, and it's very useful when you want to move around your code. To set a new bookmark, use ctrl+k +k.

To move between bookmarks use the following:

  • ctrl + k + n to move to the next bookmark.
  • ctrl + k + p to move to the previous bookmark.

To remove a bookmark, press ctrl + k + k again on the same line.

Upvotes: 4

Eamon Nerbonne
Eamon Nerbonne

Reputation: 48066

I believe it's a bookmark - it serves to let you find a particular bit of code again later.

Edit: it is indeed - see: http://msmvps.com/blogs/vipul/archive/2006/01/20/Visual-Studio-Bookmarks.aspx

Upvotes: 9

Related Questions