tsps
tsps

Reputation: 1200

Visual Studio: Cycling through breakpoints

Is there a shortcut to cycle through my breakpoints? I often lose track of the breakpoints when debugging a project. When I finish working with one bug, I have to reset my breakpoints for a new bug that I am about to solve. It would be handy to have a keystroke that would allow me to cycle through the breakpoints and disable ones I don't need and keep the ones I need.

Upvotes: 24

Views: 11569

Answers (3)

Dror
Dror

Reputation: 7305

You can always open the breakpoints window (Ctrl + Alt + B) to cycle through them.

Upvotes: 44

Naveen
Naveen

Reputation: 73433

I don't think there is a built in way of doing this. However you might want to take a look at this question. You can probably save the breakpoints for one bug and load it whenever you want it.

Upvotes: 0

Shane Powell
Shane Powell

Reputation: 14138

I don't believe you can.

You can display a list of all breakpoints and jump to them using the breakpoint view (Debug / Windows / Breakpoints).

You may also be able to write a macro to do it if you want.

Upvotes: 2

Related Questions