我想将两个脚本(“debugOptions”:[“RedirectOutput”],“console”:“none”)添加到launch.json中,如下所示。但是,当我创建一个新文件时,此设置将再次成为默认设置。如何设置让我的每个新文件都有这两个脚本?
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"debugOptions": ["RedirectOutput"],
"console": "none"
},