在 VS Code 中以 # 或 ## 开头的注释是否可以有不同的颜色和字体设置?
Is it possible to have different color and font settings for comments when they start with # or ## in VS Code?
我想用评论更好地构建我的代码,但我想要不同的评论类别,描述下面代码的类别和对我来说更个性化的类别,包括我以后想想到的内容,等等..
是否可以对以 #
开头的评论和以 ##
开头的评论进行不同的颜色和字体设置?
使用 Highlight 扩展名,将其放入您的 settings.json:
"highlight.regexes": {
"(##\s*)(.*)|(#\s*)(.*)": {
"filterLanguageRegex": "python",
"regexFlags": "gm",
"decorations": [
{"color": "yellow"},
{
"color": "yellow",
"backgroundColor": "#f005",
"fontWeight": "bold",
"fontStyle": "italic"
},
{"color": "orange"},
{
"color": "orange"
}
]
}
}
您可以使用此扩展程序进行很多样式设置,请参阅 https://code.visualstudio.com/api/references/vscode-api#DecorationRenderOptions
我想用评论更好地构建我的代码,但我想要不同的评论类别,描述下面代码的类别和对我来说更个性化的类别,包括我以后想想到的内容,等等..
是否可以对以 #
开头的评论和以 ##
开头的评论进行不同的颜色和字体设置?
使用 Highlight 扩展名,将其放入您的 settings.json:
"highlight.regexes": {
"(##\s*)(.*)|(#\s*)(.*)": {
"filterLanguageRegex": "python",
"regexFlags": "gm",
"decorations": [
{"color": "yellow"},
{
"color": "yellow",
"backgroundColor": "#f005",
"fontWeight": "bold",
"fontStyle": "italic"
},
{"color": "orange"},
{
"color": "orange"
}
]
}
}
您可以使用此扩展程序进行很多样式设置,请参阅 https://code.visualstudio.com/api/references/vscode-api#DecorationRenderOptions