@theia/monaco 1.23.0-next.57 → 1.23.0-next.61
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.
- package/data/monaco-themes/vscode/dark_plus.json +19 -2
- package/data/monaco-themes/vscode/dark_vs.json +29 -5
- package/data/monaco-themes/vscode/hc_black.json +334 -3
- package/data/monaco-themes/vscode/light_plus.json +22 -4
- package/data/monaco-themes/vscode/light_vs.json +39 -10
- package/lib/browser/monaco-editor-provider.d.ts +2 -1
- package/lib/browser/monaco-editor-provider.d.ts.map +1 -1
- package/lib/browser/monaco-editor-provider.js +13 -7
- package/lib/browser/monaco-editor-provider.js.map +1 -1
- package/lib/browser/textmate/monaco-theme-registry.d.ts.map +1 -1
- package/lib/browser/textmate/monaco-theme-registry.js +0 -3
- package/lib/browser/textmate/monaco-theme-registry.js.map +1 -1
- package/package.json +7 -7
- package/src/browser/monaco-editor-provider.ts +19 -8
- package/src/browser/textmate/monaco-theme-registry.ts +0 -3
- package/data/monaco-themes/vscode/dark_defaults.json +0 -22
- package/data/monaco-themes/vscode/hc_black_defaults.json +0 -341
- package/data/monaco-themes/vscode/light_defaults.json +0 -21
|
@@ -91,12 +91,23 @@
|
|
|
91
91
|
"variable",
|
|
92
92
|
"meta.definition.variable.name",
|
|
93
93
|
"support.variable",
|
|
94
|
-
"entity.name.variable"
|
|
94
|
+
"entity.name.variable",
|
|
95
|
+
"constant.other.placeholder"
|
|
95
96
|
],
|
|
96
97
|
"settings": {
|
|
97
98
|
"foreground": "#9CDCFE"
|
|
98
99
|
}
|
|
99
100
|
},
|
|
101
|
+
{
|
|
102
|
+
"name": "Constants and enums",
|
|
103
|
+
"scope": [
|
|
104
|
+
"variable.other.constant",
|
|
105
|
+
"variable.other.enummember"
|
|
106
|
+
],
|
|
107
|
+
"settings": {
|
|
108
|
+
"foreground": "#4FC1FF"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
100
111
|
{
|
|
101
112
|
"name": "Object keys, TS grammar specific",
|
|
102
113
|
"scope": [
|
|
@@ -180,5 +191,11 @@
|
|
|
180
191
|
"foreground": "#C8C8C8"
|
|
181
192
|
}
|
|
182
193
|
}
|
|
183
|
-
]
|
|
194
|
+
],
|
|
195
|
+
"semanticTokenColors": {
|
|
196
|
+
"newOperator": "#C586C0",
|
|
197
|
+
"stringLiteral": "#ce9178",
|
|
198
|
+
"customLiteral": "#DCDCAA",
|
|
199
|
+
"numberLiteral": "#b5cea8"
|
|
200
|
+
}
|
|
184
201
|
}
|
|
@@ -1,7 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "vscode://schemas/color-theme",
|
|
3
3
|
"name": "Dark (Visual Studio)",
|
|
4
|
-
"
|
|
4
|
+
"colors": {
|
|
5
|
+
"editor.background": "#1E1E1E",
|
|
6
|
+
"editor.foreground": "#D4D4D4",
|
|
7
|
+
"editor.inactiveSelectionBackground": "#3A3D41",
|
|
8
|
+
"editorIndentGuide.background": "#404040",
|
|
9
|
+
"editorIndentGuide.activeBackground": "#707070",
|
|
10
|
+
"editor.selectionHighlightBackground": "#ADD6FF26",
|
|
11
|
+
"list.dropBackground": "#383B3D",
|
|
12
|
+
"activityBarBadge.background": "#007ACC",
|
|
13
|
+
"sideBarTitle.foreground": "#BBBBBB",
|
|
14
|
+
"input.placeholderForeground": "#A6A6A6",
|
|
15
|
+
"menu.background": "#252526",
|
|
16
|
+
"menu.foreground": "#CCCCCC",
|
|
17
|
+
"statusBarItem.remoteForeground": "#FFF",
|
|
18
|
+
"statusBarItem.remoteBackground": "#16825D",
|
|
19
|
+
"ports.iconRunningProcessForeground": "#369432",
|
|
20
|
+
"sideBarSectionHeader.background": "#0000",
|
|
21
|
+
"sideBarSectionHeader.border": "#ccc3",
|
|
22
|
+
"tab.lastPinnedBorder": "#ccc3",
|
|
23
|
+
"list.activeSelectionIconForeground": "#FFF"
|
|
24
|
+
},
|
|
5
25
|
"tokenColors": [
|
|
6
26
|
{
|
|
7
27
|
"scope": [
|
|
@@ -45,7 +65,6 @@
|
|
|
45
65
|
{
|
|
46
66
|
"scope": [
|
|
47
67
|
"constant.numeric",
|
|
48
|
-
"entity.name.operator.custom-literal.number",
|
|
49
68
|
"variable.other.enummember",
|
|
50
69
|
"keyword.operator.plus.exponent",
|
|
51
70
|
"keyword.operator.minus.exponent"
|
|
@@ -87,7 +106,6 @@
|
|
|
87
106
|
"entity.other.attribute-name.pseudo-class.css",
|
|
88
107
|
"entity.other.attribute-name.pseudo-element.css",
|
|
89
108
|
"source.css.less entity.other.attribute-name.id",
|
|
90
|
-
"entity.other.attribute-name.attribute.scss",
|
|
91
109
|
"entity.other.attribute-name.scss"
|
|
92
110
|
],
|
|
93
111
|
"settings": {
|
|
@@ -226,7 +244,6 @@
|
|
|
226
244
|
{
|
|
227
245
|
"scope": [
|
|
228
246
|
"string",
|
|
229
|
-
"entity.name.operator.custom-literal.string",
|
|
230
247
|
"meta.embedded.assembly"
|
|
231
248
|
],
|
|
232
249
|
"settings": {
|
|
@@ -364,5 +381,12 @@
|
|
|
364
381
|
"foreground": "#569cd6"
|
|
365
382
|
}
|
|
366
383
|
}
|
|
367
|
-
]
|
|
384
|
+
],
|
|
385
|
+
"semanticHighlighting": true,
|
|
386
|
+
"semanticTokenColors": {
|
|
387
|
+
"newOperator": "#d4d4d4",
|
|
388
|
+
"stringLiteral": "#ce9178",
|
|
389
|
+
"customLiteral": "#D4D4D4",
|
|
390
|
+
"numberLiteral": "#b5cea8"
|
|
391
|
+
}
|
|
368
392
|
}
|
|
@@ -1,13 +1,337 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "vscode://schemas/color-theme",
|
|
3
3
|
"name": "Dark High Contrast",
|
|
4
|
-
"include": "./hc_black_defaults.json",
|
|
5
4
|
"colors": {
|
|
5
|
+
"editor.background": "#000000",
|
|
6
|
+
"editor.foreground": "#FFFFFF",
|
|
7
|
+
"editorIndentGuide.background": "#FFFFFF",
|
|
8
|
+
"editorIndentGuide.activeBackground": "#FFFFFF",
|
|
9
|
+
"sideBarTitle.foreground": "#FFFFFF",
|
|
6
10
|
"selection.background": "#008000",
|
|
7
11
|
"editor.selectionBackground": "#FFFFFF",
|
|
8
|
-
"statusBarItem.remoteBackground": "#00000000"
|
|
12
|
+
"statusBarItem.remoteBackground": "#00000000",
|
|
13
|
+
"ports.iconRunningProcessForeground": "#FFFFFF",
|
|
14
|
+
"editorWhitespace.foreground": "#7c7c7c"
|
|
9
15
|
},
|
|
10
16
|
"tokenColors": [
|
|
17
|
+
{
|
|
18
|
+
"scope": [
|
|
19
|
+
"meta.embedded",
|
|
20
|
+
"source.groovy.embedded"
|
|
21
|
+
],
|
|
22
|
+
"settings": {
|
|
23
|
+
"foreground": "#FFFFFF"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"scope": "emphasis",
|
|
28
|
+
"settings": {
|
|
29
|
+
"fontStyle": "italic"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"scope": "strong",
|
|
34
|
+
"settings": {
|
|
35
|
+
"fontStyle": "bold"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"scope": "meta.diff.header",
|
|
40
|
+
"settings": {
|
|
41
|
+
"foreground": "#000080"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"scope": "comment",
|
|
46
|
+
"settings": {
|
|
47
|
+
"foreground": "#7ca668"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"scope": "constant.language",
|
|
52
|
+
"settings": {
|
|
53
|
+
"foreground": "#569cd6"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"scope": [
|
|
58
|
+
"constant.numeric",
|
|
59
|
+
"constant.other.color.rgb-value",
|
|
60
|
+
"constant.other.rgb-value",
|
|
61
|
+
"support.constant.color"
|
|
62
|
+
],
|
|
63
|
+
"settings": {
|
|
64
|
+
"foreground": "#b5cea8"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"scope": "constant.regexp",
|
|
69
|
+
"settings": {
|
|
70
|
+
"foreground": "#b46695"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"scope": "constant.character",
|
|
75
|
+
"settings": {
|
|
76
|
+
"foreground": "#569cd6"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"scope": "entity.name.tag",
|
|
81
|
+
"settings": {
|
|
82
|
+
"foreground": "#569cd6"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"scope": "entity.name.tag.css",
|
|
87
|
+
"settings": {
|
|
88
|
+
"foreground": "#d7ba7d"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"scope": "entity.other.attribute-name",
|
|
93
|
+
"settings": {
|
|
94
|
+
"foreground": "#9cdcfe"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"scope": [
|
|
99
|
+
"entity.other.attribute-name.class.css",
|
|
100
|
+
"entity.other.attribute-name.class.mixin.css",
|
|
101
|
+
"entity.other.attribute-name.id.css",
|
|
102
|
+
"entity.other.attribute-name.parent-selector.css",
|
|
103
|
+
"entity.other.attribute-name.pseudo-class.css",
|
|
104
|
+
"entity.other.attribute-name.pseudo-element.css",
|
|
105
|
+
"source.css.less entity.other.attribute-name.id",
|
|
106
|
+
"entity.other.attribute-name.scss"
|
|
107
|
+
],
|
|
108
|
+
"settings": {
|
|
109
|
+
"foreground": "#d7ba7d"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"scope": "invalid",
|
|
114
|
+
"settings": {
|
|
115
|
+
"foreground": "#f44747"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"scope": "markup.underline",
|
|
120
|
+
"settings": {
|
|
121
|
+
"fontStyle": "underline"
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"scope": "markup.bold",
|
|
126
|
+
"settings": {
|
|
127
|
+
"fontStyle": "bold"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"scope": "markup.heading",
|
|
132
|
+
"settings": {
|
|
133
|
+
"fontStyle": "bold",
|
|
134
|
+
"foreground": "#6796e6"
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"scope": "markup.italic",
|
|
139
|
+
"settings": {
|
|
140
|
+
"fontStyle": "italic"
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"scope": "markup.inserted",
|
|
145
|
+
"settings": {
|
|
146
|
+
"foreground": "#b5cea8"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"scope": "markup.deleted",
|
|
151
|
+
"settings": {
|
|
152
|
+
"foreground": "#ce9178"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"scope": "markup.changed",
|
|
157
|
+
"settings": {
|
|
158
|
+
"foreground": "#569cd6"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "brackets of XML/HTML tags",
|
|
163
|
+
"scope": [
|
|
164
|
+
"punctuation.definition.tag"
|
|
165
|
+
],
|
|
166
|
+
"settings": {
|
|
167
|
+
"foreground": "#808080"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"scope": "meta.preprocessor",
|
|
172
|
+
"settings": {
|
|
173
|
+
"foreground": "#569cd6"
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"scope": "meta.preprocessor.string",
|
|
178
|
+
"settings": {
|
|
179
|
+
"foreground": "#ce9178"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"scope": "meta.preprocessor.numeric",
|
|
184
|
+
"settings": {
|
|
185
|
+
"foreground": "#b5cea8"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"scope": "meta.structure.dictionary.key.python",
|
|
190
|
+
"settings": {
|
|
191
|
+
"foreground": "#9cdcfe"
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"scope": "storage",
|
|
196
|
+
"settings": {
|
|
197
|
+
"foreground": "#569cd6"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"scope": "storage.type",
|
|
202
|
+
"settings": {
|
|
203
|
+
"foreground": "#569cd6"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"scope": "storage.modifier",
|
|
208
|
+
"settings": {
|
|
209
|
+
"foreground": "#569cd6"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"scope": "string",
|
|
214
|
+
"settings": {
|
|
215
|
+
"foreground": "#ce9178"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"scope": "string.tag",
|
|
220
|
+
"settings": {
|
|
221
|
+
"foreground": "#ce9178"
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"scope": "string.value",
|
|
226
|
+
"settings": {
|
|
227
|
+
"foreground": "#ce9178"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"scope": "string.regexp",
|
|
232
|
+
"settings": {
|
|
233
|
+
"foreground": "#d16969"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"name": "String interpolation",
|
|
238
|
+
"scope": [
|
|
239
|
+
"punctuation.definition.template-expression.begin",
|
|
240
|
+
"punctuation.definition.template-expression.end",
|
|
241
|
+
"punctuation.section.embedded"
|
|
242
|
+
],
|
|
243
|
+
"settings": {
|
|
244
|
+
"foreground": "#569cd6"
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"name": "Reset JavaScript string interpolation expression",
|
|
249
|
+
"scope": [
|
|
250
|
+
"meta.template.expression"
|
|
251
|
+
],
|
|
252
|
+
"settings": {
|
|
253
|
+
"foreground": "#ffffff"
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"scope": [
|
|
258
|
+
"support.type.vendored.property-name",
|
|
259
|
+
"support.type.property-name",
|
|
260
|
+
"variable.css",
|
|
261
|
+
"variable.scss",
|
|
262
|
+
"variable.other.less",
|
|
263
|
+
"source.coffee.embedded"
|
|
264
|
+
],
|
|
265
|
+
"settings": {
|
|
266
|
+
"foreground": "#d4d4d4"
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"scope": "keyword",
|
|
271
|
+
"settings": {
|
|
272
|
+
"foreground": "#569cd6"
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"scope": "keyword.control",
|
|
277
|
+
"settings": {
|
|
278
|
+
"foreground": "#569cd6"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"scope": "keyword.operator",
|
|
283
|
+
"settings": {
|
|
284
|
+
"foreground": "#d4d4d4"
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"scope": [
|
|
289
|
+
"keyword.operator.new",
|
|
290
|
+
"keyword.operator.expression",
|
|
291
|
+
"keyword.operator.cast",
|
|
292
|
+
"keyword.operator.sizeof",
|
|
293
|
+
"keyword.operator.logical.python"
|
|
294
|
+
],
|
|
295
|
+
"settings": {
|
|
296
|
+
"foreground": "#569cd6"
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"scope": "keyword.other.unit",
|
|
301
|
+
"settings": {
|
|
302
|
+
"foreground": "#b5cea8"
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"scope": "support.function.git-rebase",
|
|
307
|
+
"settings": {
|
|
308
|
+
"foreground": "#d4d4d4"
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"scope": "constant.sha.git-rebase",
|
|
313
|
+
"settings": {
|
|
314
|
+
"foreground": "#b5cea8"
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"name": "coloring of the Java import and package identifiers",
|
|
319
|
+
"scope": [
|
|
320
|
+
"storage.modifier.import.java",
|
|
321
|
+
"variable.language.wildcard.java",
|
|
322
|
+
"storage.modifier.package.java"
|
|
323
|
+
],
|
|
324
|
+
"settings": {
|
|
325
|
+
"foreground": "#d4d4d4"
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"name": "coloring of the TS this",
|
|
330
|
+
"scope": "variable.language.this",
|
|
331
|
+
"settings": {
|
|
332
|
+
"foreground": "#569cd6"
|
|
333
|
+
}
|
|
334
|
+
},
|
|
11
335
|
{
|
|
12
336
|
"name": "Function declarations",
|
|
13
337
|
"scope": [
|
|
@@ -122,5 +446,12 @@
|
|
|
122
446
|
"foreground": "#CBEDCB"
|
|
123
447
|
}
|
|
124
448
|
}
|
|
125
|
-
]
|
|
449
|
+
],
|
|
450
|
+
"semanticHighlighting": true,
|
|
451
|
+
"semanticTokenColors": {
|
|
452
|
+
"newOperator": "#FFFFFF",
|
|
453
|
+
"stringLiteral": "#ce9178",
|
|
454
|
+
"customLiteral": "#DCDCAA",
|
|
455
|
+
"numberLiteral": "#b5cea8"
|
|
456
|
+
}
|
|
126
457
|
}
|
|
@@ -91,12 +91,23 @@
|
|
|
91
91
|
"variable",
|
|
92
92
|
"meta.definition.variable.name",
|
|
93
93
|
"support.variable",
|
|
94
|
-
"entity.name.variable"
|
|
94
|
+
"entity.name.variable",
|
|
95
|
+
"constant.other.placeholder"
|
|
95
96
|
],
|
|
96
97
|
"settings": {
|
|
97
98
|
"foreground": "#001080"
|
|
98
99
|
}
|
|
99
100
|
},
|
|
101
|
+
{
|
|
102
|
+
"name": "Constants and enums",
|
|
103
|
+
"scope": [
|
|
104
|
+
"variable.other.constant",
|
|
105
|
+
"variable.other.enummember"
|
|
106
|
+
],
|
|
107
|
+
"settings": {
|
|
108
|
+
"foreground": "#0070C1"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
100
111
|
{
|
|
101
112
|
"name": "Object keys, TS grammar specific",
|
|
102
113
|
"scope": [
|
|
@@ -159,7 +170,7 @@
|
|
|
159
170
|
"keyword.control.anchor.regexp"
|
|
160
171
|
],
|
|
161
172
|
"settings": {
|
|
162
|
-
"foreground": "#
|
|
173
|
+
"foreground": "#EE0000"
|
|
163
174
|
}
|
|
164
175
|
},
|
|
165
176
|
{
|
|
@@ -171,7 +182,7 @@
|
|
|
171
182
|
{
|
|
172
183
|
"scope": "constant.character.escape",
|
|
173
184
|
"settings": {
|
|
174
|
-
"foreground": "#
|
|
185
|
+
"foreground": "#EE0000"
|
|
175
186
|
}
|
|
176
187
|
},
|
|
177
188
|
{
|
|
@@ -180,5 +191,12 @@
|
|
|
180
191
|
"foreground": "#000000"
|
|
181
192
|
}
|
|
182
193
|
}
|
|
183
|
-
]
|
|
194
|
+
],
|
|
195
|
+
"semanticHighlighting": true,
|
|
196
|
+
"semanticTokenColors": {
|
|
197
|
+
"newOperator": "#AF00DB",
|
|
198
|
+
"stringLiteral": "#a31515",
|
|
199
|
+
"customLiteral": "#795E26",
|
|
200
|
+
"numberLiteral": "#098658"
|
|
201
|
+
}
|
|
184
202
|
}
|
|
@@ -1,7 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "vscode://schemas/color-theme",
|
|
3
3
|
"name": "Light (Visual Studio)",
|
|
4
|
-
"
|
|
4
|
+
"colors": {
|
|
5
|
+
"editor.background": "#FFFFFF",
|
|
6
|
+
"editor.foreground": "#000000",
|
|
7
|
+
"editor.inactiveSelectionBackground": "#E5EBF1",
|
|
8
|
+
"editorIndentGuide.background": "#D3D3D3",
|
|
9
|
+
"editorIndentGuide.activeBackground": "#939393",
|
|
10
|
+
"editor.selectionHighlightBackground": "#ADD6FF80",
|
|
11
|
+
"editorSuggestWidget.background": "#F3F3F3",
|
|
12
|
+
"activityBarBadge.background": "#007ACC",
|
|
13
|
+
"sideBarTitle.foreground": "#6F6F6F",
|
|
14
|
+
"list.hoverBackground": "#E8E8E8",
|
|
15
|
+
"input.placeholderForeground": "#767676",
|
|
16
|
+
"searchEditor.textInputBorder": "#CECECE",
|
|
17
|
+
"settings.textInputBorder": "#CECECE",
|
|
18
|
+
"settings.numberInputBorder": "#CECECE",
|
|
19
|
+
"statusBarItem.remoteForeground": "#FFF",
|
|
20
|
+
"statusBarItem.remoteBackground": "#16825D",
|
|
21
|
+
"ports.iconRunningProcessForeground": "#369432",
|
|
22
|
+
"sideBarSectionHeader.background": "#0000",
|
|
23
|
+
"sideBarSectionHeader.border": "#61616130",
|
|
24
|
+
"tab.lastPinnedBorder": "#61616130",
|
|
25
|
+
"notebook.cellBorderColor": "#E8E8E8",
|
|
26
|
+
"notebook.selectedCellBackground": "#c8ddf150",
|
|
27
|
+
"statusBarItem.errorBackground": "#c72e0f",
|
|
28
|
+
"list.activeSelectionIconForeground": "#FFF"
|
|
29
|
+
},
|
|
5
30
|
"tokenColors": [
|
|
6
31
|
{
|
|
7
32
|
"scope": [
|
|
@@ -45,13 +70,12 @@
|
|
|
45
70
|
{
|
|
46
71
|
"scope": [
|
|
47
72
|
"constant.numeric",
|
|
48
|
-
"entity.name.operator.custom-literal.number",
|
|
49
73
|
"variable.other.enummember",
|
|
50
74
|
"keyword.operator.plus.exponent",
|
|
51
75
|
"keyword.operator.minus.exponent"
|
|
52
76
|
],
|
|
53
77
|
"settings": {
|
|
54
|
-
"foreground": "#
|
|
78
|
+
"foreground": "#098658"
|
|
55
79
|
}
|
|
56
80
|
},
|
|
57
81
|
{
|
|
@@ -88,7 +112,6 @@
|
|
|
88
112
|
"entity.other.attribute-name.pseudo-class.css",
|
|
89
113
|
"entity.other.attribute-name.pseudo-element.css",
|
|
90
114
|
"source.css.less entity.other.attribute-name.id",
|
|
91
|
-
"entity.other.attribute-name.attribute.scss",
|
|
92
115
|
"entity.other.attribute-name.scss"
|
|
93
116
|
],
|
|
94
117
|
"settings": {
|
|
@@ -130,7 +153,7 @@
|
|
|
130
153
|
{
|
|
131
154
|
"scope": "markup.inserted",
|
|
132
155
|
"settings": {
|
|
133
|
-
"foreground": "#
|
|
156
|
+
"foreground": "#098658"
|
|
134
157
|
}
|
|
135
158
|
},
|
|
136
159
|
{
|
|
@@ -185,7 +208,7 @@
|
|
|
185
208
|
{
|
|
186
209
|
"scope": "meta.preprocessor.numeric",
|
|
187
210
|
"settings": {
|
|
188
|
-
"foreground": "#
|
|
211
|
+
"foreground": "#098658"
|
|
189
212
|
}
|
|
190
213
|
},
|
|
191
214
|
{
|
|
@@ -218,7 +241,6 @@
|
|
|
218
241
|
{
|
|
219
242
|
"scope": [
|
|
220
243
|
"string",
|
|
221
|
-
"entity.name.operator.custom-literal.string",
|
|
222
244
|
"meta.embedded.assembly"
|
|
223
245
|
],
|
|
224
246
|
"settings": {
|
|
@@ -346,7 +368,7 @@
|
|
|
346
368
|
{
|
|
347
369
|
"scope": "keyword.other.unit",
|
|
348
370
|
"settings": {
|
|
349
|
-
"foreground": "#
|
|
371
|
+
"foreground": "#098658"
|
|
350
372
|
}
|
|
351
373
|
},
|
|
352
374
|
{
|
|
@@ -367,7 +389,7 @@
|
|
|
367
389
|
{
|
|
368
390
|
"scope": "constant.sha.git-rebase",
|
|
369
391
|
"settings": {
|
|
370
|
-
"foreground": "#
|
|
392
|
+
"foreground": "#098658"
|
|
371
393
|
}
|
|
372
394
|
},
|
|
373
395
|
{
|
|
@@ -388,5 +410,12 @@
|
|
|
388
410
|
"foreground": "#0000ff"
|
|
389
411
|
}
|
|
390
412
|
}
|
|
391
|
-
]
|
|
413
|
+
],
|
|
414
|
+
"semanticHighlighting": true,
|
|
415
|
+
"semanticTokenColors": {
|
|
416
|
+
"newOperator": "#0000ff",
|
|
417
|
+
"stringLiteral": "#a31515",
|
|
418
|
+
"customLiteral": "#000000",
|
|
419
|
+
"numberLiteral": "#098658"
|
|
420
|
+
}
|
|
392
421
|
}
|
|
@@ -15,7 +15,7 @@ import { MonacoBulkEditService } from './monaco-bulk-edit-service';
|
|
|
15
15
|
import IEditorOverrideServices = monaco.editor.IEditorOverrideServices;
|
|
16
16
|
import { ApplicationServer } from '@theia/core/lib/common/application-protocol';
|
|
17
17
|
import { ContributionProvider } from '@theia/core';
|
|
18
|
-
import { KeybindingRegistry, OpenerService } from '@theia/core/lib/browser';
|
|
18
|
+
import { KeybindingRegistry, OpenerService, PreferenceValidationService } from '@theia/core/lib/browser';
|
|
19
19
|
import { MonacoToProtocolConverter } from './monaco-to-protocol-converter';
|
|
20
20
|
import { ProtocolToMonacoConverter } from './protocol-to-monaco-converter';
|
|
21
21
|
import { FileSystemPreferences } from '@theia/filesystem/lib/browser';
|
|
@@ -45,6 +45,7 @@ export declare class MonacoEditorProvider {
|
|
|
45
45
|
protected readonly openerService: OpenerService;
|
|
46
46
|
protected readonly filePreferences: FileSystemPreferences;
|
|
47
47
|
protected readonly quickInputService: MonacoQuickInputImplementation;
|
|
48
|
+
protected readonly preferenceValidator: PreferenceValidationService;
|
|
48
49
|
protected _current: MonacoEditor | undefined;
|
|
49
50
|
/**
|
|
50
51
|
* Returns the last focused MonacoEditor.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"monaco-editor-provider.d.ts","sourceRoot":"","sources":["../../src/browser/monaco-editor-provider.ts"],"names":[],"mappings":";AAiBA,OAAO,GAAG,MAAM,4BAA4B,CAAC;AAC7C,OAAO,EAAE,sBAAsB,EAAE,iBAAiB,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAGjH,OAAO,EAAE,oBAAoB,EAAa,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAErF,OAAO,EAAE,2BAA2B,EAAE,MAAM,0BAA0B,CAAC;AACvE,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAC;AAC7E,OAAO,EAAE,YAAY,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AACrE,OAAO,EAAE,iBAAiB,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACpF,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAEnE,OAAO,uBAAuB,GAAG,MAAM,CAAC,MAAM,CAAC,uBAAuB,CAAC;AACvE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6CAA6C,CAAC;AAChF,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AACnD,OAAO,EAAE,kBAAkB,EAAE,aAAa,EAAyC,MAAM,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"monaco-editor-provider.d.ts","sourceRoot":"","sources":["../../src/browser/monaco-editor-provider.ts"],"names":[],"mappings":"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"}
|