tm-grammars 1.6.6 → 1.6.8
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 +2 -2
- package/grammars/razor.json +22 -0
- package/grammars/system-verilog.json +1005 -649
- package/index.js +8 -8
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2075,19 +2075,19 @@ export const grammars = [
|
|
|
2075
2075
|
source: 'https://github.com/microsoft/vscode/blob/8fdf170a0850c1cc027382f31650aaf300d3ae2a/extensions/perl/syntaxes/perl6.tmLanguage.json',
|
|
2076
2076
|
},
|
|
2077
2077
|
{
|
|
2078
|
-
byteSize:
|
|
2078
|
+
byteSize: 25089,
|
|
2079
2079
|
displayName: 'ASP.NET Razor',
|
|
2080
2080
|
embedded: [
|
|
2081
2081
|
'html',
|
|
2082
2082
|
'csharp',
|
|
2083
2083
|
],
|
|
2084
|
-
lastUpdate: '2024-
|
|
2084
|
+
lastUpdate: '2024-04-18T22:08:48Z',
|
|
2085
2085
|
license: 'MIT',
|
|
2086
2086
|
licenseUrl: 'https://raw.githubusercontent.com/dotnet/razor/main/LICENSE.txt',
|
|
2087
2087
|
name: 'razor',
|
|
2088
2088
|
scopeName: 'text.aspnetcorerazor',
|
|
2089
|
-
sha: '
|
|
2090
|
-
source: 'https://github.com/dotnet/razor/blob/
|
|
2089
|
+
sha: '39159764277f3c80a786d8872eba7730da3d7ef0',
|
|
2090
|
+
source: 'https://github.com/dotnet/razor/blob/39159764277f3c80a786d8872eba7730da3d7ef0/src/Razor/src/Microsoft.VisualStudio.RazorExtension/EmbeddedGrammars/aspnetcorerazor.tmLanguage.json',
|
|
2091
2091
|
},
|
|
2092
2092
|
{
|
|
2093
2093
|
byteSize: 2255,
|
|
@@ -2462,15 +2462,15 @@ export const grammars = [
|
|
|
2462
2462
|
source: 'https://github.com/microsoft/vscode/blob/b7fcbef3e2ebf668d428201c5c5d90a41346ada2/extensions/swift/syntaxes/swift.tmLanguage.json',
|
|
2463
2463
|
},
|
|
2464
2464
|
{
|
|
2465
|
-
byteSize:
|
|
2465
|
+
byteSize: 25195,
|
|
2466
2466
|
displayName: 'SystemVerilog',
|
|
2467
|
-
lastUpdate: '
|
|
2467
|
+
lastUpdate: '2024-04-19T11:09:15Z',
|
|
2468
2468
|
license: 'MIT',
|
|
2469
2469
|
licenseUrl: 'https://raw.githubusercontent.com/mshr-h/vscode-verilog-hdl-support/main/LICENSE',
|
|
2470
2470
|
name: 'system-verilog',
|
|
2471
2471
|
scopeName: 'source.systemverilog',
|
|
2472
|
-
sha: '
|
|
2473
|
-
source: 'https://github.com/mshr-h/vscode-verilog-hdl-support/blob/
|
|
2472
|
+
sha: '8d7c8f5f3232f63d43830143afc034318832291e',
|
|
2473
|
+
source: 'https://github.com/mshr-h/vscode-verilog-hdl-support/blob/8d7c8f5f3232f63d43830143afc034318832291e/syntaxes/systemverilog.tmLanguage.json',
|
|
2474
2474
|
},
|
|
2475
2475
|
{
|
|
2476
2476
|
byteSize: 3282,
|
package/package.json
CHANGED