-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
35 lines (33 loc) · 1 KB
/
settings.json
File metadata and controls
35 lines (33 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"C_Cpp.default.cppStandard": "c++23",
"C_Cpp.default.cStandard": "c17",
"C_Cpp.clang_format_fallbackStyle": "{BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 80}",
"C_Cpp.formatting": "clangFormat",
"C_Cpp.clang_format_style": "{BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 80}",
"C_Cpp.clang_format_sortIncludes": true,
"C_Cpp.intelliSenseCacheSize": 0,
"files.associations": {
"mem.h": "c",
"tinydir.h": "c",
"dirent.h": "c",
"compare": "cpp",
"cstdint": "cpp",
"iostream": "cpp"
},
"testMate.cpp.debug.configTemplate": {
"type": "cppdbg",
"MIMode": "gdb",
"program": "${exec}",
"args": "${args}",
"cwd": "${cwd}",
"externalConsole": false,
// This setupCommands block often fixes generic "pause" issues in GDB
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
}