gpt4 book ai didi

configuration - 是否可以有一个全局的 launch.json 文件?

转载 作者:行者123 更新时间:2023-12-04 05:31:05 25 4
gpt4 key购买 nike

我正在使用 Don Jayamanne's Python扩展并且运行良好。我唯一的问题是对于我从事的每个项目,我必须复制 \.vscode\launch.json 文件。我想知道是否有办法将该文件放置在全局某个位置,以便将设置应用于我的所有项目。类似的东西如何全局 settings.json 适用于用户设置。

换句话说,我正在寻找一种方法来避免复制 \.vscode\launch.json 到我存储和写入 python 代码的每个文件夹。

最佳答案

是的,这是可能的 - 您需要将必要的启动配置直接放在您的用户设置文件中,如 here 所述。 .

从链接页面:

... currently it is not possible to have one global launch.json file which would be used everywhere, but what works is to add a "launch" object inside your user settings (preferences > user settings). This way it will be shared across all your workspaces
Example:

"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${file}",
"cwd": "${workspaceRoot}",
"runtimeExecutable": "/usr/local/bin/node"
}
]
}

关于configuration - 是否可以有一个全局的 launch.json 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36868021/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com