This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
1005 lines (1005 loc) · 31.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": "quarto",
"displayName": "Quarto",
"description": "Extension for the Quarto scientific and technical publishing system.",
"author": "quarto",
"publisher": "quarto",
"icon": "assets/logo/quarto.png",
"license": "MIT",
"keywords": [
"markdown",
"pandoc",
"quarto"
],
"version": "1.57.0",
"repository": {
"type": "git",
"url": "https://github.com/quarto-dev/quarto-vscode.git"
},
"homepage": "https://github.com/quarto-dev/quarto-vscode#readme",
"bugs": {
"url": "https://github.com/quarto-dev/quarto-vscode/issues"
},
"categories": [
"Programming Languages",
"Data Science",
"Machine Learning",
"Notebooks"
],
"private": true,
"scripts": {
"postinstall": "cd server && yarn install && cd ..",
"vscode:prepublish": "yarn run build-lang && yarn run esbuild-server && yarn run esbuild-base -- --minify && yarn run package-web",
"esbuild-base": "esbuild ./src/main.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild-server": "cd server && yarn run esbuild ./src/server.ts --bundle --outfile=out/server.js --external:vscode --format=cjs --platform=node",
"esbuild": "yarn run esbuild-base -- --sourcemap",
"esbuild-watch": "yarn run concurrently --kill-others \"yarn run esbuild-server -- --sourcemap --watch\" \"yarn run esbuild-base -- --sourcemap --watch\"",
"build-lang": "node syntaxes/build-lang",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"open-in-browser": "vscode-test-web --extensionDevelopmentPath=. ."
},
"engines": {
"vscode": "^1.66.0"
},
"main": "./out/main.js",
"browser": "./out/browser.js",
"activationEvents": [
"onLanguage:quarto",
"onLanguage:mermaid",
"onLanguage:dot",
"onCommand:quarto.render",
"onCommand:quarto.renderHTML",
"onCommand:quarto.renderPDF",
"onCommand:quarto.renderDOCX",
"onCommand:quarto.renderShortcut",
"onCommand:quarto.newDocument",
"onCommand:quarto.fileNewDocument",
"onCommand:quarto.newPresentation",
"onCommand:quarto.newNotebook",
"onCommand:quarto.showAssist",
"onCommand:quarto.fileNewPresentation",
"onCommand:quarto.walkthrough.verifyInstallation",
"onCommand:quarto.walkthrough.newDocument",
"onCommand:quarto.createProject",
"onCommand:quarto.fileCreateProject",
"workspaceContains:**/*.qmd",
"workspaceContains:**/_quarto.{yml,yaml}",
"workspaceContains:**/_extension.{yml,yaml}",
"onWebviewPanel:quarto.previewView",
"onWebviewPanel:quarto.diagramView",
"onView:quarto-assist"
],
"capabilities": {
"virtualWorkspaces": true
},
"contributes": {
"languages": [
{
"id": "quarto",
"aliases": [
"Quarto",
"quarto"
],
"extensions": [
".qmd"
],
"icon": {
"light": "./assets/icon/qmd.svg",
"dark": "./assets/icon/qmd.svg"
},
"configuration": "./language-configuration.json"
},
{
"id": "dot",
"aliases": [
"Graphviz (DOT)",
"dot"
],
"extensions": [
".dot",
".DOT",
".gv"
],
"configuration": "./languages/dot/dot.configuration.json"
},
{
"id": "mermaid",
"aliases": [
"Mermaid",
"mermaid"
],
"extensions": [
".mmd"
]
}
],
"grammars": [
{
"language": "quarto",
"scopeName": "text.html.quarto",
"path": "./syntaxes/quarto.tmLanguage",
"embeddedLanguages": {
"meta.embedded.block.html": "html",
"source.js": "javascript",
"source.css": "css",
"meta.embedded.block.frontmatter": "yaml",
"meta.embedded.block.css": "css",
"meta.embedded.block.ini": "ini",
"meta.embedded.block.java": "java",
"meta.embedded.block.lua": "lua",
"meta.embedded.block.makefile": "makefile",
"meta.embedded.block.perl": "perl",
"meta.embedded.block.r": "r",
"meta.embedded.block.julia": "julia",
"meta.embedded.block.ruby": "ruby",
"meta.embedded.block.php": "php",
"meta.embedded.block.sql": "sql",
"meta.embedded.block.vs_net": "vs_net",
"meta.embedded.block.xml": "xml",
"meta.embedded.block.xsl": "xsl",
"meta.embedded.block.yaml": "yaml",
"meta.embedded.block.dosbatch": "dosbatch",
"meta.embedded.block.clojure": "clojure",
"meta.embedded.block.coffee": "coffee",
"meta.embedded.block.c": "c",
"meta.embedded.block.cpp": "cpp",
"meta.embedded.block.diff": "diff",
"meta.embedded.block.dockerfile": "dockerfile",
"meta.embedded.block.go": "go",
"meta.embedded.block.groovy": "groovy",
"meta.embedded.block.pug": "jade",
"meta.embedded.block.javascript": "javascript",
"meta.embedded.block.json": "json",
"meta.embedded.block.less": "less",
"meta.embedded.block.objc": "objc",
"meta.embedded.block.scss": "scss",
"meta.embedded.block.perl6": "perl6",
"meta.embedded.block.powershell": "powershell",
"meta.embedded.block.python": "python",
"meta.embedded.block.rust": "rust",
"meta.embedded.block.scala": "scala",
"meta.embedded.block.shellscript": "shellscript",
"meta.embedded.block.typescript": "typescript",
"meta.embedded.block.typescriptreact": "typescriptreact",
"meta.embedded.block.csharp": "csharp",
"meta.embedded.block.fsharp": "fsharp",
"meta.embedded.block.stan": "stan",
"meta.embedded.math.quarto": "latex",
"meta.embedded.block.dot": "dot",
"meta.embedded.block.mermaid": "mermaid"
}
},
{
"language": "dot",
"scopeName": "source.dot",
"path": "./languages/dot/syntaxes/dot.tmLanguage"
},
{
"language": "mermaid",
"scopeName": "source.mmd",
"path": "./languages/mermaid/mermaid.tmLanguage.json"
}
],
"snippets": [
{
"language": "quarto",
"path": "./snippets/quarto.code-snippets"
},
{
"language": "dot",
"path": "./languages/dot/snippets/dot.json"
},
{
"language": "dot",
"path": "./languages/dot/snippets/principalNodeAttributes.json"
},
{
"language": "dot",
"path": "./languages/dot/snippets/principalEdgeAttributes.json"
},
{
"language": "dot",
"path": "./languages/dot/snippets/principalGraphAttributes.json"
}
],
"views": {
"explorer": [
{
"type": "webview",
"id": "quarto-assist",
"name": "Quarto",
"icon": "assets/logo/quarto.svg",
"visibility": "hidden"
}
]
},
"commands": [
{
"command": "quarto.newDocument",
"title": "New Document (qmd)",
"category": "Quarto"
},
{
"command": "quarto.fileNewDocument",
"title": "Quarto Document (qmd)",
"category": "Quarto"
},
{
"command": "quarto.newPresentation",
"title": "New Presentation",
"category": "Quarto"
},
{
"command": "quarto.fileNewPresentation",
"title": "Quarto Presentation",
"category": "Quarto"
},
{
"command": "quarto.newNotebook",
"title": "New Notebook (ipynb)",
"category": "Quarto"
},
{
"command": "quarto.fileNewNotebook",
"title": "Quarto Notebook (ipynb)",
"category": "Quarto"
},
{
"command": "quarto.createProject",
"title": "Create Project",
"category": "Quarto"
},
{
"command": "quarto.fileCreateProject",
"title": "Quarto Project",
"category": "Quarto"
},
{
"command": "quarto.renderProject",
"title": "Render Project",
"category": "Quarto"
},
{
"command": "quarto.render",
"title": "Render",
"category": "Quarto"
},
{
"command": "quarto.renderShortcut",
"title": "Render",
"category": "Quarto"
},
{
"command": "quarto.renderHTML",
"title": "Render HTML",
"category": "Quarto"
},
{
"command": "quarto.renderPDF",
"title": "Render PDF",
"category": "Quarto"
},
{
"command": "quarto.renderDOCX",
"title": "Render DOCX",
"category": "Quarto"
},
{
"command": "quarto.clearCache",
"title": "Clear Cache...",
"category": "Quarto"
},
{
"command": "quarto.insertCodeCell",
"title": "Insert Code Cell",
"category": "Quarto"
},
{
"command": "quarto.runSelection",
"title": "Run Selected Line(s)",
"category": "Quarto"
},
{
"command": "quarto.runCurrentCell",
"title": "Run Current Cell",
"category": "Quarto"
},
{
"command": "quarto.runPreviousCell",
"title": "Run Previous Cell",
"category": "Quarto"
},
{
"command": "quarto.runNextCell",
"title": "Run Next Cell",
"category": "Quarto"
},
{
"command": "quarto.runCellsAbove",
"title": "Run Cells Above",
"category": "Quarto"
},
{
"command": "quarto.runCellsBelow",
"title": "Run Cells Below",
"category": "Quarto"
},
{
"command": "quarto.runAllCells",
"title": "Run All Cells",
"category": "Quarto"
},
{
"command": "quarto.goToNextCell",
"title": "Go to Next Cell",
"category": "Quarto"
},
{
"command": "quarto.goToPreviousCell",
"title": "Go to Previous Cell",
"category": "Quarto"
},
{
"command": "quarto.previewMath",
"category": "Quarto",
"title": "Preview Math"
},
{
"command": "quarto.previewDiagram",
"category": "Quarto",
"title": "Preview Diagram"
},
{
"command": "quarto.previewShortcut",
"title": "Preview",
"category": "Quarto"
},
{
"command": "quarto.showAssist",
"category": "Quarto",
"title": "Show Assist Panel"
},
{
"command": "quarto.assist.pin",
"title": "Pin Assist Panel",
"icon": "$(pin)",
"category": "Quarto"
},
{
"command": "quarto.assist.unpin",
"title": "Unpin Assist Panel",
"icon": "$(pinned)",
"category": "Quarto"
},
{
"command": "quarto.walkthrough.newDocument",
"title": "New Document (qmd)",
"category": "Quarto"
},
{
"command": "quarto.walkthrough.verifyInstallation",
"title": "Verify Installation",
"category": "Quarto"
},
{
"command": "quarto.walkthrough.render",
"title": "Render",
"category": "Quarto"
},
{
"command": "quarto.toggleBold",
"title": "Toggle Bold",
"category": "Quarto",
"when": "editorTextFocus && !editorReadonly && editorLangId == quarto"
},
{
"command": "quarto.toggleItalic",
"title": "Toggle Italic",
"category": "Quarto",
"when": "editorTextFocus && !editorReadonly && editorLangId == quarto"
},
{
"command": "quarto.toggleCode",
"title": "Toggle Code",
"category": "Quarto",
"when": "editorTextFocus && !editorReadonly && editorLangId == quarto"
}
],
"keybindings": [
{
"command": "quarto.renderShortcut",
"key": "ctrl+shift+k",
"mac": "cmd+shift+k"
},
{
"command": "quarto.previewShortcut",
"key": "ctrl+shift+l",
"mac": "cmd+shift+l",
"when": "editorLangId == quarto || editorLangId == mermaid || editorLangId == dot"
},
{
"command": "quarto.insertCodeCell",
"key": "ctrl+shift+i",
"mac": "cmd+shift+i"
},
{
"command": "quarto.runSelection",
"key": "ctrl+enter",
"mac": "cmd+enter",
"when": "editorTextFocus && editorLangId == quarto && !findInputFocussed && !replaceInputFocussed"
},
{
"command": "quarto.runSelection",
"key": "shift+enter",
"when": "editorTextFocus && editorLangId == quarto && !findInputFocussed && !replaceInputFocussed"
},
{
"command": "quarto.runCurrentCell",
"key": "ctrl+shift+enter",
"mac": "cmd+shift+enter",
"when": "editorTextFocus && editorLangId == quarto && !findInputFocussed && !replaceInputFocussed"
},
{
"command": "quarto.runPreviousCell",
"key": "ctrl+alt+p",
"mac": "cmd+alt+p",
"when": "editorTextFocus && editorLangId == quarto && !findInputFocussed && !replaceInputFocussed"
},
{
"command": "quarto.runNextCell",
"key": "ctrl+alt+n",
"mac": "cmd+alt+n",
"when": "editorTextFocus && editorLangId == quarto && !findInputFocussed && !replaceInputFocussed"
},
{
"command": "quarto.runCellsBelow",
"key": "ctrl+shift+alt+n",
"mac": "cmd+shift+alt+n",
"when": "editorTextFocus && editorLangId == quarto && !findInputFocussed && !replaceInputFocussed"
},
{
"command": "quarto.runCellsAbove",
"key": "ctrl+shift+alt+p",
"mac": "cmd+shift+alt+p",
"when": "editorTextFocus && editorLangId == quarto && !findInputFocussed && !replaceInputFocussed"
},
{
"command": "quarto.runAllCells",
"key": "ctrl+alt+r",
"mac": "cmd+alt+r",
"when": "editorTextFocus && editorLangId == quarto && !findInputFocussed && !replaceInputFocussed"
},
{
"command": "quarto.paste",
"key": "ctrl+v",
"mac": "cmd+v",
"when": "editorTextFocus && editorLangId == quarto && editorHasSelection && !findInputFocussed && !replaceInputFocussed"
}
],
"menus": {
"editor/title": [
{
"command": "quarto.insertCodeCell",
"when": "editorLangId == quarto"
},
{
"command": "quarto.clearCache",
"when": "editorLangId == quarto"
}
],
"editor/title/run": [
{
"command": "quarto.render",
"when": "editorLangId == quarto || editorLangId == markdown"
},
{
"command": "quarto.renderHTML",
"when": "editorLangId == quarto || editorLangId == markdown"
},
{
"command": "quarto.renderPDF",
"when": "editorLangId == quarto || editorLangId == markdown"
},
{
"command": "quarto.renderDOCX",
"when": "editorLangId == quarto || editorLangId == markdown"
},
{
"command": "quarto.previewShortcut",
"when": "editorLangId == mermaid || editorLangId == dot"
}
],
"notebook/toolbar": [
{
"command": "quarto.render"
},
{
"command": "quarto.renderHTML"
},
{
"command": "quarto.renderPDF"
},
{
"command": "quarto.renderDOCX"
}
],
"file/newFile": [
{
"command": "quarto.fileNewDocument"
},
{
"command": "quarto.fileNewNotebook"
},
{
"command": "quarto.fileNewPresentation"
},
{
"command": "quarto.fileCreateProject"
}
],
"commandPalette": [
{
"command": "quarto.newDocument"
},
{
"command": "quarto.newNotebook"
},
{
"command": "quarto.newPresentation"
},
{
"command": "quarto.fileNewDocument",
"when": "false"
},
{
"command": "quarto.fileNewNotebook",
"when": "false"
},
{
"command": "quarto.fileNewPresentation",
"when": "false"
},
{
"command": "quarto.createProject"
},
{
"command": "quarto.fileCreateProject",
"when": "false"
},
{
"command": "quarto.renderProject"
},
{
"command": "quarto.render",
"when": "editorLangId == quarto || editorLangId == markdown"
},
{
"command": "quarto.previewDiagram",
"when": "editorLangId == quarto || editorLangId == mermaid || editorLangId == dot"
},
{
"command": "quarto.showAssist"
},
{
"command": "quarto.renderShortcut",
"when": "false"
},
{
"command": "quarto.previewShortcut",
"when": "false"
},
{
"command": "quarto.renderHTML",
"when": "editorLangId == quarto || editorLangId == markdown"
},
{
"command": "quarto.renderPDF",
"when": "editorLangId == quarto || editorLangId == markdown"
},
{
"command": "quarto.renderDOCX",
"when": "editorLangId == quarto || editorLangId == markdown"
},
{
"command": "quarto.clearCache",
"when": "editorLangId == quarto"
},
{
"command": "quarto.insertCodeCell",
"when": "editorLangId == quarto"
},
{
"command": "quarto.runSelection",
"when": "editorLangId == quarto"
},
{
"command": "quarto.runCurrentCell",
"when": "editorLangId == quarto"
},
{
"command": "quarto.runPreviousCell",
"when": "editorLangId == quarto"
},
{
"command": "quarto.runNextCell",
"when": "editorLangId == quarto"
},
{
"command": "quarto.runCellsBelow",
"when": "editorLangId == quarto"
},
{
"command": "quarto.runCellsAbove",
"when": "editorLangId == quarto"
},
{
"command": "quarto.runAllCells",
"when": "editorLangId == quarto"
},
{
"command": "quarto.goToNextCell",
"when": "editorLangId == quarto"
},
{
"command": "quarto.goToPreviousCell",
"when": "editorLangId == quarto"
},
{
"command": "quarto.previewMath",
"when": "editorLangId == quarto"
},
{
"command": "quarto.assist.pin",
"when": "editorLangId == quarto && !quarto.assistView.isPinned"
},
{
"command": "quarto.assist.unpin",
"when": "editorLangId == quarto && quarto.assistView.isPinned"
},
{
"command": "quarto.walkthrough.newDocument",
"when": "false"
},
{
"command": "quarto.walkthrough.verifyInstallation",
"when": "false"
},
{
"command": "quarto.walkthrough.render",
"when": "false"
}
],
"view/title": [
{
"command": "quarto.assist.pin",
"when": "view == quarto-assist && !quarto.assistView.isPinned",
"group": "navigation"
},
{
"command": "quarto.assist.unpin",
"when": "view == quarto-assist && quarto.assistView.isPinned",
"group": "navigation"
}
]
},
"configurationDefaults": {
"[r]": {
"editor.wordBasedSuggestions": false
},
"[python]": {
"editor.wordBasedSuggestions": false
},
"[julia]": {
"editor.wordBasedSuggestions": false
},
"[latex]": {
"editor.wordBasedSuggestions": false
},
"[dot]": {
"editor.wordBasedSuggestions": false
},
"[mermaid]": {
"editor.wordBasedSuggestions": false
},
"[lua]": {
"editor.wordBasedSuggestions": false
},
"[yaml]": {
"editor.quickSuggestions": {
"comments": "on",
"other": "on",
"strings": "on"
},
"editor.quickSuggestionsDelay": 250,
"editor.wordBasedSuggestions": false
},
"[quarto]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "on",
"other": "on",
"strings": "on"
},
"editor.quickSuggestionsDelay": 250,
"editor.snippetSuggestions": "none",
"editor.wordBasedSuggestions": false,
"editor.suggestOnTriggerCharacters": true,
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false
}
},
"configuration": {
"type": "object",
"title": "Quarto",
"properties": {
"quarto.assist.updateMode": {
"type": "string",
"description": "Controls how the Quarto Assist panel is updated when the cursor moves.",
"default": "sticky",
"enum": [
"sticky",
"live"
],
"enumDescriptions": [
"The assist panel tries to show help or live preview at the current cursor position. If there is none, it continues showing the last available help or preview.",
"The assist panel tracks the current cursor position. Display empty content if no help or live preview is found at the current position."
]
},
"quarto.cells.hoverHelp.enabled": {
"scope": "window",
"type": "boolean",
"default": true,
"markdownDescription": "Show help when hovering over functions."
},
"quarto.cells.signatureHelp.enabled": {
"scope": "window",
"type": "boolean",
"default": true,
"markdownDescription": "Show parameter help when editing function calls."
},
"quarto.cells.background.enabled": {
"scope": "window",
"type": "boolean",
"default": true,
"markdownDescription": "Enable coloring the background of executable code cells."
},
"quarto.cells.background.light": {
"scope": "window",
"type": "string",
"format": "color",
"default": "#E1E1E166",
"markdownDescription": "CSS color for background of executable code cells on light themes.\n\n*Note that this color should include an alpha channel so that selections show up against the background.*"
},
"quarto.cells.background.dark": {
"scope": "window",
"type": "string",
"format": "color",
"default": "#40404066",
"markdownDescription": "CSS color for background of executable code cells on dark themes.\n\n*Note that this color should include an alpha channel so that selections show up against the background.*"
},
"quarto.cells.background.delay": {
"scope": "window",
"type": "integer",
"default": 250,
"markdownDescription": "Millisecond delay between background color updates."
},
"quarto.mathjax.scale": {
"scope": "window",
"type": "number",
"default": 1,
"markdownDescription": "Scaling of MathJax preview."
},
"quarto.mathjax.extensions": {
"scope": "window",
"type": "array",
"default": [],
"markdownDescription": "MathJax extensions to load for preview. See [the list](https://docs.mathjax.org/en/latest/input/tex/extensions/index.html). Note that the following extensions are loaded by default: `ams`, `color`, `newcommand`, `noerrors`, and `noundefined`. They cannot be disabled.",
"items": {
"type": "string",
"enum": [
"amscd",
"bbox",
"boldsymbol",
"braket",
"bussproofs",
"cancel",
"cases",
"centernot",
"colortbl",
"empheq",
"enclose",
"extpfeil",
"gensymb",
"html",
"mathtools",
"mhchem",
"physics",
"textcomp",
"textmacros",
"unicode",
"upgreek",
"verb"
]
},
"uniqueItems": true
},
"quarto.mathjax.theme": {
"scope": "window",
"type": "string",
"enum": [
"light",
"dark"
],
"default": "dark",
"markdownDescription": "Theme for MathJax preview (`light` or `dark`)."
},
"quarto.lua.provideTypes": {
"scope": "window",
"type": "boolean",
"default": true,
"markdownDescription": "Automatically provide Pandoc and Quarto Lua types (.luarc.json) in workspaces with Quarto Lua scripts."
},
"quarto.path": {
"scope": "window",
"type": "string",
"default": "",
"markdownDescription": "If there is a version of Quarto on your `PATH`, that version will always be used. If Quarto is not on your `PATH`, you may specify a Quarto executable location here."
},
"quarto.render.renderOnSave": {
"scope": "window",
"type": "boolean",
"markdownDescription": "Automatically render documents when they are saved. Note that you can also use the `render-on-save` YAML option at the project or document level to specify this behavior. For example:\n\n```yaml\neditor:\n render-on-save: true\n```\n"
},
"quarto.render.previewType": {
"scope": "window",
"type": "string",
"markdownDescription": "Location for document preview after render",
"enum": [
"internal",
"external",
"none"
],
"default": "internal",
"markdownEnumDescriptions": [
"Preview using a side-by-side panel inside VS Code",
"Preview using an external web browser",
"Don't automatically show a preview after render"
]
},
"quarto.render.previewReveal": {
"scope": "window",
"type": "boolean",
"default": true,
"markdownDescription": "Reveal the preview panel after document render."
}
}
},
"walkthroughs": [
{
"id": "quarto",
"title": "Get started with Quarto",
"description": "Learn the basics of using Quarto with VS Code",
"when": "shellExecutionSupported",
"featuredFor": [
"*.qmd",
"_quarto.yml"
],
"steps": [
{
"id": "install",
"title": "Install Quarto",
"description": "The core capabilities of Quarto are provided by a command line interface (CLI).\n\nBefore getting started, be sure that you've installed the latest version of the Quarto CLI from [https://quarto.org/](https://quarto.org/docs/get-started/)\n[Verify Installation](command:quarto.walkthrough.verifyInstallation)",
"media": {
"image": {
"dark": "assets/walkthrough/quarto-cli-dark.png",
"hc": "assets/walkthrough/quarto-cli-dark.png",
"light": "assets/walkthrough/quarto-cli-light.png",
"hcLight": "assets/walkthrough/quarto-cli-light.png"
},
"altText": "The output of the Quarto CLI help command"
},
"completionEvents": [
"onStepSelected"
]
},
{
"id": "create",
"title": "Create a document",
"description": "Next, we'll create a simple Quarto .qmd markdown file.\n\n[Create Document](command:quarto.walkthrough.newDocument)",
"media": {
"markdown": "assets/walkthrough/empty.md"
},
"completionEvents": [
"onCommand:quarto.walkthrough.newDocument"
]
},
{
"id": "render",
"title": "Render a document",
"description": "You can render documents to HTML, PDF, or other formats using the **Render** button on the editor toolbar, the **Cmd+Shift+K** keyboard shortcut, or the **Quarto: Render** command.\n\n[Render Document](command:quarto.walkthrough.render)",
"media": {
"markdown": "assets/walkthrough/empty.md"
},
"completionEvents": [
"onStepSelected"
]
},
{
"id": "run-cell",
"title": "Run a code cell",
"description": "When rendering, code cells are automatically executed and their results included in output. When developing and debugging, you can also run individual cells interactively.\n\nClick the **Run Cell** button above the code cell in the qmd editor.",
"media": {
"markdown": "assets/walkthrough/empty.md"
},
"completionEvents": [
"onStepSelected"
]
},
{
"id": "equation",
"title": "Edit an equation",
"description": "You can see a realtime preview of LaTeX equations as you edit them.\n\nClick the **Preview** button above the equation to activate the preview (you'll see it below alongside the terminal and output panes). The preview will update as you edit.",
"media": {
"markdown": "assets/walkthrough/empty.md"
},
"completionEvents": [
"onStepSelected"
]
},
{
"id": "learn-more",
"title": "Learn more",
"description": "Learn more about using Quarto here:\n- [Quarto Tutorial](https://quarto.org/docs/get-started/hello/vscode.html)\n- [Using VS Code with Quarto](https://quarto.org/docs/tools/vscode.html)",
"media": {
"markdown": "assets/walkthrough/empty.md"
},
"completionEvents": [
"onStepSelected"
]
}
]
}
]
},
"dependencies": {
"axios": "^0.26.1",
"highlight.js": "^11.4.0",
"js-yaml": "^4.1.0",
"lodash.debounce": "^4.0.8",
"markdown-it": "^12.0.2",
"markdown-it-container": "^3.0.0",
"markdown-it-highlightjs": "^3.6.0",
"semver": "^7.3.5",
"tmp": "^0.2.1",
"uuid": "^8.3.2",
"vscode-languageclient": "^7.0.0",
"vscode-nls": "^5.0.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/highlight.js": "^10.1.0",
"@types/js-yaml": "^3.12.2",
"@types/lodash.debounce": "^4.0.6",
"@types/markdown-it": "^12.0.2",
"@types/markdown-it-container": "^2.0.5",
"@types/markdown-it-highlightjs": "^3.3.1",
"@types/node": "^8.10.25",
"@types/semver": "^7.3.9",
"@types/tmp": "^0.2.3",
"@types/uuid": "^8.3.4",
"@types/vscode": "^1.66.0",
"@types/webpack-env": "^1.16.3",
"@vscode/test-web": "^0.0.22",
"concurrently": "^7.0.0",
"esbuild": "^0.14.21",
"npx": "^10.2.2",
"ovsx": "^0.3.0",
"plist": "^3.0.1",
"ts-loader": "^9.2.7",