davinci-text 1.0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.byebug_history +86 -0
- data/.circleci/config.yml +57 -0
- data/.gitignore +53 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +50 -0
- data/LICENSE.txt +21 -0
- data/README.md +91 -0
- data/REFERENCE.md +71 -0
- data/Rakefile +4 -0
- data/bin/davinci +16 -0
- data/controllers/atom_input_controller.rb +146 -0
- data/controllers/atom_output_controller.rb +107 -0
- data/controllers/cl_args_controller.rb +62 -0
- data/controllers/menu_controller.rb +148 -0
- data/controllers/sublime_input_controller.rb +97 -0
- data/controllers/sublime_output_controller.rb +62 -0
- data/davinci-text.gemspec +34 -0
- data/example_files/atom/atom-dark-syntax/CONTRIBUTING.md +1 -0
- data/example_files/atom/atom-dark-syntax/ISSUE_TEMPLATE.md +40 -0
- data/example_files/atom/atom-dark-syntax/LICENSE.md +20 -0
- data/example_files/atom/atom-dark-syntax/PULL_REQUEST_TEMPLATE.md +28 -0
- data/example_files/atom/atom-dark-syntax/README.md +9 -0
- data/example_files/atom/atom-dark-syntax/index.less +7 -0
- data/example_files/atom/atom-dark-syntax/output.less +384 -0
- data/example_files/atom/atom-dark-syntax/package.json +11 -0
- data/example_files/atom/atom-dark-syntax/styles/editor.less +50 -0
- data/example_files/atom/atom-dark-syntax/styles/syntax-variables.less +44 -0
- data/example_files/atom/atom-dark-syntax/styles/syntax.less +283 -0
- data/example_files/atom/loved-syntax/CONTRIBUTING.md +1 -0
- data/example_files/atom/loved-syntax/LICENSE.md +20 -0
- data/example_files/atom/loved-syntax/README.md +14 -0
- data/example_files/atom/loved-syntax/index.less +18 -0
- data/example_files/atom/loved-syntax/output.less +648 -0
- data/example_files/atom/loved-syntax/package.json +15 -0
- data/example_files/atom/loved-syntax/styles/colors.less +44 -0
- data/example_files/atom/loved-syntax/styles/editor.less +96 -0
- data/example_files/atom/loved-syntax/styles/syntax-variables.less +56 -0
- data/example_files/atom/loved-syntax/styles/syntax/_base.less +311 -0
- data/example_files/atom/loved-syntax/styles/syntax/c.less +5 -0
- data/example_files/atom/loved-syntax/styles/syntax/cpp.less +5 -0
- data/example_files/atom/loved-syntax/styles/syntax/cs.less +5 -0
- data/example_files/atom/loved-syntax/styles/syntax/css.less +13 -0
- data/example_files/atom/loved-syntax/styles/syntax/gfm.less +9 -0
- data/example_files/atom/loved-syntax/styles/syntax/go.less +5 -0
- data/example_files/atom/loved-syntax/styles/syntax/ini.less +5 -0
- data/example_files/atom/loved-syntax/styles/syntax/java.less +24 -0
- data/example_files/atom/loved-syntax/styles/syntax/javascript.less +17 -0
- data/example_files/atom/loved-syntax/styles/syntax/json.less +21 -0
- data/example_files/atom/loved-syntax/styles/syntax/python.less +9 -0
- data/example_files/atom/loved-syntax/styles/syntax/ruby.less +5 -0
- data/example_files/sublime/material.tmTheme +1011 -0
- data/example_files/sublime/monokai.tmTheme +432 -0
- data/lib/.byebug_history +3 -0
- data/lib/templates/atom/.gitignore +3 -0
- data/lib/templates/atom/LICENSE.md +20 -0
- data/lib/templates/atom/README.md +5 -0
- data/lib/templates/atom/index.less +1 -0
- data/lib/templates/atom/package.json +15 -0
- data/lib/templates/atom/styles/base.less +307 -0
- data/lib/templates/atom/styles/colors.less +15 -0
- data/lib/templates/atom/styles/syntax-variables.less +31 -0
- data/lib/templates/sublime/newTheme.tmTheme +438 -0
- data/lib/utility.rb +21 -0
- data/lib/version.rb +3 -0
- metadata +209 -0
@@ -0,0 +1 @@
|
|
1
|
+
@import "./styles/base.less";
|
@@ -0,0 +1,15 @@
|
|
1
|
+
{
|
2
|
+
"name": ":::theme_name:::",
|
3
|
+
"theme": "syntax",
|
4
|
+
"version": "0.0.0",
|
5
|
+
"description": "A short description of your syntax theme",
|
6
|
+
"keywords": [
|
7
|
+
"syntax",
|
8
|
+
"theme"
|
9
|
+
],
|
10
|
+
"repository": "",
|
11
|
+
"license": "MIT",
|
12
|
+
"engines": {
|
13
|
+
"atom": ">=1.0.0 <2.0.0"
|
14
|
+
}
|
15
|
+
}
|
@@ -0,0 +1,307 @@
|
|
1
|
+
@import "syntax-variables";
|
2
|
+
|
3
|
+
atom-text-editor {
|
4
|
+
background-color: @syntax-background-color;
|
5
|
+
color: @syntax-text-color;
|
6
|
+
|
7
|
+
.wrap-guide {
|
8
|
+
background-color: @syntax-wrap-guide-color;
|
9
|
+
}
|
10
|
+
|
11
|
+
.indent-guide {
|
12
|
+
color: @syntax-indent-guide-color;
|
13
|
+
}
|
14
|
+
|
15
|
+
.invisible-character {
|
16
|
+
color: @syntax-invisible-character-color;
|
17
|
+
}
|
18
|
+
|
19
|
+
.gutter {
|
20
|
+
background-color: @syntax-gutter-background-color;
|
21
|
+
color: @syntax-gutter-text-color;
|
22
|
+
|
23
|
+
.line-number {
|
24
|
+
&.cursor-line {
|
25
|
+
background-color: @syntax-gutter-background-color-selected;
|
26
|
+
color: @syntax-gutter-text-color-selected;
|
27
|
+
}
|
28
|
+
|
29
|
+
&.cursor-line-no-selection {
|
30
|
+
color: @syntax-gutter-text-color-selected;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
.gutter .line-number.folded,
|
36
|
+
.gutter .line-number:after,
|
37
|
+
.fold-marker:after {
|
38
|
+
color: @light-gray;
|
39
|
+
}
|
40
|
+
|
41
|
+
.invisible {
|
42
|
+
color: @syntax-text-color;
|
43
|
+
}
|
44
|
+
|
45
|
+
.cursor {
|
46
|
+
color: @syntax-cursor-color;
|
47
|
+
}
|
48
|
+
|
49
|
+
.selection .region {
|
50
|
+
background-color: @syntax-selection-color;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
|
54
|
+
|
55
|
+
// Syntax styles
|
56
|
+
|
57
|
+
.syntax--comment {
|
58
|
+
color: ":::comment_foreground:::";
|
59
|
+
}
|
60
|
+
|
61
|
+
.syntax--keyword {
|
62
|
+
color: ":::keyword_foreground:::";
|
63
|
+
|
64
|
+
&.syntax--control {
|
65
|
+
color: ":::keyword_foreground:::";
|
66
|
+
}
|
67
|
+
|
68
|
+
&.syntax--operator {
|
69
|
+
color: ":::keyword_foreground:::";
|
70
|
+
}
|
71
|
+
|
72
|
+
&.syntax--other.syntax--special-method {
|
73
|
+
color: ":::keyword_foreground:::";
|
74
|
+
}
|
75
|
+
|
76
|
+
&.syntax--other.syntax--unit {
|
77
|
+
color: ":::keyword_foreground:::";
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
.syntax--storage {
|
82
|
+
color: ":::storage_foreground:::";
|
83
|
+
}
|
84
|
+
|
85
|
+
.syntax--constant {
|
86
|
+
color: ":::built_in_constant_foreground:::";
|
87
|
+
|
88
|
+
&.syntax--character.syntax--escape {
|
89
|
+
color: ":::built_in_constant_foreground:::";
|
90
|
+
}
|
91
|
+
|
92
|
+
&.syntax--numeric {
|
93
|
+
color: ":::number_foreground:::";
|
94
|
+
}
|
95
|
+
|
96
|
+
&.syntax--other.syntax--color {
|
97
|
+
color: ":::built_in_constant_foreground:::";
|
98
|
+
}
|
99
|
+
|
100
|
+
&.syntax--other.syntax--symbol {
|
101
|
+
color: ":::built_in_constant_foreground:::";
|
102
|
+
}
|
103
|
+
}
|
104
|
+
|
105
|
+
.syntax--variable {
|
106
|
+
color: @syntax-text-color;
|
107
|
+
|
108
|
+
&.syntax--interpolation {
|
109
|
+
color: darken(@syntax-text-color, 10%);
|
110
|
+
}
|
111
|
+
|
112
|
+
&.syntax--parameter.syntax--function {
|
113
|
+
color: ":::function_argument_foreground:::";
|
114
|
+
}
|
115
|
+
}
|
116
|
+
|
117
|
+
.syntax--invalid.syntax--illegal {
|
118
|
+
background-color: ":::invalid_deprecated_background:::";
|
119
|
+
color: ":::invalid_deprecated_foreground:::";
|
120
|
+
}
|
121
|
+
|
122
|
+
.syntax--string {
|
123
|
+
color: ":::string_foreground:::";
|
124
|
+
|
125
|
+
|
126
|
+
&.syntax--regexp {
|
127
|
+
color: ":::string_foreground:::";
|
128
|
+
|
129
|
+
.syntax--source.syntax--ruby.syntax--embedded {
|
130
|
+
color: ":::string_foreground:::";
|
131
|
+
}
|
132
|
+
}
|
133
|
+
|
134
|
+
&.syntax--other.syntax--link {
|
135
|
+
color: ":::string_foreground:::";
|
136
|
+
}
|
137
|
+
}
|
138
|
+
|
139
|
+
.syntax--punctuation {
|
140
|
+
&.syntax--definition {
|
141
|
+
&.syntax--comment {
|
142
|
+
color: ":::comment_foreground:::";
|
143
|
+
}
|
144
|
+
|
145
|
+
&.syntax--string,
|
146
|
+
&.syntax--array {
|
147
|
+
color: ":::string_foreground:::";
|
148
|
+
}
|
149
|
+
|
150
|
+
&.syntax--variable,
|
151
|
+
&.syntax--parameters {
|
152
|
+
color: @syntax-text-color;
|
153
|
+
}
|
154
|
+
|
155
|
+
&.syntax--heading,
|
156
|
+
&.syntax--identity {
|
157
|
+
color: @syntax-text-color;
|
158
|
+
}
|
159
|
+
|
160
|
+
&.syntax--bold {
|
161
|
+
color: @syntax-text-color;
|
162
|
+
font-weight: bold;
|
163
|
+
}
|
164
|
+
|
165
|
+
&.syntax--italic {
|
166
|
+
color: @syntax-text-color;
|
167
|
+
font-style: italic;
|
168
|
+
}
|
169
|
+
}
|
170
|
+
|
171
|
+
&.syntax--section.syntax--embedded {
|
172
|
+
color: darken(":::string_foreground:::", 10%);
|
173
|
+
}
|
174
|
+
|
175
|
+
}
|
176
|
+
|
177
|
+
.syntax--support {
|
178
|
+
&.syntax--class {
|
179
|
+
color: ":::library_class_type_foreground:::";
|
180
|
+
}
|
181
|
+
|
182
|
+
&.syntax--function {
|
183
|
+
color: "::::library_function_foreground:::";
|
184
|
+
|
185
|
+
&.syntax--any-method {
|
186
|
+
color: "::::library_function_foreground:::";
|
187
|
+
}
|
188
|
+
}
|
189
|
+
}
|
190
|
+
|
191
|
+
.syntax--entity {
|
192
|
+
&.syntax--name.syntax--function {
|
193
|
+
color: ":::entity_name_foreground:::";
|
194
|
+
}
|
195
|
+
&.syntax--name.syntax--type {
|
196
|
+
color: ":::library_class_type_foreground:::";
|
197
|
+
// color: ":::inherited_class_foreground:::";
|
198
|
+
text-decoration: underline;
|
199
|
+
}
|
200
|
+
|
201
|
+
&.syntax--other.syntax--inherited-class {
|
202
|
+
// color: ":::inherited_class_foreground:::";
|
203
|
+
color: ":::library_class_type_foreground:::";
|
204
|
+
}
|
205
|
+
&.syntax--name.syntax--class, &.syntax--name.syntax--type.syntax--class {
|
206
|
+
// color: ":::library_class_type_foreground:::";
|
207
|
+
color: ":::inherited_class_foreground:::";
|
208
|
+
}
|
209
|
+
|
210
|
+
&.syntax--name.syntax--section {
|
211
|
+
color: ":::entity_name_foreground:::";
|
212
|
+
}
|
213
|
+
|
214
|
+
&.syntax--name.syntax--tag {
|
215
|
+
color: ":::tag_name_foreground:::";
|
216
|
+
text-decoration: underline;
|
217
|
+
}
|
218
|
+
|
219
|
+
&.syntax--other.syntax--attribute-name {
|
220
|
+
color: ":::tag_attribute_foreground:::";
|
221
|
+
|
222
|
+
&.syntax--id {
|
223
|
+
color: ":::tag_attribute_foreground:::";
|
224
|
+
}
|
225
|
+
}
|
226
|
+
}
|
227
|
+
|
228
|
+
.syntax--meta {
|
229
|
+
&.syntax--class {
|
230
|
+
color: @light-orange;
|
231
|
+
}
|
232
|
+
|
233
|
+
&.syntax--link {
|
234
|
+
color: @orange;
|
235
|
+
}
|
236
|
+
|
237
|
+
&.syntax--require {
|
238
|
+
color: ":::language_variable_foreground:::";
|
239
|
+
}
|
240
|
+
|
241
|
+
&.syntax--selector {
|
242
|
+
color: @purple;
|
243
|
+
}
|
244
|
+
|
245
|
+
&.syntax--separator {
|
246
|
+
background-color: @gray;
|
247
|
+
color: @syntax-text-color;
|
248
|
+
}
|
249
|
+
}
|
250
|
+
|
251
|
+
.syntax--none {
|
252
|
+
color: @syntax-text-color;
|
253
|
+
}
|
254
|
+
|
255
|
+
.syntax--markup {
|
256
|
+
&.syntax--bold {
|
257
|
+
color: @orange;
|
258
|
+
font-weight: bold;
|
259
|
+
}
|
260
|
+
|
261
|
+
&.syntax--changed {
|
262
|
+
color: @purple;
|
263
|
+
}
|
264
|
+
|
265
|
+
&.syntax--deleted {
|
266
|
+
color: @red;
|
267
|
+
}
|
268
|
+
|
269
|
+
&.syntax--italic {
|
270
|
+
color: @purple;
|
271
|
+
font-style: italic;
|
272
|
+
}
|
273
|
+
|
274
|
+
&.syntax--heading .syntax--punctuation.syntax--definition.syntax--heading {
|
275
|
+
color: @blue;
|
276
|
+
}
|
277
|
+
|
278
|
+
&.syntax--inserted {
|
279
|
+
color: @green;
|
280
|
+
}
|
281
|
+
|
282
|
+
&.syntax--list {
|
283
|
+
color: @red;
|
284
|
+
}
|
285
|
+
|
286
|
+
&.syntax--quote {
|
287
|
+
color: @orange;
|
288
|
+
}
|
289
|
+
|
290
|
+
&.syntax--raw.syntax--inline {
|
291
|
+
color: @green;
|
292
|
+
}
|
293
|
+
}
|
294
|
+
|
295
|
+
.syntax--source.syntax--gfm .syntax--markup {
|
296
|
+
-webkit-font-smoothing: auto;
|
297
|
+
&.syntax--heading {
|
298
|
+
color: @green;
|
299
|
+
}
|
300
|
+
}
|
301
|
+
|
302
|
+
|
303
|
+
// Mini editor
|
304
|
+
|
305
|
+
atom-text-editor[mini] .scroll-view {
|
306
|
+
padding-left: 1px;
|
307
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
// These colors are specific to the theme. Do not use in a package!
|
2
|
+
|
3
|
+
@very-light-gray: #c5c8c6;
|
4
|
+
@light-gray: #969896;
|
5
|
+
@gray: #373b41;
|
6
|
+
@dark-gray: #282a2e;
|
7
|
+
@very-dark-gray: #1d1f21;
|
8
|
+
|
9
|
+
@cyan: #8abeb7;
|
10
|
+
@blue: #81a2be;
|
11
|
+
@purple: #b294bb;
|
12
|
+
@green: #b5bd68;
|
13
|
+
@red: #cc6666;
|
14
|
+
@orange: #FF1111;
|
15
|
+
@light-orange: #FF1111;
|
@@ -0,0 +1,31 @@
|
|
1
|
+
@import "colors";
|
2
|
+
|
3
|
+
// This defines all syntax variables that syntax themes must implement when they
|
4
|
+
// include a syntax-variables.less file.
|
5
|
+
|
6
|
+
// General colors
|
7
|
+
@syntax-text-color: ":::foreground:::";
|
8
|
+
@syntax-cursor-color: ":::caret:::";
|
9
|
+
@syntax-selection-color: ":::selection:::";
|
10
|
+
@syntax-background-color: ":::background:::";
|
11
|
+
|
12
|
+
// Guide colors
|
13
|
+
@syntax-wrap-guide-color: ":::active_guide:::";
|
14
|
+
@syntax-indent-guide-color: ":::active_guide:::";
|
15
|
+
@syntax-invisible-character-color: ":::invisibles:::";
|
16
|
+
|
17
|
+
// For find and replace markers
|
18
|
+
@syntax-result-marker-color: ":::find_highlight:::";
|
19
|
+
@syntax-result-marker-color-selected: white;
|
20
|
+
|
21
|
+
// Gutter colors
|
22
|
+
@syntax-gutter-text-color: @very-light-gray;
|
23
|
+
@syntax-gutter-text-color-selected: @syntax-gutter-text-color;
|
24
|
+
@syntax-gutter-background-color: @dark-gray;
|
25
|
+
@syntax-gutter-background-color-selected: @gray;
|
26
|
+
|
27
|
+
// For git diff info. i.e. in the gutter
|
28
|
+
@syntax-color-renamed: ":::diff_header_foreground:::";
|
29
|
+
@syntax-color-added: ":::diff_inserted_foreground:::";
|
30
|
+
@syntax-color-modified: ":::diff_changed_foreground:::";
|
31
|
+
@syntax-color-removed: ":::diff_deleted_foreground:::";
|
@@ -0,0 +1,438 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>name</key>
|
6
|
+
<string>":::theme_name:::"</string>
|
7
|
+
<key>settings</key>
|
8
|
+
<array>
|
9
|
+
<dict>
|
10
|
+
<key>settings</key>
|
11
|
+
<dict>
|
12
|
+
<key>background</key>
|
13
|
+
<string>":::background:::"</string>
|
14
|
+
<key>caret</key>
|
15
|
+
<string>":::caret:::"</string>
|
16
|
+
<key>foreground</key>
|
17
|
+
<string>":::foreground:::"</string>
|
18
|
+
<key>invisibles</key>
|
19
|
+
<string>":::invisibles:::"</string>
|
20
|
+
<key>lineHighlight</key>
|
21
|
+
<string>":::lineHighlight:::"</string>
|
22
|
+
<key>selection</key>
|
23
|
+
<string>#49483E</string>
|
24
|
+
<key>findHighlight</key>
|
25
|
+
<string>#FFE792</string>
|
26
|
+
<key>findHighlightForeground</key>
|
27
|
+
<string>#000000</string>
|
28
|
+
<key>selectionBorder</key>
|
29
|
+
<string>#222218</string>
|
30
|
+
<key>activeGuide</key>
|
31
|
+
<string>#9D550FB0</string>
|
32
|
+
|
33
|
+
<key>bracketsForeground</key>
|
34
|
+
<string>#F8F8F2A5</string>
|
35
|
+
<key>bracketsOptions</key>
|
36
|
+
<string>underline</string>
|
37
|
+
|
38
|
+
<key>bracketContentsForeground</key>
|
39
|
+
<string>#00FF00</string>
|
40
|
+
<key>bracketContentsOptions</key>
|
41
|
+
<string>underline</string>
|
42
|
+
|
43
|
+
<key>tagsOptions</key>
|
44
|
+
<string>stippled_underline</string>
|
45
|
+
</dict>
|
46
|
+
</dict>
|
47
|
+
<dict>
|
48
|
+
|
49
|
+
<key>name</key>
|
50
|
+
<string>Comment</string>
|
51
|
+
<key>scope</key>
|
52
|
+
<string>comment</string>
|
53
|
+
<key>settings</key>
|
54
|
+
<dict>
|
55
|
+
<key>foreground</key>
|
56
|
+
<string>":::comment_foreground:::"</string>
|
57
|
+
</dict>
|
58
|
+
</dict>
|
59
|
+
<dict>
|
60
|
+
<key>name</key>
|
61
|
+
<string>String</string>
|
62
|
+
<key>scope</key>
|
63
|
+
<string>string</string>
|
64
|
+
<key>settings</key>
|
65
|
+
<dict>
|
66
|
+
<key>foreground</key>
|
67
|
+
<string>":::string_foreground:::"</string>
|
68
|
+
</dict>
|
69
|
+
</dict>
|
70
|
+
<dict>
|
71
|
+
<key>name</key>
|
72
|
+
<string>Number</string>
|
73
|
+
<key>scope</key>
|
74
|
+
<string>constant.numeric</string>
|
75
|
+
<key>settings</key>
|
76
|
+
<dict>
|
77
|
+
<key>foreground</key>
|
78
|
+
<string>":::number_foreground:::"</string>
|
79
|
+
</dict>
|
80
|
+
</dict>
|
81
|
+
|
82
|
+
<dict>
|
83
|
+
<key>name</key>
|
84
|
+
<string>Built-in constant</string>
|
85
|
+
<key>scope</key>
|
86
|
+
<string>constant.language</string>
|
87
|
+
<key>settings</key>
|
88
|
+
<dict>
|
89
|
+
<key>foreground</key>
|
90
|
+
<string>":::built_in_constant_foreground:::"</string>
|
91
|
+
</dict>
|
92
|
+
</dict>
|
93
|
+
<dict>
|
94
|
+
<key>name</key>
|
95
|
+
<string>User-defined constant</string>
|
96
|
+
<key>scope</key>
|
97
|
+
<string>constant.character, constant.other</string>
|
98
|
+
<key>settings</key>
|
99
|
+
<dict>
|
100
|
+
<key>foreground</key>
|
101
|
+
<string>":::user_defined_constant_foreground:::"</string>
|
102
|
+
</dict>
|
103
|
+
</dict>
|
104
|
+
<dict>
|
105
|
+
<key>name</key>
|
106
|
+
<string>Variable</string>
|
107
|
+
<key>scope</key>
|
108
|
+
<string>variable</string>
|
109
|
+
<key>settings</key>
|
110
|
+
<dict>
|
111
|
+
<key>fontStyle</key>
|
112
|
+
<string>":::variable_font_style:::"</string>
|
113
|
+
<key>foreground</key>
|
114
|
+
<string>":::variable_foreground:::"</string>
|
115
|
+
</dict>
|
116
|
+
</dict>
|
117
|
+
<dict>
|
118
|
+
<key>name</key>
|
119
|
+
<string>Keyword</string>
|
120
|
+
<key>scope</key>
|
121
|
+
<string>keyword - (source.c keyword.operator | source.c++ keyword.operator | source.objc keyword.operator | source.objc++ keyword.operator), keyword.operator.word</string>
|
122
|
+
<key>settings</key>
|
123
|
+
<dict>
|
124
|
+
<key>foreground</key>
|
125
|
+
<string>":::keyword_foreground:::"</string>
|
126
|
+
</dict>
|
127
|
+
</dict>
|
128
|
+
<dict>
|
129
|
+
<key>name</key>
|
130
|
+
<string>JavaScript Dollar</string>
|
131
|
+
<key>scope</key>
|
132
|
+
<string>variable.other.dollar.only.js</string>
|
133
|
+
<key>settings</key>
|
134
|
+
<dict>
|
135
|
+
<key>foreground</key>
|
136
|
+
<string>":::java_script_dollar_foreground:::"</string>
|
137
|
+
</dict>
|
138
|
+
</dict>
|
139
|
+
<dict>
|
140
|
+
<key>name</key>
|
141
|
+
<string>Storage</string>
|
142
|
+
<key>scope</key>
|
143
|
+
<string>storage</string>
|
144
|
+
<key>settings</key>
|
145
|
+
<dict>
|
146
|
+
<key>fontStyle</key>
|
147
|
+
<string></string>
|
148
|
+
<key>foreground</key>
|
149
|
+
<string>":::storage_foreground:::"</string>
|
150
|
+
</dict>
|
151
|
+
</dict>
|
152
|
+
<dict>
|
153
|
+
<key>name</key>
|
154
|
+
<string>Storage type</string>
|
155
|
+
<key>scope</key>
|
156
|
+
<string>storage.type</string>
|
157
|
+
<key>settings</key>
|
158
|
+
<dict>
|
159
|
+
<key>fontStyle</key>
|
160
|
+
<string>":::storage_type_font_style:::"</string>
|
161
|
+
<key>foreground</key>
|
162
|
+
<string>":::storage_type_foreground:::"</string>
|
163
|
+
</dict>
|
164
|
+
</dict>
|
165
|
+
<dict>
|
166
|
+
<key>name</key>
|
167
|
+
<string>Entity name</string>
|
168
|
+
<key>scope</key>
|
169
|
+
<string>entity.name - (entity.name.filename | entity.name.section | entity.name.tag | entity.name.label)</string>
|
170
|
+
<key>settings</key>
|
171
|
+
<dict>
|
172
|
+
<key>fontStyle</key>
|
173
|
+
<string>":::entity_name_font_style:::"</string>
|
174
|
+
<key>foreground</key>
|
175
|
+
<string>":::entity_name_foreground:::"</string>
|
176
|
+
</dict>
|
177
|
+
</dict>
|
178
|
+
|
179
|
+
<dict>
|
180
|
+
<key>name</key>
|
181
|
+
<string>Inherited class</string>
|
182
|
+
<key>scope</key>
|
183
|
+
<string>entity.other.inherited-class</string>
|
184
|
+
<key>settings</key>
|
185
|
+
<dict>
|
186
|
+
<key>fontStyle</key>
|
187
|
+
<string>":::inherited_class_font_style:::"</string>
|
188
|
+
<key>foreground</key>
|
189
|
+
<string>":::inherited_class_foreground:::"</string>
|
190
|
+
</dict>
|
191
|
+
</dict>
|
192
|
+
<dict>
|
193
|
+
<key>name</key>
|
194
|
+
<string>Function argument</string>
|
195
|
+
<key>scope</key>
|
196
|
+
<string>variable.parameter - (source.c | source.c++ | source.objc | source.objc++)</string>
|
197
|
+
<key>settings</key>
|
198
|
+
<dict>
|
199
|
+
<key>fontStyle</key>
|
200
|
+
<string>":::function_argument_font_style:::"</string>
|
201
|
+
<key>foreground</key>
|
202
|
+
<string>":::function_argument_foreground:::"</string>
|
203
|
+
</dict>
|
204
|
+
</dict>
|
205
|
+
<dict>
|
206
|
+
<key>name</key>
|
207
|
+
<string>Language variable</string>
|
208
|
+
<key>scope</key>
|
209
|
+
<string>variable.language</string>
|
210
|
+
<key>settings</key>
|
211
|
+
<dict>
|
212
|
+
<key>fontStyle</key>
|
213
|
+
<string>":::language_variable_font_style:::"</string>
|
214
|
+
<key>foreground</key>
|
215
|
+
<string>":::language_variable_foreground:::"</string>
|
216
|
+
</dict>
|
217
|
+
</dict>
|
218
|
+
<dict>
|
219
|
+
<key>name</key>
|
220
|
+
<string>Tag name</string>
|
221
|
+
<key>scope</key>
|
222
|
+
<string>entity.name.tag</string>
|
223
|
+
<key>settings</key>
|
224
|
+
<dict>
|
225
|
+
<key>fontStyle</key>
|
226
|
+
<string>":::tag_name_font_style:::"</string>
|
227
|
+
<key>foreground</key>
|
228
|
+
<string>":::tag_name_foreground:::"</string>
|
229
|
+
</dict>
|
230
|
+
</dict>
|
231
|
+
<dict>
|
232
|
+
<key>name</key>
|
233
|
+
<string>Tag attribute</string>
|
234
|
+
<key>scope</key>
|
235
|
+
<string>entity.other.attribute-name</string>
|
236
|
+
<key>settings</key>
|
237
|
+
<dict>
|
238
|
+
<key>fontStyle</key>
|
239
|
+
<string>":::tag_attribute_font_style:::"</string>
|
240
|
+
<key>foreground</key>
|
241
|
+
<string>":::tag_attribute_foreground:::"</string>
|
242
|
+
</dict>
|
243
|
+
</dict>
|
244
|
+
<dict>
|
245
|
+
<key>name</key>
|
246
|
+
<string>Function call</string>
|
247
|
+
<key>scope</key>
|
248
|
+
<string>variable.function</string>
|
249
|
+
<key>settings</key>
|
250
|
+
<dict>
|
251
|
+
<key>fontStyle</key>
|
252
|
+
<string>":::function_call_font_style:::"</string>
|
253
|
+
<key>foreground</key>
|
254
|
+
<string>":::function_call_foreground:::"</string>
|
255
|
+
</dict>
|
256
|
+
</dict>
|
257
|
+
<dict>
|
258
|
+
<key>name</key>
|
259
|
+
<string>Library function</string>
|
260
|
+
<key>scope</key>
|
261
|
+
<string>support.function</string>
|
262
|
+
<key>settings</key>
|
263
|
+
<dict>
|
264
|
+
<key>fontStyle</key>
|
265
|
+
<string>":::library_function_font_style:::"</string>
|
266
|
+
<key>foreground</key>
|
267
|
+
<string>":::library_function_foreground:::"</string>
|
268
|
+
</dict>
|
269
|
+
</dict>
|
270
|
+
<dict>
|
271
|
+
<key>name</key>
|
272
|
+
<string>Library constant</string>
|
273
|
+
<key>scope</key>
|
274
|
+
<string>support.constant</string>
|
275
|
+
<key>settings</key>
|
276
|
+
<dict>
|
277
|
+
<key>fontStyle</key>
|
278
|
+
<string>":::library_constant_font_style:::"</string>
|
279
|
+
<key>foreground</key>
|
280
|
+
<string>":::library_constant_foreground:::"</string>
|
281
|
+
</dict>
|
282
|
+
</dict>
|
283
|
+
<dict>
|
284
|
+
<key>name</key>
|
285
|
+
<string>Library class/type</string>
|
286
|
+
<key>scope</key>
|
287
|
+
<string>support.type, support.class</string>
|
288
|
+
<key>settings</key>
|
289
|
+
<dict>
|
290
|
+
<key>fontStyle</key>
|
291
|
+
<string>":::library_class_type_font_style:::"</string>
|
292
|
+
<key>foreground</key>
|
293
|
+
<string>":::library_class_type_foreground:::"</string>
|
294
|
+
</dict>
|
295
|
+
</dict>
|
296
|
+
<dict>
|
297
|
+
<key>name</key>
|
298
|
+
<string>Library variable</string>
|
299
|
+
<key>scope</key>
|
300
|
+
<string>support.other.variable</string>
|
301
|
+
<key>settings</key>
|
302
|
+
<dict>
|
303
|
+
<key>fontStyle</key>
|
304
|
+
<string>":::library_variable_font_style:::"</string>
|
305
|
+
<key>foreground</key>
|
306
|
+
<string>":::library_variable_foreground:::"</string>
|
307
|
+
</dict>
|
308
|
+
</dict>
|
309
|
+
<dict>
|
310
|
+
<key>name</key>
|
311
|
+
<string>Invalid</string>
|
312
|
+
<key>scope</key>
|
313
|
+
<string>invalid</string>
|
314
|
+
<key>settings</key>
|
315
|
+
<dict>
|
316
|
+
<key>background</key>
|
317
|
+
<string>":::invalid_background:::"</string>
|
318
|
+
<key>fontStyle</key>
|
319
|
+
<string>":::invalid_font_style:::"</string>
|
320
|
+
<key>foreground</key>
|
321
|
+
<string>":::invalid_foreground:::"</string>
|
322
|
+
</dict>
|
323
|
+
</dict>
|
324
|
+
<dict>
|
325
|
+
<key>name</key>
|
326
|
+
<string>Invalid deprecated</string>
|
327
|
+
<key>scope</key>
|
328
|
+
<string>invalid.deprecated</string>
|
329
|
+
<key>settings</key>
|
330
|
+
<dict>
|
331
|
+
<key>background</key>
|
332
|
+
<string>":::invalid_deprecated_background:::"</string>
|
333
|
+
<key>foreground</key>
|
334
|
+
<string>":::invalid_deprecated_foreground:::"</string>
|
335
|
+
</dict>
|
336
|
+
</dict>
|
337
|
+
<dict>
|
338
|
+
<key>name</key>
|
339
|
+
<string>JSON String</string>
|
340
|
+
<key>scope</key>
|
341
|
+
<string>meta.structure.dictionary.json string.quoted.double.json</string>
|
342
|
+
<key>settings</key>
|
343
|
+
<dict>
|
344
|
+
<key>foreground</key>
|
345
|
+
<string>":::json_string_foreground:::"</string>
|
346
|
+
</dict>
|
347
|
+
</dict>
|
348
|
+
<dict>
|
349
|
+
<key>name</key>
|
350
|
+
<string>YAML String</string>
|
351
|
+
<key>scope</key>
|
352
|
+
<string>string.unquoted.yaml</string>
|
353
|
+
<key>settings</key>
|
354
|
+
<dict>
|
355
|
+
<key>foreground</key>
|
356
|
+
<string>":::yaml_string_foreground:::"</string>
|
357
|
+
</dict>
|
358
|
+
</dict>
|
359
|
+
|
360
|
+
<dict>
|
361
|
+
<key>name</key>
|
362
|
+
<string>diff.header</string>
|
363
|
+
<key>scope</key>
|
364
|
+
<string>meta.diff, meta.diff.header</string>
|
365
|
+
<key>settings</key>
|
366
|
+
<dict>
|
367
|
+
<key>foreground</key>
|
368
|
+
<string>":::diff_header_foreground:::"</string>
|
369
|
+
</dict>
|
370
|
+
</dict>
|
371
|
+
<dict>
|
372
|
+
<key>name</key>
|
373
|
+
<string>diff.deleted</string>
|
374
|
+
<key>scope</key>
|
375
|
+
<string>markup.deleted</string>
|
376
|
+
<key>settings</key>
|
377
|
+
<dict>
|
378
|
+
<key>foreground</key>
|
379
|
+
<string>":::diff_deleted_foreground:::"</string>
|
380
|
+
</dict>
|
381
|
+
</dict>
|
382
|
+
<dict>
|
383
|
+
<key>name</key>
|
384
|
+
<string>diff.inserted</string>
|
385
|
+
<key>scope</key>
|
386
|
+
<string>markup.inserted</string>
|
387
|
+
<key>settings</key>
|
388
|
+
<dict>
|
389
|
+
<key>foreground</key>
|
390
|
+
<string>":::diff_inserted_foreground:::"</string>
|
391
|
+
</dict>
|
392
|
+
</dict>
|
393
|
+
<dict>
|
394
|
+
<key>name</key>
|
395
|
+
<string>diff.changed</string>
|
396
|
+
<key>scope</key>
|
397
|
+
<string>markup.changed</string>
|
398
|
+
<key>settings</key>
|
399
|
+
<dict>
|
400
|
+
<key>foreground</key>
|
401
|
+
<string>":::diff_changed_foreground:::"</string>
|
402
|
+
</dict>
|
403
|
+
</dict>
|
404
|
+
|
405
|
+
<dict>
|
406
|
+
<key>scope</key>
|
407
|
+
<string>constant.numeric.line-number.find-in-files - match</string>
|
408
|
+
<key>settings</key>
|
409
|
+
<dict>
|
410
|
+
<key>foreground</key>
|
411
|
+
<string>":::constant_numeric_line_number_find_in_files___match_foreground:::"</string>
|
412
|
+
</dict>
|
413
|
+
</dict>
|
414
|
+
<dict>
|
415
|
+
<key>scope</key>
|
416
|
+
<string>entity.name.filename</string>
|
417
|
+
<key>settings</key>
|
418
|
+
<dict>
|
419
|
+
<key>foreground</key>
|
420
|
+
<string>":::entity_name_filename_foreground:::"</string>
|
421
|
+
</dict>
|
422
|
+
</dict>
|
423
|
+
|
424
|
+
<dict>
|
425
|
+
<key>scope</key>
|
426
|
+
<string>message.error</string>
|
427
|
+
<key>settings</key>
|
428
|
+
<dict>
|
429
|
+
<key>foreground</key>
|
430
|
+
<string>":::message_error_foreground:::"</string>
|
431
|
+
</dict>
|
432
|
+
</dict>
|
433
|
+
|
434
|
+
</array>
|
435
|
+
<key>uuid</key>
|
436
|
+
<string></string>
|
437
|
+
</dict>
|
438
|
+
</plist>
|