mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-26 07:38:48 -04:00
0d8abe2569
This inserts invalid includes for certain system headers.
42 lines
984 B
JSON
42 lines
984 B
JSON
{
|
|
"[c]": {
|
|
"files.encoding": "utf8",
|
|
},
|
|
"[cpp]": {
|
|
"files.encoding": "utf8",
|
|
},
|
|
"editor.tabSize": 4,
|
|
// "files.autoSave": "onFocusChange",
|
|
"files.insertFinalNewline": true,
|
|
"files.trimFinalNewlines": true,
|
|
"files.associations": {
|
|
"*.inc": "cpp",
|
|
".clangd": "yaml",
|
|
"*.json": "json",
|
|
"dspproc.c": "cpp",
|
|
"dsptask.c": "cpp",
|
|
"osdsp.c": "cpp",
|
|
"osdsp_task.c": "cpp",
|
|
},
|
|
// Disable C/C++ IntelliSense, use clangd instead
|
|
"C_Cpp.intelliSenseEngine": "disabled",
|
|
"search.useIgnoreFiles": false,
|
|
"search.exclude": {
|
|
"build/*/config.json": true,
|
|
"build/*/report.json": true,
|
|
"build/**/*.MAP": true,
|
|
"build/*/include/assets/**": true,
|
|
"build.ninja": true,
|
|
".ninja_*": true,
|
|
"objdiff.json": true,
|
|
"compile_commands.json": true,
|
|
".cache/**": true,
|
|
"ctx.c": true,
|
|
},
|
|
"clangd.arguments": [
|
|
"--function-arg-placeholders=0",
|
|
"-header-insertion=never",
|
|
// "--log=verbose",
|
|
],
|
|
}
|