tm-grammars 0.0.2 → 0.0.3
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/vhdl.json +2 -2
- package/index.d.ts +1 -1
- package/index.js +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -184,7 +184,7 @@ import { grammars } from 'tm-grammars'
|
|
|
184
184
|
| `v` | | [vlang/vscode-vlang](https://github.com/vlang/vscode-vlang/blob/0d7778ffc6d524f867cdd72027d99ceb5687fe0f/syntaxes/v.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/vlang/vscode-vlang/master/LICENSE) | |
|
|
185
185
|
| `vb` | | [microsoft/vscode](https://github.com/microsoft/vscode/blob/c9631868cd2585d82bc5c1f00c235c09da2e37d8/extensions/vb/syntaxes/asp-vb-net.tmlanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | |
|
|
186
186
|
| `verilog` | | [mshr-h/vscode-verilog-hdl-support](https://github.com/mshr-h/vscode-verilog-hdl-support/blob/189a3afb778992b75ea4dcf16844e5da7f53e014/syntaxes/verilog.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/mshr-h/vscode-verilog-hdl-support/main/LICENSE) | |
|
|
187
|
-
| `vhdl` | | [jonasjj/awesome-vhdl](https://github.com/jonasjj/awesome-vhdl/blob/
|
|
187
|
+
| `vhdl` | | [jonasjj/awesome-vhdl](https://github.com/jonasjj/awesome-vhdl/blob/8bb636dac90cc753c53d9686e175273d51bffec3/syntaxes/vhdl.tmLanguage) | [MIT](https://raw.githubusercontent.com/jonasjj/awesome-vhdl/master/LICENSE.txt) | |
|
|
188
188
|
| `viml` | | [dunstontc/viml](https://github.com/dunstontc/viml/blob/12a8de2a52b7c57ff77b153bc746b228a10088cc/syntaxes/viml.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/dunstontc/viml/master/LICENSE) | |
|
|
189
189
|
| `vue` | | [vuejs/language-tools](https://github.com/vuejs/language-tools/blob/e7439aa2dad3d6735bb75b1b099bfa26b05c7576/extensions/vscode/syntaxes/vue.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/vuejs/language-tools/master/LICENSE) | `html` `markdown` `pug` `stylus` `sass` `css` `scss` `less` `javascript` `typescript` `jsx` `tsx` `json` `jsonc` `json5` `yaml` `toml` `graphql` `markdown-vue` `vue-directives` `vue-interpolations` `vue-sfc-style-variable` |
|
|
190
190
|
| `vue-directives` | | [vuejs/language-tools](https://github.com/vuejs/language-tools/blob/e7439aa2dad3d6735bb75b1b099bfa26b05c7576/extensions/vscode/syntaxes/vue-directives.json) | [MIT](https://raw.githubusercontent.com/vuejs/language-tools/master/LICENSE) | `vue` |
|
package/grammars/vhdl.json
CHANGED
|
@@ -1067,7 +1067,7 @@
|
|
|
1067
1067
|
"process_pattern": {
|
|
1068
1068
|
"patterns": [
|
|
1069
1069
|
{
|
|
1070
|
-
"begin": "(?x)\n\t\t\t\t\t\t# From the beginning of the line\n\t\t\t\t\t\t^\\s*\n\n\t\t\t\t\t\t(\n\t\t\t\t\t\t\t# Optional identifier $2\n\t\t\t\t\t\t\t([a-zA-Z][a-zA-Z0-9_]*)\n\n\t\t\t\t\t\t\t# Colon $3\n\t\t\t\t\t\t\t\\s*(:)\\s*\n\t\t\t\t\t\t)?\n\n\t\t\t\t\t\t# The word process #4\n\t\t\t\t\t\t((?i:process\\b))\n\t\t\t\t\t",
|
|
1070
|
+
"begin": "(?x)\n\t\t\t\t\t\t# From the beginning of the line\n\t\t\t\t\t\t^\\s*\n\n\t\t\t\t\t\t(\n\t\t\t\t\t\t\t# Optional identifier $2\n\t\t\t\t\t\t\t([a-zA-Z][a-zA-Z0-9_]*)\n\n\t\t\t\t\t\t\t# Colon $3\n\t\t\t\t\t\t\t\\s*(:)\\s*\n\t\t\t\t\t\t)?\n\n\t\t\t\t\t\t# The word process #4\n\t\t\t\t\t\t(\n\t\t\t\t\t\t\t(?:postponed\\s+)?\n\t\t\t\t\t\t\t(?i:process\\b)\n\t\t\t\t\t\t)\n\t\t\t\t\t",
|
|
1071
1071
|
"beginCaptures": {
|
|
1072
1072
|
"2": {
|
|
1073
1073
|
"name": "entity.name.section.process.begin.vhdl"
|
|
@@ -1079,7 +1079,7 @@
|
|
|
1079
1079
|
"name": "keyword.language.vhdl"
|
|
1080
1080
|
}
|
|
1081
1081
|
},
|
|
1082
|
-
"end": "(?x)\n\t\t\t\t\t\t# The word end $1\n\t\t\t\t\t\t((?i:end))\n\n\t\t\t\t\t\t# Optional word process $3\n\t\t\t\t\t\t(\\s+((?i:process)))\n\n\t\t\t\t\t\t# Optional identifier $6 or invalid identifier $7\n\t\t\t\t\t\t(\\s+((\\2)|(.+?)))?\n\n\t\t\t\t\t\t(?=\\s*;)\n\t\t\t\t\t",
|
|
1082
|
+
"end": "(?x)\n\t\t\t\t\t\t# The word end $1\n\t\t\t\t\t\t((?i:end))\n\n\t\t\t\t\t\t# Optional word process $3\n\t\t\t\t\t\t(\\s+(\n\t\t\t\t\t\t\t(?:postponed\\s+)?\n\t\t\t\t\t\t\t(?i:process)\n\t\t\t\t\t\t))\n\n\t\t\t\t\t\t# Optional identifier $6 or invalid identifier $7\n\t\t\t\t\t\t(\\s+((\\2)|(.+?)))?\n\n\t\t\t\t\t\t(?=\\s*;)\n\t\t\t\t\t",
|
|
1083
1083
|
"endCaptures": {
|
|
1084
1084
|
"1": {
|
|
1085
1085
|
"name": "keyword.language.vhdl"
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -1889,8 +1889,8 @@ export const grammars = [
|
|
|
1889
1889
|
licenseUrl: 'https://raw.githubusercontent.com/jonasjj/awesome-vhdl/master/LICENSE.txt',
|
|
1890
1890
|
name: 'vhdl',
|
|
1891
1891
|
scopeName: 'source.vhdl',
|
|
1892
|
-
sha: '
|
|
1893
|
-
source: 'https://github.com/jonasjj/awesome-vhdl/blob/
|
|
1892
|
+
sha: '8bb636dac90cc753c53d9686e175273d51bffec3',
|
|
1893
|
+
source: 'https://github.com/jonasjj/awesome-vhdl/blob/8bb636dac90cc753c53d9686e175273d51bffec3/syntaxes/vhdl.tmLanguage',
|
|
1894
1894
|
},
|
|
1895
1895
|
{
|
|
1896
1896
|
aliases: [
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tm-grammars",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.3",
|
|
5
5
|
"packageManager": "pnpm@8.11.0",
|
|
6
6
|
"description": "Collecton of TextMate grammars in JSON",
|
|
7
7
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"typesVersions": {
|
|
32
32
|
"*": {
|
|
33
33
|
"*": [
|
|
34
|
-
"
|
|
35
|
-
"./
|
|
34
|
+
"./*",
|
|
35
|
+
"./index.d.ts"
|
|
36
36
|
]
|
|
37
37
|
}
|
|
38
38
|
},
|