gpt4 book ai didi

syntax - 如何在 VS Code 中更改区域/端区域的颜色?

转载 作者:行者123 更新时间:2023-12-04 02:55:29 29 4
gpt4 key购买 nike

有谁知道如何更改#region/#endregion 的颜色?这在 VS Community 中是灰色的,但在 VS Code 中不是。

提前谢谢你。

最佳答案

因为术语#region/#endregion 是注释的一部分,使用命令Developer: Inspect TM Scopes 查看它们的范围只会给您一个comment 范围,所以如果您通过以下 tokenColorCustomization 更改评论范围:

"editor.tokenColorCustomizations": {
"comments": "#ffa600b0"
}

将更改所有 评论 - 可能不是您想要的。另外,您只能在那里更改 fontColor 和 fontStyle(如斜体)。

最好使用扩展名 Highlight通过正则表达式查找您要突出显示的内容。

使用 //#region - 您的语言在开头可能有不同的注释指示符。如果是,修改下面的第一个捕获组(//\\s*)

  "highlight.regexes": {

"(//\\s*)(#region|#endregion)": [

// the first capture group, the '//' uncolored here, but must have the entry below
// you could color those separately if you wish
{},

// capture group: #region or #endregion
{
// "overviewRulerColor": "#ffcc00",
"backgroundColor": "#f00",
"color": "#fff",
// "fontWeight": "bold",
"borderRadius": "3px",
},
]
}

关于syntax - 如何在 VS Code 中更改区域/端区域的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53322008/

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