2022-09-30 21:51:20 +00:00
|
|
|
{
|
|
|
|
"[c]": {
|
2023-10-08 11:41:43 +00:00
|
|
|
"files.encoding": "utf8",
|
2024-09-22 22:58:50 +00:00
|
|
|
"editor.defaultFormatter": "ms-vscode.cpptools"
|
2022-09-30 21:51:20 +00:00
|
|
|
},
|
|
|
|
"[cpp]": {
|
2023-10-08 11:41:43 +00:00
|
|
|
"files.encoding": "utf8",
|
2024-09-22 22:58:50 +00:00
|
|
|
"editor.defaultFormatter": "ms-vscode.cpptools"
|
2022-09-30 21:51:20 +00:00
|
|
|
},
|
2023-10-14 22:07:16 +00:00
|
|
|
"[python]": {
|
2022-11-28 04:56:37 +00:00
|
|
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
|
|
|
},
|
2023-11-10 22:20:35 +00:00
|
|
|
"clangd.arguments": ["--header-insertion=never"],
|
2023-10-14 22:07:16 +00:00
|
|
|
"clangd.fallbackFlags": [
|
|
|
|
"-I${workspaceFolder}/include",
|
2023-10-17 18:26:21 +00:00
|
|
|
"-I${workspaceFolder}/libc",
|
2024-09-22 22:58:50 +00:00
|
|
|
"-I${workspaceFolder}/extern/musyx/include",
|
2023-10-17 18:26:21 +00:00
|
|
|
"-D__MWERKS__",
|
2023-10-14 22:07:16 +00:00
|
|
|
],
|
2022-09-30 21:51:20 +00:00
|
|
|
"editor.tabSize": 2,
|
|
|
|
"files.associations": {
|
2022-10-08 02:38:36 +00:00
|
|
|
"source_location": "cpp",
|
2023-11-26 05:56:57 +00:00
|
|
|
"*.h": "c",
|
|
|
|
"*.inc": "c"
|
2022-09-30 21:51:20 +00:00
|
|
|
},
|
|
|
|
"files.autoSave": "onFocusChange",
|
|
|
|
"files.insertFinalNewline": true,
|
|
|
|
"files.trimFinalNewlines": true,
|
2022-10-09 05:13:17 +00:00
|
|
|
"C/C++ Include Guard.Macro Type": "Filename",
|
|
|
|
"C/C++ Include Guard.Prefix": "_",
|
|
|
|
"C/C++ Include Guard.Suffix": "",
|
|
|
|
"C/C++ Include Guard.Comment Style": "Line",
|
|
|
|
"C/C++ Include Guard.Subfolder Prefixes": [
|
|
|
|
{
|
|
|
|
"folderPath": "include/dolphin",
|
|
|
|
"prefix": "DOLPHIN_"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"folderPath": "include/musyx",
|
|
|
|
"prefix": "MUSYX_"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"folderPath": "include/rstl",
|
|
|
|
"prefix": "RSTL_"
|
2022-10-13 06:15:26 +00:00
|
|
|
},
|
2022-10-09 05:13:17 +00:00
|
|
|
],
|
|
|
|
"C/C++ Include Guard.Auto Update Path Allowlist": [
|
|
|
|
"include"
|
|
|
|
],
|
2022-10-13 06:15:26 +00:00
|
|
|
"C/C++ Include Guard.Auto Update Path Blocklist": [
|
|
|
|
"include/zlib"
|
2024-06-24 04:34:51 +00:00
|
|
|
],
|
|
|
|
"cmake.configureOnOpen": false
|
2022-09-30 21:51:20 +00:00
|
|
|
}
|