嵌入式C setting.json下载
时间: 2023-09-08 18:11:47 浏览: 96
setting.json
以下是适用于嵌入式C的 VS Code `settings.json` 文件的示例。你可以将其复制并粘贴到你的 `settings.json` 文件中,并进行必要的修改。
```json
{
"files.associations": {
"*.c": "c",
"*.h": "c"
},
"C_Cpp.clang_format_style": "file",
"C_Cpp.clang_format_fallbackStyle": "Google",
"C_Cpp.default.languageStandard": "c11",
"C_Cpp.default.intelliSenseMode": "gcc-x64",
"C_Cpp.default.includePath": [
"${workspaceFolder}/**",
"/usr/include"
],
"C_Cpp.default.defines": [
"_DEBUG",
"UNICODE",
"__GNUC__"
],
"C_Cpp.default.cStandard": "c11",
"C_Cpp.default.cppStandard": "c++17",
"C_Cpp.formatting": "Visual Studio",
"C_Cpp.errorSquiggles": "Enabled",
"C_Cpp.vcFormatIndentation": "Smart",
"C_Cpp.vcFormatCloseBraces": "SameLine",
"C_Cpp.vcFormatNewLineBeforeOpenBrace": "All",
"C_Cpp.vcFormatPlaceOpenBraceOnNewLineForControlBlocks": true,
"C_Cpp.vcFormatPlaceOpenBraceOnNewLineForFunctions": false,
}
```
上述代码中,`files.associations` 用于关联文件扩展名和语言模式,`C_Cpp` 开头的键用于配置 C/C++ 扩展的设置,具体的配置项含义可以在 VS Code 中的设置面板中查看。你可以根据自己的需要进行修改和添加配置项。
阅读全文