@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.
Files changed (56) hide show
  1. package/config/builtinCommands.json +367 -0
  2. package/config/colorTheme.json +98 -0
  3. package/config/defaultKeyBindings.json +649 -0
  4. package/config/defaultSettings.json +17 -0
  5. package/extensions/builtin.theme-slime/README.md +5 -0
  6. package/extensions/builtin.theme-slime/color-theme.json +205 -0
  7. package/extensions/builtin.theme-slime/extension.json +13 -0
  8. package/extensions/builtin.theme-slime/icon.png +0 -0
  9. package/package.json +3 -3
  10. package/src/parts/Env/Env.js +1 -1
  11. package/src/parts/Platform/Platform.js +7 -0
  12. package/src/parts/Preferences/Preferences.js +3 -6
  13. package/src/parts/Root/Root.js +1 -1
  14. package/test/Callback.test.js +0 -42
  15. package/test/ClipBoard.test.js +0 -105
  16. package/test/Credentials.test.js +0 -147
  17. package/test/Developer.test.js +0 -34
  18. package/test/Electron.test.js +0 -93
  19. package/test/Error.test.js +0 -16
  20. package/test/Exec.test.js +0 -25
  21. package/test/ExtensionHost.test.js +0 -127
  22. package/test/ExtensionHostColorTheme.test.js +0 -141
  23. package/test/ExtensionHostCommand.test.js +0 -27
  24. package/test/ExtensionHostCompletion.test.js +0 -45
  25. package/test/ExtensionHostDefinition.test.js +0 -35
  26. package/test/ExtensionHostDiagnostic.test.js +0 -23
  27. package/test/ExtensionHostFileSystem.test.js +0 -91
  28. package/test/ExtensionHostFormatting.test.js +0 -27
  29. package/test/ExtensionHostIconTheme.test.js +0 -73
  30. package/test/ExtensionHostLanguages.test.js +0 -212
  31. package/test/ExtensionHostOutput.test.js +0 -23
  32. package/test/ExtensionHostRename.test.js +0 -59
  33. package/test/ExtensionHostSemanticTokens.test.js +0 -26
  34. package/test/ExtensionHostTabCompletion.test.js +0 -35
  35. package/test/ExtensionHostTextDocument.test.js +0 -61
  36. package/test/ExtensionHostTypeDefinition.test.js +0 -35
  37. package/test/ExtensionHostWorkspace.test.js +0 -21
  38. package/test/ExtensionManagement.test.js +0 -408
  39. package/test/FileSystem.test.js +0 -294
  40. package/test/Json.test.js +0 -25
  41. package/test/Native.test.js +0 -31
  42. package/test/OutputChannel.test.js +0 -68
  43. package/test/Path.test.js +0 -17
  44. package/test/Platform.test.js +0 -61
  45. package/test/Preferences.test.js +0 -140
  46. package/test/Process.test.js +0 -9
  47. package/test/RgPath.test.js +0 -5
  48. package/test/Search.test.js +0 -45
  49. package/test/SearchFile.test.js +0 -80
  50. package/test/Terminal.test.js +0 -53
  51. package/test/Trash.test.js +0 -34
  52. package/test/WebSocketServer.test.js +0 -98
  53. package/test/fixture-search-1/index.html +0 -10
  54. package/test/fixture-search-file-1/fileA +0 -0
  55. package/test/fixture-search-file-1/fileB +0 -0
  56. package/test/fixture-search-file-1/nested/fileC +0 -0
@@ -0,0 +1,649 @@
1
+ [
2
+ {
3
+ "key": "ArrowDown",
4
+ "command": "editorCompletion.focusNext",
5
+ "when": "focus.editorCompletions"
6
+ },
7
+ {
8
+ "key": "ArrowUp",
9
+ "command": "editorCompletion.focusPrevious",
10
+ "when": "focus.editorCompletions"
11
+ },
12
+ {
13
+ "key": "Enter",
14
+ "command": "editorCompletion.selectCurrent",
15
+ "when": "focus.editorCompletions"
16
+ },
17
+ {
18
+ "key": "Escape",
19
+ "command": "editorCompletion.close",
20
+ "when": "focus.editorCompletions"
21
+ },
22
+ {
23
+ "key": "ctrl+ArrowRight",
24
+ "command": "editor.cursorWordRight",
25
+ "when": "focus.ViewletEditorText"
26
+ },
27
+ {
28
+ "key": "ctrl+ArrowLeft",
29
+ "command": "editor.cursorWordLeft",
30
+ "when": "focus.ViewletEditorText"
31
+ },
32
+ {
33
+ "key": "alt+Backspace",
34
+ "command": "editor.deleteWordPartLeft",
35
+ "when": "focus.ViewletEditorText"
36
+ },
37
+ {
38
+ "key": "alt+Delete",
39
+ "command": "editor.deleteWordPartRight",
40
+ "when": "focus.ViewletEditorText"
41
+ },
42
+ {
43
+ "key": "ctrl+Backspace",
44
+ "command": "editor.deleteWordLeft",
45
+ "when": "focus.ViewletEditorText"
46
+ },
47
+ {
48
+ "key": "Enter",
49
+ "command": "editorRename.finish",
50
+ "when": "focus.editorRename"
51
+ },
52
+ {
53
+ "key": "Escape",
54
+ "command": "editorRename.abort",
55
+ "when": "focus.editorRename"
56
+ },
57
+ {
58
+ "key": "ctrl+Delete",
59
+ "command": "editor.deleteWordRight",
60
+ "when": "focus.ViewletEditorText"
61
+ },
62
+ {
63
+ "key": "ctrl+d",
64
+ "command": "editor.selectNextOccurrence",
65
+ "when": "focus.ViewletEditorText"
66
+ },
67
+ {
68
+ "key": "Tab",
69
+ "command": "editor.handleTab",
70
+ "when": "focus.ViewletEditorText"
71
+ },
72
+ {
73
+ "key": "shift+Tab",
74
+ "command": "editor.unindent",
75
+ "when": "focus.ViewletEditorText"
76
+ },
77
+ {
78
+ "key": "ctrl+[",
79
+ "command": "editor.indentLess",
80
+ "when": "focus.ViewletEditorText"
81
+ },
82
+ {
83
+ "key": "ctrl+]",
84
+ "command": "editor.indentMore",
85
+ "when": "focus.ViewletEditorText"
86
+ },
87
+ {
88
+ "key": "shift+ArrowLeft",
89
+ "command": "editor.selectCharacterLeft",
90
+ "when": "focus.ViewletEditorText"
91
+ },
92
+ {
93
+ "key": "ctrl+shift+ArrowLeft",
94
+ "command": "editor.selectWordLeft",
95
+ "when": "focus.ViewletEditorText"
96
+ },
97
+ {
98
+ "key": "shift+ArrowRight",
99
+ "command": "editor.selectCharacterRight",
100
+ "when": "focus.ViewletEditorText"
101
+ },
102
+ {
103
+ "key": "ctrl+shift+ArrowRight",
104
+ "command": "editor.selectWordRight",
105
+ "when": "focus.ViewletEditorText"
106
+ },
107
+ {
108
+ "key": "ctrl+l",
109
+ "command": "editor.selectLine",
110
+ "when": "focus.ViewletEditorText"
111
+ },
112
+ {
113
+ "key": "ctrl+shift+Backspace",
114
+ "command": "editor.deleteAllLeft",
115
+ "when": "focus.ViewletEditorText"
116
+ },
117
+ {
118
+ "key": "ctrl+shift+Delete",
119
+ "command": "editor.deleteAllRight",
120
+ "when": "focus.ViewletEditorText"
121
+ },
122
+ {
123
+ "key": "ctrl+s",
124
+ "command": "main.save"
125
+ },
126
+ {
127
+ "key": "ctrl+b",
128
+ "command": "layout.toggleSideBar"
129
+ },
130
+ {
131
+ "key": "ctrl+m",
132
+ "command": "layout.toggleActivityBar"
133
+ },
134
+ {
135
+ "key": "ctrl+`",
136
+ "command": "viewService.toggleView",
137
+ "args": ["Terminal"]
138
+ },
139
+ {
140
+ "key": "ctrl+shift+m",
141
+ "command": "viewService.toggleView",
142
+ "args": ["Output"]
143
+ },
144
+ {
145
+ "key": "ctrl+Enter",
146
+ "command": "viewletSourceControl.acceptInput",
147
+ "when": "focus.sourceControlInput"
148
+ },
149
+ {
150
+ "key": "ctrl+n",
151
+ "command": "viewletExplorer.newFile"
152
+ },
153
+ {
154
+ "key": "ctrl+p",
155
+ "command": "quickPick.show"
156
+ },
157
+ {
158
+ "key": "ctrl+shift+p",
159
+ "command": "quickPick.openCommandPalette"
160
+ },
161
+ {
162
+ "key": "shift shift",
163
+ "command": "quickPick.openCommandPalette"
164
+ },
165
+ {
166
+ "key": "ctrl ctrl",
167
+ "command": "quickPick.openCommandPalette"
168
+ },
169
+ {
170
+ "key": "alt alt",
171
+ "command": "quickPick.openCommandPalette"
172
+ },
173
+ {
174
+ "key": "F1",
175
+ "command": "quickPick.openCommandPalette"
176
+ },
177
+ {
178
+ "key": "Escape",
179
+ "command": "quickPick.hide",
180
+ "when": "focus.quickPickInput"
181
+ },
182
+ {
183
+ "key": "ArrowUp",
184
+ "command": "quickPick.focusPrevious",
185
+ "when": "focus.quickPickInput"
186
+ },
187
+ {
188
+ "key": "ArrowDown",
189
+ "command": "quickPick.focusNext",
190
+ "when": "focus.quickPickInput"
191
+ },
192
+ {
193
+ "key": "PageUp",
194
+ "command": "quickPick.focusFirst",
195
+ "when": "focus.quickPickInput"
196
+ },
197
+ {
198
+ "key": "PageDown",
199
+ "command": "quickPick.focusLast",
200
+ "when": "focus.quickPickInput"
201
+ },
202
+ {
203
+ "key": "Enter",
204
+ "command": "quickPick.selectCurrentIndex",
205
+ "when": "focus.quickPickInput"
206
+ },
207
+ {
208
+ "key": "ctrl+shift+x",
209
+ "command": "focus.set",
210
+ "args": ["Extensions"]
211
+ },
212
+ {
213
+ "key": "ctrl+shift+g",
214
+ "command": "focus.set",
215
+ "args": ["Source Control"]
216
+ },
217
+ {
218
+ "key": "ctrl+shift+e",
219
+ "command": "focus.set",
220
+ "args": ["Explorer"]
221
+ },
222
+ {
223
+ "key": "ctrl+shift+f",
224
+ "command": "focus.set",
225
+ "args": ["Search"]
226
+ },
227
+ {
228
+ "key": "ctrl+shift+Y",
229
+ "command": "focus.set",
230
+ "args": ["Debug Console"]
231
+ },
232
+ {
233
+ "key": "ctrl+shift+m",
234
+ "command": "focus.set",
235
+ "args": ["Problems"]
236
+ },
237
+ {
238
+ "key": "ArrowRight",
239
+ "command": "viewletExplorer.handleArrowRight",
240
+ "when": "focus.ViewletExplorer"
241
+ },
242
+ {
243
+ "key": "ArrowLeft",
244
+ "command": "viewletExplorer.handleArrowLeft",
245
+ "when": "focus.ViewletExplorer"
246
+ },
247
+ {
248
+ "key": "Home",
249
+ "command": "viewletExplorer.focusFirst",
250
+ "when": "focus.ViewletExplorer"
251
+ },
252
+ {
253
+ "key": "End",
254
+ "command": "viewletExplorer.focusLast",
255
+ "when": "focus.ViewletExplorer"
256
+ },
257
+ {
258
+ "key": "ArrowUp",
259
+ "command": "viewletExplorer.focusPrevious",
260
+ "when": "focus.ViewletExplorer"
261
+ },
262
+ {
263
+ "key": "ArrowDown",
264
+ "command": "viewletExplorer.focusNext",
265
+ "when": "focus.ViewletExplorer"
266
+ },
267
+ {
268
+ "key": "shift+*",
269
+ "command": "viewletExplorer.expandAll",
270
+ "when": "focus.ViewletExplorer"
271
+ },
272
+ {
273
+ "key": "ctrl+ArrowLeft",
274
+ "command": "viewletExplorer.collapseAll",
275
+ "when": "focus.ViewletExplorer"
276
+ },
277
+ {
278
+ "key": "Home",
279
+ "command": "viewletExtensions.focusFirst",
280
+ "when": "focus.viewletExtensions"
281
+ },
282
+ {
283
+ "key": "End",
284
+ "command": "viewletExtensions.focusLast",
285
+ "when": "focus.viewletExtensions"
286
+ },
287
+ {
288
+ "key": "PageUp",
289
+ "command": "viewletExtensions.focusPreviousPage",
290
+ "when": "focus.viewletExtensions"
291
+ },
292
+ {
293
+ "key": "PageDown",
294
+ "command": "viewletExtensions.focusNextPage",
295
+ "when": "focus.viewletExtensions"
296
+ },
297
+ {
298
+ "key": "ArrowUp",
299
+ "command": "viewletExtensions.focusPrevious",
300
+ "when": "focus.viewletExtensions"
301
+ },
302
+ {
303
+ "key": "ArrowDown",
304
+ "command": "viewletExtensions.focusNext",
305
+ "when": "focus.viewletExtensions"
306
+ },
307
+ {
308
+ "key": "ctrl+Space",
309
+ "command": "viewletExtensions.toggleSuggest",
310
+ "when": "focus.viewletExtensions"
311
+ },
312
+ {
313
+ "key": "F2",
314
+ "command": "viewletExplorer.rename",
315
+ "when": "focus.ViewletExplorer"
316
+ },
317
+ {
318
+ "key": "Escape",
319
+ "command": "viewletExplorer.cancelRename",
320
+ "when": "focus.viewletExplorerRename"
321
+ },
322
+ {
323
+ "key": "Enter",
324
+ "command": "viewletExplorer.acceptRename",
325
+ "when": "focus.viewletExplorerRename"
326
+ },
327
+ {
328
+ "key": "Escape",
329
+ "command": "viewletExplorer.cancelNewFile",
330
+ "when": "focus.viewletExplorerCreateFile"
331
+ },
332
+ {
333
+ "key": "Enter",
334
+ "command": "viewletExplorer.acceptNewFile",
335
+ "when": "focus.viewletExplorerCreateFile"
336
+ },
337
+ {
338
+ "key": "Delete",
339
+ "command": "viewletExplorer.removeDirent",
340
+ "when": "focus.ViewletExplorer"
341
+ },
342
+ {
343
+ "key": "Space",
344
+ "command": "viewletExplorer.handleClickCurrent",
345
+ "when": "focus.ViewletExplorer"
346
+ },
347
+ {
348
+ "key": "Enter",
349
+ "command": "viewletExplorer.handleClickCurrent",
350
+ "when": "focus.ViewletExplorer"
351
+ },
352
+ {
353
+ "key": "Escape",
354
+ "command": "editor.cancelSelection",
355
+ "when": "focus.ViewletEditorText"
356
+ },
357
+ {
358
+ "key": "ctrl+z",
359
+ "command": "editor.undo",
360
+ "when": "focus.ViewletEditorText"
361
+ },
362
+ {
363
+ "key": "ctrl+,",
364
+ "command": "preferences.openSettingsJson"
365
+ },
366
+ {
367
+ "key": "ArrowLeft",
368
+ "command": "editor.cursorLeft",
369
+ "when": "focus.ViewletEditorText"
370
+ },
371
+ {
372
+ "key": "ArrowRight",
373
+ "command": "editor.cursorRight",
374
+ "when": "focus.ViewletEditorText"
375
+ },
376
+ {
377
+ "key": "ArrowUp",
378
+ "command": "editor.cursorUp",
379
+ "when": "focus.ViewletEditorText"
380
+ },
381
+ {
382
+ "key": "ArrowDown",
383
+ "command": "editor.cursorDown",
384
+ "when": "focus.ViewletEditorText"
385
+ },
386
+ {
387
+ "key": "Backspace",
388
+ "command": "editor.deleteLeft",
389
+ "when": "focus.ViewletEditorText"
390
+ },
391
+ {
392
+ "key": "Delete",
393
+ "command": "editor.deleteRight",
394
+ "when": "focus.ViewletEditorText"
395
+ },
396
+ {
397
+ "key": "Enter",
398
+ "command": "editor.insertLineBreak",
399
+ "when": "focus.ViewletEditorText"
400
+ },
401
+ {
402
+ "key": "ctrl+shift+d",
403
+ "command": "editor.copyLineDown",
404
+ "when": "focus.ViewletEditorText"
405
+ },
406
+ {
407
+ "key": "ctrl+shift+d",
408
+ "command": "focus.set",
409
+ "args": ["Run and Debug"]
410
+ },
411
+ {
412
+ "key": "ctrl+shift+ArrowDown",
413
+ "command": "editor.moveLineDown",
414
+ "when": "focus.ViewletEditorText"
415
+ },
416
+ {
417
+ "key": "ctrl+shift+ArrowUp",
418
+ "command": "editor.moveLineUp",
419
+ "when": "focus.ViewletEditorText"
420
+ },
421
+ {
422
+ "key": "ctrl+Space",
423
+ "command": "editorCompletion.open",
424
+ "when": "focus.ViewletEditorText"
425
+ },
426
+ {
427
+ "key": "F2",
428
+ "command": "editorRename.open",
429
+ "when": "focus.ViewletEditorText"
430
+ },
431
+ {
432
+ "key": "Home",
433
+ "command": "editor.cursorHome",
434
+ "when": "focus.ViewletEditorText"
435
+ },
436
+ {
437
+ "key": "End",
438
+ "command": "editor.cursorEnd",
439
+ "when": "focus.ViewletEditorText"
440
+ },
441
+ {
442
+ "key": "ctrl+/",
443
+ "command": "editor.toggleComment",
444
+ "when": "focus.ViewletEditorText"
445
+ },
446
+ {
447
+ "key": "ArrowDown",
448
+ "command": "activityBar.focusNext",
449
+ "when": "focus.activityBar"
450
+ },
451
+ {
452
+ "key": "ArrowUp",
453
+ "command": "activityBar.focusPrevious",
454
+ "when": "focus.activityBar"
455
+ },
456
+ {
457
+ "key": "Home",
458
+ "command": "activityBar.focusFirst",
459
+ "when": "focus.activityBar"
460
+ },
461
+ {
462
+ "key": "PageUp",
463
+ "command": "activityBar.focusFirst",
464
+ "when": "focus.activityBar"
465
+ },
466
+ {
467
+ "key": "PageDown",
468
+ "command": "activityBar.focusLast",
469
+ "when": "focus.activityBar"
470
+ },
471
+ {
472
+ "key": "End",
473
+ "command": "activityBar.focusLast",
474
+ "when": "focus.activityBar"
475
+ },
476
+ {
477
+ "key": "Space",
478
+ "command": "activityBar.selectCurrent",
479
+ "when": "focus.activityBar"
480
+ },
481
+ {
482
+ "key": "Enter",
483
+ "command": "activityBar.selectCurrent",
484
+ "when": "focus.activityBar"
485
+ },
486
+ {
487
+ "key": "Home",
488
+ "command": "activityBar.focusFirst",
489
+ "when": "focus.activityBar"
490
+ },
491
+ {
492
+ "key": "End",
493
+ "command": "activityBar.focusLast",
494
+ "when": "focus.activityBar"
495
+ },
496
+ {
497
+ "key": "ctrl+c",
498
+ "command": "editor.copy",
499
+ "when": "focus.ViewletEditorText"
500
+ },
501
+ {
502
+ "key": "ctrl+a",
503
+ "command": "editor.selectAll",
504
+ "when": "focus.ViewletEditorText"
505
+ },
506
+ {
507
+ "key": "alt+ArrowLeft",
508
+ "command": "editor.cursorWordPartLeft",
509
+ "when": "focus.ViewletEditorText"
510
+ },
511
+ {
512
+ "key": "alt+ArrowRight",
513
+ "command": "editor.cursorWordPartRight",
514
+ "when": "focus.ViewletEditorText"
515
+ },
516
+ {
517
+ "key": "ctrl+w",
518
+ "command": "main.closeActiveEditor"
519
+ },
520
+ {
521
+ "key": "ctrl+shift+i",
522
+ "command": "developer.toggleDeveloperTools",
523
+ "when": "browser.electron"
524
+ },
525
+ {
526
+ "key": "F6",
527
+ "command": "navigation.focusNextPart"
528
+ },
529
+ {
530
+ "key": "shift+F6",
531
+ "command": "navigation.focusPreviousPart"
532
+ },
533
+ {
534
+ "key": "alt+F3",
535
+ "command": "editor.selectAllOccurrences",
536
+ "when": "focus.ViewletEditorText"
537
+ },
538
+ {
539
+ "key": "ctrl+g",
540
+ "command": "quickPick.openGoToLine"
541
+ },
542
+ {
543
+ "key": "ctrl+shift+Space",
544
+ "command": "editor.selectInsideString",
545
+ "when": "focus.editor"
546
+ },
547
+ {
548
+ "key": "ctrl+Tab",
549
+ "command": "main.focusNext"
550
+ },
551
+ {
552
+ "key": "ctrl+shift+Tab",
553
+ "command": "main.focusPrevious"
554
+ },
555
+ {
556
+ "key": "Escape",
557
+ "command": "dialog.close",
558
+ "when": "focus.dialog"
559
+ },
560
+ {
561
+ "key": "ctrl+v",
562
+ "command": "viewletExplorer.handlePaste",
563
+ "when": "focus.ViewletExplorer"
564
+ },
565
+ {
566
+ "key": "ctrl+c",
567
+ "command": "viewletExplorer.handleCopy",
568
+ "when": "focus.ViewletExplorer"
569
+ },
570
+ {
571
+ "key": "ArrowDown",
572
+ "command": "menu.focusNext",
573
+ "when": "focus.menu"
574
+ },
575
+ {
576
+ "key": "ArrowUp",
577
+ "command": "menu.focusPrevious",
578
+ "when": "focus.menu"
579
+ },
580
+ {
581
+ "key": "Enter",
582
+ "command": "menu.selectCurrent",
583
+ "when": "focus.menu"
584
+ },
585
+ {
586
+ "key": "Space",
587
+ "command": "menu.selectCurrent",
588
+ "when": "focus.menu"
589
+ },
590
+ {
591
+ "key": "Home",
592
+ "command": "menu.focusFirst",
593
+ "when": "focus.menu"
594
+ },
595
+ {
596
+ "key": "End",
597
+ "command": "menu.focusLast",
598
+ "when": "focus.menu"
599
+ },
600
+ {
601
+ "key": "Escape",
602
+ "command": "menu.hide",
603
+ "when": "focus.menu"
604
+ },
605
+ {
606
+ "key": "ctrl+shift+n",
607
+ "command": "workbench.newWindow",
608
+ "when": "browser.electron"
609
+ },
610
+ {
611
+ "key": "Tab",
612
+ "command": "menu.noop",
613
+ "when": "focus.menu"
614
+ },
615
+ {
616
+ "key": "Shift+Tab",
617
+ "command": "menu.noop",
618
+ "when": "focus.menu"
619
+ },
620
+ {
621
+ "key": "ctrl+shift+r",
622
+ "command": "file.openRecent"
623
+ },
624
+ {
625
+ "key": "ArrowDown",
626
+ "command": "viewletLocations.focusNext",
627
+ "when": "focus.locationList"
628
+ },
629
+ {
630
+ "key": "ArrowUp",
631
+ "command": "viewletLocations.focusPrevious",
632
+ "when": "focus.locationList"
633
+ },
634
+ {
635
+ "key": "Home",
636
+ "command": "viewletLocations.focusFirst",
637
+ "when": "focus.locationList"
638
+ },
639
+ {
640
+ "key": "End",
641
+ "command": "viewletLocations.focusLast",
642
+ "when": "focus.locationList"
643
+ },
644
+ {
645
+ "key": "Enter",
646
+ "command": "viewletLocations.selectCurrent",
647
+ "when": "focus.locationList"
648
+ }
649
+ ]
@@ -0,0 +1,17 @@
1
+ {
2
+ "completions.loadingDelay": 1200,
3
+
4
+ "editor.fontSize": 15,
5
+ "editor.fontFamily": "'Fira Code'",
6
+ "editor.lineHeight": 20,
7
+
8
+ "extensions.autoUpdate": true,
9
+
10
+ "serviceWorker.enabled": false,
11
+
12
+ "workbench.colorTheme": "slime",
13
+ "workbench.iconTheme": "vscode-icons",
14
+ "workbench.activityBar.visible": true,
15
+ "workbench.sideBar.visible": true,
16
+ "workbench.saveStateOnVisibilityChange": false
17
+ }
@@ -0,0 +1,5 @@
1
+ # Theme Monokai
2
+
3
+ ## Credits
4
+
5
+ Extension is based on https://github.com/smlombardi/theme-slime by @smlombardi (License n/a)