json配置文件加入
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
//following will be in italic
"comment",
"function",
"entity.name.type.class", //class names
"constant", //String, Number, Boolean…, this, super
"storage", //static keyword
"keyword" //import, export, return…
],
"settings": {
"fontStyle": "italic bold"
}
}
]
}