-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
1571 lines (1571 loc) · 63.9 KB
/
Copy pathpackage.json
File metadata and controls
1571 lines (1571 loc) · 63.9 KB
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": "vscode-boxlang",
"displayName": "BoxLang",
"description": "BoxLang Language Support",
"version": "1.21.3",
"preview": false,
"author": "ortus-solutions",
"publisher": "ortus-solutions",
"license": "MIT",
"engines": {
"vscode": "^1.100.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ortus-solutions-private/vscode-boxlang.git"
},
"bugs": {
"url": "https://github.com/ortus-solutions-private/vscode-boxlang/issues"
},
"categories": [
"Programming Languages"
],
"keywords": [
"boxlang",
"cfml",
"coldfusion",
"lucee"
],
"activationEvents": [
"workspaceContains:**/*.bx",
"workspaceContains:**/*.bxm",
"workspaceContains:**/*.bxs",
"workspaceContains:**/*.cfm",
"workspaceContains:**/*.cfml",
"workspaceContains:**/*.cfc"
],
"icon": "images/horn-gradient.png",
"main": "./out/main",
"browser": "./dist/web/main.js",
"contributes": {
"languageModelTools": [
{
"name": "boxlang-tools_lookupBoxLangDocumenation",
"tags": [
"editors",
"boxlang"
],
"toolReferenceName": "lookupBoxLangDocumentation",
"displayName": "Include BoxLang Documentation",
"modelDescription": "Retrieve BoxLang documentation from the web to help answer user questions. This tool can be used multiple times if needed. Try to use the previous context before calling this tool to get more information.",
"userDescription": "Lookup BoxLang/Ortus documentation and include it in the chat context",
"canBeReferencedInPrompt": true,
"icon": "$(server)",
"inputSchema": {
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "Summary of the problem the user is trying to solve which may require looking up documentation"
}
}
}
}
],
"chatParticipants": [
{
"id": "boxlang.chat",
"name": "boxlang",
"fullName": "BoxLang",
"description": "BoxLang Code Assitant",
"isSticky": true,
"commands": [
{
"name": "docs",
"description": "Provides a link to the docs"
}
]
}
],
"taskDefinitions": [
{
"type": "boxlang",
"required": [
"command"
],
"properties": {
"command": {
"type": "string",
"description": "The command to run."
},
"args": {
"type": "array",
"items": {
"type": "string"
},
"description": "The arguments to pass to the command."
}
}
}
],
"icons": {
"boxlang-logo": {
"description": "BoxLang logo icon",
"default": {
"fontPath": "./icons/boxlang.woff",
"fontCharacter": "\\E900"
}
}
},
"breakpoints": [
{
"language": "boxlang"
},
{
"language": "cfml"
}
],
"jsonValidation": [
{
"fileMatch": [
"*boxlang.json",
"**/*boxlang.json"
],
"url": "./resources/schemas/boxlang_schema.json"
},
{
"fileMatch": [
"*bxformat.json",
"**/*bxformat.json"
],
"url": "./resources/schemas/bxformat.schema.json"
}
],
"debuggers": [
{
"type": "boxlang",
"label": "BoxLang Runtime",
"languages": [
"boxlang"
],
"configurationAttributes": {
"launch": {
"required": [
"program"
],
"properties": {
"program": {
"type": "string",
"description": "The program to debug."
},
"serverPort": {
"type": "number",
"description": "The server port to connect to"
}
}
},
"attach": {
"required": [
"program"
],
"properties": {
"program": {
"type": "string",
"description": "The program to debug."
},
"serverPort": {
"type": "number",
"description": "The server port to connect to"
}
}
}
},
"initialConfigurations": [
{
"type": "boxlang",
"request": "attach",
"name": "Run BoxLang Program",
"program": "${workspaceFolder}/index.bx"
}
]
}
],
"languages": [
{
"id": "cfml",
"aliases": [
"CFML",
"cfml"
],
"extensions": [
".cfml",
".cfm",
".cfc"
],
"configuration": "./language-configuration.json"
},
{
"id": "boxlang",
"aliases": [
"BL",
"bl",
"BOXLANG"
],
"extensions": [
".bx",
".bxs",
".bxm",
".cfs"
],
"configuration": "./boxlang-language-configuration.json",
"icon": {
"light": "./icons/horn-dark.svg",
"dark": "./icons/horn-gradient.svg"
}
}
],
"grammars": [
{
"language": "cfml",
"scopeName": "embedding.cfml",
"path": "./syntaxes/cfml.tmLanguage.json",
"embeddedLanguages": {
"source.css": "css",
"meta.embedded.block.css": "css",
"source.js": "javascript",
"meta.embedded.block.js": "javascript",
"meta.embedded.line.js": "javascript",
"source.sql": "sql",
"meta.embedded.block.sql": "sql",
"meta.tag.cfml": "cfml",
"constant.character.escape.hash.cfml": "cfml",
"punctuation.definition.template-expression.begin.cfml": "cfml",
"meta.embedded.line.cfml": "cfml",
"meta.embedded.block.cfml": "cfml",
"punctuation.definition.template-expression.end.cfml": "cfml"
}
},
{
"language": "boxlang",
"scopeName": "embedding.boxlang",
"path": "./syntaxes/boxlang.tmLanguage.json",
"embeddedLanguages": {
"source.css": "css",
"meta.embedded.block.css": "css",
"source.js": "javascript",
"meta.embedded.block.js": "javascript",
"meta.embedded.line.js": "javascript",
"source.sql": "sql",
"meta.embedded.block.sql": "sql",
"meta.tag.boxlang": "boxlang",
"constant.character.escape.hash.boxlang": "boxlang",
"punctuation.definition.template-expression.begin.boxlang": "boxlang",
"meta.embedded.line.boxlang": "boxlang",
"meta.embedded.block.boxlang": "boxlang",
"punctuation.definition.template-expression.end.boxlang": "boxlang"
}
},
{
"scopeName": "boxlang.injection",
"path": "./syntaxes/boxlang-java.tmLanguage.json",
"injectTo": [
"source.java"
],
"embeddedLanguages": {
"meta.embedded.boxlang.script": "boxlang"
}
}
],
"configuration": {
"id": "boxlang",
"type": "object",
"title": "BoxLang Configuration",
"properties": {
"boxlang.settings.ignoreOldSettings": {
"scope": "application",
"type": "boolean",
"default": false,
"description": "Ignore old settings that could be migrated to the new format. This will be set automatically after importing settings. If you would like to migrate settings manually run the Boxlang: Migrate Settings command."
},
"boxlang.java.javaHome": {
"type": "string",
"description": "The path to the JVM you want to use. Must be Java 21 or higher. If not set it will use java. Use multiple backslashes on Windows i.e. C:\\\\Program Files\\\\Eclipse Adoptium\\\\jdk-21.0.2.13-hotspot",
"scope": "machine"
},
"boxlang.jarpath": {
"type": "string",
"description": "The path to the boxlang jar you want to use for execution",
"scope": "machine"
},
"boxlang.boxlangVersion": {
"type": "string",
"description": "The version of BoxLang you want to use for execution",
"scope": "resource",
"default": "1.13.0"
},
"boxlang.miniserverjarpath": {
"type": "string",
"description": "The path to the miniserver jar you want to use for execution",
"scope": "machine"
},
"boxlang.lspjarpath": {
"type": "string",
"description": "The path to the lsp jar you want to use for execution",
"scope": "machine"
},
"boxlang.webPort": {
"type": "number",
"description": "The port to use for local development",
"scope": "window"
},
"boxlang.mappings": {
"type": "object",
"default": {},
"additionalProperties": {
"type": "string"
},
"description": "Workspace mapping overrides for the BoxLang language server. Keys are logical paths such as /models and values are path strings. These overrides take precedence over shared project mappings defined in boxlang.json.",
"scope": "resource"
},
"boxlang.lsp.lspVersion": {
"type": "string",
"description": "Set the version of the language server to use",
"scope": "resource",
"default": "bx-lsp@1.10.0+9"
},
"boxlang.lsp.boxLangHome": {
"type": "string",
"description": "Set the home directory for the BoxLang Language Server",
"scope": "resource"
},
"boxlang.lsp.boxLangVersion": {
"type": "string",
"description": "Set the BoxLang runtime version of the BoxLang Language Server - set this at your own risk. It could error if the LSP module doesn't match this version.",
"scope": "resource"
},
"boxlang.lsp.maxHeapSize": {
"type": "integer",
"description": "Set the heap size of the JVM, default is 512 megabytes",
"scope": "window"
},
"boxlang.lsp.jvmArgs": {
"type": "string",
"description": "Set additional JVM args for the LSP process",
"scope": "machine"
},
"boxlang.lsp.enableExperimentalDiagnostics": {
"type": "boolean",
"description": "Enable expermiental support for boxlang diagnostic reporting",
"scope": "window"
},
"boxlang.lsp.enableBackgroundParsing": {
"type": "boolean",
"description": "Enable background parsing for boxlang files",
"scope": "work",
"default": false
},
"boxlang.lsp.sendLogToIDE": {
"type": "boolean",
"description": "Whether the LSP sends its logging output to the VS Code output channel",
"scope": "window",
"default": true
},
"boxlang.lsp.logLevel": {
"type": "string",
"description": "The log level for the BoxLang Language Server",
"scope": "window",
"default": "WARN",
"enum": [
"TRACE",
"DEBUG",
"INFO",
"WARN",
"ERROR",
"FATAL",
"OFF"
],
"enumDescriptions": [
"Trace level logging (most verbose)",
"Debug level logging",
"Info level logging",
"Warning level logging (default)",
"Error level logging",
"Fatal level logging",
"Disable LSP logging"
]
},
"boxlang.lsp.versionUpdateMode": {
"type": "string",
"description": "Controls how the BoxLang Language Server checks for and applies version updates",
"scope": "machine",
"default": "auto",
"enum": [
"auto",
"prompt",
"manual"
],
"enumDescriptions": [
"Check for the latest version and automatically download it",
"Check for the latest version and prompt before downloading",
"Do not check for the latest version"
]
},
"boxlang.lsp.processDiagnosticsInParallel": {
"type": "boolean",
"description": "Run diagnostic processing in parallel",
"scope": "window",
"default": true
},
"boxlang.lsp.modules": {
"type": "string",
"description": "Comma-delimited list of BoxLang modules to install in the LSP home before booting up",
"scope": "resource",
"default": ""
},
"boxlang.debugger.mode": {
"type": "string",
"description": "Choose which BoxLang debugger implementation to use",
"scope": "resource",
"default": "legacy",
"enum": [
"legacy",
"module"
],
"enumDescriptions": [
"Use the built-in debugger from the BoxLang JAR",
"Use a ForgeBox debugger module managed by version"
]
},
"boxlang.debugger.moduleName": {
"type": "string",
"description": "ForgeBox module slug for the module-based debugger",
"scope": "resource",
"default": "bx-debugger"
},
"boxlang.debugger.moduleVersion": {
"type": "string",
"description": "Debugger module version to use when debugger mode is set to module",
"scope": "resource",
"default": "1.0.0-snapshot"
},
"boxlang.debugger.boxLangHome": {
"type": "string",
"description": "Set the home directory for the BoxLang debugger module runtime",
"scope": "resource"
},
"boxlang.debugger.versionUpdateMode": {
"type": "string",
"description": "Controls how the BoxLang debugger checks for and applies version updates",
"scope": "machine",
"default": "auto",
"enum": [
"auto",
"prompt",
"manual"
],
"enumDescriptions": [
"Check for the latest version and automatically download it",
"Check for the latest version and prompt before downloading",
"Do not check for the latest version"
]
},
"boxlang.updates.runtime": {
"type": "string",
"description": "Controls how the BoxLang runtime checks for and applies version updates",
"scope": "machine",
"default": "prompt",
"enum": [
"auto",
"prompt",
"manual"
],
"enumDescriptions": [
"Check for the latest version and automatically download it",
"Check for the latest version and prompt before downloading",
"Do not check for the latest version"
]
},
"boxlang.updates.miniserver": {
"type": "string",
"description": "Controls how the BoxLang MiniServer checks for and applies version updates",
"scope": "machine",
"default": "prompt",
"enum": [
"auto",
"prompt",
"manual"
],
"enumDescriptions": [
"Check for the latest version and automatically download it",
"Check for the latest version and prompt before downloading",
"Do not check for the latest version"
]
},
"boxlang.updates.preRelease": {
"type": "boolean",
"description": "When enabled, update checks will include pre-release (snapshot, beta, alpha) versions",
"scope": "machine",
"default": false
},
"boxlang.showLexerTokens": {
"type": "boolean",
"description": "Controls whether to show the lexer processing output",
"scope": "window",
"default": false
},
"boxlang.lexerPath": {
"type": "string",
"description": "The path to the ANTLR lexer file to use when generating AST visualizations",
"scope": "machine"
},
"boxlang.parserPath": {
"type": "string",
"description": "The path to the ANTLR parser file to use when generating AST visualizations",
"scope": "machine"
},
"boxlang.customAntlrToolsCommand": {
"type": "string",
"description": "The custom path to execute when generating a antlr graph",
"scope": "window"
},
"boxlang.cfml.globalDefinitions.source": {
"type": "string",
"description": "The source of the global definitions.",
"enum": [
"cfdocs"
],
"default": "cfdocs",
"scope": "window"
},
"boxlang.cfml.cfDocs.source": {
"type": "string",
"description": "Indicates the source location type to be used for CFDocs. Remote is GitHub repo. Local is based on cfml.cfDocs.localPath.",
"markdownDescription": "Indicates the source location type to be used for CFDocs. Remote is GitHub repo. Local is based on `cfml.cfDocs.localPath`.",
"enum": [
"remote",
"local",
"extension"
],
"enumDescriptions": [
"Retrieve resources remotely from GitHub.",
"Retrieve resources locally using cfml.cfDocs.localPath.",
"Retrieve resources built into the extension."
],
"markdownEnumDescription": [
"Retrieve resources remotely from GitHub.",
"Retrieve resources locally using `cfml.cfDocs.localPath`.",
"Retrieve resources built into the extension."
],
"default": "extension",
"scope": "window"
},
"boxlang.cfml.cfDocs.localPath": {
"type": [
"string",
"null"
],
"description": "Physical path to the data/language directory of CFDocs.",
"default": null,
"scope": "machine-overridable"
},
"boxlang.cfml.hover.enable": {
"type": "boolean",
"description": "Whether hover is enabled for CFML entities.",
"default": true,
"scope": "resource"
},
"boxlang.cfml.hover.html.enable": {
"type": "boolean",
"description": "Whether hover is enabled for HTML entities.",
"default": true,
"scope": "resource"
},
"boxlang.cfml.hover.css.enable": {
"type": "boolean",
"description": "Whether hover is enabled for CSS entities.",
"default": true,
"scope": "resource"
},
"boxlang.cfml.signature.enable": {
"type": "boolean",
"description": "Whether signature help is enabled.",
"default": true,
"scope": "resource"
},
"boxlang.cfml.outline.showImplicitFunctions": {
"type": "boolean",
"description": "Whether to show implicit Functions in Outline View.",
"default": true,
"scope": "resource"
},
"boxlang.cfml.suggest.enable": {
"type": "boolean",
"description": "Whether completion help is enabled.",
"default": true,
"scope": "resource"
},
"boxlang.cfml.suggest.snippets.enable": {
"type": "boolean",
"description": "Whether snippets are part of completion help.",
"default": true,
"scope": "resource"
},
"boxlang.cfml.suggest.snippets.exclude": {
"type": "array",
"description": "Set of snippet keys you would like excluded from suggestions.",
"items": {
"description": "A snippet key to exclude from suggestions",
"type": "string"
},
"default": [],
"scope": "resource"
},
"boxlang.cfml.suggest.snippets.localPath": {
"type": [
"string",
"null"
],
"description": "Custom snippets path.",
"default": null,
"scope": "machine-overridable"
},
"boxlang.cfml.suggest.scopes.case": {
"type": "string",
"description": "What case should be used for the scopes in completion suggestions.",
"enum": [
"lower",
"upper"
],
"enumDescriptions": [
"Lowercases the scope",
"Uppercases the scope"
],
"default": "lower",
"scope": "resource"
},
"boxlang.cfml.suggest.globalFunctions.enable": {
"type": "boolean",
"description": "Whether global functions are part of completion help.",
"default": true,
"scope": "resource"
},
"boxlang.cfml.suggest.globalFunctions.firstLetterCase": {
"type": "string",
"description": "What case should be used for the first letter of global function suggestions.",
"enum": [
"unchanged",
"lower",
"upper"
],
"enumDescriptions": [
"Leaves the name unchanged from source",
"Lowercases the first letter",
"Uppercases the first letter"
],
"default": "default",
"scope": "resource"
},
"boxlang.cfml.suggest.globalTags.enable": {
"type": "boolean",
"description": "Whether global tags are part of completion help.",
"default": true,
"scope": "resource"
},
"boxlang.cfml.suggest.globalTags.attributes.quoteType": {
"type": "string",
"enum": [
"none",
"double",
"single"
],
"enumDescriptions": [
"Adds no quotes for attribute value",
"Adds two double quotes for attribute value",
"Adds two single quotes for attribute value"
],
"default": "double",
"description": "Which quote type to use when completing attribute suggestion.",
"scope": "resource"
},
"boxlang.cfml.suggest.globalTags.attributes.defaultValue": {
"type": "boolean",
"description": "Whether to populate the default value for an attribute if it has one.",
"default": false,
"scope": "resource"
},
"boxlang.cfml.suggest.globalTags.includeAttributes.setType": {
"type": "string",
"description": "What set of attributes to include when global tag suggestion is selected",
"default": "none",
"enum": [
"none",
"required",
"all"
],
"enumDescriptions": [
"Adds no attributes on completion of global tags",
"Adds required attributes on completion of global tags",
"Adds all attributes on completion of global tags"
],
"scope": "resource"
},
"boxlang.cfml.suggest.globalTags.includeAttributes.custom": {
"type": "object",
"description": "A custom set of attributes to include for given tags when suggestion is selected. This setting overrides the set type.",
"default": {},
"patternProperties": {
"^cf[a-z0-9_]+$": {
"description": "The tag name and its attribute overrides",
"type": "array",
"minItems": 0,
"items": {
"title": "Attribute",
"description": "The attribute information",
"type": "object",
"properties": {
"name": {
"title": "Attribute name",
"description": "The name of the attribute to include",
"type": "string"
},
"value": {
"title": "Attribute value",
"description": "The default value of the attribute",
"type": "string",
"default": ""
}
},
"required": [
"name"
]
},
"default": []
}
},
"additionalProperties": false,
"scope": "resource"
},
"boxlang.cfml.suggest.htmlTags.enable": {
"type": "boolean",
"description": "Whether HTML tags are part of completion help.",
"default": true,
"scope": "resource"
},
"boxlang.cfml.suggest.htmlTags.attributes.quoteType": {
"type": "string",
"enum": [
"none",
"double",
"single"
],
"enumDescriptions": [
"Adds no quotes for attribute value",
"Adds two double quotes for attribute value",
"Adds two single quotes for attribute value"
],
"default": "double",
"description": "Which quote type to use when completing attribute suggestion.",
"scope": "resource"
},
"boxlang.cfml.suggest.css.enable": {
"type": "boolean",
"description": "Whether CSS properties and values are part of completion help.",
"default": true,
"scope": "resource"
},
"boxlang.cfml.suggest.replaceComments": {
"type": "boolean",
"description": "Whether comments are replaced during parsing (**Disabing this is Experimental**)",
"default": true,
"scope": "resource"
},
"boxlang.cfml.definition.enable": {
"type": "boolean",
"description": "Whether providing definitions is enabled.",
"default": true,
"scope": "resource"
},
"boxlang.cfml.definition.userFunctions.search.enable": {
"type": "boolean",
"description": "Whether to search for matching functions throughout the workspace when a reliable match cannot be determined.",
"default": false,
"scope": "resource"
},
"boxlang.cfml.indexComponents.enable": {
"type": "boolean",
"description": "Whether to index the components in workspace. This is done on each startup and is required for most features to work properly.",
"default": true,
"scope": "window"
},
"boxlang.cfml.autoCloseTags.enable": {
"type": "boolean",
"description": "Whether to enable auto-closing tags for CFML. This uses the third-party extension 'auto-close-tag'. This is only checked and set on startup.",
"markdownDescription": "Whether to enable auto-closing tags for CFML. This uses the third-party extension `auto-close-tag`. This is only checked and set on startup.",
"default": true,
"scope": "window"
},
"boxlang.cfml.autoCloseTags.configurationTarget": {
"type": "string",
"description": "Auto-configuration target for auto-closing tags.",
"enum": [
"Global",
"Workspace"
],
"markdownEnumDescription": [
"Targets the global/user settings for CFML configuration of `auto-close-tag`",
"Targets the workspace settings for CFML configuration of `auto-close-tag`"
],
"default": "Global",
"scope": "window"
},
"boxlang.cfml.docBlock.gap": {
"type": "boolean",
"default": true,
"description": "Whether there should be a gap between the hint and other tags in a docblock",
"scope": "resource"
},
"boxlang.cfml.docBlock.extra": {
"type": "array",
"default": [],
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the tag"
},
"default": {
"type": "string",
"default": "",
"description": "The default value for the tag"
},
"types": {
"type": "array",
"description": "The types of structures to which this tag will be applied",
"items": {
"description": "A type of structure to which this tag will be applied",
"type": "string",
"enum": [
"component",
"function",
"property",
"interface"
]
}
}
},
"required": [
"name"
]
},
"description": "Extra tags you wish to include in every DocBlock",
"scope": "resource"
},
"boxlang.cfml.engine.name": {
"type": "string",
"description": "Name of the CFML engine against which to filter.",
"enum": [
"coldfusion",
"lucee",
"railo",
"openbd"
],
"scope": "window"
},
"boxlang.cfml.engine.version": {
"type": "string",
"pattern": "^((0|[1-9]\\d*)(\\.(0|[1-9]\\d*)(\\.(0|[1-9]\\d*))?)?)?$",
"description": "Version of the CFML engine against which to filter. SemVer format is preferred.",
"scope": "window"
},
"boxlang.cfml.mappings": {
"type": "array",
"default": [],
"deprecationMessage": "Deprecated. Use boxlang.mappings instead.",
"items": {
"type": "object",
"properties": {
"logicalPath": {
"type": "string",
"default": "",
"description": "The logical path to which the directory path is mapped. Must start with a /."
},
"directoryPath": {
"type": "string",
"default": "",
"description": "The path to the actual directory that will be mapped. Can be a physical path or relative to the workspace root."
},
"isPhysicalDirectoryPath": {
"type": "boolean",
"default": true,
"description": "Whether directoryPath refers to a physical path or one relative to the workspace root"
}
},
"required": [
"logicalPath",
"directoryPath"
]
},
"description": "Represents CFML mappings from logicalPath to directoryPath.",
"scope": "resource"
},
"boxlang.boxLangHome": {
"type": "string",
"description": "An alternative locatin to use as your BoxLang Home",
"scope": "resource"
},
"boxlang.dump.panelMode": {
"type": "string",
"description": "Controls whether each dump replaces the current panel or opens a new tab.",
"scope": "window",
"default": "replace",
"enum": [
"replace",
"newTab"
],
"enumDescriptions": [
"Each dump replaces the content of the existing dump panel",
"Each dump opens in its own editor tab"
]
},
"boxlang.dump.panelLocation": {
"type": "string",
"description": "Controls which editor column the dump panel opens in.",
"scope": "window",
"default": "beside",
"enum": [
"beside",
"active",
"one",
"two",
"three"
],
"enumDescriptions": [
"Open beside the currently active editor (default)",
"Open in the currently active editor column",
"Open in editor column one",
"Open in editor column two",
"Open in editor column three"
]
}
}
},
"configurationDefaults": {
"[cfml]": {
"editor.suggest.snippetsPreventQuickSuggestions": false
},
"[boxlang]": {
"editor.formatOnSave": false
}
},
"commands": [
{
"command": "boxlang.testInlineEdit",
"title": "BoxLang: Test Inline Edit"
},
{
"command": "boxlang.runBoxLangREPL",
"title": "BoxLang: Run REPL"
},
{
"command": "boxlang.hardResetWorkspaceHome",
"title": "BoxLang: Hard Reset Workspace Home"
},
{
"command": "boxlang.selectBoxLangVersion",
"title": "BoxLang: Select BoxLang Version"
},
{
"command": "boxlang.reinstallBoxLangComponent",
"title": "BoxLang: Reinstall Component"
},
{
"command": "boxlang.checkForUpdates",
"title": "BoxLang: Check for Updates"
},
{
"command": "boxlang.selectLSPVersion",
"title": "BoxLang: Select LSP Version"
},
{
"command": "boxlang.selectDebuggerVersion",
"title": "BoxLang: Select Debugger Version"
},
{
"command": "boxlang.removeDebuggerVersion",
"title": "BoxLang: Remove Debugger Version"
},
{
"command": "boxlang.selectMiniServerVersion",
"title": "BoxLang: Select MiniServer Version"
},
{
"command": "boxlang.removeBoxLangVersion",
"title": "BoxLang: Remove BoxLang Version"
},
{
"command": "boxlang.downloadJava",
"title": "BoxLang: Download Java 21"
},
{