Merge pull request #172 from puremourning/python-subprocess

Disable subprocess debugging by default in debugpy
This commit is contained in:
mergify[bot] 2020-05-24 11:30:59 +00:00 committed by GitHub
commit 2b22d3d29f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,
}
}
},