-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathasciiid.code-workspace
50 lines (48 loc) · 1.09 KB
/
asciiid.code-workspace
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"terminal.integrated.fontSize" : 16,
"terminal.integrated.lineHeight" : 1,
"terminal.integrated.fontWeight" : "100",
// "terminal.integrated.fontFamily" : "PxPlus IBM CGAthin",
"disasexpl.associations": {
"**/*.c": "${workspaceFolder}/.o_game/${relativeFileDir}/${fileBasenameNoExtension}.s",
"**/*.cpp": "${workspaceFolder}/.o_game/${relativeFileDir}/${fileBasenameNoExtension}.s"
},
"files.associations": {
"cmath": "cpp",
"random": "cpp",
"*.tcc": "cpp",
"array": "cpp",
"string_view": "cpp",
"initializer_list": "cpp",
"utility": "cpp",
"typeinfo": "cpp",
"map": "cpp",
"__config": "cpp",
"typeindex": "cpp",
"functional": "cpp",
"*.inc": "cpp",
"exception": "cpp",
"system_error": "cpp",
"sstream": "cpp",
"numbers": "cpp",
"__locale": "cpp",
"regex": "cpp",
"strstream": "cpp",
"atomic": "cpp",
"memory": "cpp",
"charconv": "cpp",
"__node_handle": "cpp",
"queue": "cpp",
"stack": "cpp",
"ios": "cpp",
"rope": "cpp",
"ostream": "cpp"
}
}
}