File tree 1 file changed +14
-0
lines changed
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,20 @@ export class PythonDebugger extends DebugSession {
49
49
}
50
50
protected initializeRequest ( response : DebugProtocol . InitializeResponse , args : DebugProtocol . InitializeRequestArguments ) : void {
51
51
response . body . supportsEvaluateForHovers = true ;
52
+ response . body . supportsConditionalBreakpoints = true ;
53
+ response . body . supportsEvaluateForHovers = false ;
54
+ response . body . supportsFunctionBreakpoints = false ;
55
+ response . body . exceptionBreakpointFilters = [
56
+ {
57
+ label : "All Exceptions" ,
58
+ filter : "all"
59
+ } ,
60
+ {
61
+ label : "Uncaught Exceptions" ,
62
+ filter : "uncaught"
63
+ }
64
+ ] ;
65
+
52
66
this . sendResponse ( response ) ;
53
67
// now we are ready to accept breakpoints -> fire the initialized event to give UI a chance to set breakpoints
54
68
this . sendEvent ( new InitializedEvent ( ) ) ;
You can’t perform that action at this time.
0 commit comments