We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 102d577 commit 39612b4Copy full SHA for 39612b4
news/3 Code Health/1409.md
@@ -0,0 +1 @@
1
+Add support for [hit count breakpoints](https://code.visualstudio.com/docs/editor/debugging#_advanced-breakpoint-topics) in the experimental debugger.
src/client/debugger/mainV2.ts
@@ -67,6 +67,7 @@ export class PythonDebugger extends DebugSession {
67
body.supportsEvaluateForHovers = true;
68
body.supportsModulesRequest = true;
69
body.supportsValueFormattingOptions = true;
70
+ body.supportsHitConditionalBreakpoints = true;
71
body.supportsSetExpression = true;
72
body.exceptionBreakpointFilters = [
73
{
0 commit comments