@lvce-editor/shared-process 0.0.2 → 0.0.6
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/config/builtinCommands.json +367 -0
- package/config/colorTheme.json +98 -0
- package/config/defaultKeyBindings.json +649 -0
- package/config/defaultSettings.json +17 -0
- package/extensions/builtin.theme-slime/README.md +5 -0
- package/extensions/builtin.theme-slime/color-theme.json +205 -0
- package/extensions/builtin.theme-slime/extension.json +13 -0
- package/extensions/builtin.theme-slime/icon.png +0 -0
- package/package.json +3 -3
- package/src/parts/Env/Env.js +1 -1
- package/src/parts/Platform/Platform.js +7 -0
- package/src/parts/Preferences/Preferences.js +3 -6
- package/src/parts/Root/Root.js +1 -1
- package/test/Callback.test.js +0 -42
- package/test/ClipBoard.test.js +0 -105
- package/test/Credentials.test.js +0 -147
- package/test/Developer.test.js +0 -34
- package/test/Electron.test.js +0 -93
- package/test/Error.test.js +0 -16
- package/test/Exec.test.js +0 -25
- package/test/ExtensionHost.test.js +0 -127
- package/test/ExtensionHostColorTheme.test.js +0 -141
- package/test/ExtensionHostCommand.test.js +0 -27
- package/test/ExtensionHostCompletion.test.js +0 -45
- package/test/ExtensionHostDefinition.test.js +0 -35
- package/test/ExtensionHostDiagnostic.test.js +0 -23
- package/test/ExtensionHostFileSystem.test.js +0 -91
- package/test/ExtensionHostFormatting.test.js +0 -27
- package/test/ExtensionHostIconTheme.test.js +0 -73
- package/test/ExtensionHostLanguages.test.js +0 -212
- package/test/ExtensionHostOutput.test.js +0 -23
- package/test/ExtensionHostRename.test.js +0 -59
- package/test/ExtensionHostSemanticTokens.test.js +0 -26
- package/test/ExtensionHostTabCompletion.test.js +0 -35
- package/test/ExtensionHostTextDocument.test.js +0 -61
- package/test/ExtensionHostTypeDefinition.test.js +0 -35
- package/test/ExtensionHostWorkspace.test.js +0 -21
- package/test/ExtensionManagement.test.js +0 -408
- package/test/FileSystem.test.js +0 -294
- package/test/Json.test.js +0 -25
- package/test/Native.test.js +0 -31
- package/test/OutputChannel.test.js +0 -68
- package/test/Path.test.js +0 -17
- package/test/Platform.test.js +0 -61
- package/test/Preferences.test.js +0 -140
- package/test/Process.test.js +0 -9
- package/test/RgPath.test.js +0 -5
- package/test/Search.test.js +0 -45
- package/test/SearchFile.test.js +0 -80
- package/test/Terminal.test.js +0 -53
- package/test/Trash.test.js +0 -34
- package/test/WebSocketServer.test.js +0 -98
- package/test/fixture-search-1/index.html +0 -10
- package/test/fixture-search-file-1/fileA +0 -0
- package/test/fixture-search-file-1/fileB +0 -0
- package/test/fixture-search-file-1/nested/fileC +0 -0
|
@@ -0,0 +1,367 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "layout.toggleSideBar",
|
|
4
|
+
"label": "Layout: Toggle Side Bar"
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
"id": "layout.togglePanel",
|
|
8
|
+
"label": "Layout: Toggle Panel"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"id": "layout.toggleActivityBar",
|
|
12
|
+
"label": "Layout: Toggle Activity Bar"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"id": "layout.toggleSideBarPosition",
|
|
16
|
+
"label": "Layout: Toggle Side Bar Position",
|
|
17
|
+
"aliases": ["Position Side Bar", "Move Side Bar", "Side Bar Location"]
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"id": "focus.output",
|
|
21
|
+
"label": "Focus: Output"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "focus.nextPart",
|
|
25
|
+
"label": "Focus: Next Part"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "focus.previousPart",
|
|
29
|
+
"label": "Focus: Previous Part"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"id": "focus.statusBar",
|
|
33
|
+
"label": "Focus: Status Bar"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "focus.problems",
|
|
37
|
+
"label": "Focus: Problems"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"id": "focus.debugConsole",
|
|
41
|
+
"label": "Focus: Debug Console"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"id": "focus.terminal",
|
|
45
|
+
"label": "Focus: Terminal"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"id": "terminal.clear",
|
|
49
|
+
"label": "Terminal: Clear"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": "terminal.paste",
|
|
53
|
+
"label": "Terminal: Paste"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"id": "terminal.kill",
|
|
57
|
+
"label": "Terminal: Kill active Instance"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": "terminal.scrollUpLine",
|
|
61
|
+
"label": "Terminal: Scroll Up Line"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"id": "terminal.scrollDownLine",
|
|
65
|
+
"label": "Terminal: Scroll Down Line"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"id": "terminal.scrollUpPage",
|
|
69
|
+
"label": "Terminal: Scroll Up Page"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"id": "terminal.scrollDownPage",
|
|
73
|
+
"label": "Terminal: Scroll Down Page"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"id": "focus.previousTerminal",
|
|
77
|
+
"label": "Focus: Previous Terminal"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"id": "focus.nextTerminal",
|
|
81
|
+
"label": "Focus: Next Terminal"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "terminal.split",
|
|
85
|
+
"label": "Terminal: Split"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"id": "terminal.toggleSelection",
|
|
89
|
+
"label": "Toggle Selection"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"id": "focus.explorer",
|
|
93
|
+
"label": "Focus: Explorer"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"id": "focus.search",
|
|
97
|
+
"label": "Focus: Search"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": "focus.sourceControl",
|
|
101
|
+
"label": "Focus: Source Control"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"id": "focus.debugAndRun",
|
|
105
|
+
"label": "Focus: Debug and Run"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"id": "focus.extensions",
|
|
109
|
+
"label": "Focus: Extensions"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"id": "preferences.openUserKeyBindings",
|
|
113
|
+
"label": "Preferences: Open User Key Bindings"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"id": "preferences.openDefaultKeyBindings",
|
|
117
|
+
"label": "Preferences: Open Default Key Bindings",
|
|
118
|
+
"aliases": ["Set Key Bindings", "Key Map", "Key Mapping"]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"id": "preferences.openSettingsJson",
|
|
122
|
+
"label": "Preferences: Open Settings",
|
|
123
|
+
"aliases": ["Change Settings", "Configure Settings", "Preferences"]
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"id": "extensions.openExtensionsFolder",
|
|
127
|
+
"label": "Extensions: Open Extensions Folder",
|
|
128
|
+
"deprecated": true,
|
|
129
|
+
"TODO": "add support for deprecated commands"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"id": "extensions.openCachedExtensionsFolder",
|
|
133
|
+
"label": "Extensions: Open Cached Extensions Folder"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": "focus.activityBar",
|
|
137
|
+
"label": "Focus: ActivityBar"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"id": "focus.titleBar",
|
|
141
|
+
"label": "Focus: Title Bar"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"id": "activityBar.focusNext",
|
|
145
|
+
"label": "ActivityBar: Focus Next"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"id": "activityBar.focusPrevious",
|
|
149
|
+
"label": "activityBar: Focus Previous"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"id": "activityBar.focusFirst",
|
|
153
|
+
"label": "ActivityBar: Focus First"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"id": "activityBar.focusLast",
|
|
157
|
+
"label": "ActivityBar: Focus Last"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"id": "developer.showMemoryUsage",
|
|
161
|
+
"label": "Developer: Show Memory Usage"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"id": "developer.allocateMemoryInSharedProcess",
|
|
165
|
+
"label": "Developer: Allocate Memory in Shared Process"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"id": "developer.crashSharedProcess",
|
|
169
|
+
"label": "Developer: Crash Shared Process"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"id": "developer.crashMainProcess",
|
|
173
|
+
"label": "Developer: Crash Main Process"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"id": "developer.createSharedProcessHeapSnapshot",
|
|
177
|
+
"label": "Developer: Create Shared Process Heap Snapshot"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"id": "developer.createSharedProcessProfile",
|
|
181
|
+
"label": "Developer: Create Shared Process Profile"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"id": "developer.clearCache",
|
|
185
|
+
"label": "Developer: Clear Cache"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"id": "developer.openConfigFolder",
|
|
189
|
+
"label": "Developer: Open Config Folder"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"id": "developer.openCacheFolder",
|
|
193
|
+
"label": "Developer: Open Cache Folder"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"id": "developer.openDataFolder",
|
|
197
|
+
"label": "Developer: Open Data Folder"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"id": "preferences.selectColorTheme",
|
|
201
|
+
"label": "Preferences: Color Theme",
|
|
202
|
+
"aliases": ["Select Color Theme", "Switch Color Theme", "Theme Color"]
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"id": "developer.measureLatencyBetweenExtensionHostAndSharedProcess",
|
|
206
|
+
"label": "Developer: Measure Latency Between Extension Host and Shared Process"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"id": "developer.measureLatencyBetweenSharedProcessAndRendererProcess",
|
|
210
|
+
"label": "Developer: Measure Latency Between Shared Process and Renderer Process"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"id": "developer.showState",
|
|
214
|
+
"label": "Developer: Show state"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"id": "developer.startupPerformance",
|
|
218
|
+
"label": "Developer: Startup Performance"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"id": "developer.toggleDeveloperTools",
|
|
222
|
+
"label": "Developer: Toggle Developer Tools"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"id": "window.reload",
|
|
226
|
+
"label": "Window: Reload",
|
|
227
|
+
"aliases": ["Reload Window"]
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"id": "window.close",
|
|
231
|
+
"label": "Window: Close",
|
|
232
|
+
"aliases": ["Close Window"]
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"id": "window.minimize",
|
|
236
|
+
"label": "Window: Minimize",
|
|
237
|
+
"aliases": ["Minimize Window"]
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"id": "window.maximize",
|
|
241
|
+
"label": "Window: Maximize",
|
|
242
|
+
"aliases": ["Maximize Window"]
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"id": "window.unmaximize",
|
|
246
|
+
"label": "Window: Unmaximize",
|
|
247
|
+
"aliases": ["Unmaximize Window"]
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"id": "window.makeScreenshot",
|
|
251
|
+
"label": "Window: Make Screenshot"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"id": "main.closeEditor",
|
|
255
|
+
"label": "Main: Close Editor"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"id": "main.closeAllEditors",
|
|
259
|
+
"label": "Main: Close all editors"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"id": "editor.indent",
|
|
263
|
+
"label": "Editor: Indent",
|
|
264
|
+
"aliases": ["Indent More", "DeIndent"]
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"id": "editor.unindent",
|
|
268
|
+
"label": "Editor: Unindent",
|
|
269
|
+
"aliases": ["Indent Less", "DeIndent"]
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"id": "editor.toggleComment",
|
|
273
|
+
"label": "Editor: Toggle Comment"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"id": "editor.toggleBlockComment",
|
|
277
|
+
"label": "Editor: Toggle Block Comment"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"id": "editor.openColorPicker",
|
|
281
|
+
"label": "Editor: Open Color Picker"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"id": "editor.closeColorPicker",
|
|
285
|
+
"label": "Editor: Close Color Picker"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"id": "editor.copyLineDown",
|
|
289
|
+
"label": "Editor: Copy Line Down"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"id": "editor.copyLineUp",
|
|
293
|
+
"label": "Editor: Copy Line Up"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"id": "editor.moveLineDown",
|
|
297
|
+
"label": "Editor: Move Line Down"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"id": "editor.moveLineUp",
|
|
301
|
+
"label": "Editor: Move Line Up"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"id": "file.openFolder",
|
|
305
|
+
"label": "File: Open Folder"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"id": "file.openRecent",
|
|
309
|
+
"label": "File: Open Recent"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"id": "help.about",
|
|
313
|
+
"label": "Help: About"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"id": "editor.format",
|
|
317
|
+
"label": "Editor: Format Document"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"id": "editor.formatForced",
|
|
321
|
+
"label": "Editor: Format Document (forced)"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"id": "editor.selectNextOccurrence",
|
|
325
|
+
"label": "Editor: Select Next Occurrence"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"id": "editor.selectAllOccurrences",
|
|
329
|
+
"label": "Editor: Select All Occurrences"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"id": "editor.goToDefinition",
|
|
333
|
+
"label": "Editor: Go To Definition"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"id": "editor.goToTypeDefinition",
|
|
337
|
+
"label": "Editor: Go To Type Definition"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"id": "editor.selectInsideString",
|
|
341
|
+
"label": "Editor: Select Inside String"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"id": "audio.playBell",
|
|
345
|
+
"label": "Audio: Play Bell"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"id": "serviceWorker.uninstall",
|
|
349
|
+
"label": "Service Worker: Uninstall"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"id": "developer.openLogsFolder",
|
|
353
|
+
"label": "Developer: Open Logs Folder"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"id": "developer.openProcessExplorer",
|
|
357
|
+
"label": "Developer: Open Process Explorer"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"id": "viewletExplorer.collapseAll",
|
|
361
|
+
"label": "Explorer: Collapse All"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"id": "viewletExplorer.expandAll",
|
|
365
|
+
"label": "Explorer: Expand All"
|
|
366
|
+
}
|
|
367
|
+
]
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "dark",
|
|
3
|
+
"colors": {
|
|
4
|
+
"ActivityBarBackground": "rgb(40, 46, 47)",
|
|
5
|
+
"ActivityBarForeground": "#878f8c",
|
|
6
|
+
"ActivityBarActiveBackground": "#1f2727",
|
|
7
|
+
|
|
8
|
+
"EditorBackGround": "#1e2324",
|
|
9
|
+
"EditorScrollBarBackground": "rgba(57, 71, 71, 0.6)",
|
|
10
|
+
"EditorCursorBackground": "#a8df5a",
|
|
11
|
+
|
|
12
|
+
"ListActiveSelectionBackground": "#515f59",
|
|
13
|
+
"ListActiveSelectionForeground": "#ffffff",
|
|
14
|
+
"ListHoverBackground": "#405c5033",
|
|
15
|
+
"ListHoverForeground": "#e0e0e0",
|
|
16
|
+
"ListInactiveSelectionBackground": "#3b474280",
|
|
17
|
+
|
|
18
|
+
"MainBackground": "#1e2324",
|
|
19
|
+
|
|
20
|
+
"PanelBackground": "#1b2020",
|
|
21
|
+
"PanelBorderTopColor": "rgba(128, 128, 128, 0.35)",
|
|
22
|
+
|
|
23
|
+
"SideBarBackground": "#1b2020",
|
|
24
|
+
|
|
25
|
+
"StatusBarBackground": "rgb(40, 46, 47)",
|
|
26
|
+
"StatusBarBorderTopColor": "#222222",
|
|
27
|
+
|
|
28
|
+
"TabActiveBackground": "#24292a",
|
|
29
|
+
"TabInactiveBackground": "#282e2f",
|
|
30
|
+
|
|
31
|
+
"TitleBarBackground": "rgb(40, 46, 47)",
|
|
32
|
+
"TitleBarBorderBottomColor": "#222",
|
|
33
|
+
"TitleBarColor": "#cccccc",
|
|
34
|
+
"TitleBarColorInactive": "rgba(204, 204, 204, 0.6)"
|
|
35
|
+
},
|
|
36
|
+
"tokenColors": [
|
|
37
|
+
{
|
|
38
|
+
"name": "TagName",
|
|
39
|
+
"foreground": "#C9B567"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "AttributeName",
|
|
43
|
+
"foreground": "#9AB383"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "String",
|
|
47
|
+
"foreground": "#82A2B4"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "Comment",
|
|
51
|
+
"foreground": "#6E7573"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "CssPropertyName",
|
|
55
|
+
"foreground": "#83A5A1"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "CssSelector",
|
|
59
|
+
"foreground": "#BEB558"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "CssPropertyValue",
|
|
63
|
+
"foreground": "#C0C0C3"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "Punctuation",
|
|
67
|
+
"foreground": "#CCD2BE"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "PunctuationTag",
|
|
71
|
+
"foreground": "#929292"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "PunctuationString",
|
|
75
|
+
"foreground": "#C0C0C0"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "PropertyName",
|
|
79
|
+
"foreground": "#A8B298"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "LanguageConstant",
|
|
83
|
+
"foreground": "#AB6767"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "Variable",
|
|
87
|
+
"foreground": "#BE9296"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "Keyword",
|
|
91
|
+
"foreground": "#D88F56"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "Numeric",
|
|
95
|
+
"foreground": "#B081B9"
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
}
|