在 .vscode 文件夹下的 settings.json 文件下,添加如下代码:
{
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "Comment",
"scope": [
"comment",
"comment.block",
"comment.block.documentation",
"comment.line",
"comment.line.double-slash",
"punctuation.definition.comment",
],
"settings": {
"fontStyle": "",
// "fontStyle": "italic", // 斜体
// "fontStyle": "italic underline", // 斜体下划线
// "fontStyle": "italic bold underline", // 斜体粗体下划线
}
},
]
},
}