gpt4 book ai didi

visual-studio-code - VSCode : editor. 背景,每个用户,每个工作区

转载 作者:行者123 更新时间:2023-12-03 14:39:34 25 4
gpt4 key购买 nike

我经常处理多个同时打开多个 VSCode 实例的项目。在每个实例中都有不同的背景颜色会很好,这样我就可以轻松区分它们。

我可以补充:

"workbench.colorCustomizations": {
"editor.background": "#xxxxxxx"
}

在我的用户设置中,但随后它更改了 VSCode 的所有实例的背景颜色。或者,我可以将其添加到工作区设置中。不幸的是,工作区设置文件受源代码控制(对于其他与工作区相关的设置),因此我团队中的其他人都对其进行了更改,这让他们很恼火。

有没有办法配置每个用户、每个工作区的设置,或者一个扩展?

最佳答案

来自 workspace and user settings

VS Code provides two different scopes for settings:

User These settings apply globally to any instance of VS Code you open

Workspace These settings are stored inside your workspace in a .vscode folder and only apply when the workspace is opened. Settings defined on this scope override the user scope.



因此,在 .vscode 文件夹中每个工作区的根文件夹中,您可以添加 settings.json
// Place your settings in this file to overwrite default and user settings.

{

"workbench.colorCustomizations": {
"editor.background": "#f00"
}
}

关于visual-studio-code - VSCode : editor. 背景,每个用户,每个工作区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47063637/

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