tm-grammars 1.0.14 → 1.0.16
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/cobol.json +1 -1
- package/index.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ import { grammars } from 'tm-grammars'
|
|
|
45
45
|
| `clarity` | | [hirosystems/clarity.tmbundle](https://github.com/hirosystems/clarity.tmbundle/blob/14499973360935676fcf40fa37723ec216aa3c9f/Syntaxes/clarity.JSON-tmLanguage) | [MIT](https://raw.githubusercontent.com/hirosystems/clarity.tmbundle/main/LICENSE) | | 13.77 kB |
|
|
46
46
|
| `clojure` | `clj` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/a1a4c0a63b1ad59e84f54b874744fe35dea9abe1/extensions/clojure/syntaxes/clojure.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | | 6.36 kB |
|
|
47
47
|
| `cmake` | | [twxs/vs.language.cmake](https://github.com/twxs/vs.language.cmake/blob/19b1b8fe2d68d72cf294d0c3c22f0a3fc54f8f6f/syntaxes/CMake.tmLanguage) | [MIT](https://raw.githubusercontent.com/twxs/vs.language.cmake/master/LICENSE) | | 10.00 kB |
|
|
48
|
-
| `cobol` | | [spgennard/vscode_cobol](https://github.com/spgennard/vscode_cobol/blob/
|
|
48
|
+
| `cobol` | | [spgennard/vscode_cobol](https://github.com/spgennard/vscode_cobol/blob/8c6771e1c567842024895bd7092a15984a7dd1da/syntaxes/COBOL.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/spgennard/vscode_cobol/main/LICENSE) | `sql` `html` `java` | 37.82 kB |
|
|
49
49
|
| `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) | | 32.73 kB |
|
|
50
50
|
| `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.58 kB |
|
|
51
51
|
| `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` `glsl` `sql` | 411.19 kB |
|
package/grammars/cobol.json
CHANGED
|
@@ -987,7 +987,7 @@
|
|
|
987
987
|
"name": "keyword.screens.cobol"
|
|
988
988
|
},
|
|
989
989
|
{
|
|
990
|
-
"match": "(\\s+|^)(?i:bold|high|lowlight|low|
|
|
990
|
+
"match": "(\\s+|^)(?i:bold|high|lowlight|low|background-high|background-low|background-standard)(?![0-9A-Za-z_-])",
|
|
991
991
|
"name": "invalid.illegal.screens.acu.cobol"
|
|
992
992
|
},
|
|
993
993
|
{
|
package/index.js
CHANGED
|
@@ -360,20 +360,20 @@ export const grammars = [
|
|
|
360
360
|
source: 'https://github.com/twxs/vs.language.cmake/blob/19b1b8fe2d68d72cf294d0c3c22f0a3fc54f8f6f/syntaxes/CMake.tmLanguage',
|
|
361
361
|
},
|
|
362
362
|
{
|
|
363
|
-
byteSize:
|
|
363
|
+
byteSize: 38726,
|
|
364
364
|
displayName: 'COBOL',
|
|
365
365
|
embedded: [
|
|
366
366
|
'sql',
|
|
367
367
|
'html',
|
|
368
368
|
'java',
|
|
369
369
|
],
|
|
370
|
-
lastUpdate: '
|
|
370
|
+
lastUpdate: '2024-01-13T16:19:57Z',
|
|
371
371
|
license: 'MIT',
|
|
372
372
|
licenseUrl: 'https://raw.githubusercontent.com/spgennard/vscode_cobol/main/LICENSE',
|
|
373
373
|
name: 'cobol',
|
|
374
374
|
scopeName: 'source.cobol',
|
|
375
|
-
sha: '
|
|
376
|
-
source: 'https://github.com/spgennard/vscode_cobol/blob/
|
|
375
|
+
sha: '8c6771e1c567842024895bd7092a15984a7dd1da',
|
|
376
|
+
source: 'https://github.com/spgennard/vscode_cobol/blob/8c6771e1c567842024895bd7092a15984a7dd1da/syntaxes/COBOL.tmLanguage.json',
|
|
377
377
|
},
|
|
378
378
|
{
|
|
379
379
|
aliases: [
|
package/package.json
CHANGED