-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguages.json
2329 lines (2329 loc) · 79.8 KB
/
languages.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
{
"languages": {
"Abap": {
"display_name": "ABAP",
"description": "Advanced Business Application Programming language by SAP",
"website": "https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abenabap_reference.htm",
"line_comment": ["*", "\""],
"extensions": ["abap"]
},
"ABNF": {
"description": "Augmented Backus–Naur form metalanguage",
"website": "https://en.wikipedia.org/wiki/Augmented_Backus%E2%80%93Naur_form",
"line_comment": [";"],
"extensions": ["abnf"]
},
"ActionScript": {
"description": "Adobe ActionScript programming language",
"website": "https://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/index.html",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["as"]
},
"Ada": {
"description": "Ada programming language",
"website": "https://ada-lang.io/",
"line_comment": ["--"],
"extensions": ["ada", "adb", "ads", "pad"]
},
"Agda": {
"description": "Agda programming language",
"website": "https://wiki.portal.chalmers.se/agda/Main/HomePage",
"nested": true,
"line_comment": ["--"],
"multi_line_comments": [["{-", "-}"]],
"extensions": ["agda"]
},
"Alex": {
"description": "Alex lexical analyzer generator specification",
"website": "https://haskell-alex.readthedocs.io/en/latest/",
"line_comment": ["--"],
"extensions": ["x"]
},
"Alloy": {
"description": "Alloy language and analyzer for software modeling",
"website": "https://alloytools.org/",
"line_comment": ["--", "//"],
"multi_line_comments": [["/*", "*/"]],
"extensions": ["als"]
},
"Apl": {
"description": "A Programming Language",
"website": "https://en.wikipedia.org/wiki/APL_(programming_language)",
"line_comment": ["\u235D"],
"extensions": ["apl"]
},
"Arduino": {
"display_name": "Arduino C++",
"description": "Arduino C++ programming language",
"website": "https://www.arduino.cc/reference/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["ino"]
},
"AsciiDoc": {
"description": "AsciiDoc plain text markup language",
"website": "https://asciidoc.org/",
"line_comment": ["//"],
"multi_line_comments": [["////", "////"]],
"extensions": ["adoc", "asciidoc"]
},
"Asn1": {
"display_name": "ASN.1",
"description": "Abstract Syntax Notation One standard interface description language",
"website": "https://en.wikipedia.org/wiki/ASN.1",
"line_comment": ["--"],
"quotes": [["\"", "\""], ["'", "'"]],
"multi_line_comments": [["/*", "*/"]],
"extensions": ["asn1", "mib"]
},
"Asp": {
"display_name": "ASP",
"description": "Microsoft Active Server Pages server-side scripting language",
"website": "https://en.wikipedia.org/wiki/Active_Server_Pages",
"line_comment": ["'", "REM"],
"extensions": ["asa", "asp"]
},
"AspNet": {
"display_name": "ASP.NET",
"description": "Microsoft .NET Active Server Pages server-side scripting language",
"website": "https://dotnet.microsoft.com/en-us/apps/aspnet",
"multi_line_comments": [["<!--", "-->"], ["<%--", "-->"]],
"extensions": ["asax", "ascx", "asmx", "aspx", "master", "sitemap", "webinfo"]
},
"Assembly": {
"description": "Assembly language",
"website": "https://docs.fileformat.com/programming/asm/",
"line_comment": [";"],
"quotes": [["\"", "\""], ["'", "'"]],
"mime": ["text/x-asm"],
"extensions": ["asm"]
},
"AssemblyGAS": {
"display_name": "GNU Style Assembly",
"description": "Assembly language styled for the GNU Assembler",
"website": "https://sourceware.org/binutils/docs/as/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["s"]
},
"Astro": {
"description": "Astro web framework for building content-driven websites",
"website": "https://astro.build/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"], ["<!--", "-->"]],
"extensions": ["astro"]
},
"Ats": {
"display_name": "ATS",
"description": "ATS programming language",
"website": "https://ats-lang.github.io/DOCUMENT/INT2PROGINATS/HTML/book1.html",
"line_comment": ["//"],
"multi_line_comments": [["(*", "*)"], ["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["dats", "hats", "sats", "atxt"]
},
"Autoconf": {
"description": "GNU Autoconf tool input specification",
"website": "https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.72/autoconf.html",
"line_comment": ["#", "dnl"],
"extensions": ["in"]
},
"Autoit": {
"description": "AutoIt v3 BASIC-like scripting language",
"website": "https://www.autoitscript.com/site/",
"line_comment": [";"],
"multi_line_comments": [["#comments-start", "#comments-end"], ["#cs", "#ce"]],
"extensions": ["au3"]
},
"AutoHotKey": {
"description": "AutoHotkey task automation scripting language",
"website": "https://www.autohotkey.com/",
"line_comment": [";"],
"multi_line_comments": [["/*", "*/"]],
"extensions": ["ahk"]
},
"Automake": {
"description": "GNU Automake specification for generating Makefile.in",
"website": "https://www.gnu.org/software/automake/",
"line_comment": ["#"],
"extensions": ["am"]
},
"Avalonia": {
"display_name": "AXAML",
"description": "Avalonia UI XAML dialect",
"website": "https://docs.avaloniaui.net/docs/basics/user-interface/introduction-to-xaml#axaml-file-extension",
"multi_line_comments": [["<!--", "-->"]],
"quotes": [["\"", "\""], ["'", "'"]],
"extensions": ["axaml"]
},
"AWK": {
"description": "Text processing script for AWK tool",
"website": "http://awklang.org/",
"line_comment": ["#"],
"shebangs": ["#!/bin/awk -f"],
"extensions": ["awk"]
},
"Bash": {
"display_name": "BASH",
"description": "Bourne Again SHell script",
"website": "https://www.gnu.org/software/bash/",
"shebangs": ["#!/bin/bash"],
"line_comment": ["#"],
"quotes": [["\"", "\""], ["'", "'"]],
"env": ["bash"],
"extensions": ["bash"]
},
"Batch": {
"description": "Windows batch file",
"website": "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/windows-commands",
"line_comment": ["REM", "rem", "Rem","::"],
"extensions": ["bat", "btm", "cmd"]
},
"Bazel": {
"description": "Bazel build file",
"website": "https://bazel.build/",
"line_comment": ["#"],
"doc_quotes": [["\"\"\"", "\"\"\""], ["'''", "'''"]],
"quotes": [["\"", "\""], ["'", "'"]],
"extensions": ["bzl", "bazel"],
"filenames": ["build", "workspace"]
},
"Bean": {
"description": "Rich text and graphics file native to the Bean word processor",
"website": "https://www.bean-osx.com/Bean.html",
"line_comment": [";"],
"quotes": [["\"", "\""]],
"extensions": ["bean", "beancount"]
},
"Bitbake": {
"display_name": "Bitbake",
"description": "BitBake task execution script",
"website": "https://docs.yoctoproject.org/bitbake/",
"line_comment": ["#"],
"quotes": [["\"", "\""], ["'", "'"]],
"extensions": ["bb", "bbclass", "bbappend", "inc"]
},
"BrightScript": {
"description": "Roku BrightScript scripting language",
"website": "https://developer.roku.com/docs/references/brightscript/language/brightscript-language-reference.md",
"quotes": [["\"", "\""]],
"line_comment": ["'", "REM", "rem", "Rem"],
"extensions": ["brs"]
},
"C": {
"description": "C programming language",
"website": "https://en.wikipedia.org/wiki/C_(programming_language)",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["c", "ec", "pgc"]
},
"Cabal": {
"description": "Haskell build and packaging language",
"website": "https://www.haskell.org/cabal/",
"nested": true,
"line_comment": ["--"],
"multi_line_comments": [["{-", "-}"]],
"extensions": ["cabal"]
},
"Cassius": {
"description": "CSS template language from the Shakespearean family of template languages",
"website": "https://www.yesodweb.com/book/shakespearean-templates#shakespearean-templates_cassius_css",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""], ["'", "'"]],
"extensions": ["cassius"]
},
"Ceylon": {
"description": "Object-oriented, strongly statically typed programming language",
"website": "https://projects.eclipse.org/projects/technology.ceylon",
"line_comment": ["//", "#!"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""], ["\"\"\"", "\"\"\""]],
"nested": true,
"extensions": ["ceylon"]
},
"CHeader": {
"display_name": "C Header",
"description": "C programming language header file",
"website": "https://en.wikipedia.org/wiki/C_(programming_language)",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["h"]
},
"Clojure": {
"description": "Clojure programming language",
"website": "https://clojure.org/",
"line_comment": [";"],
"quotes": [["\"", "\""]],
"extensions": ["clj"]
},
"ClojureC": {
"description": "Clojure file for platform specific code",
"website": "https://clojure.org/",
"line_comment": [";"],
"quotes": [["\"", "\""]],
"extensions": ["cljc"]
},
"ClojureScript": {
"description": "Clojure scripting language file",
"website": "https://clojurescript.org/",
"line_comment": [";"],
"quotes": [["\"", "\""]],
"extensions": ["cljs"]
},
"CMake": {
"description": "Build script for the CMake tool",
"website": "https://cmake.org/",
"line_comment": ["#"],
"quotes": [["\"", "\""]],
"extensions": ["cmake"],
"filenames": ["cmakelists.txt"]
},
"Cobol": {
"display_name": "COBOL",
"description": "COmmon Business-Oriented Language",
"website": "https://en.wikipedia.org/wiki/COBOL",
"line_comment": ["*"],
"extensions": ["cob", "cbl", "ccp", "cobol", "cpy"]
},
"CodeQL": {
"description": "Code Query Language file",
"website": "https://codeql.github.com/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["ql", "qll"]
},
"CoffeeScript": {
"description": "JavaScript-like scripting language",
"website": "https://coffeescript.org/",
"line_comment": ["#"],
"multi_line_comments": [["###", "###"]],
"quotes": [["\"", "\""], ["'", "'"]],
"extensions": ["coffee", "cjsx"]
},
"Cogent": {
"description": "Functional programming language",
"website": "https://trustworthy.systems/projects/OLD/cogent/",
"line_comment": ["--"],
"extensions": ["cogent"]
},
"ColdFusion": {
"description": "ColdFusion Markup Language for web development",
"website": "https://en.wikipedia.org/wiki/ColdFusion_Markup_Language",
"multi_line_comments": [["<!---", "--->"]],
"quotes": [["\"", "\""], ["'", "'"]],
"extensions": ["cfm"]
},
"ColdFusionScript": {
"display_name": "ColdFusion CFScript",
"description": "JavaScript-like extension of ColdFusion",
"website": "https://en.wikipedia.org/wiki/CFScript",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["cfc"]
},
"Coq": {
"description": "Interactive theorem prover language",
"website": "https://coq.inria.fr/",
"quotes": [["\"", "\""]],
"multi_line_comments": [["(*", "*)"]],
"extensions": ["v"]
},
"Cpp": {
"display_name": "C++",
"description": "C++ programming language source file",
"website": "https://en.wikipedia.org/wiki/C%2B%2B",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"verbatim_quotes": [["R\"(", ")\""]],
"extensions": ["cc", "cpp", "cxx", "c++", "pcc", "tpp"]
},
"CppHeader": {
"display_name": "C++ Header",
"description": "C++ programming language header file",
"website": "https://en.wikipedia.org/wiki/C%2B%2B",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["hh", "hpp", "hxx", "inl", "ipp"]
},
"Crystal": {
"description": "Ruby-like programming language",
"website": "https://crystal-lang.org/",
"line_comment": ["#"],
"shebangs": ["#!/usr/bin/crystal"],
"quotes": [["\"", "\""], ["'", "'"]],
"env": ["crystal"],
"extensions": ["cr"]
},
"CSharp": {
"display_name": "C#",
"description": "C# programming language",
"website": "https://en.wikipedia.org/wiki/C_Sharp_(programming_language)",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"verbatim_quotes": [["@\"", "\""]],
"extensions": ["cs", "csx"]
},
"CShell": {
"display_name": "C Shell",
"description": "C Shell scripting language",
"website": "https://en.wikipedia.org/wiki/C_shell",
"shebangs": ["#!/bin/csh"],
"line_comment": ["#"],
"env": ["csh"],
"mime": ["application/x-csh"],
"extensions": ["csh"]
},
"Css": {
"display_name": "CSS",
"description": "Cascading Style Sheets language",
"website": "https://www.w3.org/Style/CSS/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""], ["'", "'"]],
"mime": ["text/css"],
"extensions": ["css"]
},
"Cuda": {
"display_name": "CUDA",
"description": "Compute Unified Device Architecture programming language",
"website": "https://developer.nvidia.com/cuda-zone",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["cu"]
},
"Cython": {
"description": "Superset of the Python programming language with C-like constructs",
"website": "https://cython.org/",
"line_comment": ["#"],
"doc_quotes": [["\"\"\"", "\"\"\""], ["'''", "'''"]],
"quotes": [["\"", "\""], ["'", "'"]],
"env": ["cython"],
"extensions": ["pyx", "pxd", "pxi"]
},
"D": {
"description": "D programming language",
"website": "https://dlang.org/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""], ["'", "'"]],
"nested_comments": [["/+", "+/"]],
"extensions": ["d"]
},
"Daml": {
"display_name": "DAML",
"description": "DARPA Agent Markup Language",
"website": "https://en.wikipedia.org/wiki/DARPA_Agent_Markup_Language",
"nested": true,
"line_comment": ["-- "],
"multi_line_comments": [["{-", "-}"]],
"extensions": ["daml"]
},
"Dart": {
"description": "Dart programming language",
"website": "https://dart.dev/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [
["\"", "\""],
["'", "'"],
["\"\"\"", "\"\"\""],
["'''", "'''"]
],
"extensions": ["dart"]
},
"DeviceTree": {
"display_name": "Device Tree",
"description": "Device Tree source format",
"website": "https://devicetree-specification.readthedocs.io/en/latest/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["dts", "dtsi"]
},
"Dhall": {
"description": "JSON-like configuration language",
"website": "https://dhall-lang.org/",
"nested": true,
"line_comment": ["--"],
"multi_line_comments": [["{-", "-}"]],
"quotes": [["\"", "\""], ["''", "''"]],
"extensions": ["dhall"]
},
"Dockerfile": {
"description": "Docker configuration file",
"website": "https://docs.docker.com/engine/reference/builder/",
"line_comment": ["#"],
"extensions": ["dockerfile", "dockerignore"],
"filenames": ["dockerfile"],
"quotes": [["\"", "\""], ["'", "'"]]
},
"DotNetResource": {
"display_name": ".NET Resource",
"description": ".NET resource file",
"website": "https://learn.microsoft.com/en-us/dotnet/core/extensions/resources",
"multi_line_comments": [["<!--", "-->"]],
"quotes": [["\"", "\""]],
"extensions": ["resx"]
},
"DreamMaker": {
"display_name": "Dream Maker",
"description": "Scripting language for the BYOND engine",
"website": "https://www.byond.com/docs/guide/chap01.html",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"nested": true,
"extensions": ["dm", "dme"],
"quotes": [["\"", "\""], ["{\"", "\"}"], ["'", "'"]]
},
"Dsssl": {
"display_name": "DSSSL",
"description": "Document Style Semantics and Specification Language",
"website": "https://en.wikipedia.org/wiki/Document_Style_Semantics_and_Specification_Language",
"line_comment": [";"],
"multi_line_comments": [["<!--", "-->"]],
"extensions": ["dsl"]
},
"DTD": {
"display_name": "Document Type Definition",
"description": "Defines the elements, attributes and text content allowed in an XML document",
"website": "https://en.wikipedia.org/wiki/Document_type_definition",
"multi_line_comments": [["<!--", "-->"]],
"extensions": ["dtd"]
},
"Dust": {
"display_name": "Dust.js",
"description": "JavaScript template engine",
"website": "https://akdubya.github.io/dustjs/",
"multi_line_comments": [["{!", "!}"]],
"extensions": ["dust"]
},
"Ebuild": {
"description": "Gentoo package manager description file",
"website": "https://wiki.gentoo.org/wiki/Ebuild",
"line_comment": ["#"],
"quotes": [["\"", "\""], ["'", "'"]],
"extensions": ["ebuild", "eclass"]
},
"EdgeQL": {
"display_name": "EdgeQL",
"description": "Database query language for EdgeDB",
"website": "https://www.edgedb.com/docs/edgeql/index",
"line_comment": ["#"],
"quotes": [["'", "'"], ["\"", "\""], ["$", "$"]],
"extensions": ["edgeql"]
},
"ESDL": {
"display_name": "EdgeDB Schema Definition",
"description": "EdgeDB schema definition language",
"website": "https://www.edgedb.com/docs/reference/sdl/index",
"line_comment": ["#"],
"quotes": [["'", "'"], ["\"", "\""]],
"extensions": ["esdl"]
},
"Edn": {
"description": "Extensible data notation",
"website": "https://github.com/edn-format/edn",
"line_comment": [";"],
"extensions": ["edn"]
},
"Elisp": {
"display_name": "Emacs Lisp",
"description": "Lisp dialect used by the Emacs editor",
"website": "https://www.gnu.org/software/emacs/manual/html_node/elisp/",
"line_comment": [";"],
"extensions": ["el"]
},
"Elixir": {
"description": "Functional programming language",
"website": "https://elixir-lang.org/",
"line_comment": ["#"],
"doc_quotes": [["@moduledoc \"\"\"", "\"\"\""], ["@doc \"\"\"", "\"\"\""]],
"quotes": [
["\"\"\"", "\"\"\""],
["\"", "\""],
["'''", "'''"],
["'", "'"]
],
"extensions": ["ex", "exs"]
},
"Elm": {
"description": "Elm programming language",
"website": "https://elm-lang.org/",
"nested": true,
"line_comment": ["--"],
"multi_line_comments": [["{-", "-}"]],
"extensions": ["elm"]
},
"Elvish": {
"description": "Elvish programming language",
"website": "https://elv.sh/",
"line_comment": ["#"],
"quotes": [["\"", "\""], ["'", "'"]],
"env": ["elvish"],
"extensions": ["elv"]
},
"EmacsDevEnv": {
"display_name": "Emacs Dev Env",
"description": "Emacs development environment",
"website": "https://www.gnu.org/software/emacs/manual/html_node/emacs/EDE.html",
"line_comment": [";"],
"extensions": ["ede"]
},
"Emojicode": {
"description": "Programming language using emojis",
"website": "https://www.emojicode.org/",
"line_comment": ["\uD83D\uDCAD"],
"multi_line_comments": [["\uD83D\uDCAD\uD83D\uDD1C", "\uD83D\uDD1A\uD83D\uDCAD"],
["\uD83D\uDCD7", "\uD83D\uDCD7"],
["\uD83D\uDCD8", "\uD83D\uDCD8"]],
"quotes": [["\u274C\uD83D\uDD24", "\u274C\uD83D\uDD24"]],
"extensions": ["emojic", "\uD83C\uDF47"]
},
"Erlang": {
"description": "Erlang programming language",
"website": "https://www.erlang.org/",
"line_comment": ["%"],
"extensions": ["erl", "hrl"]
},
"Expect": {
"description": "Application automation",
"website": "https://core.tcl-lang.org/expect/index",
"line_comment": ["#"],
"shebangs": ["#!/bin/expect"],
"extensions": ["exp"]
},
"Factor": {
"description": "Factor programming language",
"website": "https://factorcode.org/",
"line_comment": ["!", "#!"],
"multi_line_comments": [["/*", "*/"]],
"extensions": ["factor"]
},
"FEN": {
"display_name": "FEN",
"description": "Forsyth–Edwards Notation for describing board positions of a chess game",
"website": "https://en.wikipedia.org/wiki/Forsyth%E2%80%93Edwards_Notation",
"extensions": ["fen"]
},
"Fennel" : {
"description": "Fennel programming language",
"website": "https://fennel-lang.org/",
"line_comment": [";", ";;"],
"quotes": [["\"", "\""]],
"extensions": ["fnl"]
},
"Fish": {
"description": "Fish scripting language",
"website": "https://fishshell.com/docs/current/language.html",
"shebangs": ["#!/bin/fish"],
"line_comment": ["#"],
"quotes": [["\"", "\""], ["'", "'"]],
"env": ["fish"],
"extensions": ["fish"]
},
"FlatBuffers": {
"display_name": "FlatBuffers Schema",
"description": "FlatBuffers serialization library schema",
"website": "https://flatbuffers.dev/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["fbs"]
},
"ForgeConfig": {
"display_name": "Forge Config",
"description": "Minecraft Forge configuration file",
"website": "https://forge.gemwire.uk/wiki/Configs",
"line_comment": ["#", "~"],
"extensions": ["cfg"]
},
"Forth": {
"description": "Forth programming language",
"website": "https://forth-standard.org/",
"line_comment": ["\\"],
"multi_line_comments": [["( ", ")"]],
"extensions": [
"4th",
"forth",
"fr",
"frt",
"fth",
"f83",
"fb",
"fpm",
"e4",
"rx",
"ft"
]
},
"FortranLegacy": {
"display_name": "FORTRAN Legacy",
"description": "FORTRAN programming language in its legacy format",
"website": "https://en.wikipedia.org/wiki/Fortran",
"column_significant": true,
"line_comment": ["c", "C", "!", "*"],
"quotes": [["\"", "\""], ["'", "'"]],
"extensions": ["f", "for", "ftn", "f77", "pfo"]
},
"FortranModern": {
"display_name": "FORTRAN Modern",
"description": "FORTRAN programming language in its modern format",
"website": "https://en.wikipedia.org/wiki/Fortran",
"line_comment": ["!"],
"quotes": [["\"", "\""]],
"extensions": ["f03", "f08", "f90", "f95"]
},
"FreeMarker": {
"description": "FreeMarker template language",
"website": "https://freemarker.apache.org/",
"multi_line_comments": [["<#--", "-->"]],
"extensions": ["ftl", "ftlh", "ftlx"]
},
"FSharp": {
"display_name": "F#",
"description": "F# programming language",
"website": "https://fsharp.org/",
"line_comment": ["//"],
"multi_line_comments": [["(*", "*)"]],
"quotes": [["\"", "\""]],
"verbatim_quotes": [["@\"", "\""]],
"extensions": ["fs", "fsi", "fsx", "fsscript"]
},
"Fstar": {
"display_name": "F*",
"description": "Proof-oriented programming language",
"website": "https://fstar-lang.org/",
"quotes": [["\"", "\""]],
"line_comment": ["//"],
"multi_line_comments": [["(*", "*)"]],
"extensions": ["fst"]
},
"Futhark": {
"description": "Futhark programming language",
"website": "https://futhark-lang.org/",
"line_comment": ["--"],
"extensions": ["fut"]
},
"GDB": {
"display_name": "GDB Script",
"description": "GNU Project debugger script",
"website": "https://www.sourceware.org/gdb/",
"line_comment": ["#"],
"extensions": ["gdb"]
},
"GdScript": {
"display_name": "GDScript",
"description": "Godot game engine scripting language",
"website": "https://gdscript.com/",
"line_comment": ["#"],
"quotes": [
["\"", "\""],
["'", "'"],
["\"\"\"", "\"\"\""]
],
"extensions": ["gd"]
},
"Gherkin": {
"display_name": "Gherkin (Cucumber)",
"description": "Cucumber scripting language",
"website": "https://cucumber.io/docs/gherkin/reference/",
"line_comment": ["#"],
"extensions": ["feature"]
},
"Gleam": {
"display_name": "Gleam",
"description": "Functional programming language",
"website": "https://gleam.run/",
"line_comment": ["//", "///", "////"],
"quotes": [["\"", "\""]],
"extensions": ["gleam"]
},
"Glsl": {
"display_name": "GLSL",
"description": "OpenGL Shading Language",
"website": "https://en.wikipedia.org/wiki/OpenGL_Shading_Language",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["vert", "tesc", "tese", "geom", "frag", "comp", "mesh", "task", "rgen", "rint", "rahit", "rchit", "rmiss", "rcall", "glsl"]
},
"Gml": {
"display_name": "Gml",
"description": "Geography Markup Language",
"website": "https://www.iso.org/standard/75676.html",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["gml"]
},
"Go": {
"description": "Go programming language",
"website": "https://go.dev/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["go"]
},
"Gohtml": {
"display_name": "Go HTML",
"description": "Go template for generating HTML",
"website": "https://pkg.go.dev/html/template",
"multi_line_comments": [["<!--", "-->"], ["{{/*", "*/}}"]],
"quotes": [["\"", "\""], ["'", "'"]],
"extensions": ["gohtml"]
},
"GradleKotlin": {
"description": "Gradle Kotlin build file",
"website": "https://gradle.org/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"nested": true,
"quotes": [["\"", "\""], ["\"\"\"", "\"\"\""]],
"filenames": ["build.gradle.kts", "settings.gradle.kts"]
},
"GradleGroovy": {
"description": "Gradle Groovy build file",
"website": "https://gradle.org/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["gradle"]
},
"Graphql": {
"display_name": "GraphQL",
"description": "Graph query language",
"website": "https://graphql.org/",
"quotes": [["\"", "\""], ["\"\"\"", "\"\"\""]],
"line_comment": ["#"],
"extensions": ["gql", "graphql"]
},
"Groovy": {
"description": "Groovy programming language",
"website": "https://groovy-lang.org/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"env": ["groovy"],
"extensions": ["groovy", "grt", "gtpl", "gvy"]
},
"Gwion": {
"description": "Gwion programming language",
"website": "https://gwion.github.io/Gwion/",
"line_comment": ["#!"],
"quotes": [["\"", "\""]],
"extensions": ["gw"]
},
"Haml": {
"description": "HTML abstraction markup language",
"website": "https://haml.info/",
"line_comment": ["-#"],
"quotes": [["\"", "\""], ["'", "'"]],
"extensions": ["haml"]
},
"Hamlet": {
"description": "HTML template language from the Shakespearean family of template languages",
"website": "https://www.yesodweb.com/book/shakespearean-templates#shakespearean-templates_hamlet_html",
"line_comment": ["--"],
"multi_line_comments": [["<!--", "-->"]],
"quotes": [["\"", "\""]],
"extensions": ["hamlet"]
},
"Handlebars": {
"description": "Handlebars template language",
"website": "https://handlebarsjs.com/",
"multi_line_comments": [["<!--", "-->"], ["{{!--", "--}}"], ["{{!", "}}"]],
"quotes": [["\"", "\""], ["'", "'"]],
"extensions": ["hbs", "handlebars"]
},
"Haskell": {
"description": "Haskell programming language",
"website": "https://www.haskell.org/",
"nested": true,
"line_comment": ["--"],
"multi_line_comments": [["{-", "-}"]],
"extensions": ["hs"]
},
"Haxe": {
"description": "Haxe programming language",
"website": "https://haxe.org/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""], ["'", "'"]],
"extensions": ["hx"]
},
"Hcl": {
"display_name": "HCL",
"description": "Hashicorp configuration language",
"website": "https://github.com/hashicorp/hcl",
"line_comment": ["#", "//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["hcl", "tf", "tfvars"]
},
"Headache": {
"description": "Headache programming language",
"website": "https://github.com/LucasMW/Headache",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["ha"]
},
"HiCad": {
"display_name": "HICAD",
"line_comment": ["REM", "rem"],
"extensions": ["mac"]
},
"Hlsl": {
"display_name": "HLSL",
"description": "High Level Shader Language",
"website": "https://en.wikipedia.org/wiki/High-Level_Shader_Language",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["hlsl"]
},
"HolyC": {
"description": "C-like programming language used by TempleOS",
"website": "https://en.wikipedia.org/wiki/TempleOS",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["hc", "zc"]
},
"Html": {
"display_name": "HTML",
"description": "HyperText Markup Language",
"website": "https://en.wikipedia.org/wiki/HTML",
"multi_line_comments": [["<!--", "-->"]],
"quotes": [["\"", "\""], ["'", "'"]],
"important_syntax": ["<script", "<style", "<template", "<svg"],
"mime": ["text/html"],
"extensions": ["html", "htm"],
"embed_syntax": "html"
},
"Hy": {
"description": "Hy programming language",
"website": "https://hylang.org/",
"line_comment": [";"],
"extensions": ["hy"]
},
"Idris": {
"description": "Idris programming language",
"website": "https://www.idris-lang.org/",
"line_comment": ["--", "|||"],
"multi_line_comments": [["{-", "-}"]],
"quotes": [["\"", "\""], ["\"\"\"", "\"\"\""]],
"extensions": ["idr", "lidr"],
"nested": true
},
"Ini": {
"display_name": "INI",
"description": "INI configuration file",
"website": "https://en.wikipedia.org/wiki/INI_file",
"line_comment": [";", "#"],
"extensions": ["ini"]
},
"IntelHex": {
"display_name": "Intel HEX",
"description": "Intel hexadecimal object file format",
"website": "https://en.wikipedia.org/wiki/Intel_HEX",
"extensions": ["hex"]
},
"Isabelle": {
"description": "Isabelle theorem prover language",
"website": "https://isabelle.in.tum.de/",
"line_comment": ["--"],
"multi_line_comments": [
["{*", "*}"],
["(*", "*)"],
["‹", "›"],
["\\<open>", "\\<close>"]
],
"quotes": [["''", "''"]],
"extensions": ["thy"]
},
"Jai": {
"display_name": "JAI",
"description": "Jai programming language",
"website": "https://inductive.no/jai/",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"extensions": ["jai"],
"nested": true
},
"Java": {
"description": "Java programming language",
"website": "https://en.wikipedia.org/wiki/Java_(programming_language)",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""]],
"mime": ["text/x-java-source"],
"extensions": ["java"]
},
"JavaProperties": {
"display_name": "Java Properties",
"description": "Java properties file",
"website": "https://en.wikipedia.org/wiki/.properties",
"line_comment": ["#", "!"],
"extensions": ["properties"]
},
"JavaScript": {
"description": "JavaScript programming language",
"website": "https://en.wikipedia.org/wiki/JavaScript",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"quotes": [["\"", "\""], ["'", "'"], ["`", "`"]],
"mime": [
"application/javascript",
"application/ecmascript",
"application/x-ecmascript",
"application/x-javascript",
"text/javascript",
"text/ecmascript",
"text/javascript1.0",
"text/javascript1.1",
"text/javascript1.2",
"text/javascript1.3",