Disable subprocess debugging by default in debugpy

This commit is contained in:
Ben Jackson 2020-05-19 21:53:02 +01:00
commit 2437aace41

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