tm-grammars 1.0.18 → 1.0.19
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 +7 -0
- 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/a01a70bf6107b180422100af1e56151991205b6b/syntaxes/COBOL.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/spgennard/vscode_cobol/main/LICENSE) | `sql` `html` `java` | 38.19 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.34 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.01 kB |
|
package/grammars/cobol.json
CHANGED
|
@@ -466,6 +466,9 @@
|
|
|
466
466
|
{
|
|
467
467
|
"include": "#dli-keywords"
|
|
468
468
|
},
|
|
469
|
+
{
|
|
470
|
+
"include": "#dli-options"
|
|
471
|
+
},
|
|
469
472
|
{
|
|
470
473
|
"include": "#string-double-quoted-constant"
|
|
471
474
|
},
|
|
@@ -1100,6 +1103,10 @@
|
|
|
1100
1103
|
"match": "(?<![\\-\\w])(?i:accept|chkp|deq|dlet|gnp|gn|gu|isrt|load|log|pos|query|refresh|repl|retrieve|rolb|roll|rols|schd|sets|setu|symchkp|term|xrst)(?![\\-\\w])",
|
|
1101
1104
|
"name": "keyword.verb.dli"
|
|
1102
1105
|
},
|
|
1106
|
+
"dli-options": {
|
|
1107
|
+
"match": "(?<![\\-\\w])(?i:statusgroup|checkpoint|chkp|id|lockclass|segment|info|where|from|using|keyfeedback|feedbacklen|variable|first|last|current|seglength|offset|locked|movenext|getfirst|set|setcond|setzero|setparent|fieldlength|keys|maxlength|length[0-9]*|area[0-9]*|psc|pcs|pcb|sysserve|into)(?![\\-\\w])",
|
|
1108
|
+
"name": "keyword.other.dli"
|
|
1109
|
+
},
|
|
1103
1110
|
"number-complex-constant": {
|
|
1104
1111
|
"match": "(\\-|\\+)?((([0-9]+(\\.[0-9]+))|(\\.[0-9]+))((e|E)(\\+|-)?[0-9]+)?)([LlFfUuDd]|UL|ul)?(?=\\s|\\.$|,|\\))",
|
|
1105
1112
|
"name": "constant.numeric.cobol"
|
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: 39108,
|
|
364
364
|
displayName: 'COBOL',
|
|
365
365
|
embedded: [
|
|
366
366
|
'sql',
|
|
367
367
|
'html',
|
|
368
368
|
'java',
|
|
369
369
|
],
|
|
370
|
-
lastUpdate: '2024-01-
|
|
370
|
+
lastUpdate: '2024-01-16T20:50:10Z',
|
|
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: 'a01a70bf6107b180422100af1e56151991205b6b',
|
|
376
|
+
source: 'https://github.com/spgennard/vscode_cobol/blob/a01a70bf6107b180422100af1e56151991205b6b/syntaxes/COBOL.tmLanguage.json',
|
|
377
377
|
},
|
|
378
378
|
{
|
|
379
379
|
aliases: [
|
package/package.json
CHANGED