VS Code行内样式提示插件

打开vscode,在软件界面左下角找到“齿轮”标志并点击,在弹出的菜单中选择“设置”,把下面的代码添加到设置里。

{
    "workbench.colorTheme": "Code Blue",
    "workbench.iconTheme": "vscode-icons",
    "easysass.compileAfterSave": true, 
    "easysass.formats": [ 
           {
               "format": "nested",
               "extension": ".css"
           },
           {
               "format": "nested",
               "extension": ".css"
           }
       ],
    "easysass.targetDir": "css/",
    "files.autoSave": "afterDelay",
    "git.path": "E:/Git/bin/git.exe",
    "git.confirmSync": false,
    "editor.fontWeight": "100",
    "json.format.enable": false,
    "editor.parameterHints": true,
    "editor.quickSuggestions": {
    "other": true,
    "comments": true,
    "strings": true
    }
}
原文地址:https://www.cnblogs.com/xiaoxiao2017/p/10557285.html