最近,我正在編輯一個 VS Code 主題.json檔案。我想為我的主題實作粗斜體風格,但我在這部分感到困惑:
{
"name": "Keywords",
"scope": "keyword",
"settings": {
"foreground": "#8A31B9",
"fontStyle": "bold"
}
},
在"fontStyle": "bold"其中將采取"bold"或"italic"。
我應該怎么辦?
uj5u.com熱心網友回復:
您在同一行中添加斜體和粗體。
{
"name": "Keywords",
"scope": "keyword",
"settings": {
"foreground": "#8A31B9",
"fontStyle": "bold italic"
}
},
轉載請註明出處,本文鏈接:https://www.uj5u.com/qiye/525118.html
標籤:json视觉工作室代码
