linguist-js 2.9.2 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/index.js +1 -1
- package/dist/analyser/classifiers/byAttributes.d.ts +3 -0
- package/dist/analyser/classifiers/byAttributes.js +13 -0
- package/dist/analyser/classifiers/byExtension.d.ts +3 -0
- package/dist/analyser/classifiers/byExtension.js +31 -0
- package/dist/analyser/classifiers/byFilename.d.ts +3 -0
- package/dist/analyser/classifiers/byFilename.js +10 -0
- package/dist/analyser/classifiers/byHeuristics.d.ts +3 -0
- package/dist/analyser/classifiers/byHeuristics.js +67 -0
- package/dist/analyser/classifiers/byModeline.d.ts +3 -0
- package/dist/analyser/classifiers/byModeline.js +22 -0
- package/dist/analyser/classifiers/byShebang.d.ts +3 -0
- package/dist/analyser/classifiers/byShebang.js +27 -0
- package/dist/analyser/index.d.ts +3 -0
- package/dist/analyser/index.js +12 -0
- package/dist/analyser/pipeline/aggregate.d.ts +4 -0
- package/dist/analyser/pipeline/aggregate.js +98 -0
- package/dist/analyser/pipeline/classify.d.ts +3 -0
- package/dist/analyser/pipeline/classify.js +32 -0
- package/dist/analyser/pipeline/filter.d.ts +2 -0
- package/dist/analyser/pipeline/filter.js +14 -0
- package/dist/analyser/pipeline/heuristics.d.ts +3 -0
- package/dist/analyser/pipeline/heuristics.js +12 -0
- package/dist/analyser/pipeline/normalise.d.ts +2 -0
- package/dist/analyser/pipeline/normalise.js +9 -0
- package/dist/cli/output/default.d.ts +3 -0
- package/dist/cli/output/default.js +106 -0
- package/dist/cli/output/tree.d.ts +3 -0
- package/dist/cli/output/tree.js +11 -0
- package/dist/cli/runCliAnalysis.d.ts +2 -0
- package/dist/cli/runCliAnalysis.js +26 -0
- package/dist/cli/utils.d.ts +2 -0
- package/dist/cli/utils.js +9 -0
- package/dist/cli.js +14 -143
- package/dist/entry/analyseFs.d.ts +2 -0
- package/dist/entry/analyseFs.js +11 -0
- package/dist/entry/analyseRaw.d.ts +4 -0
- package/dist/entry/analyseRaw.js +11 -0
- package/dist/index.d.ts +19 -4
- package/dist/index.js +18 -483
- package/dist/input/fromFilesystem.d.ts +4 -0
- package/dist/input/fromFilesystem.js +115 -0
- package/dist/input/fromRawContent.d.ts +2 -0
- package/dist/input/fromRawContent.js +19 -0
- package/dist/input/normaliseOpts.d.ts +2 -0
- package/dist/input/normaliseOpts.js +13 -0
- package/dist/program/classes/attributes.d.ts +11 -0
- package/dist/program/classes/attributes.js +37 -0
- package/dist/program/data/loadDataFiles.d.ts +4 -0
- package/dist/program/data/loadDataFiles.js +32 -0
- package/dist/program/data/retrieveData.d.ts +12 -0
- package/dist/program/data/retrieveData.js +27 -0
- package/dist/program/fs/normalisedPath.d.ts +3 -0
- package/dist/program/fs/normalisedPath.js +17 -0
- package/dist/program/fs/readFile.js +17 -0
- package/dist/program/fs/walkTree.d.ts +20 -0
- package/dist/program/fs/walkTree.js +82 -0
- package/dist/program/parsing/parseGitattributes.d.ts +17 -0
- package/dist/program/parsing/parseGitattributes.js +33 -0
- package/dist/program/parsing/parseGitignore.js +9 -0
- package/dist/program/processFiles.d.ts +9 -0
- package/dist/program/processFiles.js +111 -0
- package/dist/program/utils/pcre.js +35 -0
- package/dist/src/cli/output/default.d.ts +3 -0
- package/dist/src/cli/output/default.js +106 -0
- package/dist/src/cli/output/tree.d.ts +3 -0
- package/dist/src/cli/output/tree.js +11 -0
- package/dist/src/cli/runCliAnalysis.d.ts +2 -0
- package/dist/src/cli/runCliAnalysis.js +25 -0
- package/dist/src/cli/utils.d.ts +2 -0
- package/dist/src/cli/utils.js +9 -0
- package/dist/src/cli.d.ts +1 -0
- package/dist/src/cli.js +56 -0
- package/dist/src/helpers/convert-pcre.d.ts +2 -0
- package/dist/src/helpers/parse-gitignore.d.ts +1 -0
- package/dist/src/helpers/read-file.d.ts +5 -0
- package/dist/{helpers → src/helpers}/read-file.js +1 -1
- package/dist/src/index.d.ts +5 -0
- package/dist/src/index.js +470 -0
- package/dist/src/program/data/loadData.d.ts +4 -0
- package/dist/src/program/data/loadData.js +32 -0
- package/dist/src/program/fs/normalisedPath.d.ts +2 -0
- package/dist/src/program/fs/normalisedPath.js +7 -0
- package/dist/src/program/fs/readFile.d.ts +5 -0
- package/dist/src/program/fs/readFile.js +17 -0
- package/dist/src/program/fs/walkTree.d.ts +20 -0
- package/dist/src/program/fs/walkTree.js +82 -0
- package/dist/src/program/parsing/parseGitattributes.d.ts +17 -0
- package/dist/src/program/parsing/parseGitattributes.js +33 -0
- package/dist/src/program/parsing/parseGitignore.d.ts +1 -0
- package/dist/src/program/parsing/parseGitignore.js +9 -0
- package/dist/src/program/utils/pcre.d.ts +2 -0
- package/dist/src/program/utils/pcre.js +35 -0
- package/dist/src/types/schema.d.ts +37 -0
- package/dist/src/types/schema.js +1 -0
- package/dist/src/types/types.d.ts +65 -0
- package/dist/src/types/types.js +1 -0
- package/dist/types/schema.d.ts +37 -0
- package/dist/types/schema.js +1 -0
- package/dist/types/types.d.ts +84 -0
- package/dist/types/types.js +1 -0
- package/ext/generated.rb +6 -0
- package/ext/heuristics.yml +102 -11
- package/ext/languages.yml +526 -88
- package/ext/vendor.yml +1 -0
- package/package.json +14 -13
- package/readme.md +99 -111
- /package/dist/{helpers/read-file.d.ts → program/fs/readFile.d.ts} +0 -0
- /package/dist/{helpers/parse-gitignore.d.ts → program/parsing/parseGitignore.d.ts} +0 -0
- /package/dist/{helpers/convert-pcre.d.ts → program/utils/pcre.d.ts} +0 -0
- /package/dist/{helpers → src/helpers}/convert-pcre.js +0 -0
- /package/dist/{helpers → src/helpers}/load-data.d.ts +0 -0
- /package/dist/{helpers → src/helpers}/load-data.js +0 -0
- /package/dist/{helpers → src/helpers}/norm-path.d.ts +0 -0
- /package/dist/{helpers → src/helpers}/norm-path.js +0 -0
- /package/dist/{helpers → src/helpers}/parse-gitattributes.d.ts +0 -0
- /package/dist/{helpers → src/helpers}/parse-gitattributes.js +0 -0
- /package/dist/{helpers → src/helpers}/parse-gitignore.js +0 -0
- /package/dist/{helpers → src/helpers}/walk-tree.d.ts +0 -0
- /package/dist/{helpers → src/helpers}/walk-tree.js +0 -0
- /package/dist/{schema.d.ts → src/schema.d.ts} +0 -0
- /package/dist/{schema.js → src/schema.js} +0 -0
- /package/dist/{types.d.ts → src/types.d.ts} +0 -0
- /package/dist/{types.js → src/types.js} +0 -0
package/ext/languages.yml
CHANGED
|
@@ -78,6 +78,16 @@ AL:
|
|
|
78
78
|
tm_scope: source.al
|
|
79
79
|
ace_mode: text
|
|
80
80
|
language_id: 658971832
|
|
81
|
+
ALGOL:
|
|
82
|
+
type: programming
|
|
83
|
+
color: "#D1E0DB"
|
|
84
|
+
extensions:
|
|
85
|
+
- ".alg"
|
|
86
|
+
tm_scope: source.algol60
|
|
87
|
+
ace_mode: pascal
|
|
88
|
+
codemirror_mode: pascal
|
|
89
|
+
codemirror_mime_type: text/x-pascal
|
|
90
|
+
language_id: 79217948
|
|
81
91
|
AMPL:
|
|
82
92
|
type: programming
|
|
83
93
|
color: "#E6EFBB"
|
|
@@ -120,7 +130,7 @@ APL:
|
|
|
120
130
|
language_id: 6
|
|
121
131
|
ASL:
|
|
122
132
|
type: programming
|
|
123
|
-
ace_mode:
|
|
133
|
+
ace_mode: asl
|
|
124
134
|
extensions:
|
|
125
135
|
- ".asl"
|
|
126
136
|
- ".dsl"
|
|
@@ -225,6 +235,14 @@ Agda:
|
|
|
225
235
|
tm_scope: source.agda
|
|
226
236
|
ace_mode: text
|
|
227
237
|
language_id: 12
|
|
238
|
+
Aiken:
|
|
239
|
+
type: programming
|
|
240
|
+
color: "#640ff8"
|
|
241
|
+
ace_mode: text
|
|
242
|
+
extensions:
|
|
243
|
+
- ".ak"
|
|
244
|
+
tm_scope: source.aiken
|
|
245
|
+
language_id: 899409497
|
|
228
246
|
Alloy:
|
|
229
247
|
type: programming
|
|
230
248
|
color: "#64C800"
|
|
@@ -326,7 +344,7 @@ Apex:
|
|
|
326
344
|
- ".apex"
|
|
327
345
|
- ".trigger"
|
|
328
346
|
tm_scope: source.apex
|
|
329
|
-
ace_mode:
|
|
347
|
+
ace_mode: apex
|
|
330
348
|
codemirror_mode: clike
|
|
331
349
|
codemirror_mime_type: text/x-java
|
|
332
350
|
language_id: 17
|
|
@@ -342,6 +360,7 @@ Apollo Guidance Computer:
|
|
|
342
360
|
AppleScript:
|
|
343
361
|
type: programming
|
|
344
362
|
aliases:
|
|
363
|
+
- apples
|
|
345
364
|
- osascript
|
|
346
365
|
extensions:
|
|
347
366
|
- ".applescript"
|
|
@@ -402,7 +421,7 @@ Astro:
|
|
|
402
421
|
extensions:
|
|
403
422
|
- ".astro"
|
|
404
423
|
tm_scope: source.astro
|
|
405
|
-
ace_mode:
|
|
424
|
+
ace_mode: astro
|
|
406
425
|
codemirror_mode: jsx
|
|
407
426
|
codemirror_mime_type: text/jsx
|
|
408
427
|
language_id: 578209015
|
|
@@ -474,6 +493,14 @@ Awk:
|
|
|
474
493
|
tm_scope: source.awk
|
|
475
494
|
ace_mode: text
|
|
476
495
|
language_id: 28
|
|
496
|
+
B (Formal Method):
|
|
497
|
+
type: programming
|
|
498
|
+
color: "#8aa8c5"
|
|
499
|
+
extensions:
|
|
500
|
+
- ".mch"
|
|
501
|
+
tm_scope: source.b
|
|
502
|
+
ace_mode: text
|
|
503
|
+
language_id: 700792152
|
|
477
504
|
B4X:
|
|
478
505
|
type: programming
|
|
479
506
|
color: "#00e4ff"
|
|
@@ -491,7 +518,7 @@ BASIC:
|
|
|
491
518
|
extensions:
|
|
492
519
|
- ".bas"
|
|
493
520
|
tm_scope: source.basic
|
|
494
|
-
ace_mode:
|
|
521
|
+
ace_mode: basic
|
|
495
522
|
color: "#ff0000"
|
|
496
523
|
language_id: 28923963
|
|
497
524
|
BQN:
|
|
@@ -520,6 +547,9 @@ Batchfile:
|
|
|
520
547
|
extensions:
|
|
521
548
|
- ".bat"
|
|
522
549
|
- ".cmd"
|
|
550
|
+
filenames:
|
|
551
|
+
- gradlew.bat
|
|
552
|
+
- mvnw.cmd
|
|
523
553
|
tm_scope: source.batchfile
|
|
524
554
|
ace_mode: batchfile
|
|
525
555
|
color: "#C1F12E"
|
|
@@ -560,7 +590,7 @@ BibTeX:
|
|
|
560
590
|
- ".bib"
|
|
561
591
|
- ".bibtex"
|
|
562
592
|
tm_scope: text.bibtex
|
|
563
|
-
ace_mode:
|
|
593
|
+
ace_mode: bibtex
|
|
564
594
|
codemirror_mode: stex
|
|
565
595
|
codemirror_mime_type: text/x-stex
|
|
566
596
|
language_id: 982188347
|
|
@@ -617,7 +647,7 @@ Blade:
|
|
|
617
647
|
- ".blade"
|
|
618
648
|
- ".blade.php"
|
|
619
649
|
tm_scope: text.html.php.blade
|
|
620
|
-
ace_mode:
|
|
650
|
+
ace_mode: php_laravel_blade
|
|
621
651
|
language_id: 33
|
|
622
652
|
BlitzBasic:
|
|
623
653
|
type: programming
|
|
@@ -724,6 +754,22 @@ Browserslist:
|
|
|
724
754
|
tm_scope: text.browserslist
|
|
725
755
|
ace_mode: text
|
|
726
756
|
language_id: 153503348
|
|
757
|
+
Bru:
|
|
758
|
+
type: markup
|
|
759
|
+
color: "#F4AA41"
|
|
760
|
+
extensions:
|
|
761
|
+
- ".bru"
|
|
762
|
+
tm_scope: source.bru
|
|
763
|
+
ace_mode: text
|
|
764
|
+
language_id: 906627898
|
|
765
|
+
BuildStream:
|
|
766
|
+
type: data
|
|
767
|
+
color: "#006bff"
|
|
768
|
+
extensions:
|
|
769
|
+
- ".bst"
|
|
770
|
+
tm_scope: source.yaml
|
|
771
|
+
ace_mode: yaml
|
|
772
|
+
language_id: 84359046
|
|
727
773
|
C:
|
|
728
774
|
type: programming
|
|
729
775
|
color: "#555555"
|
|
@@ -808,6 +854,16 @@ C2hs Haskell:
|
|
|
808
854
|
codemirror_mode: haskell
|
|
809
855
|
codemirror_mime_type: text/x-haskell
|
|
810
856
|
language_id: 45
|
|
857
|
+
C3:
|
|
858
|
+
type: programming
|
|
859
|
+
color: "#2563eb"
|
|
860
|
+
extensions:
|
|
861
|
+
- ".c3"
|
|
862
|
+
tm_scope: source.c3
|
|
863
|
+
ace_mode: c_cpp
|
|
864
|
+
codemirror_mode: clike
|
|
865
|
+
codemirror_mime_type: text/x-csrc
|
|
866
|
+
language_id: 769248603
|
|
811
867
|
CAP CDS:
|
|
812
868
|
type: programming
|
|
813
869
|
tm_scope: source.cds
|
|
@@ -876,6 +932,14 @@ COLLADA:
|
|
|
876
932
|
codemirror_mode: xml
|
|
877
933
|
codemirror_mime_type: text/xml
|
|
878
934
|
language_id: 49
|
|
935
|
+
CQL:
|
|
936
|
+
type: programming
|
|
937
|
+
color: "#006091"
|
|
938
|
+
extensions:
|
|
939
|
+
- ".cql"
|
|
940
|
+
tm_scope: source.cql
|
|
941
|
+
ace_mode: text
|
|
942
|
+
language_id: 71155397
|
|
879
943
|
CSON:
|
|
880
944
|
type: data
|
|
881
945
|
color: "#244776"
|
|
@@ -899,8 +963,8 @@ CSS:
|
|
|
899
963
|
CSV:
|
|
900
964
|
type: data
|
|
901
965
|
color: "#237346"
|
|
902
|
-
ace_mode:
|
|
903
|
-
tm_scope:
|
|
966
|
+
ace_mode: csv
|
|
967
|
+
tm_scope: source.csv
|
|
904
968
|
extensions:
|
|
905
969
|
- ".csv"
|
|
906
970
|
language_id: 51
|
|
@@ -930,7 +994,7 @@ Cabal Config:
|
|
|
930
994
|
filenames:
|
|
931
995
|
- cabal.config
|
|
932
996
|
- cabal.project
|
|
933
|
-
ace_mode:
|
|
997
|
+
ace_mode: haskell_cabal
|
|
934
998
|
codemirror_mode: haskell
|
|
935
999
|
codemirror_mime_type: text/x-haskell
|
|
936
1000
|
tm_scope: source.cabal
|
|
@@ -984,6 +1048,16 @@ CameLIGO:
|
|
|
984
1048
|
codemirror_mime_type: text/x-ocaml
|
|
985
1049
|
group: LigoLANG
|
|
986
1050
|
language_id: 829207807
|
|
1051
|
+
Cangjie:
|
|
1052
|
+
type: programming
|
|
1053
|
+
tm_scope: source.cj
|
|
1054
|
+
extensions:
|
|
1055
|
+
- ".cj"
|
|
1056
|
+
color: "#00868B"
|
|
1057
|
+
ace_mode: swift
|
|
1058
|
+
codemirror_mode: swift
|
|
1059
|
+
codemirror_mime_type: text/x-swift
|
|
1060
|
+
language_id: 581895317
|
|
987
1061
|
Cap'n Proto:
|
|
988
1062
|
type: programming
|
|
989
1063
|
color: "#c42727"
|
|
@@ -1183,6 +1257,14 @@ Cloud Firestore Security Rules:
|
|
|
1183
1257
|
filenames:
|
|
1184
1258
|
- firestore.rules
|
|
1185
1259
|
language_id: 407996372
|
|
1260
|
+
Clue:
|
|
1261
|
+
type: programming
|
|
1262
|
+
color: "#0009b5"
|
|
1263
|
+
extensions:
|
|
1264
|
+
- ".clue"
|
|
1265
|
+
tm_scope: source.clue
|
|
1266
|
+
ace_mode: text
|
|
1267
|
+
language_id: 163763508
|
|
1186
1268
|
CoNLL-U:
|
|
1187
1269
|
type: data
|
|
1188
1270
|
extensions:
|
|
@@ -1300,6 +1382,15 @@ Component Pascal:
|
|
|
1300
1382
|
codemirror_mode: pascal
|
|
1301
1383
|
codemirror_mime_type: text/x-pascal
|
|
1302
1384
|
language_id: 67
|
|
1385
|
+
Cooklang:
|
|
1386
|
+
type: markup
|
|
1387
|
+
color: "#E15A29"
|
|
1388
|
+
wrap: true
|
|
1389
|
+
extensions:
|
|
1390
|
+
- ".cook"
|
|
1391
|
+
ace_mode: text
|
|
1392
|
+
tm_scope: source.cooklang
|
|
1393
|
+
language_id: 788037493
|
|
1303
1394
|
Cool:
|
|
1304
1395
|
type: programming
|
|
1305
1396
|
extensions:
|
|
@@ -1333,7 +1424,7 @@ Crystal:
|
|
|
1333
1424
|
color: "#000100"
|
|
1334
1425
|
extensions:
|
|
1335
1426
|
- ".cr"
|
|
1336
|
-
ace_mode:
|
|
1427
|
+
ace_mode: crystal
|
|
1337
1428
|
codemirror_mode: crystal
|
|
1338
1429
|
codemirror_mime_type: text/x-crystal
|
|
1339
1430
|
tm_scope: source.crystal
|
|
@@ -1424,6 +1515,8 @@ Cypher:
|
|
|
1424
1515
|
- ".cyp"
|
|
1425
1516
|
- ".cypher"
|
|
1426
1517
|
tm_scope: source.cypher
|
|
1518
|
+
codemirror_mode: cypher
|
|
1519
|
+
codemirror_mime_type: application/x-cypher-query
|
|
1427
1520
|
ace_mode: text
|
|
1428
1521
|
language_id: 850806976
|
|
1429
1522
|
Cython:
|
|
@@ -1543,6 +1636,14 @@ Dart:
|
|
|
1543
1636
|
codemirror_mode: dart
|
|
1544
1637
|
codemirror_mime_type: application/dart
|
|
1545
1638
|
language_id: 87
|
|
1639
|
+
Daslang:
|
|
1640
|
+
type: programming
|
|
1641
|
+
color: "#d3d3d3"
|
|
1642
|
+
extensions:
|
|
1643
|
+
- ".das"
|
|
1644
|
+
tm_scope: source.daslang
|
|
1645
|
+
ace_mode: text
|
|
1646
|
+
language_id: 648759486
|
|
1546
1647
|
DataWeave:
|
|
1547
1648
|
type: programming
|
|
1548
1649
|
color: "#003a52"
|
|
@@ -1640,6 +1741,7 @@ Dotenv:
|
|
|
1640
1741
|
- ".env.production"
|
|
1641
1742
|
- ".env.sample"
|
|
1642
1743
|
- ".env.staging"
|
|
1744
|
+
- ".env.template"
|
|
1643
1745
|
- ".env.test"
|
|
1644
1746
|
- ".env.testing"
|
|
1645
1747
|
tm_scope: source.dotenv
|
|
@@ -1729,6 +1831,8 @@ EJS:
|
|
|
1729
1831
|
- ".ejs.t"
|
|
1730
1832
|
- ".jst"
|
|
1731
1833
|
tm_scope: text.html.js
|
|
1834
|
+
codemirror_mode: htmlembedded
|
|
1835
|
+
codemirror_mime_type: application/x-ejs
|
|
1732
1836
|
ace_mode: ejs
|
|
1733
1837
|
language_id: 95
|
|
1734
1838
|
EQ:
|
|
@@ -1894,6 +1998,8 @@ Emacs Lisp:
|
|
|
1894
1998
|
tm_scope: source.emacs.lisp
|
|
1895
1999
|
color: "#c065db"
|
|
1896
2000
|
aliases:
|
|
2001
|
+
- cask
|
|
2002
|
+
- eask
|
|
1897
2003
|
- elisp
|
|
1898
2004
|
- emacs
|
|
1899
2005
|
filenames:
|
|
@@ -1904,6 +2010,7 @@ Emacs Lisp:
|
|
|
1904
2010
|
- ".spacemacs"
|
|
1905
2011
|
- ".viper"
|
|
1906
2012
|
- Cask
|
|
2013
|
+
- Eask
|
|
1907
2014
|
- Project.ede
|
|
1908
2015
|
- _emacs
|
|
1909
2016
|
- abbrev_defs
|
|
@@ -1972,7 +2079,7 @@ F#:
|
|
|
1972
2079
|
- ".fsi"
|
|
1973
2080
|
- ".fsx"
|
|
1974
2081
|
tm_scope: source.fsharp
|
|
1975
|
-
ace_mode:
|
|
2082
|
+
ace_mode: fsharp
|
|
1976
2083
|
codemirror_mode: mllike
|
|
1977
2084
|
codemirror_mime_type: text/x-fsharp
|
|
1978
2085
|
language_id: 105
|
|
@@ -2081,6 +2188,22 @@ Filterscript:
|
|
|
2081
2188
|
tm_scope: none
|
|
2082
2189
|
ace_mode: text
|
|
2083
2190
|
language_id: 112
|
|
2191
|
+
FlatBuffers:
|
|
2192
|
+
type: data
|
|
2193
|
+
color: "#ed284a"
|
|
2194
|
+
extensions:
|
|
2195
|
+
- ".fbs"
|
|
2196
|
+
tm_scope: source.flatbuffers
|
|
2197
|
+
ace_mode: text
|
|
2198
|
+
language_id: 577640576
|
|
2199
|
+
Flix:
|
|
2200
|
+
type: programming
|
|
2201
|
+
color: "#d44a45"
|
|
2202
|
+
extensions:
|
|
2203
|
+
- ".flix"
|
|
2204
|
+
tm_scope: source.flix
|
|
2205
|
+
ace_mode: flix
|
|
2206
|
+
language_id: 800935960
|
|
2084
2207
|
Fluent:
|
|
2085
2208
|
type: programming
|
|
2086
2209
|
color: "#ffcc33"
|
|
@@ -2124,7 +2247,7 @@ Fortran:
|
|
|
2124
2247
|
- ".for"
|
|
2125
2248
|
- ".fpp"
|
|
2126
2249
|
tm_scope: source.fortran
|
|
2127
|
-
ace_mode:
|
|
2250
|
+
ace_mode: fortran
|
|
2128
2251
|
codemirror_mode: fortran
|
|
2129
2252
|
codemirror_mime_type: text/x-fortran
|
|
2130
2253
|
language_id: 107
|
|
@@ -2138,7 +2261,7 @@ Fortran Free Form:
|
|
|
2138
2261
|
- ".f08"
|
|
2139
2262
|
- ".f95"
|
|
2140
2263
|
tm_scope: source.fortran.modern
|
|
2141
|
-
ace_mode:
|
|
2264
|
+
ace_mode: fortran
|
|
2142
2265
|
codemirror_mode: fortran
|
|
2143
2266
|
codemirror_mime_type: text/x-fortran
|
|
2144
2267
|
language_id: 761352333
|
|
@@ -2162,6 +2285,7 @@ FreeMarker:
|
|
|
2162
2285
|
- ftl
|
|
2163
2286
|
extensions:
|
|
2164
2287
|
- ".ftl"
|
|
2288
|
+
- ".ftlh"
|
|
2165
2289
|
tm_scope: text.html.ftl
|
|
2166
2290
|
ace_mode: ftl
|
|
2167
2291
|
language_id: 115
|
|
@@ -2246,6 +2370,15 @@ GDScript:
|
|
|
2246
2370
|
tm_scope: source.gdscript
|
|
2247
2371
|
ace_mode: text
|
|
2248
2372
|
language_id: 123
|
|
2373
|
+
GDShader:
|
|
2374
|
+
type: programming
|
|
2375
|
+
color: "#478CBF"
|
|
2376
|
+
extensions:
|
|
2377
|
+
- ".gdshader"
|
|
2378
|
+
- ".gdshaderinc"
|
|
2379
|
+
tm_scope: source.gdshader
|
|
2380
|
+
ace_mode: glsl
|
|
2381
|
+
language_id: 694638086
|
|
2249
2382
|
GEDCOM:
|
|
2250
2383
|
type: data
|
|
2251
2384
|
color: "#003058"
|
|
@@ -2443,9 +2576,11 @@ Gherkin:
|
|
|
2443
2576
|
- ".feature"
|
|
2444
2577
|
- ".story"
|
|
2445
2578
|
tm_scope: text.gherkin.feature
|
|
2579
|
+
codemirror_mode: gherkin
|
|
2580
|
+
codemirror_mime_type: text/x-feature
|
|
2446
2581
|
aliases:
|
|
2447
2582
|
- cucumber
|
|
2448
|
-
ace_mode:
|
|
2583
|
+
ace_mode: gherkin
|
|
2449
2584
|
color: "#5B2063"
|
|
2450
2585
|
language_id: 76
|
|
2451
2586
|
Git Attributes:
|
|
@@ -2460,6 +2595,17 @@ Git Attributes:
|
|
|
2460
2595
|
codemirror_mode: shell
|
|
2461
2596
|
codemirror_mime_type: text/x-sh
|
|
2462
2597
|
language_id: 956324166
|
|
2598
|
+
Git Commit:
|
|
2599
|
+
type: data
|
|
2600
|
+
color: "#F44D27"
|
|
2601
|
+
aliases:
|
|
2602
|
+
- commit
|
|
2603
|
+
filenames:
|
|
2604
|
+
- COMMIT_EDITMSG
|
|
2605
|
+
ace_mode: text
|
|
2606
|
+
tm_scope: text.git-commit
|
|
2607
|
+
wrap: true
|
|
2608
|
+
language_id: 131750475
|
|
2463
2609
|
Git Config:
|
|
2464
2610
|
type: data
|
|
2465
2611
|
color: "#F44D27"
|
|
@@ -2497,6 +2643,8 @@ Gleam:
|
|
|
2497
2643
|
language_id: 1054258749
|
|
2498
2644
|
Glimmer JS:
|
|
2499
2645
|
type: programming
|
|
2646
|
+
aliases:
|
|
2647
|
+
- gjs
|
|
2500
2648
|
extensions:
|
|
2501
2649
|
- ".gjs"
|
|
2502
2650
|
ace_mode: javascript
|
|
@@ -2506,6 +2654,8 @@ Glimmer JS:
|
|
|
2506
2654
|
language_id: 5523150
|
|
2507
2655
|
Glimmer TS:
|
|
2508
2656
|
type: programming
|
|
2657
|
+
aliases:
|
|
2658
|
+
- gts
|
|
2509
2659
|
extensions:
|
|
2510
2660
|
- ".gts"
|
|
2511
2661
|
ace_mode: typescript
|
|
@@ -2582,6 +2732,22 @@ Go Module:
|
|
|
2582
2732
|
tm_scope: go.mod
|
|
2583
2733
|
ace_mode: text
|
|
2584
2734
|
language_id: 947461016
|
|
2735
|
+
Go Template:
|
|
2736
|
+
type: markup
|
|
2737
|
+
color: "#00ADD8"
|
|
2738
|
+
aliases:
|
|
2739
|
+
- gotmpl
|
|
2740
|
+
extensions:
|
|
2741
|
+
- ".gohtml"
|
|
2742
|
+
- ".gotmpl"
|
|
2743
|
+
- ".html.tmpl"
|
|
2744
|
+
- ".tmpl"
|
|
2745
|
+
- ".tpl"
|
|
2746
|
+
filenames:
|
|
2747
|
+
- _helpers.tpl
|
|
2748
|
+
tm_scope: source.go-template
|
|
2749
|
+
ace_mode: text
|
|
2750
|
+
language_id: 247918769
|
|
2585
2751
|
Go Workspace:
|
|
2586
2752
|
type: data
|
|
2587
2753
|
color: "#00ADD8"
|
|
@@ -2677,7 +2843,7 @@ GraphQL:
|
|
|
2677
2843
|
- ".gql"
|
|
2678
2844
|
- ".graphqls"
|
|
2679
2845
|
tm_scope: source.graphql
|
|
2680
|
-
ace_mode:
|
|
2846
|
+
ace_mode: graphqlschema
|
|
2681
2847
|
language_id: 139
|
|
2682
2848
|
Graphviz (DOT):
|
|
2683
2849
|
type: data
|
|
@@ -2686,7 +2852,7 @@ Graphviz (DOT):
|
|
|
2686
2852
|
extensions:
|
|
2687
2853
|
- ".dot"
|
|
2688
2854
|
- ".gv"
|
|
2689
|
-
ace_mode:
|
|
2855
|
+
ace_mode: dot
|
|
2690
2856
|
language_id: 140
|
|
2691
2857
|
Groovy:
|
|
2692
2858
|
type: programming
|
|
@@ -2737,11 +2903,13 @@ HCL:
|
|
|
2737
2903
|
- ".nomad"
|
|
2738
2904
|
- ".tf"
|
|
2739
2905
|
- ".tfvars"
|
|
2906
|
+
- ".tofu"
|
|
2740
2907
|
- ".workflow"
|
|
2741
2908
|
aliases:
|
|
2742
2909
|
- HashiCorp Configuration Language
|
|
2910
|
+
- opentofu
|
|
2743
2911
|
- terraform
|
|
2744
|
-
ace_mode:
|
|
2912
|
+
ace_mode: terraform
|
|
2745
2913
|
codemirror_mode: ruby
|
|
2746
2914
|
codemirror_mime_type: text/x-ruby
|
|
2747
2915
|
tm_scope: source.hcl
|
|
@@ -2806,7 +2974,7 @@ HTML+ECR:
|
|
|
2806
2974
|
- ecr
|
|
2807
2975
|
extensions:
|
|
2808
2976
|
- ".ecr"
|
|
2809
|
-
ace_mode:
|
|
2977
|
+
ace_mode: html_ruby
|
|
2810
2978
|
codemirror_mode: htmlmixed
|
|
2811
2979
|
codemirror_mime_type: text/html
|
|
2812
2980
|
language_id: 148
|
|
@@ -2823,7 +2991,7 @@ HTML+EEX:
|
|
|
2823
2991
|
- ".html.eex"
|
|
2824
2992
|
- ".heex"
|
|
2825
2993
|
- ".leex"
|
|
2826
|
-
ace_mode:
|
|
2994
|
+
ace_mode: html_elixir
|
|
2827
2995
|
codemirror_mode: htmlmixed
|
|
2828
2996
|
codemirror_mime_type: text/html
|
|
2829
2997
|
language_id: 149
|
|
@@ -2840,7 +3008,7 @@ HTML+ERB:
|
|
|
2840
3008
|
- ".erb"
|
|
2841
3009
|
- ".erb.deface"
|
|
2842
3010
|
- ".rhtml"
|
|
2843
|
-
ace_mode:
|
|
3011
|
+
ace_mode: html_ruby
|
|
2844
3012
|
codemirror_mode: htmlembedded
|
|
2845
3013
|
codemirror_mime_type: application/x-erb
|
|
2846
3014
|
language_id: 150
|
|
@@ -2886,6 +3054,8 @@ HXML:
|
|
|
2886
3054
|
extensions:
|
|
2887
3055
|
- ".hxml"
|
|
2888
3056
|
tm_scope: source.hxml
|
|
3057
|
+
codemirror_mode: haxe
|
|
3058
|
+
codemirror_mime_type: text/x-hxml
|
|
2889
3059
|
language_id: 786683730
|
|
2890
3060
|
Hack:
|
|
2891
3061
|
type: programming
|
|
@@ -2997,6 +3167,14 @@ Hosts File:
|
|
|
2997
3167
|
tm_scope: source.hosts
|
|
2998
3168
|
ace_mode: text
|
|
2999
3169
|
language_id: 231021894
|
|
3170
|
+
Hurl:
|
|
3171
|
+
type: programming
|
|
3172
|
+
color: "#FF0288"
|
|
3173
|
+
extensions:
|
|
3174
|
+
- ".hurl"
|
|
3175
|
+
tm_scope: source.hurl
|
|
3176
|
+
ace_mode: text
|
|
3177
|
+
language_id: 959040217
|
|
3000
3178
|
Hy:
|
|
3001
3179
|
type: programming
|
|
3002
3180
|
ace_mode: text
|
|
@@ -3038,6 +3216,17 @@ IGOR Pro:
|
|
|
3038
3216
|
tm_scope: source.igor
|
|
3039
3217
|
ace_mode: text
|
|
3040
3218
|
language_id: 162
|
|
3219
|
+
IL Assembly:
|
|
3220
|
+
type: programming
|
|
3221
|
+
color: "#512BD4"
|
|
3222
|
+
extensions:
|
|
3223
|
+
- ".il"
|
|
3224
|
+
tm_scope: source.il
|
|
3225
|
+
ace_mode: text
|
|
3226
|
+
aliases:
|
|
3227
|
+
- ilasm
|
|
3228
|
+
- msil
|
|
3229
|
+
language_id: 592065806
|
|
3041
3230
|
INI:
|
|
3042
3231
|
type: data
|
|
3043
3232
|
color: "#d1dbe0"
|
|
@@ -3046,6 +3235,7 @@ INI:
|
|
|
3046
3235
|
- ".cfg"
|
|
3047
3236
|
- ".cnf"
|
|
3048
3237
|
- ".dof"
|
|
3238
|
+
- ".frm"
|
|
3049
3239
|
- ".lektorproject"
|
|
3050
3240
|
- ".prefs"
|
|
3051
3241
|
- ".pro"
|
|
@@ -3337,6 +3527,7 @@ JSON with Comments:
|
|
|
3337
3527
|
- ".sublime-workspace"
|
|
3338
3528
|
- ".sublime_metrics"
|
|
3339
3529
|
- ".sublime_session"
|
|
3530
|
+
- ".tsconfig.json"
|
|
3340
3531
|
filenames:
|
|
3341
3532
|
- ".babelrc"
|
|
3342
3533
|
- ".devcontainer.json"
|
|
@@ -3344,6 +3535,7 @@ JSON with Comments:
|
|
|
3344
3535
|
- ".jscsrc"
|
|
3345
3536
|
- ".jshintrc"
|
|
3346
3537
|
- ".jslintrc"
|
|
3538
|
+
- ".oxlintrc.json"
|
|
3347
3539
|
- ".swcrc"
|
|
3348
3540
|
- api-extractor.json
|
|
3349
3541
|
- devcontainer.json
|
|
@@ -3358,7 +3550,7 @@ JSON5:
|
|
|
3358
3550
|
extensions:
|
|
3359
3551
|
- ".json5"
|
|
3360
3552
|
tm_scope: source.js
|
|
3361
|
-
ace_mode:
|
|
3553
|
+
ace_mode: json5
|
|
3362
3554
|
codemirror_mode: javascript
|
|
3363
3555
|
codemirror_mime_type: application/json
|
|
3364
3556
|
language_id: 175
|
|
@@ -3370,7 +3562,7 @@ JSONLD:
|
|
|
3370
3562
|
tm_scope: source.js
|
|
3371
3563
|
ace_mode: javascript
|
|
3372
3564
|
codemirror_mode: javascript
|
|
3373
|
-
codemirror_mime_type: application/json
|
|
3565
|
+
codemirror_mime_type: application/ld+json
|
|
3374
3566
|
language_id: 176
|
|
3375
3567
|
JSONiq:
|
|
3376
3568
|
color: "#40d47e"
|
|
@@ -3382,6 +3574,14 @@ JSONiq:
|
|
|
3382
3574
|
- ".jq"
|
|
3383
3575
|
tm_scope: source.jsoniq
|
|
3384
3576
|
language_id: 177
|
|
3577
|
+
Jac:
|
|
3578
|
+
type: programming
|
|
3579
|
+
color: "#FC792D"
|
|
3580
|
+
extensions:
|
|
3581
|
+
- ".jac"
|
|
3582
|
+
tm_scope: source.jac
|
|
3583
|
+
ace_mode: text
|
|
3584
|
+
language_id: 235277043
|
|
3385
3585
|
Jai:
|
|
3386
3586
|
type: programming
|
|
3387
3587
|
color: "#ab8b4b"
|
|
@@ -3556,8 +3756,8 @@ Jinja:
|
|
|
3556
3756
|
- ".jinja2"
|
|
3557
3757
|
tm_scope: text.html.django
|
|
3558
3758
|
ace_mode: django
|
|
3559
|
-
codemirror_mode:
|
|
3560
|
-
codemirror_mime_type: text/
|
|
3759
|
+
codemirror_mode: jinja2
|
|
3760
|
+
codemirror_mime_type: text/jinja2
|
|
3561
3761
|
language_id: 147
|
|
3562
3762
|
Jison:
|
|
3563
3763
|
type: programming
|
|
@@ -3647,6 +3847,17 @@ Just:
|
|
|
3647
3847
|
- ".just"
|
|
3648
3848
|
ace_mode: text
|
|
3649
3849
|
language_id: 128447695
|
|
3850
|
+
KCL:
|
|
3851
|
+
type: programming
|
|
3852
|
+
color: "#7ABABF"
|
|
3853
|
+
tm_scope: source.kcl
|
|
3854
|
+
extensions:
|
|
3855
|
+
- ".k"
|
|
3856
|
+
filenames:
|
|
3857
|
+
- kcl.mod
|
|
3858
|
+
- kcl.mod.lock
|
|
3859
|
+
ace_mode: text
|
|
3860
|
+
language_id: 1052003890
|
|
3650
3861
|
KDL:
|
|
3651
3862
|
type: data
|
|
3652
3863
|
color: "#ffb3b3"
|
|
@@ -3657,6 +3868,14 @@ KDL:
|
|
|
3657
3868
|
codemirror_mode: yacas
|
|
3658
3869
|
codemirror_mime_type: text/x-yacas
|
|
3659
3870
|
language_id: 931123626
|
|
3871
|
+
KFramework:
|
|
3872
|
+
type: programming
|
|
3873
|
+
color: "#4195c5"
|
|
3874
|
+
tm_scope: text.k
|
|
3875
|
+
extensions:
|
|
3876
|
+
- ".k"
|
|
3877
|
+
ace_mode: text
|
|
3878
|
+
language_id: 9479532
|
|
3660
3879
|
KRL:
|
|
3661
3880
|
type: programming
|
|
3662
3881
|
color: "#28430A"
|
|
@@ -3750,6 +3969,14 @@ Kit:
|
|
|
3750
3969
|
- ".kit"
|
|
3751
3970
|
tm_scope: text.html.basic
|
|
3752
3971
|
language_id: 188
|
|
3972
|
+
KoLmafia ASH:
|
|
3973
|
+
type: programming
|
|
3974
|
+
color: "#B9D9B9"
|
|
3975
|
+
extensions:
|
|
3976
|
+
- ".ash"
|
|
3977
|
+
tm_scope: source.ash
|
|
3978
|
+
ace_mode: text
|
|
3979
|
+
language_id: 852099832
|
|
3753
3980
|
Koka:
|
|
3754
3981
|
type: programming
|
|
3755
3982
|
ace_mode: text
|
|
@@ -3768,7 +3995,7 @@ Kotlin:
|
|
|
3768
3995
|
- ".ktm"
|
|
3769
3996
|
- ".kts"
|
|
3770
3997
|
tm_scope: source.kotlin
|
|
3771
|
-
ace_mode:
|
|
3998
|
+
ace_mode: kotlin
|
|
3772
3999
|
codemirror_mode: clike
|
|
3773
4000
|
codemirror_mime_type: text/x-kotlin
|
|
3774
4001
|
language_id: 189
|
|
@@ -3838,6 +4065,22 @@ LabVIEW:
|
|
|
3838
4065
|
codemirror_mode: xml
|
|
3839
4066
|
codemirror_mime_type: text/xml
|
|
3840
4067
|
language_id: 194
|
|
4068
|
+
Lambdapi:
|
|
4069
|
+
type: programming
|
|
4070
|
+
color: "#8027a3"
|
|
4071
|
+
extensions:
|
|
4072
|
+
- ".lp"
|
|
4073
|
+
tm_scope: source.lp
|
|
4074
|
+
ace_mode: text
|
|
4075
|
+
language_id: 759240513
|
|
4076
|
+
Langium:
|
|
4077
|
+
type: programming
|
|
4078
|
+
color: "#2c8c87"
|
|
4079
|
+
extensions:
|
|
4080
|
+
- ".langium"
|
|
4081
|
+
tm_scope: source.langium
|
|
4082
|
+
ace_mode: text
|
|
4083
|
+
language_id: 548603830
|
|
3841
4084
|
Lark:
|
|
3842
4085
|
type: data
|
|
3843
4086
|
color: "#2980B9"
|
|
@@ -3867,7 +4110,7 @@ Latte:
|
|
|
3867
4110
|
extensions:
|
|
3868
4111
|
- ".latte"
|
|
3869
4112
|
tm_scope: text.html.smarty
|
|
3870
|
-
ace_mode:
|
|
4113
|
+
ace_mode: latte
|
|
3871
4114
|
codemirror_mode: smarty
|
|
3872
4115
|
codemirror_mime_type: text/x-smarty
|
|
3873
4116
|
language_id: 196
|
|
@@ -3882,11 +4125,22 @@ Lean:
|
|
|
3882
4125
|
Lean 4:
|
|
3883
4126
|
type: programming
|
|
3884
4127
|
group: Lean
|
|
4128
|
+
aliases:
|
|
4129
|
+
- lean4
|
|
3885
4130
|
extensions:
|
|
3886
4131
|
- ".lean"
|
|
3887
4132
|
tm_scope: source.lean4
|
|
3888
4133
|
ace_mode: text
|
|
3889
4134
|
language_id: 455147478
|
|
4135
|
+
Leo:
|
|
4136
|
+
type: programming
|
|
4137
|
+
color: "#C4FFC2"
|
|
4138
|
+
extensions:
|
|
4139
|
+
- ".leo"
|
|
4140
|
+
tm_scope: source.leo
|
|
4141
|
+
ace_mode: text
|
|
4142
|
+
wrap: true
|
|
4143
|
+
language_id: 916034822
|
|
3890
4144
|
Less:
|
|
3891
4145
|
type: markup
|
|
3892
4146
|
color: "#1d365d"
|
|
@@ -3897,7 +4151,7 @@ Less:
|
|
|
3897
4151
|
tm_scope: source.css.less
|
|
3898
4152
|
ace_mode: less
|
|
3899
4153
|
codemirror_mode: css
|
|
3900
|
-
codemirror_mime_type: text/
|
|
4154
|
+
codemirror_mime_type: text/x-less
|
|
3901
4155
|
language_id: 198
|
|
3902
4156
|
Lex:
|
|
3903
4157
|
type: programming
|
|
@@ -3974,6 +4228,14 @@ Liquid:
|
|
|
3974
4228
|
tm_scope: text.html.liquid
|
|
3975
4229
|
ace_mode: liquid
|
|
3976
4230
|
language_id: 204
|
|
4231
|
+
Liquidsoap:
|
|
4232
|
+
type: programming
|
|
4233
|
+
color: "#990066"
|
|
4234
|
+
extensions:
|
|
4235
|
+
- ".liq"
|
|
4236
|
+
tm_scope: source.liquidsoap
|
|
4237
|
+
ace_mode: text
|
|
4238
|
+
language_id: 614641732
|
|
3977
4239
|
Literate Agda:
|
|
3978
4240
|
type: programming
|
|
3979
4241
|
color: "#315665"
|
|
@@ -4050,7 +4312,7 @@ Logtalk:
|
|
|
4050
4312
|
- ".lgt"
|
|
4051
4313
|
- ".logtalk"
|
|
4052
4314
|
tm_scope: source.logtalk
|
|
4053
|
-
ace_mode:
|
|
4315
|
+
ace_mode: logtalk
|
|
4054
4316
|
language_id: 210
|
|
4055
4317
|
LookML:
|
|
4056
4318
|
type: programming
|
|
@@ -4090,6 +4352,7 @@ Lua:
|
|
|
4090
4352
|
- ".luacheckrc"
|
|
4091
4353
|
interpreters:
|
|
4092
4354
|
- lua
|
|
4355
|
+
- luajit
|
|
4093
4356
|
language_id: 213
|
|
4094
4357
|
Luau:
|
|
4095
4358
|
type: programming
|
|
@@ -4329,30 +4592,14 @@ Mask:
|
|
|
4329
4592
|
- ".mask"
|
|
4330
4593
|
tm_scope: source.mask
|
|
4331
4594
|
language_id: 223
|
|
4332
|
-
|
|
4595
|
+
Mathematical Programming System:
|
|
4333
4596
|
type: programming
|
|
4334
|
-
color: "#
|
|
4597
|
+
color: "#0530ad"
|
|
4335
4598
|
extensions:
|
|
4336
|
-
- ".
|
|
4337
|
-
|
|
4338
|
-
- ".m"
|
|
4339
|
-
- ".ma"
|
|
4340
|
-
- ".mt"
|
|
4341
|
-
- ".nb"
|
|
4342
|
-
- ".nbp"
|
|
4343
|
-
- ".wl"
|
|
4344
|
-
- ".wlt"
|
|
4345
|
-
aliases:
|
|
4346
|
-
- mma
|
|
4347
|
-
- wolfram
|
|
4348
|
-
- wolfram language
|
|
4349
|
-
- wolfram lang
|
|
4350
|
-
- wl
|
|
4351
|
-
tm_scope: source.mathematica
|
|
4599
|
+
- ".mps"
|
|
4600
|
+
tm_scope: text.source.mps
|
|
4352
4601
|
ace_mode: text
|
|
4353
|
-
|
|
4354
|
-
codemirror_mime_type: text/x-mathematica
|
|
4355
|
-
language_id: 224
|
|
4602
|
+
language_id: 429002699
|
|
4356
4603
|
Maven POM:
|
|
4357
4604
|
type: data
|
|
4358
4605
|
group: XML
|
|
@@ -4380,6 +4627,14 @@ Max:
|
|
|
4380
4627
|
codemirror_mode: javascript
|
|
4381
4628
|
codemirror_mime_type: application/json
|
|
4382
4629
|
language_id: 227
|
|
4630
|
+
MeTTa:
|
|
4631
|
+
type: programming
|
|
4632
|
+
color: "#6a5acd"
|
|
4633
|
+
extensions:
|
|
4634
|
+
- ".metta"
|
|
4635
|
+
tm_scope: source.metta
|
|
4636
|
+
ace_mode: text
|
|
4637
|
+
language_id: 1037612668
|
|
4383
4638
|
Mercury:
|
|
4384
4639
|
type: programming
|
|
4385
4640
|
color: "#ff2b2b"
|
|
@@ -4698,7 +4953,7 @@ NSIS:
|
|
|
4698
4953
|
- ".nsi"
|
|
4699
4954
|
- ".nsh"
|
|
4700
4955
|
tm_scope: source.nsis
|
|
4701
|
-
ace_mode:
|
|
4956
|
+
ace_mode: nsis
|
|
4702
4957
|
codemirror_mode: nsis
|
|
4703
4958
|
codemirror_mime_type: text/x-nsis
|
|
4704
4959
|
language_id: 242
|
|
@@ -4803,10 +5058,18 @@ Nginx:
|
|
|
4803
5058
|
tm_scope: source.nginx
|
|
4804
5059
|
aliases:
|
|
4805
5060
|
- nginx configuration file
|
|
4806
|
-
ace_mode:
|
|
5061
|
+
ace_mode: nginx
|
|
4807
5062
|
codemirror_mode: nginx
|
|
4808
5063
|
codemirror_mime_type: text/x-nginx-conf
|
|
4809
5064
|
language_id: 248
|
|
5065
|
+
Nickel:
|
|
5066
|
+
type: programming
|
|
5067
|
+
color: "#E0C3FC"
|
|
5068
|
+
extensions:
|
|
5069
|
+
- ".ncl"
|
|
5070
|
+
tm_scope: source.nickel
|
|
5071
|
+
ace_mode: text
|
|
5072
|
+
language_id: 1067292664
|
|
4810
5073
|
Nim:
|
|
4811
5074
|
type: programming
|
|
4812
5075
|
color: "#ffc200"
|
|
@@ -4818,7 +5081,7 @@ Nim:
|
|
|
4818
5081
|
- ".nims"
|
|
4819
5082
|
filenames:
|
|
4820
5083
|
- nim.cfg
|
|
4821
|
-
ace_mode:
|
|
5084
|
+
ace_mode: nim
|
|
4822
5085
|
tm_scope: source.nim
|
|
4823
5086
|
language_id: 249
|
|
4824
5087
|
Ninja:
|
|
@@ -5054,7 +5317,7 @@ Objective-C++:
|
|
|
5054
5317
|
- ".mm"
|
|
5055
5318
|
ace_mode: objectivec
|
|
5056
5319
|
codemirror_mode: clike
|
|
5057
|
-
codemirror_mime_type: text/x-objectivec
|
|
5320
|
+
codemirror_mime_type: text/x-objectivec++
|
|
5058
5321
|
language_id: 258
|
|
5059
5322
|
Objective-J:
|
|
5060
5323
|
type: programming
|
|
@@ -5078,7 +5341,7 @@ Odin:
|
|
|
5078
5341
|
extensions:
|
|
5079
5342
|
- ".odin"
|
|
5080
5343
|
tm_scope: source.odin
|
|
5081
|
-
ace_mode:
|
|
5344
|
+
ace_mode: odin
|
|
5082
5345
|
language_id: 889244082
|
|
5083
5346
|
Omgrofl:
|
|
5084
5347
|
type: programming
|
|
@@ -5317,7 +5580,7 @@ PHP:
|
|
|
5317
5580
|
language_id: 272
|
|
5318
5581
|
PLSQL:
|
|
5319
5582
|
type: programming
|
|
5320
|
-
ace_mode:
|
|
5583
|
+
ace_mode: plsql
|
|
5321
5584
|
codemirror_mode: sql
|
|
5322
5585
|
codemirror_mime_type: text/x-plsql
|
|
5323
5586
|
tm_scope: none
|
|
@@ -5526,7 +5789,9 @@ PigLatin:
|
|
|
5526
5789
|
extensions:
|
|
5527
5790
|
- ".pig"
|
|
5528
5791
|
tm_scope: source.pig_latin
|
|
5529
|
-
ace_mode:
|
|
5792
|
+
ace_mode: pig
|
|
5793
|
+
codemirror_mode: pig
|
|
5794
|
+
codemirror_mime_type: text/x-pig
|
|
5530
5795
|
language_id: 286
|
|
5531
5796
|
Pike:
|
|
5532
5797
|
type: programming
|
|
@@ -5543,7 +5808,9 @@ Pip Requirements:
|
|
|
5543
5808
|
type: data
|
|
5544
5809
|
color: "#FFD343"
|
|
5545
5810
|
filenames:
|
|
5811
|
+
- dev-requirements.txt
|
|
5546
5812
|
- requirements-dev.txt
|
|
5813
|
+
- requirements.lock.txt
|
|
5547
5814
|
- requirements.txt
|
|
5548
5815
|
ace_mode: text
|
|
5549
5816
|
tm_scope: source.pip-requirements
|
|
@@ -5687,7 +5954,7 @@ Prisma:
|
|
|
5687
5954
|
extensions:
|
|
5688
5955
|
- ".prisma"
|
|
5689
5956
|
tm_scope: source.prisma
|
|
5690
|
-
ace_mode:
|
|
5957
|
+
ace_mode: prisma
|
|
5691
5958
|
language_id: 499933428
|
|
5692
5959
|
Processing:
|
|
5693
5960
|
type: programming
|
|
@@ -5765,6 +6032,7 @@ Protocol Buffer Text Format:
|
|
|
5765
6032
|
- ".textproto"
|
|
5766
6033
|
- ".pbt"
|
|
5767
6034
|
- ".pbtxt"
|
|
6035
|
+
- ".txtpb"
|
|
5768
6036
|
tm_scope: source.textproto
|
|
5769
6037
|
ace_mode: text
|
|
5770
6038
|
language_id: 436568854
|
|
@@ -5796,7 +6064,7 @@ Puppet:
|
|
|
5796
6064
|
- ".pp"
|
|
5797
6065
|
filenames:
|
|
5798
6066
|
- Modulefile
|
|
5799
|
-
ace_mode:
|
|
6067
|
+
ace_mode: puppet
|
|
5800
6068
|
codemirror_mode: puppet
|
|
5801
6069
|
codemirror_mime_type: text/x-puppet
|
|
5802
6070
|
tm_scope: source.puppet
|
|
@@ -5875,6 +6143,8 @@ Python:
|
|
|
5875
6143
|
- pypy3
|
|
5876
6144
|
- uv
|
|
5877
6145
|
aliases:
|
|
6146
|
+
- py
|
|
6147
|
+
- py3
|
|
5878
6148
|
- python3
|
|
5879
6149
|
- rusthon
|
|
5880
6150
|
language_id: 303
|
|
@@ -5913,7 +6183,7 @@ QML:
|
|
|
5913
6183
|
- ".qml"
|
|
5914
6184
|
- ".qbs"
|
|
5915
6185
|
tm_scope: source.qml
|
|
5916
|
-
ace_mode:
|
|
6186
|
+
ace_mode: qml
|
|
5917
6187
|
language_id: 305
|
|
5918
6188
|
QMake:
|
|
5919
6189
|
type: programming
|
|
@@ -5947,11 +6217,20 @@ Quake:
|
|
|
5947
6217
|
ace_mode: text
|
|
5948
6218
|
tm_scope: source.quake
|
|
5949
6219
|
language_id: 375265331
|
|
6220
|
+
QuakeC:
|
|
6221
|
+
type: programming
|
|
6222
|
+
extensions:
|
|
6223
|
+
- ".qc"
|
|
6224
|
+
color: "#975777"
|
|
6225
|
+
ace_mode: text
|
|
6226
|
+
tm_scope: source.quakec
|
|
6227
|
+
language_id: 472308069
|
|
5950
6228
|
QuickBASIC:
|
|
5951
6229
|
type: programming
|
|
5952
6230
|
color: "#008080"
|
|
5953
6231
|
extensions:
|
|
5954
6232
|
- ".bas"
|
|
6233
|
+
- ".bi"
|
|
5955
6234
|
tm_scope: source.QB64
|
|
5956
6235
|
aliases:
|
|
5957
6236
|
- qb
|
|
@@ -5963,6 +6242,14 @@ QuickBASIC:
|
|
|
5963
6242
|
codemirror_mode: vb
|
|
5964
6243
|
codemirror_mime_type: text/x-vb
|
|
5965
6244
|
language_id: 593107205
|
|
6245
|
+
Quint:
|
|
6246
|
+
type: programming
|
|
6247
|
+
color: "#9d6ce5"
|
|
6248
|
+
extensions:
|
|
6249
|
+
- ".qnt"
|
|
6250
|
+
tm_scope: source.quint
|
|
6251
|
+
ace_mode: text
|
|
6252
|
+
language_id: 562056483
|
|
5966
6253
|
R:
|
|
5967
6254
|
type: programming
|
|
5968
6255
|
color: "#198CE7"
|
|
@@ -5993,6 +6280,14 @@ RAML:
|
|
|
5993
6280
|
extensions:
|
|
5994
6281
|
- ".raml"
|
|
5995
6282
|
language_id: 308
|
|
6283
|
+
RAScript:
|
|
6284
|
+
type: programming
|
|
6285
|
+
ace_mode: text
|
|
6286
|
+
extensions:
|
|
6287
|
+
- ".rascript"
|
|
6288
|
+
tm_scope: source.rascript
|
|
6289
|
+
color: "#2C97FA"
|
|
6290
|
+
language_id: 601118790
|
|
5996
6291
|
RBS:
|
|
5997
6292
|
type: data
|
|
5998
6293
|
ace_mode: ruby
|
|
@@ -6060,6 +6355,18 @@ RON:
|
|
|
6060
6355
|
ace_mode: rust
|
|
6061
6356
|
tm_scope: source.ron
|
|
6062
6357
|
language_id: 587855233
|
|
6358
|
+
ROS Interface:
|
|
6359
|
+
type: data
|
|
6360
|
+
color: "#22314e"
|
|
6361
|
+
aliases:
|
|
6362
|
+
- rosmsg
|
|
6363
|
+
ace_mode: text
|
|
6364
|
+
extensions:
|
|
6365
|
+
- ".msg"
|
|
6366
|
+
- ".action"
|
|
6367
|
+
- ".srv"
|
|
6368
|
+
tm_scope: source.rosmsg
|
|
6369
|
+
language_id: 809230569
|
|
6063
6370
|
RPC:
|
|
6064
6371
|
type: programming
|
|
6065
6372
|
aliases:
|
|
@@ -6153,7 +6460,7 @@ Raku:
|
|
|
6153
6460
|
- perl6
|
|
6154
6461
|
- perl-6
|
|
6155
6462
|
tm_scope: source.raku
|
|
6156
|
-
ace_mode:
|
|
6463
|
+
ace_mode: raku
|
|
6157
6464
|
codemirror_mode: perl
|
|
6158
6465
|
codemirror_mime_type: text/x-perl
|
|
6159
6466
|
language_id: 283
|
|
@@ -6182,6 +6489,7 @@ ReScript:
|
|
|
6182
6489
|
codemirror_mime_type: text/x-rustsrc
|
|
6183
6490
|
extensions:
|
|
6184
6491
|
- ".res"
|
|
6492
|
+
- ".resi"
|
|
6185
6493
|
interpreters:
|
|
6186
6494
|
- ocaml
|
|
6187
6495
|
tm_scope: source.rescript
|
|
@@ -6251,7 +6559,7 @@ Red:
|
|
|
6251
6559
|
aliases:
|
|
6252
6560
|
- red/system
|
|
6253
6561
|
tm_scope: source.red
|
|
6254
|
-
ace_mode:
|
|
6562
|
+
ace_mode: red
|
|
6255
6563
|
language_id: 320
|
|
6256
6564
|
Redcode:
|
|
6257
6565
|
type: programming
|
|
@@ -6337,7 +6645,7 @@ RobotFramework:
|
|
|
6337
6645
|
- ".robot"
|
|
6338
6646
|
- ".resource"
|
|
6339
6647
|
tm_scope: text.robot
|
|
6340
|
-
ace_mode:
|
|
6648
|
+
ace_mode: robot
|
|
6341
6649
|
language_id: 324
|
|
6342
6650
|
Roc:
|
|
6343
6651
|
type: programming
|
|
@@ -6605,7 +6913,7 @@ SPARQL:
|
|
|
6605
6913
|
type: data
|
|
6606
6914
|
color: "#0C4597"
|
|
6607
6915
|
tm_scope: source.sparql
|
|
6608
|
-
ace_mode:
|
|
6916
|
+
ace_mode: sparql
|
|
6609
6917
|
codemirror_mode: sparql
|
|
6610
6918
|
codemirror_mime_type: application/sparql-query
|
|
6611
6919
|
extensions:
|
|
@@ -6630,7 +6938,6 @@ SQL:
|
|
|
6630
6938
|
codemirror_mime_type: text/x-sql
|
|
6631
6939
|
extensions:
|
|
6632
6940
|
- ".sql"
|
|
6633
|
-
- ".cql"
|
|
6634
6941
|
- ".ddl"
|
|
6635
6942
|
- ".inc"
|
|
6636
6943
|
- ".mysql"
|
|
@@ -6710,7 +7017,7 @@ SVG:
|
|
|
6710
7017
|
extensions:
|
|
6711
7018
|
- ".svg"
|
|
6712
7019
|
tm_scope: text.xml.svg
|
|
6713
|
-
ace_mode:
|
|
7020
|
+
ace_mode: svg
|
|
6714
7021
|
codemirror_mode: xml
|
|
6715
7022
|
codemirror_mime_type: text/xml
|
|
6716
7023
|
language_id: 337
|
|
@@ -6718,6 +7025,8 @@ SWIG:
|
|
|
6718
7025
|
type: programming
|
|
6719
7026
|
extensions:
|
|
6720
7027
|
- ".i"
|
|
7028
|
+
- ".swg"
|
|
7029
|
+
- ".swig"
|
|
6721
7030
|
tm_scope: source.c++
|
|
6722
7031
|
ace_mode: c_cpp
|
|
6723
7032
|
codemirror_mode: clike
|
|
@@ -6863,7 +7172,9 @@ Shell:
|
|
|
6863
7172
|
- ".command"
|
|
6864
7173
|
- ".fcgi"
|
|
6865
7174
|
- ".ksh"
|
|
7175
|
+
- ".sbatch"
|
|
6866
7176
|
- ".sh.in"
|
|
7177
|
+
- ".slurm"
|
|
6867
7178
|
- ".tmux"
|
|
6868
7179
|
- ".tool"
|
|
6869
7180
|
- ".trigger"
|
|
@@ -6883,6 +7194,8 @@ Shell:
|
|
|
6883
7194
|
- ".login"
|
|
6884
7195
|
- ".profile"
|
|
6885
7196
|
- ".tmux.conf"
|
|
7197
|
+
- ".xinitrc"
|
|
7198
|
+
- ".xsession"
|
|
6886
7199
|
- ".zlogin"
|
|
6887
7200
|
- ".zlogout"
|
|
6888
7201
|
- ".zprofile"
|
|
@@ -6899,8 +7212,11 @@ Shell:
|
|
|
6899
7212
|
- kshrc
|
|
6900
7213
|
- login
|
|
6901
7214
|
- man
|
|
7215
|
+
- mvnw
|
|
6902
7216
|
- profile
|
|
6903
7217
|
- tmux.conf
|
|
7218
|
+
- xinitrc
|
|
7219
|
+
- xsession
|
|
6904
7220
|
- zlogin
|
|
6905
7221
|
- zlogout
|
|
6906
7222
|
- zprofile
|
|
@@ -7013,7 +7329,7 @@ Slim:
|
|
|
7013
7329
|
extensions:
|
|
7014
7330
|
- ".slim"
|
|
7015
7331
|
tm_scope: text.slim
|
|
7016
|
-
ace_mode:
|
|
7332
|
+
ace_mode: slim
|
|
7017
7333
|
codemirror_mode: slim
|
|
7018
7334
|
codemirror_mime_type: text/x-slim
|
|
7019
7335
|
language_id: 350
|
|
@@ -7067,7 +7383,7 @@ Smarty:
|
|
|
7067
7383
|
language_id: 353
|
|
7068
7384
|
Smithy:
|
|
7069
7385
|
type: programming
|
|
7070
|
-
ace_mode:
|
|
7386
|
+
ace_mode: smithy
|
|
7071
7387
|
codemirror_mode: clike
|
|
7072
7388
|
codemirror_mime_type: text/x-csrc
|
|
7073
7389
|
tm_scope: source.smithy
|
|
@@ -7117,6 +7433,14 @@ SourcePawn:
|
|
|
7117
7433
|
tm_scope: source.sourcepawn
|
|
7118
7434
|
ace_mode: text
|
|
7119
7435
|
language_id: 354
|
|
7436
|
+
SpiceDB Schema:
|
|
7437
|
+
type: data
|
|
7438
|
+
color: "#a5318a"
|
|
7439
|
+
extensions:
|
|
7440
|
+
- ".zed"
|
|
7441
|
+
tm_scope: source.spicedb
|
|
7442
|
+
ace_mode: text
|
|
7443
|
+
language_id: 864005057
|
|
7120
7444
|
Spline Font Database:
|
|
7121
7445
|
type: data
|
|
7122
7446
|
extensions:
|
|
@@ -7132,7 +7456,7 @@ Squirrel:
|
|
|
7132
7456
|
tm_scope: source.nut
|
|
7133
7457
|
ace_mode: c_cpp
|
|
7134
7458
|
codemirror_mode: clike
|
|
7135
|
-
codemirror_mime_type: text/x-
|
|
7459
|
+
codemirror_mime_type: text/x-squirrel
|
|
7136
7460
|
language_id: 355
|
|
7137
7461
|
Stan:
|
|
7138
7462
|
type: programming
|
|
@@ -7155,7 +7479,7 @@ Standard ML:
|
|
|
7155
7479
|
tm_scope: source.ml
|
|
7156
7480
|
ace_mode: text
|
|
7157
7481
|
codemirror_mode: mllike
|
|
7158
|
-
codemirror_mime_type: text/x-
|
|
7482
|
+
codemirror_mime_type: text/x-sml
|
|
7159
7483
|
language_id: 357
|
|
7160
7484
|
Starlark:
|
|
7161
7485
|
type: programming
|
|
@@ -7211,6 +7535,8 @@ Stylus:
|
|
|
7211
7535
|
- ".styl"
|
|
7212
7536
|
tm_scope: source.stylus
|
|
7213
7537
|
ace_mode: stylus
|
|
7538
|
+
codemirror_mode: stylus
|
|
7539
|
+
codemirror_mime_type: text/x-styl
|
|
7214
7540
|
language_id: 359
|
|
7215
7541
|
SubRip Text:
|
|
7216
7542
|
type: data
|
|
@@ -7240,6 +7566,16 @@ SuperCollider:
|
|
|
7240
7566
|
tm_scope: source.supercollider
|
|
7241
7567
|
ace_mode: text
|
|
7242
7568
|
language_id: 361
|
|
7569
|
+
SurrealQL:
|
|
7570
|
+
type: programming
|
|
7571
|
+
color: "#ff00a0"
|
|
7572
|
+
aliases:
|
|
7573
|
+
- surql
|
|
7574
|
+
extensions:
|
|
7575
|
+
- ".surql"
|
|
7576
|
+
ace_mode: text
|
|
7577
|
+
tm_scope: source.surrealql
|
|
7578
|
+
language_id: 735141027
|
|
7243
7579
|
Survex data:
|
|
7244
7580
|
type: data
|
|
7245
7581
|
color: "#ffcc99"
|
|
@@ -7282,7 +7618,7 @@ Swift:
|
|
|
7282
7618
|
extensions:
|
|
7283
7619
|
- ".swift"
|
|
7284
7620
|
tm_scope: source.swift
|
|
7285
|
-
ace_mode:
|
|
7621
|
+
ace_mode: swift
|
|
7286
7622
|
codemirror_mode: swift
|
|
7287
7623
|
codemirror_mime_type: text/x-swift
|
|
7288
7624
|
language_id: 362
|
|
@@ -7323,16 +7659,29 @@ TLA:
|
|
|
7323
7659
|
tm_scope: source.tla
|
|
7324
7660
|
ace_mode: text
|
|
7325
7661
|
language_id: 364
|
|
7662
|
+
TMDL:
|
|
7663
|
+
type: data
|
|
7664
|
+
color: "#f0c913"
|
|
7665
|
+
extensions:
|
|
7666
|
+
- ".tmdl"
|
|
7667
|
+
aliases:
|
|
7668
|
+
- Tabular Model Definition Language
|
|
7669
|
+
tm_scope: source.tmdl
|
|
7670
|
+
ace_mode: text
|
|
7671
|
+
language_id: 769162295
|
|
7326
7672
|
TOML:
|
|
7327
7673
|
type: data
|
|
7328
7674
|
color: "#9c4221"
|
|
7329
7675
|
extensions:
|
|
7330
7676
|
- ".toml"
|
|
7677
|
+
- ".toml.example"
|
|
7331
7678
|
filenames:
|
|
7332
7679
|
- Cargo.lock
|
|
7333
7680
|
- Cargo.toml.orig
|
|
7334
7681
|
- Gopkg.lock
|
|
7335
7682
|
- Pipfile
|
|
7683
|
+
- mise.local.lock
|
|
7684
|
+
- mise.lock
|
|
7336
7685
|
- pdm.lock
|
|
7337
7686
|
- poetry.lock
|
|
7338
7687
|
- uv.lock
|
|
@@ -7362,8 +7711,8 @@ TSQL:
|
|
|
7362
7711
|
TSV:
|
|
7363
7712
|
type: data
|
|
7364
7713
|
color: "#237346"
|
|
7365
|
-
ace_mode:
|
|
7366
|
-
tm_scope: source.
|
|
7714
|
+
ace_mode: tsv
|
|
7715
|
+
tm_scope: source.tsv
|
|
7367
7716
|
extensions:
|
|
7368
7717
|
- ".tsv"
|
|
7369
7718
|
- ".vcf"
|
|
@@ -7374,12 +7723,14 @@ TSX:
|
|
|
7374
7723
|
type: programming
|
|
7375
7724
|
color: "#3178c6"
|
|
7376
7725
|
group: TypeScript
|
|
7726
|
+
aliases:
|
|
7727
|
+
- typescriptreact
|
|
7377
7728
|
extensions:
|
|
7378
7729
|
- ".tsx"
|
|
7379
7730
|
tm_scope: source.tsx
|
|
7380
|
-
ace_mode:
|
|
7731
|
+
ace_mode: tsx
|
|
7381
7732
|
codemirror_mode: jsx
|
|
7382
|
-
codemirror_mime_type: text/jsx
|
|
7733
|
+
codemirror_mime_type: text/typescript-jsx
|
|
7383
7734
|
language_id: 94901924
|
|
7384
7735
|
TXL:
|
|
7385
7736
|
type: programming
|
|
@@ -7476,6 +7827,18 @@ Tea:
|
|
|
7476
7827
|
tm_scope: source.tea
|
|
7477
7828
|
ace_mode: text
|
|
7478
7829
|
language_id: 370
|
|
7830
|
+
Teal:
|
|
7831
|
+
type: programming
|
|
7832
|
+
extensions:
|
|
7833
|
+
- ".tl"
|
|
7834
|
+
color: "#00B1BC"
|
|
7835
|
+
tm_scope: source.teal
|
|
7836
|
+
ace_mode: lua
|
|
7837
|
+
codemirror_mode: lua
|
|
7838
|
+
codemirror_mime_type: text/x-lua
|
|
7839
|
+
interpreters:
|
|
7840
|
+
- tl
|
|
7841
|
+
language_id: 719038619
|
|
7479
7842
|
Terra:
|
|
7480
7843
|
type: programming
|
|
7481
7844
|
extensions:
|
|
@@ -7599,6 +7962,16 @@ Toit:
|
|
|
7599
7962
|
tm_scope: source.toit
|
|
7600
7963
|
ace_mode: text
|
|
7601
7964
|
language_id: 356554395
|
|
7965
|
+
Tor Config:
|
|
7966
|
+
type: data
|
|
7967
|
+
color: "#59316b"
|
|
7968
|
+
filenames:
|
|
7969
|
+
- torrc
|
|
7970
|
+
tm_scope: source.torrc
|
|
7971
|
+
ace_mode: apache_conf
|
|
7972
|
+
aliases:
|
|
7973
|
+
- torrc
|
|
7974
|
+
language_id: 1016912802
|
|
7602
7975
|
Tree-sitter Query:
|
|
7603
7976
|
type: programming
|
|
7604
7977
|
color: "#8ea64c"
|
|
@@ -7623,7 +7996,7 @@ Turtle:
|
|
|
7623
7996
|
extensions:
|
|
7624
7997
|
- ".ttl"
|
|
7625
7998
|
tm_scope: source.turtle
|
|
7626
|
-
ace_mode:
|
|
7999
|
+
ace_mode: turtle
|
|
7627
8000
|
codemirror_mode: turtle
|
|
7628
8001
|
codemirror_mime_type: text/turtle
|
|
7629
8002
|
language_id: 376
|
|
@@ -7745,6 +8118,14 @@ UnrealScript:
|
|
|
7745
8118
|
codemirror_mode: clike
|
|
7746
8119
|
codemirror_mime_type: text/x-java
|
|
7747
8120
|
language_id: 382
|
|
8121
|
+
Untyped Plutus Core:
|
|
8122
|
+
type: programming
|
|
8123
|
+
color: "#36adbd"
|
|
8124
|
+
ace_mode: text
|
|
8125
|
+
extensions:
|
|
8126
|
+
- ".uplc"
|
|
8127
|
+
tm_scope: source.uplc
|
|
8128
|
+
language_id: 1061635506
|
|
7748
8129
|
UrWeb:
|
|
7749
8130
|
type: programming
|
|
7750
8131
|
color: "#ccccee"
|
|
@@ -7790,7 +8171,7 @@ VBScript:
|
|
|
7790
8171
|
extensions:
|
|
7791
8172
|
- ".vbs"
|
|
7792
8173
|
tm_scope: source.vbnet
|
|
7793
|
-
ace_mode:
|
|
8174
|
+
ace_mode: vbscript
|
|
7794
8175
|
codemirror_mode: vbscript
|
|
7795
8176
|
codemirror_mime_type: text/vbscript
|
|
7796
8177
|
language_id: 408016005
|
|
@@ -7799,7 +8180,7 @@ VCL:
|
|
|
7799
8180
|
color: "#148AA8"
|
|
7800
8181
|
extensions:
|
|
7801
8182
|
- ".vcl"
|
|
7802
|
-
tm_scope: source.
|
|
8183
|
+
tm_scope: source.vcl
|
|
7803
8184
|
ace_mode: text
|
|
7804
8185
|
language_id: 384
|
|
7805
8186
|
VHDL:
|
|
@@ -7852,6 +8233,14 @@ Velocity Template Language:
|
|
|
7852
8233
|
codemirror_mode: velocity
|
|
7853
8234
|
codemirror_mime_type: text/velocity
|
|
7854
8235
|
language_id: 292377326
|
|
8236
|
+
Vento:
|
|
8237
|
+
type: markup
|
|
8238
|
+
color: "#ff0080"
|
|
8239
|
+
extensions:
|
|
8240
|
+
- ".vto"
|
|
8241
|
+
tm_scope: source.vento
|
|
8242
|
+
ace_mode: text
|
|
8243
|
+
language_id: 757053899
|
|
7855
8244
|
Verilog:
|
|
7856
8245
|
type: programming
|
|
7857
8246
|
color: "#b2b7f8"
|
|
@@ -7965,14 +8354,16 @@ Vue:
|
|
|
7965
8354
|
color: "#41b883"
|
|
7966
8355
|
extensions:
|
|
7967
8356
|
- ".vue"
|
|
7968
|
-
tm_scope:
|
|
7969
|
-
ace_mode:
|
|
8357
|
+
tm_scope: text.html.vue
|
|
8358
|
+
ace_mode: vue
|
|
8359
|
+
codemirror_mode: vue
|
|
8360
|
+
codemirror_mime_type: text/x-vue
|
|
7970
8361
|
language_id: 391
|
|
7971
8362
|
Vyper:
|
|
7972
8363
|
type: programming
|
|
7973
8364
|
extensions:
|
|
7974
8365
|
- ".vy"
|
|
7975
|
-
color: "#
|
|
8366
|
+
color: "#9F4CF2"
|
|
7976
8367
|
ace_mode: text
|
|
7977
8368
|
tm_scope: source.vyper
|
|
7978
8369
|
language_id: 1055641948
|
|
@@ -8027,8 +8418,8 @@ WebAssembly:
|
|
|
8027
8418
|
- wasm
|
|
8028
8419
|
tm_scope: source.webassembly
|
|
8029
8420
|
ace_mode: lisp
|
|
8030
|
-
codemirror_mode:
|
|
8031
|
-
codemirror_mime_type: text/
|
|
8421
|
+
codemirror_mode: wast
|
|
8422
|
+
codemirror_mime_type: text/webassembly
|
|
8032
8423
|
language_id: 956556503
|
|
8033
8424
|
WebAssembly Interface Type:
|
|
8034
8425
|
type: data
|
|
@@ -8091,7 +8482,7 @@ Wikitext:
|
|
|
8091
8482
|
- ".wiki"
|
|
8092
8483
|
- ".wikitext"
|
|
8093
8484
|
tm_scope: text.html.mediawiki
|
|
8094
|
-
ace_mode:
|
|
8485
|
+
ace_mode: mediawiki
|
|
8095
8486
|
language_id: 228
|
|
8096
8487
|
Win32 Message File:
|
|
8097
8488
|
type: data
|
|
@@ -8120,12 +8511,46 @@ Witcher Script:
|
|
|
8120
8511
|
ace_mode: text
|
|
8121
8512
|
tm_scope: source.witcherscript
|
|
8122
8513
|
language_id: 686821385
|
|
8514
|
+
Wolfram Language:
|
|
8515
|
+
type: programming
|
|
8516
|
+
color: "#dd1100"
|
|
8517
|
+
extensions:
|
|
8518
|
+
- ".mathematica"
|
|
8519
|
+
- ".cdf"
|
|
8520
|
+
- ".m"
|
|
8521
|
+
- ".ma"
|
|
8522
|
+
- ".mt"
|
|
8523
|
+
- ".nb"
|
|
8524
|
+
- ".nbp"
|
|
8525
|
+
- ".wl"
|
|
8526
|
+
- ".wls"
|
|
8527
|
+
- ".wlt"
|
|
8528
|
+
aliases:
|
|
8529
|
+
- mathematica
|
|
8530
|
+
- mma
|
|
8531
|
+
- wolfram
|
|
8532
|
+
- wolfram lang
|
|
8533
|
+
- wl
|
|
8534
|
+
interpreters:
|
|
8535
|
+
- wolfram
|
|
8536
|
+
- WolframKernel
|
|
8537
|
+
- wolframscript
|
|
8538
|
+
- math
|
|
8539
|
+
- MathKernel
|
|
8540
|
+
- MathematicaScript
|
|
8541
|
+
- WolframNB
|
|
8542
|
+
- Mathematica
|
|
8543
|
+
tm_scope: source.mathematica
|
|
8544
|
+
ace_mode: text
|
|
8545
|
+
codemirror_mode: mathematica
|
|
8546
|
+
codemirror_mime_type: text/x-mathematica
|
|
8547
|
+
language_id: 224
|
|
8123
8548
|
Wollok:
|
|
8124
8549
|
type: programming
|
|
8125
8550
|
color: "#a23738"
|
|
8126
8551
|
extensions:
|
|
8127
8552
|
- ".wlk"
|
|
8128
|
-
ace_mode:
|
|
8553
|
+
ace_mode: wollok
|
|
8129
8554
|
tm_scope: source.wollok
|
|
8130
8555
|
language_id: 632745969
|
|
8131
8556
|
World of Warcraft Addon Data:
|
|
@@ -8254,6 +8679,7 @@ XML:
|
|
|
8254
8679
|
- ".grxml"
|
|
8255
8680
|
- ".gst"
|
|
8256
8681
|
- ".hzp"
|
|
8682
|
+
- ".icls"
|
|
8257
8683
|
- ".iml"
|
|
8258
8684
|
- ".ivy"
|
|
8259
8685
|
- ".jelly"
|
|
@@ -8280,6 +8706,7 @@ XML:
|
|
|
8280
8706
|
- ".ps1xml"
|
|
8281
8707
|
- ".psc1"
|
|
8282
8708
|
- ".pt"
|
|
8709
|
+
- ".pubxml"
|
|
8283
8710
|
- ".qhelp"
|
|
8284
8711
|
- ".rdf"
|
|
8285
8712
|
- ".res"
|
|
@@ -8290,6 +8717,7 @@ XML:
|
|
|
8290
8717
|
- ".scxml"
|
|
8291
8718
|
- ".sfproj"
|
|
8292
8719
|
- ".shproj"
|
|
8720
|
+
- ".slnx"
|
|
8293
8721
|
- ".srdf"
|
|
8294
8722
|
- ".storyboard"
|
|
8295
8723
|
- ".sublime-snippet"
|
|
@@ -8554,7 +8982,7 @@ Zeek:
|
|
|
8554
8982
|
- ".zeek"
|
|
8555
8983
|
- ".bro"
|
|
8556
8984
|
tm_scope: source.zeek
|
|
8557
|
-
ace_mode:
|
|
8985
|
+
ace_mode: zeek
|
|
8558
8986
|
language_id: 40
|
|
8559
8987
|
ZenScript:
|
|
8560
8988
|
type: programming
|
|
@@ -8579,7 +9007,7 @@ Zig:
|
|
|
8579
9007
|
- ".zig"
|
|
8580
9008
|
- ".zig.zon"
|
|
8581
9009
|
tm_scope: source.zig
|
|
8582
|
-
ace_mode:
|
|
9010
|
+
ace_mode: zig
|
|
8583
9011
|
language_id: 646424281
|
|
8584
9012
|
Zimpl:
|
|
8585
9013
|
type: programming
|
|
@@ -8591,6 +9019,14 @@ Zimpl:
|
|
|
8591
9019
|
tm_scope: none
|
|
8592
9020
|
ace_mode: text
|
|
8593
9021
|
language_id: 411
|
|
9022
|
+
Zmodel:
|
|
9023
|
+
type: data
|
|
9024
|
+
color: "#ff7100"
|
|
9025
|
+
extensions:
|
|
9026
|
+
- ".zmodel"
|
|
9027
|
+
tm_scope: source.zmodel
|
|
9028
|
+
ace_mode: text
|
|
9029
|
+
language_id: 803760908
|
|
8594
9030
|
cURL Config:
|
|
8595
9031
|
type: data
|
|
8596
9032
|
group: INI
|
|
@@ -8649,7 +9085,7 @@ edn:
|
|
|
8649
9085
|
type: data
|
|
8650
9086
|
ace_mode: clojure
|
|
8651
9087
|
codemirror_mode: clojure
|
|
8652
|
-
codemirror_mime_type:
|
|
9088
|
+
codemirror_mime_type: application/edn
|
|
8653
9089
|
extensions:
|
|
8654
9090
|
- ".edn"
|
|
8655
9091
|
tm_scope: source.clojure
|
|
@@ -8778,6 +9214,8 @@ q:
|
|
|
8778
9214
|
- ".q"
|
|
8779
9215
|
tm_scope: source.q
|
|
8780
9216
|
ace_mode: text
|
|
9217
|
+
codemirror_mode: q
|
|
9218
|
+
codemirror_mime_type: text/x-q
|
|
8781
9219
|
color: "#0040cd"
|
|
8782
9220
|
language_id: 970539067
|
|
8783
9221
|
reStructuredText:
|
|
@@ -8792,7 +9230,7 @@ reStructuredText:
|
|
|
8792
9230
|
- ".rest.txt"
|
|
8793
9231
|
- ".rst.txt"
|
|
8794
9232
|
tm_scope: text.restructuredtext
|
|
8795
|
-
ace_mode:
|
|
9233
|
+
ace_mode: rst
|
|
8796
9234
|
codemirror_mode: rst
|
|
8797
9235
|
codemirror_mime_type: text/x-rst
|
|
8798
9236
|
language_id: 419
|