tm-grammars 1.22.13 → 1.22.14
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/README.md +1 -1
- package/grammars/talonscript.json +12 -14
- package/index.js +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -204,7 +204,7 @@ import { grammars } from 'tm-grammars'
|
|
|
204
204
|
| `swift` | | [jtbandes/swift-tmlanguage](https://github.com/jtbandes/swift-tmlanguage/blob/b8d2889b4af1d8bad41578317a6adade642555a3/Swift.tmLanguage.yaml) | [MIT](https://raw.githubusercontent.com/jtbandes/swift-tmlanguage/main/LICENSE.md) | | 84.97 kB |
|
|
205
205
|
| `system-verilog` | | [mshr-h/vscode-verilog-hdl-support](https://github.com/mshr-h/vscode-verilog-hdl-support/blob/a63b28cd8f15d9ec4861b2f802e8bf6ce4f6d2f2/syntaxes/systemverilog.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/mshr-h/vscode-verilog-hdl-support/main/LICENSE) | | 24.59 kB |
|
|
206
206
|
| `systemd` | | [hangxingliu/vscode-systemd](https://github.com/hangxingliu/vscode-systemd/blob/62ace1156b5afa0ec9932e3a55cfc00c0123c457/src/syntax/systemd.tmLanguage) | [MIT](https://raw.githubusercontent.com/hangxingliu/vscode-systemd/main/LICENSE) | | 7.49 kB |
|
|
207
|
-
| `talonscript` | `talon` | [mrob95/vscode-TalonScript](https://github.com/mrob95/vscode-TalonScript/blob/
|
|
207
|
+
| `talonscript` | `talon` | [mrob95/vscode-TalonScript](https://github.com/mrob95/vscode-TalonScript/blob/2ac0a7b9e7dd2ea59d5a1d79934c1f407493a0fa/syntaxes/talon.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/mrob95/vscode-TalonScript/master/LICENSE) | | 6.26 kB |
|
|
208
208
|
| `tasl` | | [underlay/vscode-tasl](https://github.com/underlay/vscode-tasl/blob/dde4b7c0b762c2e667584095362dd49ebfacece7/syntaxes/tasl.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/underlay/vscode-tasl/main/LICENSE) | | 3.21 kB |
|
|
209
209
|
| `tcl` | | [sleutho/tcl](https://github.com/sleutho/tcl/blob/f18820ad14678bc033f0a35524820c90fe50f18b/syntaxes/tcl.tmLanguage) | | | 4.16 kB |
|
|
210
210
|
| `templ` | | [templ-go/templ-vscode](https://github.com/templ-go/templ-vscode/blob/b99c1c940cec830c01a80b58ae3cce714b30056c/syntaxes/templ.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/templ-go/templ-vscode/main/LICENSE) | `go` `javascript` `css` | 22.98 kB |
|
|
@@ -117,26 +117,24 @@
|
|
|
117
117
|
"name": "punctuation.separator.talon"
|
|
118
118
|
},
|
|
119
119
|
"assignment": {
|
|
120
|
-
"
|
|
120
|
+
"begin": "(\\S*)(\\s?=\\s?)",
|
|
121
|
+
"beginCaptures": {
|
|
121
122
|
"1": {
|
|
122
123
|
"name": "variable.other.talon"
|
|
123
124
|
},
|
|
124
125
|
"2": {
|
|
125
126
|
"name": "keyword.operator.talon"
|
|
126
|
-
},
|
|
127
|
-
"3": {
|
|
128
|
-
"name": "variable.other.talon",
|
|
129
|
-
"patterns": [
|
|
130
|
-
{
|
|
131
|
-
"include": "#comment"
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
"include": "#expression"
|
|
135
|
-
}
|
|
136
|
-
]
|
|
137
127
|
}
|
|
138
128
|
},
|
|
139
|
-
"
|
|
129
|
+
"end": "\n",
|
|
130
|
+
"patterns": [
|
|
131
|
+
{
|
|
132
|
+
"include": "#comment"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"include": "#expression"
|
|
136
|
+
}
|
|
137
|
+
]
|
|
140
138
|
},
|
|
141
139
|
"body-header": {
|
|
142
140
|
"begin": "^-$",
|
|
@@ -374,7 +372,7 @@
|
|
|
374
372
|
"name": "punctuation.definition.string.end.talon"
|
|
375
373
|
}
|
|
376
374
|
},
|
|
377
|
-
"name": "string.quoted.
|
|
375
|
+
"name": "string.quoted.triple.talon",
|
|
378
376
|
"patterns": [
|
|
379
377
|
{
|
|
380
378
|
"include": "#string-body"
|
package/index.js
CHANGED
|
@@ -3154,21 +3154,21 @@ export const grammars = [
|
|
|
3154
3154
|
aliases: [
|
|
3155
3155
|
'talon',
|
|
3156
3156
|
],
|
|
3157
|
-
byteSize:
|
|
3157
|
+
byteSize: 6413,
|
|
3158
3158
|
categories: [
|
|
3159
3159
|
'scripting',
|
|
3160
3160
|
'dsl',
|
|
3161
3161
|
'config',
|
|
3162
3162
|
],
|
|
3163
3163
|
displayName: 'TalonScript',
|
|
3164
|
-
hash: '
|
|
3165
|
-
lastUpdate: '
|
|
3164
|
+
hash: 'dkGPSzJhB2',
|
|
3165
|
+
lastUpdate: '2025-02-08T02:47:13Z',
|
|
3166
3166
|
license: 'MIT',
|
|
3167
3167
|
licenseUrl: 'https://raw.githubusercontent.com/mrob95/vscode-TalonScript/master/LICENSE',
|
|
3168
3168
|
name: 'talonscript',
|
|
3169
3169
|
scopeName: 'source.talon',
|
|
3170
|
-
sha: '
|
|
3171
|
-
source: 'https://github.com/mrob95/vscode-TalonScript/blob/
|
|
3170
|
+
sha: '2ac0a7b9e7dd2ea59d5a1d79934c1f407493a0fa',
|
|
3171
|
+
source: 'https://github.com/mrob95/vscode-TalonScript/blob/2ac0a7b9e7dd2ea59d5a1d79934c1f407493a0fa/syntaxes/talon.tmLanguage.json',
|
|
3172
3172
|
},
|
|
3173
3173
|
{
|
|
3174
3174
|
byteSize: 3282,
|