Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the shortcut to skip all break-points in VS?

When I am at a breakpoint and if I want to ignore all the rest of breakpoints and move on, what shortcut should I use?

like image 503
pencilCake Avatar asked Dec 02 '09 16:12

pencilCake


4 Answers

You can select "Disable All Breakpoints" from the Debug menu.

This and then continue with F5.

You could set this up as a keyboard shortcut under Tools/Options/Keyboard.

like image 162
Matt Avatar answered Nov 15 '22 10:11

Matt


Well, you can:

  1. delete all breakpoints using Ctrl+Shift+F9
  2. disable all breakpoints from the ->Debug menu.

Disabling breakpoints does not have a shortcut defined, but you define your own in ->Tools->Options menu under Environment->Keyboard. Also Shift+F5 stops debugging altogether.

like image 27
Klaus Byskov Pedersen Avatar answered Nov 15 '22 08:11

Klaus Byskov Pedersen


Ctrl+Shift+F9 will delete them all.

To disable all breakpoints - either you do it from the menu - or you go to option -> environment -> keyboard, and create a shortcut there.

like image 7
Dani Avatar answered Nov 15 '22 09:11

Dani


Enabled / Disabled just one break point at a time with Ctrl + F9.

Though the cursor has to be on the given line of code.

like image 4
Antoine Meltzheim Avatar answered Nov 15 '22 08:11

Antoine Meltzheim