【发布时间】:2019-03-18 01:35:52
【问题描述】:
我能找到的在 Visual Studio Code 中处理自定义颜色的唯一选项是:
"editor.tokenColorCustomizations": {
"[Atom One Dark]": {
"comments": "#FF0000" // only 6 color-customizable
},
"workbench.colorCustomizations": {
"statusBar.background": "#666666",
"panel.background": "#555555",
"sideBar.background": "#444444"
},
},
有没有办法为这些类型的东西设置自定义颜色?一个用于 cmets,用于字符串(在 "string" 内)。我相信使用正则表达式的其他东西应该有类似的可能。提前致谢。
【问题讨论】:
标签: visual-studio-code editor syntax-highlighting vscode-settings color-scheme