Add ability to specify defaults for variables

This commit is contained in:
Ben Jackson 2020-07-22 23:58:12 +01:00
commit aa26d4bc1a
4 changed files with 143 additions and 8 deletions

View file

@ -50,6 +50,24 @@
}
}
},
"run - default": {
"adapter": "debugpy",
"configuration": {
"request": "launch",
"type": "python",
"cwd": "${workspaceRoot}",
"program": "${program:${file\\}}",
"stopOnEntry": false,
"console": "integratedTerminal"
},
"breakpoints": {
"exception": {
"raised": "N",
"uncaught": "",
"userUnhandled": ""
}
}
},
"run - main.py": {
"adapter": "debugpy",
"configuration": {