gpt4 book ai didi

html - 如何在 VSCode 中将所有 HTML 属性设为斜体?可能吗?

转载 作者:行者123 更新时间:2023-12-05 01:39:21 28 4
gpt4 key购买 nike

感谢您的帮助。如何使所有 HTML 属性(即单词 type=)在 VSCode 中变为斜体?可能吗?我的意思是想改变主题。您知道某些主题如何具有斜体属性吗? type=, class=, id=, 我只希望这些家伙在主题中用斜体显示。

最佳答案

VS Code 的 syntax color themes除了语法范围的颜色之外,还可以指定 fontStyle。要使文本变为斜体,您需要设置 "fontStyle": "italic"

这个例子editor.tokenColorCustomizations setting使用 fontStyle 使一些 html 属性变为斜体:

"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "italic"
}
}
]
}

这是一个 example of how to set fontStyle in an actual color theme .

entity.other.attribute-name 只是一个示例范围。您可能需要根据您的特定需求调整范围或设置多个范围的样式

关于html - 如何在 VSCode 中将所有 HTML 属性设为斜体?可能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58387514/

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