-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathframework.sublime-project
136 lines (136 loc) · 2.97 KB
/
framework.sublime-project
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"folders": [ {
"file_exclude_patterns": [
"fmaw*"
],
"follow_symlinks": true,
"name": "Source",
"path": "src"
}, {
"file_include_patterns": [
"fmaw*.h"
],
"follow_symlinks": true,
"name": "FMAW - Headers",
"path": "FMAW-Headers"
}, {
"file_include_patterns": [
"fmaw*.cpp"
],
"follow_symlinks": true,
"name": "FMAW - CPP",
"path": "FMAW-CPP"
}, {
"file_include_patterns": [
"fmaw*.fds"
],
"follow_symlinks": true,
"name": "FMAW - NDS",
"path": "FMAW-NDS"
}, {
"file_include_patterns": [
"fmaw*.fgl"
],
"follow_symlinks": true,
"name": "FMAW - OpenGL",
"path": "FMAW-OpenGL"
}, {
"follow_symlinks": true,
"name": "Audio",
"path": "maxmod_data"
}, {
"follow_symlinks": true,
"name": "Builds",
"path": "build"
}, {
"follow_symlinks": true,
"name": "Assets",
"path": "assets"
}, {
"follow_symlinks": true,
"name": "Documentation",
"path": "doc"
}, {
"file_exclude_patterns": [
"framework.sublime-project"
],
"folder_exclude_patterns": [
"doc",
"assets",
"src",
"build",
"FMAW-*"
],
"follow_symlinks": true,
"name": "Root",
"path": "."
} ],
"settings": {
"AStyleFormatter": {
"autoformat_on_save": true,
"debug": false,
"options_c": {
"additional_options": [],
"additional_options_file": "",
"style": "google",
"use_only_additional_options": false
},
"options_c++": {
"additional_options": [],
"additional_options_file": "",
"style": "google",
"use_only_additional_options": false
},
"options_default": {
"add-brackets": false,
"add-one-line-brackets": false,
"align-method-colon": true,
"align-pointer": "name",
"align-reference": "name",
"attach-classes": false,
"attach-extern-c": false,
"attach-inlines": false,
"attach-namespaces": false,
"break-after-logical": false,
"break-blocks": "",
"break-closing-brackets": false,
"break-elseifs": false,
"close-templates": false,
"convert-tabs": true,
"delete-empty-lines": false,
"fill-empty-lines": false,
"indent": "spaces",
"indent-cases": true,
"indent-classes": false,
"indent-col1-comments": true,
"indent-labels": false,
"indent-modifiers": false,
"indent-namespaces": false,
"indent-preproc-cond": false,
"indent-preproc-define": true,
"indent-spaces": 4,
"indent-switches": true,
"keep-one-line-blocks": false,
"keep-one-line-statements": true,
"max-code-length": 80,
"max-instatement-indent": 40,
"min-conditional-indent": 2,
"pad-first-paren-out": false,
"pad-header": true,
"pad-method-colon": "none",
"pad-method-prefix": true,
"pad-oper": true,
"pad-paren": false,
"pad-paren-in": false,
"pad-paren-out": false,
"remove-brackets": false,
"remove-comment-prefix": false,
"style": "google",
"unpad-method-prefix": false,
"unpad-paren": true
}
},
"tab_size": 4,
"translate_tabs_to_spaces": false
}
}