File tree Expand file tree Collapse file tree 9 files changed +649
-80
lines changed Expand file tree Collapse file tree 9 files changed +649
-80
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ Syntax highlighting for
32
32
- JSON5
33
33
- jsonl
34
34
- Linker Scripts
35
+ - LLVM IR
35
36
- Log
36
37
- Logstash
37
38
- M3U
@@ -48,6 +49,7 @@ Syntax highlighting for
48
49
- sxhkdrc
49
50
- systemd
50
51
- T4
52
+ - LLVM TableGen
51
53
- terminfo
52
54
- Thrift
53
55
- Typo3
@@ -84,6 +86,8 @@ Syntax highlighting for
84
86
- [ vscode-json5] ( https://github.com/mrmlnc/vscode-json5 ) by mrmlnc (MIT)
85
87
- [ jsonl] ( https://github.com/Alpha4/jsonl ) by Alpha4 (MIT)
86
88
- [ vscode-linkerscript] ( https://github.com/TheNetAdmin/vscode-linkerscript ) by TheNetAdmin (MIT)
89
+ - [ llvm-syntax-highlighting] ( https://github.com/colejcummins/llvm-syntax-highlighting ) by colejcummins (MIT)
90
+ - [ vscode-llvm-tablegen] ( https://github.com/jakoberzar/vscode-llvm-tablegen ) by jakoberzar (MIT)
87
91
- [ vscode-log-output-colorizer] ( https://github.com/IBM-Cloud/vscode-log-output-colorizer ) by IBM-Cloud (MIT)
88
92
- [ vscode-logstash-configuration-syntax] ( https://github.com/randomchance/vscode-logstash-configuration-syntax ) by randomchance (MIT)
89
93
- [ vscode-m3u] ( https://github.com/af4jm/vscode-m3u ) by af4jm (Apache-2.0)
Original file line number Diff line number Diff line change
1
+ {
2
+ "comments" : {
3
+ "lineComment" : " ;"
4
+ },
5
+ "brackets" : [
6
+ [
7
+ " {" ,
8
+ " }"
9
+ ],
10
+ [
11
+ " [" ,
12
+ " ]"
13
+ ],
14
+ [
15
+ " (" ,
16
+ " )"
17
+ ]
18
+ ],
19
+ "autoClosingPairs" : [
20
+ [
21
+ " {" ,
22
+ " }"
23
+ ],
24
+ [
25
+ " [" ,
26
+ " ]"
27
+ ],
28
+ [
29
+ " (" ,
30
+ " )"
31
+ ],
32
+ [
33
+ " \" " ,
34
+ " \" "
35
+ ],
36
+ [
37
+ " '" ,
38
+ " '"
39
+ ]
40
+ ],
41
+ "surroundingPairs" : [
42
+ [
43
+ " {" ,
44
+ " }"
45
+ ],
46
+ [
47
+ " [" ,
48
+ " ]"
49
+ ],
50
+ [
51
+ " (" ,
52
+ " )"
53
+ ],
54
+ [
55
+ " \" " ,
56
+ " \" "
57
+ ],
58
+ [
59
+ " '" ,
60
+ " '"
61
+ ]
62
+ ]
63
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "comments" : {
3
+ "lineComment" : " //" ,
4
+ "blockComment" : [
5
+ " /*" ,
6
+ " */"
7
+ ]
8
+ },
9
+ "brackets" : [
10
+ [
11
+ " {" ,
12
+ " }"
13
+ ],
14
+ [
15
+ " [" ,
16
+ " ]"
17
+ ],
18
+ [
19
+ " (" ,
20
+ " )"
21
+ ]
22
+ ],
23
+ "autoClosingPairs" : [
24
+ [
25
+ " {" ,
26
+ " }"
27
+ ],
28
+ [
29
+ " [" ,
30
+ " ]"
31
+ ],
32
+ [
33
+ " (" ,
34
+ " )"
35
+ ],
36
+ [
37
+ " \" " ,
38
+ " \" "
39
+ ],
40
+ [
41
+ " '" ,
42
+ " '"
43
+ ]
44
+ ],
45
+ "surroundingPairs" : [
46
+ [
47
+ " {" ,
48
+ " }"
49
+ ],
50
+ [
51
+ " [" ,
52
+ " ]"
53
+ ],
54
+ [
55
+ " (" ,
56
+ " )"
57
+ ],
58
+ [
59
+ " \" " ,
60
+ " \" "
61
+ ],
62
+ [
63
+ " '" ,
64
+ " '"
65
+ ]
66
+ ]
67
+ }
Original file line number Diff line number Diff line change 436
436
],
437
437
"configuration" : " ./language-configuration/linkerscript.language-configuration.json"
438
438
},
439
+ {
440
+ "id" : " llvm" ,
441
+ "aliases" : [
442
+ " LLVM" ,
443
+ " llvm"
444
+ ],
445
+ "extensions" : [
446
+ " .ll"
447
+ ],
448
+ "configuration" : " ./language-configuration/llvm.language-configuration.json"
449
+ },
439
450
{
440
451
"id" : " logfile" ,
441
452
"aliases" : [
643
654
],
644
655
"configuration" : " ./language-configuration/t4.language-configuration.json"
645
656
},
657
+ {
658
+ "id" : " tablegen" ,
659
+ "aliases" : [
660
+ " TableGen" ,
661
+ " tblgen" ,
662
+ " tablegen"
663
+ ],
664
+ "extensions" : [
665
+ " .td"
666
+ ],
667
+ "configuration" : " ./language-configuration/tablegen.language-configuration.json"
668
+ },
646
669
{
647
670
"id" : " terminfo" ,
648
671
"aliases" : [
953
976
"scopeName" : " source.ld" ,
954
977
"path" : " ./syntaxes/linkerscript.tmLanguage.json"
955
978
},
979
+ {
980
+ "language" : " llvm" ,
981
+ "scopeName" : " source.ll" ,
982
+ "path" : " ./syntaxes/llvm.tmLanguage.json"
983
+ },
956
984
{
957
985
"language" : " logfile" ,
958
986
"scopeName" : " text.logfile" ,
1050
1078
"scopeName" : " source.t4" ,
1051
1079
"path" : " ./syntaxes/t4.tmLanguage.json"
1052
1080
},
1081
+ {
1082
+ "language" : " tablegen" ,
1083
+ "scopeName" : " source.tablegen" ,
1084
+ "path" : " ./syntaxes/tablegen.tmLanguage.json"
1085
+ },
1053
1086
{
1054
1087
"language" : " terminfo" ,
1055
1088
"scopeName" : " source.terminfo" ,
You can’t perform that action at this time.
0 commit comments