Chinese (Simplified) (简体中文) Language Pack for Visual Studio Code
介绍:此中文(简体)语言包为 VS Code 提供本地化界面。
TODO Highlight
介绍:高亮显示代码中的TODO、FIXME和其他注释。
// settings.json
"todohighlight.isEnable": true,
"todohighlight.isCaseSensitive": true,
"todohighlight.keywords": [
"REVIEW:",
{
"text": "TODO:",
"color": "#fce78b",
"backgroundColor": "#7842f5",
"overviewRulerColor": "#7842f5",
"isWholeLine": true,
"fontWeight": "bold",
"fontFamily": "sans-serif",
"border": "1px solid #eee",
"borderRadius": "5px"
},
{
"text": "FIXME:",
"color": "#fff",
"backgroundColor": "#f00",
"overviewRulerColor": "#f00",
"isWholeLine": true,
"border": "1px solid #eee",
"borderRadius": "15px"
},
{
"text": "DEBUG:",
"color": "#000",
"backgroundColor": "#0f0",
"overviewRulerColor": "#0f0",
"isWholeLine": true,
"fontWeight": "bold",
"border": "1px solid #eee",
"borderRadius": "15px"
},
{
"text":