Clear exception breakpoints when calling ClearBreakpoints

This commit is contained in:
Ben Jackson 2020-03-09 21:31:14 +00:00
commit de04598bc6
2 changed files with 12 additions and 0 deletions

View file

@ -123,6 +123,7 @@ class ProjectBreakpoints( object ):
self._line_breakpoints = defaultdict( list )
self._func_breakpoints = []
self._exception_breakpoints = None
self.UpdateUI()

View file

@ -48,6 +48,17 @@
"uncaught": ""
}
}
},
"run - exception question": {
"adapter": "debugpy",
"configuration": {
"request": "launch",
"type": "python",
"cwd": "${workspaceRoot}",
"program": "${file}",
"stopOnEntry": false,
"console": "integratedTerminal"
}
}
}
}