【发布时间】:2020-12-06 06:04:18
【问题描述】:
当我尝试更改我的 vscode 主题时,我收到一条消息“无法写入用户设置”并更正任何错误。我检查了我的设置,但不知道它有什么问题。有没有人看到任何错误?我在下面粘贴了我的设置代码。
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Local Node File",
"console": "integratedTerminal",
"program": "${file}"
},
{
"name": "Launch index.html",
"type": "chrome",
"request": "launch",
"file": "${workspaceFolder}/index.html"
},
{
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
"emmet.includeLanguages": { "erb": "html" }
},
"liveSassCompile.settings.formats": [
{
"format": "expanded",
"extensionName": ".css",
"savePath": "/css"
}
],
"liveSassCompile.settings.generateMap": false
]
}
【问题讨论】:
-
将整个东西包裹在
{}中,使其成为json对象。
标签: visual-studio-code vscode-settings