Bookmarks specific lines Visual Studio

3

Is it possible to put bookmarks in any line of code? style the IDEs ta Inteliji? I got a legacy code here that has 12k lines a report class, I spend a lot of time finding the main methods, even with CodeMap it's impractical, it has more than two hundred methods ...

    
asked by anonymous 17.05.2016 / 22:35

1 answer

4

Yes, it is possible. The keyboard shortcut is CTRL + K + K. To navigate between bookmarks, use CTRL + K + N to move to the next bookmark.

Editing I just checked that the "official" shortcuts are different:

  • CTRL + B + K to create or destroy bookmark;
  • CTRL + B + N to go to the next;
  • CTRL + B + P to go to the previous bookmark.

The two shortcuts I mentioned earlier also work, but do not have an equivalent to go to the previous bookmark.

    
17.05.2016 / 22:39