-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
1407 lines (1407 loc) · 44.3 KB
/
package.json
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "runme",
"version": "3.10.3",
"publisher": "stateful",
"displayName": "Runme Notebooks for DevOps",
"description": "Notebooks for DevOps written in Markdown. Runnable, configurable commands/code and embedded terminals. Integrated with cloud consoles, containers and pipelines.",
"author": "Sebastian Tiedtke <sebastian@stateful.com>",
"contributors": [
"Christian Bromann <christian@stateful.com>"
],
"icon": "assets/icon.gif",
"license": "Apache-2.0",
"homepage": "https://runme.dev",
"repository": {
"type": "git",
"url": "git://github.com/stateful/vscode-runme.git"
},
"bugs": {
"url": "https://github.com/stateful/vscode-runme/issues"
},
"private": true,
"engines": {
"vscode": "^1.78.0",
"node": ">=20.17.0"
},
"galleryBanner": {
"color": "#0D003D",
"theme": "dark"
},
"keywords": [
"devops",
"cloud",
"runbooks",
"jupyter",
"documentation",
"terminal",
"cli",
"shell",
"bash",
"markdown"
],
"badges": [
{
"url": "https://img.shields.io/badge/Runme-Join%20our%20Community-blue?logo=discord&color=F62459",
"href": "https://discord.gg/runme",
"description": "Join the Runme Community"
}
],
"categories": [
"Notebooks",
"Other"
],
"activationEvents": [
"onNotebook:runme",
"onRenderer:runme-renderer",
"onCommand:runme.welcome",
"onStartupFinished"
],
"main": "./out/extension.js",
"runme": {
"features": {
"RecommendExtension": {
"enabled": true,
"conditions": {
"enabledForExtensions": {
"stateful.platform": false,
"stateful.runme": true
}
}
},
"HostedPlayground": {
"enabled": false,
"conditions": {
"enabledForExtensions": {
"stateful.platform": false,
"stateful.runme": true
}
}
},
"OpenTerminalOnStartup": {
"enabled": false,
"conditions": {
"enabledForExtensions": {
"stateful.platform": false,
"stateful.runme": true
}
}
},
"NewTreeProvider": {
"enabled": false,
"conditions": {
"enabledForExtensions": {
"stateful.platform": true,
"stateful.runme": true
}
}
},
"CopySelectionToClipboard": {
"enabled": true,
"conditions": {
"os": "linux",
"enabledForExtensions": {
"stateful.platform": true,
"stateful.runme": true
}
}
},
"RequireStatefulAuth": {
"enabled": true,
"conditions": {
"enabledForExtensions": {
"stateful.platform": true,
"stateful.runme": true
}
}
},
"SignedIn": {
"enabled": true,
"conditions": {
"statefulAuthRequired": true,
"enabledForExtensions": {
"stateful.platform": true,
"stateful.runme": true
}
}
},
"ForceLogin": {
"enabled": true,
"conditions": {
"enabledForExtensions": {
"stateful.platform": true,
"stateful.runme": false
}
}
},
"Escalate": {
"enabled": true,
"conditions": {
"statefulAuthRequired": true,
"enabledForExtensions": {
"stateful.platform": true,
"stateful.runme": true
}
}
},
"Share": {
"enabled": true,
"conditions": {
"enabledForExtensions": {
"stateful.platform": true,
"stateful.runme": true
}
}
},
"Gist": {
"enabled": true,
"conditions": {
"enabledForExtensions": {
"stateful.platform": false,
"stateful.runme": true
}
}
}
}
},
"contributes": {
"commands": [
{
"command": "runme.new",
"title": "Runme Notebook"
},
{
"command": "runme.toggleTerminal",
"title": "Toggle Terminal For Cell"
},
{
"command": "runme.openIntegratedTerminal",
"title": "Open Integrated Terminal for Background Task"
},
{
"command": "runme.copyCellToClipboard",
"title": "Copy Cell Content into Clipboard"
},
{
"command": "runme.toggleCellAnnotations",
"title": "Toggle cell configuration UI"
},
{
"command": "runme.addEnvironmentVariableExecution",
"title": "Add Environment Variable cell execution"
},
{
"command": "runme.runCliCommand",
"title": "Run CLI command in new terminal"
},
{
"command": "runme.runForkCommand",
"title": "Run fork session in new terminal"
},
{
"command": "runme.surveyWinDefaultShell",
"category": "Runme",
"title": "Prompt to participate in Windows Default Shell survey"
},
{
"command": "runme.surveyNotifyV2",
"category": "Runme",
"title": "Prompt to notify about changes in Runme v2.0"
},
{
"command": "runme.surveyActiveUserFeedback",
"category": "Runme",
"title": "Prompt to participate in Feedback survey"
},
{
"command": "runme.surveyAddExtensionToRepo",
"category": "Runme",
"title": "Prompt to participate in adding extension to repo"
},
{
"command": "runme.surveyFeedbackButton",
"category": "Runme",
"title": "Let the Runme team know what you think",
"icon": "$(feedback)",
"shortTitle": "Feedback"
},
{
"command": "runme.surveyShebangComingSoon",
"category": "Runme",
"title": "Prompt when a cell language is unsupported"
},
{
"command": "runme.openAsRunmeNotebook",
"category": "Runme",
"title": "Open markdown as Runme",
"icon": {
"dark": "assets/logo-open-dark.svg",
"light": "assets/logo-open-light.svg"
}
},
{
"command": "runme.openSplitViewAsMarkdownText",
"category": "Runme",
"title": "Open Runme notebook in text editor",
"icon": "$(markdown)"
},
{
"command": "runme.stopBackgroundTask",
"category": "Runme",
"title": "Dispose terminal session to stop background task."
},
{
"command": "runme.collapseTreeView",
"category": "Runme",
"title": "Collapse all items",
"icon": "$(debug-collapse-all)"
},
{
"command": "runme.expandTreeView",
"category": "Runme",
"title": "Expand all items",
"icon": "$(search-expand-results)"
},
{
"command": "runme.tasksIncludeUnnamed",
"category": "Runme",
"title": "Include all tasks",
"icon": "$(bracket)"
},
{
"command": "runme.tasksExcludeUnnamed",
"category": "Runme",
"title": "Only named tasks",
"icon": "$(bracket-dot)"
},
{
"command": "runme.welcome",
"title": "Welcome",
"category": "Runme",
"description": "Open the welcome page for the Runme extension."
},
{
"command": "runme.try",
"title": "Try Runme",
"category": "Runme",
"description": "Walk through some interactive notebook examples."
},
{
"command": "runme.codelens.action",
"title": "Runme CodeLens Action"
},
{
"command": "runme.file.openInRunme",
"title": "Open in Runme"
},
{
"command": "runme.authenticateWithGitHub",
"title": "Authenticate Runme with GitHub",
"category": "Runme",
"description": "Give access to Runme to interact with GitHub API"
},
{
"command": "runme.runCategory",
"category": "Runme",
"title": "Execute by Tag",
"icon": "$(group-by-ref-type)"
},
{
"command": "runme.runCellCategory",
"category": "Runme",
"title": "Execute cells with the same Tag",
"icon": "$(group-by-ref-type)"
},
{
"command": "runme.addToRecommendedExtensions",
"title": "Add Runme to recommended extensions",
"category": "Runme"
},
{
"command": "runme.notebookAutoSaveOn",
"category": "Runme",
"title": "Click to disable saving terminal output automatically",
"icon": "$(stop-circle)",
"shortTitle": "Auto-Save (on)"
},
{
"command": "runme.notebookAutoSaveOff",
"category": "Runme",
"title": "Click to enable saving terminal output automatically",
"icon": "$(play-circle)",
"shortTitle": "Auto-Save (off)"
},
{
"command": "runme.notebookGistShare",
"category": "Runme",
"title": "Click to generate GitHub gist link",
"icon": "$(github)",
"shortTitle": "Generate Gist"
},
{
"command": "runme.notebookOutputsMasked",
"category": "Runme",
"title": "Click to mask (best effort) cell outputs",
"icon": "$(gist-private)",
"shortTitle": "Mask"
},
{
"command": "runme.notebookOutputsUnmasked",
"category": "Runme",
"title": "Click to unmask cell outputs",
"icon": "$(unlock)",
"shortTitle": "Unmask"
},
{
"command": "runme.notebookSessionOutputs",
"category": "Runme",
"title": "Click to open session outputs",
"icon": "$(output-view-icon)",
"shortTitle": "Session Outputs"
},
{
"command": "runme.resetRunnerSession",
"category": "Runme",
"title": "Reset Session including Environment Variables",
"icon": "$(search-refresh)",
"shortTitle": "Reset"
},
{
"command": "runme.runWithPrompts",
"category": "Runme",
"title": "Execute and always prompt for input",
"icon": "$(terminal)"
},
{
"command": "runme.notebookAuthorMode",
"category": "Runme",
"title": "Always add new cells for renderers with action buttons",
"icon": "$(pencil)",
"shortTitle": "Author mode"
},
{
"command": "runme.notebookExplorerMode",
"category": "Runme",
"title": "Always navigate within existing renderer with action buttons",
"icon": "$(preview)",
"shortTitle": "Explorer mode"
},
{
"command": "runme.cellGistShare",
"title": "Click to generate GitHub gist link"
},
{
"command": "runme.aiGenerate",
"title": "Generate cells using the Foyle AI assistant"
},
{
"command": "runme.environments",
"category": "Runme",
"title": "Click to select your environment",
"shortTitle": "Environments"
},
{
"command": "runme.lifecycleIdentityAll",
"title": "Lifecycle Identity - All",
"category": "Runme",
"description": "Turns on Lifecycle Identity"
},
{
"command": "runme.lifecycleIdentityNone",
"title": "Lifecycle Identity - None",
"category": "Runme",
"description": "Lifecycle Identity - None"
},
{
"command": "runme.lifecycleIdentityDoc",
"title": "Lifecycle Identity - Document",
"category": "Runme",
"description": "Lifecycle Identity - Document"
},
{
"command": "runme.lifecycleIdentityCell",
"title": "Lifecycle Identity - Cell",
"category": "Runme",
"description": "Lifecycle Identity - Cell"
},
{
"command": "runme.lifecycleIdentitySelection",
"title": "Lifecycle Identity by Selection",
"category": "Runme",
"description": "Lifecycle Identity by Selection"
},
{
"command": "runme.openCloudPanel",
"title": "Open Cloud Panel",
"category": "Runme",
"description": "Open Cloud Panel"
},
{
"command": "runme.openNotebook",
"title": "Open",
"icon": "$(preferences-open-settings)"
},
{
"command": "runme.runSelectedCell",
"title": "Run",
"icon": "$(play)"
},
{
"command": "runme.openSelectedCell",
"title": "Open",
"icon": "$(preferences-open-settings)"
}
],
"menus": {
"commandPalette": [
{
"command": "runme.lifecycleIdentitySelection",
"when": "false"
},
{
"command": "runme.toggleTerminal",
"when": "false"
},
{
"command": "runme.openIntegratedTerminal",
"when": "false"
},
{
"command": "runme.openAsRunmeNotebook",
"when": "false"
},
{
"command": "runme.openSplitViewAsMarkdownText",
"when": "false"
},
{
"command": "runme.stopBackgroundTask",
"when": "false"
},
{
"command": "runme.collapseTreeView",
"when": "false"
},
{
"command": "runme.expandTreeView",
"when": "false"
},
{
"command": "runme.tasksIncludeUnnamed",
"when": "false"
},
{
"command": "runme.tasksExcludeUnnamed",
"when": "false"
},
{
"command": "runme.codelens.action",
"when": "false"
},
{
"command": "runme.file.openInRunme",
"when": "false"
},
{
"command": "runme.notebookGistShare",
"when": "false"
},
{
"command": "runme.notebookOutputsMasked",
"when": "false"
},
{
"command": "runme.notebookOutputsUnmasked",
"when": "false"
},
{
"command": "runme.runCategory",
"when": "false"
},
{
"command": "runme.runCellCategory",
"when": "false"
},
{
"command": "runme.surveyFeedbackButton",
"when": "false"
}
],
"editor/title": [
{
"when": "resourceLangId == markdown && !notebookType",
"command": "runme.openAsRunmeNotebook",
"group": "navigation"
},
{
"when": "notebookType == runme",
"command": "runme.openSplitViewAsMarkdownText",
"group": "navigation"
}
],
"file/newFile": [
{
"command": "runme.new",
"group": "notebook"
}
],
"view/title": [
{
"command": "runme.collapseTreeView",
"when": "view == runme.launcher && runme.launcher.isExpanded",
"group": "navigation"
},
{
"command": "runme.expandTreeView",
"when": "view == runme.launcher && !runme.launcher.isExpanded",
"group": "navigation"
},
{
"command": "runme.tasksIncludeUnnamed",
"when": "view == runme.launcher && !runme.launcher.includeUnnamed",
"group": "navigation"
},
{
"command": "runme.tasksExcludeUnnamed",
"when": "view == runme.launcher && runme.launcher.includeUnnamed",
"group": "navigation"
}
],
"explorer/context": [
{
"command": "runme.file.openInRunme",
"when": "resourceLangId == markdown",
"group": "navigation@30"
}
],
"notebook/toolbar": [
{
"command": "runme.notebookSessionOutputs",
"when": "notebookType == runme && notebookMode != sessionOutputs && notebookHasRunmeOutputs",
"group": "navigation"
},
{
"command": "runme.resetRunnerSession",
"when": "notebookType == runme && notebookMode != sessionOutputs",
"group": "navigation"
},
{
"command": "runme.surveyFeedbackButton",
"when": "notebookType == runme && notebookMode != sessionOutputs",
"group": "navigation"
},
{
"command": "runme.runCategory",
"when": "notebookType == runme && notebookMode != sessionOutputs && notebookHasCategories",
"group": "navigation"
},
{
"command": "runme.notebookAutoSaveOn",
"when": "notebookType == runme && notebookMode != sessionOutputs && notebookAutoSaveOn",
"group": "navigation"
},
{
"command": "runme.notebookAutoSaveOff",
"when": "notebookType == runme && notebookMode != sessionOutputs && !notebookAutoSaveOn",
"group": "navigation"
},
{
"command": "runme.notebookGistShare",
"when": "notebookType == runme && notebookMode == sessionOutputs",
"group": "navigation@50"
},
{
"command": "runme.notebookOutputsMasked",
"when": "notebookType == runme && notebookMode == sessionOutputs && !notebookOutputsMasked",
"group": "navigation@30"
},
{
"command": "runme.notebookOutputsUnmasked",
"when": "notebookType == runme && notebookMode == sessionOutputs && notebookOutputsMasked",
"group": "navigation@30"
},
{
"command": "runme.notebookAuthorMode",
"when": "notebookType == runme && false",
"group": "navigation"
},
{
"command": "runme.notebookExplorerMode",
"when": "notebookType == runme && false",
"group": "navigation"
}
],
"notebook/cell/execute": [
{
"command": "runme.runCellCategory",
"group": "navigation",
"when": "notebookType == runme && notebookMode != sessionOutputs && notebookHasCategories"
},
{
"command": "runme.runWithPrompts",
"group": "navigation",
"when": "notebookType == runme && notebookMode != sessionOutputs && notebookCellType == 'code'"
}
],
"view/item/context": [
{
"command": "runme.openNotebook",
"when": "view == runme.launcher && viewItem == markdownNotebook",
"group": "inline"
},
{
"command": "runme.runSelectedCell",
"when": "view == runme.launcher && viewItem == markdownCell",
"group": "inline"
},
{
"command": "runme.openSelectedCell",
"when": "view == runme.launcher && viewItem == markdownCell",
"group": "inline"
}
]
},
"languages": [
{
"id": "markdown",
"extensions": [
".mdi",
".mdr",
".run",
".runme"
]
}
],
"notebooks": [
{
"type": "runme",
"displayName": "Run your Markdown",
"selector": [
{
"filenamePattern": "*.md"
},
{
"filenamePattern": "*.mdx"
},
{
"filenamePattern": "*.mdi"
},
{
"filenamePattern": "*.mdr"
},
{
"filenamePattern": "*.run"
},
{
"filenamePattern": "*.runme"
}
]
}
],
"notebookRenderer": [
{
"id": "runme-renderer",
"entrypoint": "./out/client.js",
"displayName": "runme renderer",
"mimeTypes": [
"stateful.runme/shell-stdout",
"stateful.runme/vercel-stdout",
"stateful.runme/deno-stdout",
"stateful.runme/html-stdout",
"stateful.runme/output-items",
"stateful.runme/annotations",
"stateful.runme/terminal",
"stateful.runme/error",
"stateful.runme/github-stdout",
"stateful.runme/gcp",
"stateful.runme/aws",
"stateful.runme/dagger"
],
"requiresMessaging": "optional"
}
],
"configuration": [
{
"title": "Runme",
"properties": {
"runme.flags.disableSaveRestriction": {
"type": "boolean",
"scope": "machine",
"default": true,
"markdownDescription": "If enabled, Runme's save restriction on non checked-in files will be lifted."
},
"runme.flags.startFile": {
"type": "string",
"scope": "window",
"markdownDescription": "Relative path to a file within the workspace to open within a Runme notebook view, when VS Code starts (e.g. `./CONTRIBUTING.md`)."
},
"runme.experiments.aiAutoCell": {
"type": "boolean",
"scope": "window",
"default": false,
"title": "AI Auto Cell",
"markdownDescription": "If set to `true`, enable AI auto generation of cells. Reload the window after changing this setting."
},
"runme.experiments.smartEnvStore": {
"type": "boolean",
"scope": "window",
"default": false,
"markdownDescription": "If set to `true`, the kernel will use the smart env store implementation."
},
"runme.experiments.grpcSerializer": {
"type": "boolean",
"scope": "window",
"default": true,
"markdownDescription": "If set to `true`, the notebook serialization will use the GRPC instead of the WebAssembly interface."
},
"runme.experiments.grpcRunner": {
"type": "boolean",
"scope": "window",
"default": true,
"markdownDescription": "If set to `true`, the notebook runner will use the GRPC interface (except on Windows)."
},
"runme.experiments.grpcServer": {
"type": "boolean",
"scope": "window",
"default": true,
"markdownDescription": "If set to `true`, the extension will bring up the GRPC server."
},
"runme.experiments.shellWarning": {
"type": "boolean",
"scope": "window",
"default": true,
"markdownDescription": "If set to `true`, the extension will display an error message if an unsupported shell is detected."
},
"runme.experiments.reporter": {
"type": "boolean",
"scope": "window",
"default": false,
"markdownDescription": "If set to `true`, the extension will use the new reporter API to create outputs."
},
"runme.experiments.environments": {
"type": "boolean",
"scope": "window",
"default": false,
"markdownDescription": "If set to `true`, the extension will allow the user to select an environment."
},
"runme.checkout.projectDir": {
"type": "string",
"scope": "machine",
"markdownDescription": "Directory to which Runme should clone new projects into."
},
"runme.checkout.timeout": {
"type": "number",
"scope": "machine",
"default": 60000,
"markdownDescription": "Timeout until Runme will cancel the clone process."
},
"runme.telemetry.enabled": {
"type": "boolean",
"scope": "window",
"default": true,
"markdownDescription": "Allow telemetry tracking for Runme. This setting will not affect other telemetry settings."
},
"runme.server.customAddress": {
"type": "string",
"scope": "window",
"markdownDescription": "Custom kernel server address. This address will be used instead of launching the server at start. Use this only if you know what you are doing!"
},
"runme.server.binaryPath": {
"type": "string",
"scope": "window",
"markdownDescription": "Kernel server path to binary. (It requires the GRPC interface enabled)"
},
"runme.server.enableLogger": {
"type": "boolean",
"scope": "machine",
"default": false,
"markdownDescription": "Enable Kernel server logs. (It requires the GRPC interface enabled)"
},
"runme.server.tlsDir": {
"type": "string",
"scope": "window",
"markdownDescription": "Directory for storing TLS certificates for GRPC interface"
},
"runme.server.enableTLS": {
"type": "boolean",
"scope": "machine",
"default": true,
"markdownDescription": "Use TLS over GRPC server interface (strongly recommended - only disable if you know what you are doing!!!)"
},
"runme.server.transportType": {
"type": "string",
"scope": "window",
"default": "TCP",
"enum": [
"TCP",
"UDS"
],
"markdownDescription": "Connect to GRPC server via TCP or Unix Domain Socket (not available on Windows)"
},
"runme.server.lifecycleIdentity": {
"type": "number",
"scope": "window",
"default": 0,
"enum": [
0,
1,
2,
3
],
"enumItemLabels": [
"None",
"All",
"Document",
"Cell"
],
"markdownDescription": "Select whether or not lifecycle identities of document and/or cells should be presistent inside markdown"
},
"runme.server.runnerVersion": {
"type": "string",
"scope": "window",
"default": "v1",
"enum": [
"v1",
"v2"
],
"markdownDescription": "Runner GRPC version to use"
},
"runme.terminal.backgroundTask": {
"type": "boolean",
"scope": "machine",
"default": true,
"markdownDescription": "Enable Runme notebook terminal in background tasks (experimental)"
},
"runme.terminal.nonInteractive": {
"type": "boolean",
"scope": "machine",
"default": false,
"markdownDescription": "Enable Runme notebook terminal in non-interactive scripts (experimental)"
},
"runme.terminal.interactive": {
"type": "boolean",
"scope": "machine",
"default": true,
"markdownDescription": "Enable Runme notebook terminal in interactive scripts (experimental)"
},
"runme.terminal.interactiveIsDefault": {
"type": "boolean",
"default": true,
"markdownDescription": "If set to 'true', any cell run will be interactive by default"
},
"runme.terminal.fontSize": {
"type": [
"number",
"null"
],
"default": null,
"markdownDescription": "Font size of Runme notebook terminal"
},
"runme.terminal.fontFamily": {
"type": [
"string",
"null"
],
"default": null,
"markdownDescription": "Font family of Runme notebook terminal"
},
"runme.terminal.cursorStyle": {
"type": "string",
"enum": [
"block",
"bar",
"underline"
],
"default": "bar",
"markdownDescription": "The style of the Runme notebook terminal cursor."
},
"runme.terminal.cursorBlink": {
"type": "boolean",
"default": true,
"markdownDescription": "Defines whether the Runme notebook terminal cursor blinks."
},
"runme.terminal.cursorWidth": {
"type": "number",
"default": 1,
"markdownDescription": "The width of the cursor in CSS pixels when `cursorStyle` is set to 'bar'."
},
"runme.terminal.smoothScrollDuration": {
"type": "number",
"default": 0,
"markdownDescription": "The duration to smoothly scroll between the origin and the target in milliseconds. Set to 0 to disable smooth scrolling and scroll instantly."
},
"runme.terminal.scrollback": {
"type": "number",
"default": 1000,
"markdownDescription": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport."
},
"runme.terminal.rows": {
"type": "integer",
"default": 10,
"markdownDescription": "Default number of rows in notebook terminal"
},
"runme.terminal.closeOnSuccess": {
"type": "boolean",
"default": true,
"markdownDescription": "If set to 'true', integrated terminal panel is being closed upon successful completion of cell/task."
},
"runme.actions.openViewInEditor": {
"type": "string",
"default": "split",
"enum": [
"split",
"toggle"
],
"enumDescriptions": [
"Opens text editor to the side",
"Will replace notebook view with text editor"
],
"markdownDescription": "Default behavior of Open In Editor action button"
},
"runme.notebook.executionOrder": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable execution order counter per cell in notebook UX"
},
"runme.codelens.enable": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable CodeLens support in markdown documents"
},
"runme.codelens.pasteNewline": {
"type": "boolean",
"default": false,
"markdownDescription": "If set to 'true', adds a new line to the text being paste which is typically required to run a command in the terminal."
},
"runme.env.workspaceFileOrder": {
"type": "array",
"default": [
".env.local",
".env"
],
"markdownDescription": "List of workspace environment files to parse in order; variables defined in later files take priority"
},
"runme.env.loadWorkspaceFiles": {
"type": "boolean",
"default": true,
"markdownDescription": "Load environment files from workspace into all scripts"
},
"runme.cli.useIntegratedRunme": {
"type": "boolean",
"default": false,
"markdownDescription": "Whether to use full path to integrated runme executable when running CLI commands. This is mostly useful for development purposes."
},
"runme.app.baseDomain": {
"type": "string",
"default": "platform.stateful.com",
"scope": "window",
"markdownDescription": "Base domain to be use for Runme app"
},
"runme.app.panel.runme.cloud": {
"type": "string",