gpt4 book ai didi

visual-studio-code - 在 VSCODE 自定义标签之间自定义代码

转载 作者:行者123 更新时间:2023-12-04 13:06:31 24 4
gpt4 key购买 nike

我想创建自定义标签只是为了更好的视觉体验。

如果我们使用注释标签,就像在 php 中一样,

/*
comment 1
comment 2
comment 3
*/

它改变了颜色编码。

同样我想创建一个标签

// log start
executable code here...
but should look like comment or blur
// log end

我知道这很奇怪,但如果 vscode 设置中有任何内容或任何自定义插件或任何扩展会有帮助

最佳答案

您可以使用 Highlight扩展来实现这一点。您可以设置自定义正则表达式并将特定样式应用于与这些正则表达式匹配的代码。

安装扩展,将其添加为自定义正则表达式:

"(// log start(.|\\n)+?// log end)": {
"decorations": [
{
"overviewRulerColor": "#ffcc00",
"backgroundColor": "#ffcc00",
"color": "#1f1f1f",
"fontWeight": "bold"
}
]
}

显然,将颜色替换为您想要的颜色。这是我的设置的样子: enter image description here

关于visual-studio-code - 在 VSCODE 自定义标签之间自定义代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69218579/

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