tm-grammars 1.18.2 → 1.18.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/NOTICE +1 -1
- package/README.md +1 -1
- package/grammars/coq.json +3 -3
- package/index.js +6 -6
- package/package.json +1 -1
package/NOTICE
CHANGED
|
@@ -2056,7 +2056,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
2056
2056
|
SOFTWARE.
|
|
2057
2057
|
=========================================================================================================
|
|
2058
2058
|
Files: coq.json
|
|
2059
|
-
License: https://raw.githubusercontent.com/coq
|
|
2059
|
+
License: https://raw.githubusercontent.com/coq/vscoq/main/LICENSE
|
|
2060
2060
|
SPDX: MIT
|
|
2061
2061
|
---------------------------------------------------------------------------------------------------------
|
|
2062
2062
|
MIT License
|
package/README.md
CHANGED
|
@@ -51,7 +51,7 @@ import { grammars } from 'tm-grammars'
|
|
|
51
51
|
| `codeql` | `ql` | [github/vscode-codeql](https://github.com/github/vscode-codeql/blob/47fa163cb9fffce379458962eb391c9ef9082dcb/syntaxes/ql.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/github/vscode-codeql/main/LICENSE.md) | | 31.81 kB |
|
|
52
52
|
| `coffee` | `coffeescript` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/ff58f5083f57b50e6a100ab60454dfb72fe21e80/extensions/coffeescript/syntaxes/coffeescript.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | `javascript` | 26.04 kB |
|
|
53
53
|
| `common-lisp` | `lisp` | [qingpeng9802/vscode-common-lisp](https://github.com/qingpeng9802/vscode-common-lisp/blob/79d04dc9ca80d98e65c4f28b3d67a24a7829b18f/syntaxes/commonlisp.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/qingpeng9802/vscode-common-lisp/master/LICENSE) | | 22.58 kB |
|
|
54
|
-
| `coq` | | [coq-community/vscoq](https://github.com/coq-community/vscoq/blob/
|
|
54
|
+
| `coq` | | [coq-community/vscoq](https://github.com/coq-community/vscoq/blob/a9feb827be2f8cc2bc3e5b47549d4cc06686c14a/client/syntax/coq.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/coq/vscoq/main/LICENSE) | | 5.51 kB |
|
|
55
55
|
| `cpp` | `c++` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/6ac83c7c7dda9f27ca1fe9d98675253e010b75d1/extensions/cpp/syntaxes/cpp.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | `cpp-macro` `regexp` `glsl` `sql` | 408.62 kB |
|
|
56
56
|
| `crystal` | | [crystal-lang-tools/vscode-crystal-lang](https://github.com/crystal-lang-tools/vscode-crystal-lang/blob/c920b0931ec5f05b78447dbff31b172c64f1d734/syntaxes/crystal.json) | [MIT](https://raw.githubusercontent.com/crystal-lang-tools/vscode-crystal-lang/master/LICENSE) | `html` `sql` `css` `c` `javascript` `shellscript` | 31.42 kB |
|
|
57
57
|
| `csharp` | `c#` `cs` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/ed4e6eda599f37bac9a11952403a6e63fd4f5a4d/extensions/csharp/syntaxes/csharp.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | | 80.91 kB |
|
package/grammars/coq.json
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"comment": "Theorem declarations",
|
|
28
|
-
"match": "(Theorem|Lemma|Remark|Fact|Corollary|Property|Proposition|Goal)\\s+((\\p{L}|[_\\u00A0])(\\p{L}|[0-9_\\u00A0'])*)"
|
|
28
|
+
"match": "\\b(Theorem|Lemma|Remark|Fact|Corollary|Property|Proposition|Goal)\\s+((\\p{L}|[_\\u00A0])(\\p{L}|[0-9_\\u00A0'])*)"
|
|
29
29
|
},
|
|
30
30
|
{
|
|
31
31
|
"captures": {
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
90
|
"comment": "Type declarations",
|
|
91
|
-
"match": "(CoInductive|Inductive|Variant|Record|Structure|Class)\\s+(>\\s*)?((\\p{L}|[_\\u00A0])(\\p{L}|[0-9_\\u00A0'])*)"
|
|
91
|
+
"match": "\\b(CoInductive|Inductive|Variant|Record|Structure|Class)\\s+(>\\s*)?((\\p{L}|[_\\u00A0])(\\p{L}|[0-9_\\u00A0'])*)"
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
94
|
"captures": {
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
}
|
|
101
101
|
},
|
|
102
102
|
"comment": "Ltac declarations",
|
|
103
|
-
"match": "(Ltac)\\s+((\\p{L}|[_\\u00A0])(\\p{L}|[0-9_\\u00A0'])*)"
|
|
103
|
+
"match": "\\b(Ltac)\\s+((\\p{L}|[_\\u00A0])(\\p{L}|[0-9_\\u00A0'])*)"
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
106
|
"comment": "Vernacular keywords",
|
package/index.js
CHANGED
|
@@ -537,19 +537,19 @@ export const grammars = [
|
|
|
537
537
|
source: 'https://github.com/qingpeng9802/vscode-common-lisp/blob/79d04dc9ca80d98e65c4f28b3d67a24a7829b18f/syntaxes/commonlisp.tmLanguage.json',
|
|
538
538
|
},
|
|
539
539
|
{
|
|
540
|
-
byteSize:
|
|
540
|
+
byteSize: 5647,
|
|
541
541
|
categories: [
|
|
542
542
|
'general',
|
|
543
543
|
],
|
|
544
544
|
displayName: 'Coq',
|
|
545
|
-
hash: '
|
|
546
|
-
lastUpdate: '2024-
|
|
545
|
+
hash: 'fNyZ1SrG0J',
|
|
546
|
+
lastUpdate: '2024-10-16T17:53:48Z',
|
|
547
547
|
license: 'MIT',
|
|
548
|
-
licenseUrl: 'https://raw.githubusercontent.com/coq
|
|
548
|
+
licenseUrl: 'https://raw.githubusercontent.com/coq/vscoq/main/LICENSE',
|
|
549
549
|
name: 'coq',
|
|
550
550
|
scopeName: 'source.coq',
|
|
551
|
-
sha: '
|
|
552
|
-
source: 'https://github.com/coq-community/vscoq/blob/
|
|
551
|
+
sha: 'a9feb827be2f8cc2bc3e5b47549d4cc06686c14a',
|
|
552
|
+
source: 'https://github.com/coq-community/vscoq/blob/a9feb827be2f8cc2bc3e5b47549d4cc06686c14a/client/syntax/coq.tmLanguage.json',
|
|
553
553
|
},
|
|
554
554
|
{
|
|
555
555
|
aliases: [
|