问题 I'm debugging a Python script. My configuration looks something like this: { "name": "debug script.py", "type": "python", "request": "launch", "program": "/path/to/script.py", "console": "integratedTerminal" } When running the script, I need to prefix it with an executable aws-access to give myself access to certain resources on AWS (otherwise I get Permission Denied errors): aws-access python script.py How can I add this prefix to the debug command? Note this is easy to do when executing my