筆記本中vscode設定

redufa發表於2024-10-13

筆記本中的vscode設定

修改介面的隱藏和顯示時,會提示

image

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"  
            ]  
        }  
    ]  
}

相關文章