forked from Gil-Dannen/Progetto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode.code-workspace
More file actions
44 lines (44 loc) · 1.01 KB
/
Copy pathvscode.code-workspace
File metadata and controls
44 lines (44 loc) · 1.01 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
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.exclude": {
"obj_*": true,
".settings": true,
".cproject": true,
".project": true,
"*.arxml": true,
"*.code-workspace": true,
".vscode": true
},
"C_Cpp.intelliSenseEngineFallback": "Enabled",
"C_Cpp.vcFormat.indent.preserveComments": true,
"editor.detectIndentation": false,
"files.autoGuessEncoding": true,
"files.associations": {
"*.s": "arm",
"*.hpp": "cpp",
"*.cpp": "cpp",
"*.c": "c",
"*.h": "c",
"cstd*": "c",
"cstdlib": "cpp",
"cstdint": "c",
"cstring": "c",
"cassert": "cpp",
"cfloat": "cpp",
"cmath": "cpp",
"cstdarg": "cpp"
},
"window.title": "${dirty}${folderName}${separator}${activeEditorShort}${separator}${rootName}${separator}${appName}",
"liveshare.allowGuestTaskControl": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"search.quickOpen.includeHistory": false,
"search.quickOpen.history.filterSortOrder": "recency"
}
}