When I automatically create a launch.json file in the VSCode debugger (Run and Debug
--> create a launch.json file
) the following file is created:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
}
]
}
How can I change the default settings so that also the "args" key is created with some default parameters? Or how do I set "justMyCode": false by default?
NOTE that I don't want to change the global setting.json file since it will be ignored if a launch.json file is created.
Thanks!
I've tried looking with grep -l -r "justMyCode" ~/.vscode-server
where this variable was set but couldn't find anything useful