Disable subprocess debugging by default in debugpy
This commit is contained in:
parent
b80c483284
commit
2437aace41
1 changed files with 5 additions and 1 deletions
|
|
@ -125,7 +125,11 @@ GADGETS = {
|
|||
],
|
||||
"name": "debugpy",
|
||||
"configuration": {
|
||||
"python": sys.executable
|
||||
"python": sys.executable,
|
||||
# Don't debug into subprocesses, as this leads to problems (vimspector
|
||||
# doesn't support the custom messages)
|
||||
# https://github.com/puremourning/vimspector/issues/141
|
||||
"subProcess": False,
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue