Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Shortcut key to next breakpoint in Visual Studio

I'm using Visual Studio and would like to use the keyboard to go to the previous/next breakpoint. I had a look at Options|Environment|Keyboard but found no such command.

Is there a way to do it?

like image 918
Deqing Avatar asked May 24 '15 23:05

Deqing


People also ask

How do I move to the next breakpoint in Visual Studio?

You can press F5 while debugging to jump to next breakpoint and F10 to jump line by line.

How do you get to the next step in Debug mode in Visual Studio?

In most languages supported by Visual Studio, you can edit your code in the middle of a debugging session and continue debugging. To use this feature, click into your code with your cursor while paused in the debugger, make edits, and press F5, F10, or F11 to continue debugging.

What is Ctrl K in Visual Studio?

Edit.SelectionCancel. Surround with. Ctrl+K, Ctrl+S. (available only in Visual Studio 2019 and earlier)


1 Answers

For people wanting to see each breakpoint, that ended up here. (Like me)

Your best bet is to do this:

Try Debug -> Windows -> Breakpoints.

or

In VS2017, open the Breakpoints window: Ctrl+Alt+B

Source: Visual Studio 2017 Quick Launch

or

In VS2010, open the break point window: Ctrl+D, B

From See all breakpoints in Visual Studio 2010+

like image 72
Pablo Carrasco Hernández Avatar answered Sep 21 '22 20:09

Pablo Carrasco Hernández