@@ -363,6 +363,7 @@ const aliasOrIdToScope = {
363
363
apex: "source.apex",
364
364
apl: "source.apl",
365
365
applescript: "source.applescript",
366
+ ara: "source.ara",
366
367
asm: "source.asm.x86_64",
367
368
astro: "source.astro",
368
369
awk: "source.awk",
@@ -394,6 +395,7 @@ const aliasOrIdToScope = {
394
395
cue: "source.cue",
395
396
d: "source.d",
396
397
dart: "source.dart",
398
+ dax: "source.dax",
397
399
diff: "source.diff",
398
400
docker: "source.dockerfile",
399
401
"dream-maker": "source.dm",
@@ -426,10 +428,12 @@ const aliasOrIdToScope = {
426
428
http: "source.http",
427
429
imba: "source.imba",
428
430
ini: "source.ini",
431
+ properties: "source.ini",
429
432
java: "source.java",
430
433
javascript: "source.js",
431
434
js: "source.js",
432
435
"jinja-html": "text.html.jinja",
436
+ jison: "source.jison",
433
437
json: "source.json",
434
438
json5: "source.json5",
435
439
jsonc: "source.json.comments",
@@ -439,6 +443,8 @@ const aliasOrIdToScope = {
439
443
jsx: "source.js.jsx",
440
444
julia: "source.julia",
441
445
kotlin: "source.kotlin",
446
+ kusto: "source.kusto",
447
+ kql: "source.kusto",
442
448
latex: "text.tex.latex",
443
449
less: "source.css.less",
444
450
liquid: "text.html.liquid",
@@ -465,6 +471,7 @@ const aliasOrIdToScope = {
465
471
php: "source.php",
466
472
plsql: "source.plsql.oracle",
467
473
postcss: "source.css.postcss",
474
+ powerquery: "source.powerquery",
468
475
powershell: "source.powershell",
469
476
ps: "source.powershell",
470
477
ps1: "source.powershell",
@@ -496,9 +503,10 @@ const aliasOrIdToScope = {
496
503
shaderlab: "source.shaderlab",
497
504
shader: "source.shaderlab",
498
505
shellscript: "source.shell",
499
- shell: "source.shell",
500
506
bash: "source.shell",
507
+ console: "source.shell",
501
508
sh: "source.shell",
509
+ shell: "source.shell",
502
510
zsh: "source.shell",
503
511
smalltalk: "source.smalltalk",
504
512
solidity: "source.solidity",
@@ -533,6 +541,7 @@ const aliasOrIdToScope = {
533
541
wasm: "source.wat",
534
542
wenyan: "source.wenyan",
535
543
文言: "source.wenyan",
544
+ wgsl: "source.wgsl",
536
545
xml: "text.xml",
537
546
xsl: "text.xml.xsl",
538
547
yaml: "source.yaml",
@@ -582,6 +591,11 @@ const scopeToLanguageData = {
582
591
path: "applescript.tmLanguage.json",
583
592
embeddedScopes: [],
584
593
},
594
+ "source.ara": {
595
+ id: "ara",
596
+ path: "ara.tmLanguage.json",
597
+ embeddedScopes: [],
598
+ },
585
599
"source.asm.x86_64": {
586
600
id: "asm",
587
601
path: "asm.tmLanguage.json",
@@ -591,12 +605,13 @@ const scopeToLanguageData = {
591
605
id: "astro",
592
606
path: "astro.tmLanguage.json",
593
607
embeddedScopes: [
594
- "source.stylus",
595
- "source.css.scss",
596
- "source.sass",
608
+ "source.tsx",
609
+ "source.css.postcss",
597
610
"source.css.less",
611
+ "source.css.scss",
598
612
"source.css",
599
- "source.tsx",
613
+ "source.sass",
614
+ "source.stylus",
600
615
"source.ts",
601
616
"source.js",
602
617
"source.json",
@@ -792,6 +807,11 @@ const scopeToLanguageData = {
792
807
path: "dart.tmLanguage.json",
793
808
embeddedScopes: [],
794
809
},
810
+ "source.dax": {
811
+ id: "dax",
812
+ path: "dax.tmLanguage.json",
813
+ embeddedScopes: [],
814
+ },
795
815
"source.diff": {
796
816
id: "diff",
797
817
path: "diff.tmLanguage.json",
@@ -1090,6 +1110,11 @@ const scopeToLanguageData = {
1090
1110
path: "jinja-html.tmLanguage.json",
1091
1111
embeddedScopes: ["source.css", "source.js", "text.html.basic"],
1092
1112
},
1113
+ "source.jison": {
1114
+ id: "jison",
1115
+ path: "jison.tmLanguage.json",
1116
+ embeddedScopes: ["source.js"],
1117
+ },
1093
1118
"source.json": {
1094
1119
id: "json",
1095
1120
path: "json.tmLanguage.json",
@@ -1138,6 +1163,11 @@ const scopeToLanguageData = {
1138
1163
path: "kotlin.tmLanguage.json",
1139
1164
embeddedScopes: [],
1140
1165
},
1166
+ "source.kusto": {
1167
+ id: "kusto",
1168
+ path: "kusto.tmLanguage.json",
1169
+ embeddedScopes: [],
1170
+ },
1141
1171
"text.tex.latex": {
1142
1172
id: "latex",
1143
1173
path: "latex.tmLanguage.json",
@@ -1480,6 +1510,11 @@ const scopeToLanguageData = {
1480
1510
path: "postcss.tmLanguage.json",
1481
1511
embeddedScopes: [],
1482
1512
},
1513
+ "source.powerquery": {
1514
+ id: "powerquery",
1515
+ path: "powerquery.tmLanguage.json",
1516
+ embeddedScopes: [],
1517
+ },
1483
1518
"source.powershell": {
1484
1519
id: "powershell",
1485
1520
path: "powershell.tmLanguage.json",
@@ -1965,6 +2000,11 @@ const scopeToLanguageData = {
1965
2000
path: "wenyan.tmLanguage.json",
1966
2001
embeddedScopes: [],
1967
2002
},
2003
+ "source.wgsl": {
2004
+ id: "wgsl",
2005
+ path: "wgsl.tmLanguage.json",
2006
+ embeddedScopes: [],
2007
+ },
1968
2008
"text.xml": {
1969
2009
id: "xml",
1970
2010
path: "xml.tmLanguage.json",
0 commit comments