How to skip all breakpoints without removing them?

3

Is there any shortcut / setting to ignore all
breakpoints without necessarily deleting them from the code?

    
asked by anonymous 10.07.2017 / 16:03

1 answer

4

Menu Debug - > Disable All Breakpoints

Otherwise, just deleting or in some cases not letting you enter where you have breakpoints with F10 or you can quit running the current method with SHIFT + F11 which will skip the bps still existing in it but not outside it.

    
10.07.2017 / 16:05