tm-grammars 1.25.3 → 1.26.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/NOTICE +53 -27
- package/README.md +14 -12
- package/grammars/apex.json +101 -15
- package/grammars/berry.json +78 -32
- package/grammars/csharp.json +126 -0
- package/grammars/lean.json +1 -1
- package/grammars/markdown-nix.json +50 -0
- package/grammars/nextflow.json +21 -0
- package/grammars/nix.json +8 -2
- package/grammars/openscad.json +151 -0
- package/grammars/solidity.json +2 -18
- package/grammars/tex.json +1 -1
- package/grammars/typespec.json +36 -33
- package/grammars/vue.json +12 -18
- package/index.js +117 -64
- package/package.json +1 -1
package/grammars/csharp.json
CHANGED
|
@@ -3503,9 +3503,135 @@
|
|
|
3503
3503
|
},
|
|
3504
3504
|
{
|
|
3505
3505
|
"include": "#preprocessor-pragma-checksum"
|
|
3506
|
+
},
|
|
3507
|
+
{
|
|
3508
|
+
"include": "#preprocessor-app-directive"
|
|
3509
|
+
}
|
|
3510
|
+
]
|
|
3511
|
+
},
|
|
3512
|
+
"preprocessor-app-directive": {
|
|
3513
|
+
"begin": "\\s*(:)\\s*",
|
|
3514
|
+
"beginCaptures": {
|
|
3515
|
+
"1": {
|
|
3516
|
+
"name": "punctuation.separator.colon.cs"
|
|
3517
|
+
}
|
|
3518
|
+
},
|
|
3519
|
+
"end": "(?=$)",
|
|
3520
|
+
"patterns": [
|
|
3521
|
+
{
|
|
3522
|
+
"include": "#preprocessor-app-directive-package"
|
|
3523
|
+
},
|
|
3524
|
+
{
|
|
3525
|
+
"include": "#preprocessor-app-directive-property"
|
|
3526
|
+
},
|
|
3527
|
+
{
|
|
3528
|
+
"include": "#preprocessor-app-directive-project"
|
|
3529
|
+
},
|
|
3530
|
+
{
|
|
3531
|
+
"include": "#preprocessor-app-directive-sdk"
|
|
3532
|
+
},
|
|
3533
|
+
{
|
|
3534
|
+
"include": "#preprocessor-app-directive-generic"
|
|
3506
3535
|
}
|
|
3507
3536
|
]
|
|
3508
3537
|
},
|
|
3538
|
+
"preprocessor-app-directive-generic": {
|
|
3539
|
+
"captures": {
|
|
3540
|
+
"1": {
|
|
3541
|
+
"name": "string.unquoted.preprocessor.message.cs"
|
|
3542
|
+
}
|
|
3543
|
+
},
|
|
3544
|
+
"match": "\\b(.*)?\\s*"
|
|
3545
|
+
},
|
|
3546
|
+
"preprocessor-app-directive-package": {
|
|
3547
|
+
"captures": {
|
|
3548
|
+
"1": {
|
|
3549
|
+
"name": "keyword.preprocessor.package.cs"
|
|
3550
|
+
},
|
|
3551
|
+
"2": {
|
|
3552
|
+
"patterns": [
|
|
3553
|
+
{
|
|
3554
|
+
"include": "#preprocessor-app-directive-package-name"
|
|
3555
|
+
}
|
|
3556
|
+
]
|
|
3557
|
+
},
|
|
3558
|
+
"3": {
|
|
3559
|
+
"name": "punctuation.separator.at.cs"
|
|
3560
|
+
},
|
|
3561
|
+
"4": {
|
|
3562
|
+
"name": "string.unquoted.preprocessor.message.cs"
|
|
3563
|
+
}
|
|
3564
|
+
},
|
|
3565
|
+
"match": "\\b(package)\\b\\s*([_[:alpha:]][._[:alnum:]]*)?(@)?(.*)?\\s*"
|
|
3566
|
+
},
|
|
3567
|
+
"preprocessor-app-directive-package-name": {
|
|
3568
|
+
"patterns": [
|
|
3569
|
+
{
|
|
3570
|
+
"captures": {
|
|
3571
|
+
"1": {
|
|
3572
|
+
"name": "punctuation.dot.cs"
|
|
3573
|
+
},
|
|
3574
|
+
"2": {
|
|
3575
|
+
"name": "entity.name.variable.preprocessor.symbol.cs"
|
|
3576
|
+
}
|
|
3577
|
+
},
|
|
3578
|
+
"match": "(\\.)([_[:alpha:]][_[:alnum:]]*)"
|
|
3579
|
+
},
|
|
3580
|
+
{
|
|
3581
|
+
"match": "[_[:alpha:]][_[:alnum:]]*",
|
|
3582
|
+
"name": "entity.name.variable.preprocessor.symbol.cs"
|
|
3583
|
+
}
|
|
3584
|
+
]
|
|
3585
|
+
},
|
|
3586
|
+
"preprocessor-app-directive-project": {
|
|
3587
|
+
"captures": {
|
|
3588
|
+
"1": {
|
|
3589
|
+
"name": "keyword.preprocessor.project.cs"
|
|
3590
|
+
},
|
|
3591
|
+
"2": {
|
|
3592
|
+
"name": "string.unquoted.preprocessor.message.cs"
|
|
3593
|
+
}
|
|
3594
|
+
},
|
|
3595
|
+
"match": "\\b(project)\\b\\s*(.*)?\\s*"
|
|
3596
|
+
},
|
|
3597
|
+
"preprocessor-app-directive-property": {
|
|
3598
|
+
"captures": {
|
|
3599
|
+
"1": {
|
|
3600
|
+
"name": "keyword.preprocessor.property.cs"
|
|
3601
|
+
},
|
|
3602
|
+
"2": {
|
|
3603
|
+
"name": "entity.name.variable.preprocessor.symbol.cs"
|
|
3604
|
+
},
|
|
3605
|
+
"3": {
|
|
3606
|
+
"name": "punctuation.separator.equals.cs"
|
|
3607
|
+
},
|
|
3608
|
+
"4": {
|
|
3609
|
+
"name": "string.unquoted.preprocessor.message.cs"
|
|
3610
|
+
}
|
|
3611
|
+
},
|
|
3612
|
+
"match": "\\b(property)\\b\\s*([_[:alpha:]][_[:alnum:]]*)?(=)?(.*)?\\s*"
|
|
3613
|
+
},
|
|
3614
|
+
"preprocessor-app-directive-sdk": {
|
|
3615
|
+
"captures": {
|
|
3616
|
+
"1": {
|
|
3617
|
+
"name": "keyword.preprocessor.sdk.cs"
|
|
3618
|
+
},
|
|
3619
|
+
"2": {
|
|
3620
|
+
"patterns": [
|
|
3621
|
+
{
|
|
3622
|
+
"include": "#preprocessor-app-directive-package-name"
|
|
3623
|
+
}
|
|
3624
|
+
]
|
|
3625
|
+
},
|
|
3626
|
+
"3": {
|
|
3627
|
+
"name": "punctuation.separator.at.cs"
|
|
3628
|
+
},
|
|
3629
|
+
"4": {
|
|
3630
|
+
"name": "string.unquoted.preprocessor.message.cs"
|
|
3631
|
+
}
|
|
3632
|
+
},
|
|
3633
|
+
"match": "\\b(sdk)\\b\\s*([_[:alpha:]][._[:alnum:]]*)?(@)?(.*)?\\s*"
|
|
3634
|
+
},
|
|
3509
3635
|
"preprocessor-define-or-undef": {
|
|
3510
3636
|
"captures": {
|
|
3511
3637
|
"1": {
|
package/grammars/lean.json
CHANGED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"fileTypes": [
|
|
3
|
+
],
|
|
4
|
+
"injectTo": [
|
|
5
|
+
"text.html.markdown"
|
|
6
|
+
],
|
|
7
|
+
"injectionSelector": "L:text.html.markdown",
|
|
8
|
+
"name": "markdown-nix",
|
|
9
|
+
"patterns": [
|
|
10
|
+
{
|
|
11
|
+
"include": "#nixCodeBlock"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"nixCodeBlock": {
|
|
16
|
+
"begin": "(^|\\G)(\\s*)(`{3,}|~{3,})\\s*(?i:(nix)(\\s+[^`~]*)?$)",
|
|
17
|
+
"beginCaptures": {
|
|
18
|
+
"3": {
|
|
19
|
+
"name": "punctuation.definition.markdown"
|
|
20
|
+
},
|
|
21
|
+
"5": {
|
|
22
|
+
"name": "fenced_code.block.language"
|
|
23
|
+
},
|
|
24
|
+
"6": {
|
|
25
|
+
"name": "fenced_code.block.language.attributes"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"end": "(^|\\G)(\\2|\\s{0,3})(\\3)\\s*$",
|
|
29
|
+
"endCaptures": {
|
|
30
|
+
"3": {
|
|
31
|
+
"name": "punctuation.definition.markdown"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"name": "markup.fenced_code.block.markdown",
|
|
35
|
+
"patterns": [
|
|
36
|
+
{
|
|
37
|
+
"begin": "(^|\\G)(\\s*)(.*)",
|
|
38
|
+
"contentName": "meta.embedded.block.nix",
|
|
39
|
+
"patterns": [
|
|
40
|
+
{
|
|
41
|
+
"include": "source.nix"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"while": "(^|\\G)(?!\\s*([`~]{3,})\\s*$)"
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"scopeName": "markdown.nix.codeblock"
|
|
50
|
+
}
|
package/grammars/nextflow.json
CHANGED
|
@@ -177,6 +177,9 @@
|
|
|
177
177
|
},
|
|
178
178
|
"nextflow": {
|
|
179
179
|
"patterns": [
|
|
180
|
+
{
|
|
181
|
+
"include": "#record-def"
|
|
182
|
+
},
|
|
180
183
|
{
|
|
181
184
|
"include": "#enum-def"
|
|
182
185
|
},
|
|
@@ -266,6 +269,24 @@
|
|
|
266
269
|
}
|
|
267
270
|
]
|
|
268
271
|
},
|
|
272
|
+
"record-def": {
|
|
273
|
+
"begin": "^\\s*(record)\\s+(\\w+)\\s*\\{",
|
|
274
|
+
"beginCaptures": {
|
|
275
|
+
"1": {
|
|
276
|
+
"name": "keyword.nextflow"
|
|
277
|
+
},
|
|
278
|
+
"2": {
|
|
279
|
+
"name": "storage.type.groovy"
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
"end": "}",
|
|
283
|
+
"name": "record.nextflow",
|
|
284
|
+
"patterns": [
|
|
285
|
+
{
|
|
286
|
+
"include": "source.nextflow-groovy#groovy"
|
|
287
|
+
}
|
|
288
|
+
]
|
|
289
|
+
},
|
|
269
290
|
"workflow-body": {
|
|
270
291
|
"patterns": [
|
|
271
292
|
{
|
package/grammars/nix.json
CHANGED
|
@@ -453,6 +453,9 @@
|
|
|
453
453
|
{
|
|
454
454
|
"include": "#operator-unary"
|
|
455
455
|
},
|
|
456
|
+
{
|
|
457
|
+
"include": "#operator-binary"
|
|
458
|
+
},
|
|
456
459
|
{
|
|
457
460
|
"include": "#constants"
|
|
458
461
|
},
|
|
@@ -493,8 +496,7 @@
|
|
|
493
496
|
"include": "#attrset-or-function"
|
|
494
497
|
},
|
|
495
498
|
{
|
|
496
|
-
"
|
|
497
|
-
"name": "keyword.operator.nix"
|
|
499
|
+
"include": "#operator-binary"
|
|
498
500
|
},
|
|
499
501
|
{
|
|
500
502
|
"include": "#constants"
|
|
@@ -975,6 +977,10 @@
|
|
|
975
977
|
}
|
|
976
978
|
]
|
|
977
979
|
},
|
|
980
|
+
"operator-binary": {
|
|
981
|
+
"match": "(\\bor\\b|\\.|\\|>|<\\||==|!=?|<=?|>=?|&&|\\|\\||->|//|\\?|\\+\\+|[-*]|/(?=([^*]|$))|\\+)",
|
|
982
|
+
"name": "keyword.operator.nix"
|
|
983
|
+
},
|
|
978
984
|
"operator-unary": {
|
|
979
985
|
"match": "([-!])",
|
|
980
986
|
"name": "keyword.operator.unary.nix"
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
{
|
|
2
|
+
"displayName": "OpenSCAD",
|
|
3
|
+
"fileTypes": [
|
|
4
|
+
"scad"
|
|
5
|
+
],
|
|
6
|
+
"foldingStartMarker": "/\\*\\*|\\{\\s*$",
|
|
7
|
+
"foldingStopMarker": "\\*\\*/|^\\s*}",
|
|
8
|
+
"name": "openscad",
|
|
9
|
+
"patterns": [
|
|
10
|
+
{
|
|
11
|
+
"captures": {
|
|
12
|
+
"1": {
|
|
13
|
+
"name": "keyword.control.scad"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"match": "^(module)\\s.*$",
|
|
17
|
+
"name": "meta.function.scad"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"match": "\\b(if|else|for|intersection_for|assign|render|function|include|use)\\b",
|
|
21
|
+
"name": "keyword.control.scad"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"begin": "/\\*\\*(?!/)",
|
|
25
|
+
"captures": {
|
|
26
|
+
"0": {
|
|
27
|
+
"name": "punctuation.definition.comment.scad"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"end": "\\*/",
|
|
31
|
+
"name": "comment.block.documentation.scad"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"begin": "/\\*",
|
|
35
|
+
"captures": {
|
|
36
|
+
"0": {
|
|
37
|
+
"name": "punctuation.definition.comment.scad"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"end": "\\*/",
|
|
41
|
+
"name": "comment.block.scad"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"captures": {
|
|
45
|
+
"1": {
|
|
46
|
+
"name": "punctuation.definition.comment.scad"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"match": "(//).*$\\n?",
|
|
50
|
+
"name": "comment.line.double-slash.scad"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"begin": "\"",
|
|
54
|
+
"end": "\"",
|
|
55
|
+
"name": "string.quoted.double.scad",
|
|
56
|
+
"patterns": [
|
|
57
|
+
{
|
|
58
|
+
"match": "\\\\.",
|
|
59
|
+
"name": "constant.character.escape.scad"
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"begin": "'",
|
|
65
|
+
"beginCaptures": {
|
|
66
|
+
"0": {
|
|
67
|
+
"name": "punctuation.definition.string.begin.scad"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"end": "'",
|
|
71
|
+
"endCaptures": {
|
|
72
|
+
"0": {
|
|
73
|
+
"name": "punctuation.definition.string.end.scad"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"name": "string.quoted.single.scad",
|
|
77
|
+
"patterns": [
|
|
78
|
+
{
|
|
79
|
+
"match": "\\\\(x\\h{2}|[012][0-7]{0,2}|3[0-6][0-7]?|37[0-7]?|[4-7][0-7]?|.)",
|
|
80
|
+
"name": "constant.character.escape.scad"
|
|
81
|
+
}
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"begin": "\"",
|
|
86
|
+
"beginCaptures": {
|
|
87
|
+
"0": {
|
|
88
|
+
"name": "punctuation.definition.string.begin.scad"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"end": "\"",
|
|
92
|
+
"endCaptures": {
|
|
93
|
+
"0": {
|
|
94
|
+
"name": "punctuation.definition.string.end.scad"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"name": "string.quoted.double.scad",
|
|
98
|
+
"patterns": [
|
|
99
|
+
{
|
|
100
|
+
"match": "\\\\(x\\h{2}|[012][0-7]{0,2}|3[0-6][0-7]|37[0-7]?|[4-7][0-7]?|.)",
|
|
101
|
+
"name": "constant.character.escape.scad"
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"match": "\\b(abs|acos|asun|atan2??|ceil|cos|exp|floor|ln|log|lookup|max|min|pow|rands|round|sign|sin|sqrt|tan|str|cube|sphere|cylinder|polyhedron|scale|rotate|translate|mirror|multimatrix|color|minkowski|hull|union|difference|intersection|echo)\\b",
|
|
107
|
+
"name": "support.function.scad"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"match": ";",
|
|
111
|
+
"name": "punctuation.terminator.statement.scad"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"match": ",[\\t |]*",
|
|
115
|
+
"name": "meta.delimiter.object.comma.scad"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"match": "\\.",
|
|
119
|
+
"name": "meta.delimiter.method.period.scad"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"match": "[{}]",
|
|
123
|
+
"name": "meta.brace.curly.scad"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"match": "[()]",
|
|
127
|
+
"name": "meta.brace.round.scad"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"match": "[]\\[]",
|
|
131
|
+
"name": "meta.brace.square.scad"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"match": "[!$%\\&*]|--?|\\+\\+|[+~]|===?|=|!==??|<=|>=|<<=|>>=|>>>=|<>|[!<>]|&&|\\|\\||\\?:|\\*=|(?<!\\()/=|%=|\\+=|-=|&=|\\^=|\\b(in|instanceof|new|delete|typeof|void)\\b",
|
|
135
|
+
"name": "keyword.operator.scad"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"match": "\\b((0([Xx])\\h+)|([0-9]+(\\.[0-9]+)?))\\b",
|
|
139
|
+
"name": "constant.numeric.scad"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"match": "\\btrue\\b",
|
|
143
|
+
"name": "constant.language.boolean.true.scad"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"match": "\\bfalse\\b",
|
|
147
|
+
"name": "constant.language.boolean.false.scad"
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"scopeName": "source.scad"
|
|
151
|
+
}
|
package/grammars/solidity.json
CHANGED
|
@@ -703,9 +703,6 @@
|
|
|
703
703
|
{
|
|
704
704
|
"include": "#type-modifier-transient"
|
|
705
705
|
},
|
|
706
|
-
{
|
|
707
|
-
"include": "#type-modifier-extend-scope"
|
|
708
|
-
},
|
|
709
706
|
{
|
|
710
707
|
"include": "#type-modifier-payable"
|
|
711
708
|
},
|
|
@@ -997,19 +994,6 @@
|
|
|
997
994
|
}
|
|
998
995
|
]
|
|
999
996
|
},
|
|
1000
|
-
"number": {
|
|
1001
|
-
"patterns": [
|
|
1002
|
-
{
|
|
1003
|
-
"include": "#number-decimal"
|
|
1004
|
-
},
|
|
1005
|
-
{
|
|
1006
|
-
"include": "#number-hex"
|
|
1007
|
-
},
|
|
1008
|
-
{
|
|
1009
|
-
"include": "#number-scientific"
|
|
1010
|
-
}
|
|
1011
|
-
]
|
|
1012
|
-
},
|
|
1013
997
|
"number-decimal": {
|
|
1014
998
|
"match": "\\b([0-9_]+(\\.[0-9_]+)?)\\b",
|
|
1015
999
|
"name": "constant.numeric.decimal"
|
|
@@ -1156,7 +1140,7 @@
|
|
|
1156
1140
|
"type-primitive": {
|
|
1157
1141
|
"patterns": [
|
|
1158
1142
|
{
|
|
1159
|
-
"begin": "\\b(address|string\\d*|bytes\\d*|int\\d*|uint\\d*|bool
|
|
1143
|
+
"begin": "\\b(address|string\\d*|bytes\\d*|int\\d*|uint\\d*|bool\\d*)\\b\\[](\\()",
|
|
1160
1144
|
"beginCaptures": {
|
|
1161
1145
|
"1": {
|
|
1162
1146
|
"name": "support.type.primitive"
|
|
@@ -1179,7 +1163,7 @@
|
|
|
1179
1163
|
]
|
|
1180
1164
|
},
|
|
1181
1165
|
{
|
|
1182
|
-
"match": "\\b(address|string\\d*|bytes\\d*|int\\d*|uint\\d*|bool
|
|
1166
|
+
"match": "\\b(address|string\\d*|bytes\\d*|int\\d*|uint\\d*|bool\\d*)\\b",
|
|
1183
1167
|
"name": "support.type.primitive"
|
|
1184
1168
|
}
|
|
1185
1169
|
]
|
package/grammars/tex.json
CHANGED
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
"name": "punctuation.definition.constant.math.tex"
|
|
272
272
|
}
|
|
273
273
|
},
|
|
274
|
-
"match": "(\\\\)(s(s(earrow|warrow|lash)|h(ort(downarrow|uparrow|parallel|leftarrow|rightarrow|mid)|arp)|tar|i(gma|m(eq)?)|u(cc(sim|n(sim|approx)|curlyeq|eq|approx)?|pset(neq(q)?|plus(eq)?|eq(q)?)?|rd|m|bset(neq(q)?|plus(eq)?|eq(q)?)?)|p(hericalangle|adesuit)|e(tminus|arrow)|q(su(pset(eq)?|bset(eq)?)|c([au]p)|uare)|warrow|m(ile|all(s(etminus|mile)|frown)))|h(slash|ook((?:lef|righ)tarrow)|eartsuit|bar)|R(sh|ightarrow|e|bag)|Gam(e|ma)|n(s(hort(parallel|mid)|im|u(cc(eq)?|pseteq(q)?|bseteq))|Rightarrow|n([ew]arrow)|cong|triangle(left(eq(slant)?)?|right(eq(slant)?)?)|i(plus)?|u|p(lus|arallel|rec(eq)?)|e(q|arrow|g|xists)|v([Dd]ash)|warrow|le(ss|q(slant|q)?|ft((?:|right)arrow))|a(tural|bla)|VDash|rightarrow|g(tr|eq(slant|q)?)|mid|Left((?:|right)arrow))|c(hi|irc(eq|le(d(circ|S|dash|ast)|arrow(left|right)))?|o(ng|prod|lon|mplement)|dot([ps])?|u(p|r(vearrow(left|right)|ly(eq(succ|prec)|vee((?:down|up)arrow)?|wedge((?:down|up)arrow)?)))|enterdot|lubsuit|ap)|Xi|Maps(to(char)?|from(char)?)|B(ox|umpeq|bbk)|t(h(ick(sim|approx)|e(ta|refore))|imes|op|wohead((?:lef|righ)tarrow)|a(u|lloblong)|riangle(down|q|left(eq(slant)?)?|right(eq(slant)?)?)?)|i(n(t(er(cal|leave))?|plus|fty)?|ota|math)|S(igma|u([bp]set))|zeta|o(slash|times|int|dot|plus|vee|wedge|lessthan|greaterthan|m(inus|ega)|b(slash|long|ar))|d(i(v(ideontimes)?|a(g(down|up)|mond(suit)?)|gamma)|o(t(plus|eq(dot)?)|ublebarwedge|wn(harpoon(left|right)|downarrows|arrow))|d(ots|agger)|elta|a(sh(v|leftarrow|rightarrow)|leth|gger))|Y(down|up|left|right)|C([au]p)|u(n([lr]hd)|p(silon|harpoon(left|right)|downarrow|uparrows|lus|arrow)|lcorner|rcorner)|jmath|Theta|Im|p(si|hi|i(tchfork)?|erp|ar(tial|allel)|r(ime|o(d|pto)|ec(sim|n(sim|approx)|curlyeq|eq|approx)?)|m)|e(t([ah])|psilon|q(slant(less|gtr)|circ|uiv)|ll|xists|mptyset)|Omega|D(iamond|ownarrow|elta)|v(d(ots|ash)|ee(bar)?|Dash|ar(s(igma|u(psetneq(q)?|bsetneq(q)?))|nothing|curly(vee|wedge)|t(heta|imes|riangle(left|right)?)|o(slash|circle|times|dot|plus|vee|wedge|lessthan|ast|greaterthan|minus|b(slash|ar))|p(hi|i|ropto)|epsilon|kappa|rho|bigcirc))|kappa|Up(silon|downarrow|arrow)|Join|f(orall|lat|a(t(s(emi|lash)|bslash)|llingdotseq)|rown)|P((?:s|h?)i)|w(p|edge|r)|l(hd|n(sim|eq(q)?|approx)|ceil|times|ightning|o(ng(left((?:|right)arrow)|rightarrow|maps(to|from))|zenge|oparrow(left|right))|dot([ps])|e(ss(sim|dot|eq(q?gtr)|approx|gtr)|q(slant|q)?|ft(slice|harpoon(down|up)|threetimes|leftarrows|arrow(t(ail|riangle))?|right(squigarrow|harpoons|arrow(s|triangle|eq)?))|adsto)|vertneqq|floor|l(c(orner|eil)|floor|l|bracket)?|a(ngle|mbda)|rcorner|bag)|a(s(ymp|t)|ngle|pprox(eq)?|l(pha|eph)|rrownot|malg)|V(v??dash)|r(h([do])|ceil|times|i(singdotseq|ght(s(quigarrow|lice)|harpoon(down|up)|threetimes|left(harpoons|arrows)|arrow(t(ail|riangle))?|rightarrows))|floor|angle|r(ceil|parenthesis|floor|bracket)|bag)|g(n(sim|eq(q)?|approx)|tr(sim|dot|eq(q?less)|less|approx)|imel|eq(slant|q)?|vertneqq|amma|g(g)?)|Finv|xi|m(ho|i(nuso|d)|o(o|dels)|u(ltimap)?|p|e(asuredangle|rge)|aps(to|from(char)?))|b(i(n(dnasrepma|ampersand)|g(s(tar|qc([au]p))|nplus|c(irc|u(p|rly(vee|wedge))|ap)|triangle(down|up)|interleave|o(times|dot|plus)|uplus|parallel|vee|wedge|box))|o(t|wtie|x(slash|circle|times|dot|plus|empty|ast|minus|b(slash|ox|ar)))|u(llet|mpeq)|e(cause|t(h|ween|a))|lack(square|triangle(down|left|right)?|lozenge)|a(ck(s(im(eq)?|lash)|prime|epsilon)|r(o|wedge))|bslash)|L(sh|ong(left((?:|right)arrow)|rightarrow|maps(to|from))|eft((?:|right)arrow)|leftarrow|ambda|bag)|Arrownot)(?![@-Za-z])",
|
|
274
|
+
"match": "(\\\\)(s(s(earrow|warrow|lash)|h(ort(downarrow|uparrow|parallel|leftarrow|rightarrow|mid)|arp)|tar|i(gma|m(eq)?)|u(cc(sim|n(sim|approx)|curlyeq|eq|approx)?|pset(neq(q)?|plus(eq)?|eq(q)?)?|rd|m|bset(neq(q)?|plus(eq)?|eq(q)?)?)|p(hericalangle|adesuit)|e(tminus|arrow)|q(su(pset(eq)?|bset(eq)?)|c([au]p)|uare)|warrow|m(ile|all(s(etminus|mile)|frown)))|h(slash|ook((?:lef|righ)tarrow)|eartsuit|bar)|R(sh|ightarrow|e|bag)|Gam(e|ma)|n(s(hort(parallel|mid)|im|u(cc(eq)?|pseteq(q)?|bseteq))|Rightarrow|n([ew]arrow)|cong|triangle(left(eq(slant)?)?|right(eq(slant)?)?)|i(plus)?|u|p(lus|arallel|rec(eq)?)|e(q|arrow|g|xists)|v([Dd]ash)|warrow|le(ss|q(slant|q)?|ft((?:|right)arrow))|a(tural|bla)|VDash|rightarrow|g(tr|eq(slant|q)?)|mid|Left((?:|right)arrow))|c(hi|irc(eq|le(d(circ|S|dash|ast)|arrow(left|right)))?|o(ng|prod|lon|mplement)|dot([ps])?|u(p|r(vearrow(left|right)|ly(eq(succ|prec)|vee((?:down|up)arrow)?|wedge((?:down|up)arrow)?)))|enterdot|lubsuit|ap)|Xi|Maps(to(char)?|from(char)?)|B(ox|umpeq|bbk)|t(h(ick(sim|approx)|e(ta|refore))|imes|op|wohead((?:lef|righ)tarrow)|a(u|lloblong)|riangle(down|q|left(eq(slant)?)?|right(eq(slant)?)?)?)|i(n(t(er(cal|leave))?|plus|fty)?|ota|math)|S(igma|u([bp]set))|zeta|o(slash|times|int|dot|plus|vee|wedge|lessthan|greaterthan|m(inus|ega)|b(slash|long|ar))|d(i(v(ideontimes)?|a(g(down|up)|mond(suit)?)|gamma)|o(t(plus|eq(dot)?)|ublebarwedge|wn(harpoon(left|right)|downarrows|arrow))|d(ots|agger)|elta|a(sh(v|leftarrow|rightarrow)|leth|gger))|Y(down|up|left|right)|C([au]p)|u(n([lr]hd)|p(silon|harpoon(left|right)|downarrow|uparrows|lus|arrow)|lcorner|rcorner)|jmath|Theta|Im|p(si|hi|i(tchfork)?|erp|ar(tial|allel)|r(ime|o(d|pto)|ec(sim|n(sim|approx)|curlyeq|eq|approx)?)|m)|e(t([ah])|psilon|q(slant(less|gtr)|circ|uiv)|ll|xists|mptyset)|Omega|D(iamond|ownarrow|elta)|v(d(ots|ash)|ee(bar)?|Dash|ar(s(igma|u(psetneq(q)?|bsetneq(q)?))|nothing|curly(vee|wedge)|t(heta|imes|riangle(left|right)?)|o(slash|circle|times|dot|plus|vee|wedge|lessthan|ast|greaterthan|minus|b(slash|ar))|p(hi|i|ropto)|epsilon|kappa|rho|bigcirc))|kappa|Up(silon|downarrow|arrow)|Join|f(orall|lat|a(t(s(emi|lash)|bslash)|llingdotseq)|rown)|P((?:s|h?)i)|w(p|edge|r)|l(hd|n(sim|eq(q)?|approx)|ceil|times|ightning|o(ng(left((?:|right)arrow)|rightarrow|maps(to|from))|zenge|oparrow(left|right))|dot([ps])|e(ss(sim|dot|eq(q?gtr)|approx|gtr)|q(slant|q)?|ft(slice|harpoon(down|up)|threetimes|leftarrows|arrow(t(ail|riangle))?|right(squigarrow|harpoons|arrow(s|triangle|eq)?))|adsto)|vertneqq|floor|l(c(orner|eil)|floor|l|bracket)?|a(ngle|mbda)|rcorner|bag)|a(s(ymp|t)|ngle|pprox(eq)?|l(pha|eph)|rrownot|malg)|V(v??dash)|r(h([do])|ceil|times|i(singdotseq|ght(s(quigarrow|lice)|harpoon(down|up)|threetimes|left(harpoons|arrows)|arrow(t(ail|riangle))?|rightarrows))|floor|angle|r(ceil|parenthesis|floor|bracket)|bag)|g(n(sim|eq(q)?|approx)|tr(sim|dot|eq(q?less)|less|approx)|imel|eq(slant|q)?|vertneqq|amma|g(g)?)|Finv|xi|m(ho|i(nuso|d)|o(o|dels)|u(ltimap)?|p|e(asuredangle|rge)|aps(to|from(char)?))|b(i(n(dnasrepma|ampersand)|g(s(tar|qc([au]p))|nplus|c(irc|u(p|rly(vee|wedge))|ap)|triangle(down|up)|interleave|o(times|dot|plus)|uplus|parallel|vee|wedge|box))|o(t|wtie|x(slash|circle|times|dot|plus|empty|ast|minus|b(slash|ox|ar)))|u(llet|mpeq)|e(cause|t(h|ween|a))|lack(square|triangle(down|left|right)?|lozenge)|a(ck(s(im(eq)?|lash)|prime|epsilon)|r(o|wedge))|bslash)|L(sh|ong(left((?:|right)arrow)|rightarrow|maps(to|from))|eft((?:|right)arrow)|leftarrow|ambda|bag)|ge|le|Arrownot)(?![@-Za-z])",
|
|
275
275
|
"name": "constant.character.math.tex"
|
|
276
276
|
},
|
|
277
277
|
{
|