-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathutf8.code-workspace
More file actions
49 lines (49 loc) · 1.29 KB
/
utf8.code-workspace
File metadata and controls
49 lines (49 loc) · 1.29 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.watcherExclude": {
"build/**": true,
"**/.git/**": true,
},
"files.insertFinalNewline": true,
"clangd.arguments": [
// "--compile-commands-dir=${workspaceFolder}"
],
"cmake.configureOnOpen": true,
"cmake.configureOnEdit": true,
"cmake.buildBeforeRun": true,
"cmake.launchBehavior": "breakAndReuseTerminal",
"lldb.verboseLogging": true,
"lldb.useNativePDBReader": true,
"cmake.copyCompileCommands": "${workspaceFolder}/compile_commands.json"
},
"extensions": {
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker-scientific-terms",
"streetsidesoftware.code-spell-checker-win32",
"ltex-plus.vscode-ltex-plus",
"vadimcn.vscode-lldb"
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Launch",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "${command:cmake.getLaunchTargetDirectory}",
"console": "integratedTerminal"
}
]
},
}