gpt4 book ai didi

visual-studio-code - 如何更改 VS Code 中注释的颜色?

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

我浏览了https://code.visualstudio.com/docs/getstarted/theme-color-reference但似乎找不到更改评论颜色的设置。

我目前正在使用 Atom One Dark 主题,只是想稍微淡化颜色,以便更好地阅读。

最佳答案

来自1.15 (July 2017)您可以将其更改为 settings.json Ctrl+,

"editor.tokenColorCustomizations": {
"comments": "#d4922f"
},

来自1.20 (January 2018)您也可以分别为每个主题执行此操作:

"editor.tokenColorCustomizations": {
"[Atom One Dark]": {
"comments": "#d4922f"
}
},

或者现在您可以同时指定多个主题的设置,如 "[Atom One Dark][Tomorrow Night Blue]": {...}

找到正确的范围:

要找到正确的范围,您需要打开 token 和范围检查器。按 Ctrl + Shift + P 打开命令面板,然后键入并搜索 Developer: Inspect Editor Tokens and Scopes ,如下所示:

enter image description here

选择它。现在,您可以单击不同的语法来查看语法突出显示范围和信息,如下所示:

enter image description here

完成后,按 Esc 退出标记和范围检查模式。

选择器优先级:

https://code.visualstudio.com/blogs/2017/02/08/syntax-highlighting-optimizations#_textmate-themes

<小时/><小时/>

好的,更多示例(对于 js):

"editor.tokenColorCustomizations": {
"textMateRules": [{
"scope": "INSERT_SCOPE_HERE",
"settings": {
"foreground": "#ff0000"
}
}]
}

评论 enter image description herepunctuation.definition.comment enter image description herecomment.block.documentation enter image description herestorage.type.class.jsdoc enter image description hereentity.name.type.instance.jsdoc enter image description herevariable.other.jsdoc enter image description here

关于visual-studio-code - 如何更改 VS Code 中注释的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45195023/

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