筆記本中的vscode設定
修改介面的隱藏和顯示時,會提示
Unable to write into user settings because the file has unsaved changes. Please save the user settings file first and then try again.
就把第二段刪除了
問題暫時解決
{
"terminal.integrated.commandsToSkipShell":
[
"matlab.interrupt"
],
"security.workspace.trust.untrustedFiles": "open",
"python.defaultInterpreterPath": "d:\\ProgramData\\anaconda3\\python.exe",
"[python]": {
"diffEditor.ignoreTrimWhitespace": false,
"editor.formatOnType": true,
"editor.wordBasedSuggestions": "off"
}
}
{
"version": "2.0.0",
"tasks":
[
{
"label": "build",
"type": "shell",
"command": "g++",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
]
}
]
}