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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
{
"cmake.useCMakePresets": "always",
"cmake.options.statusBarVisibility": "visible",
"cmake.ctest.testExplorerIntegrationEnabled": false,
"cmake.copyCompileCommands": "${workspaceFolder}/build/compile_commands.json",
"clangd.arguments": [
"--compile-commands-dir=${workspaceFolder}/build",
"--query-driver=**/x86_64-pc-elf-g++",
"--completion-style=detailed",
"--background-index",
"--clang-tidy",
"--header-insertion=iwyu"
],
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.expand": false,
"explorer.fileNesting.patterns": {
"*.hpp": "${capture}.cpp, ${capture}.test.cpp, ${capture}.S",
"*": "${capture}.cpp, ${capture}.test.cpp, ${capture}.S"
},
"files.associations": {
"**/kstd/kstd/**": "cpp",
},
"[cpp]": {
"editor.formatOnSave": true,
"editor.tabSize": 2,
},
"[gas]": {
"editor.rulers": [
80
]
},
"testMate.cpp.debug.configTemplate": {
"type": "cppdbg",
"MIMode": "gdb",
"program": "${exec}",
"args": "${argsArray}",
"cwd": "${cwd}",
"env": "${envObject}",
"environment": "${envObjArray}",
"sourceFileMap": "${sourceFileMapObj}",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Load teachos python helpers",
"text": "source ${workspaceFolder}/scripts/gdb/teachos.py"
}
],
},
}
|