PluginProbe
Code Block Pro – Beautiful Syntax Highlighting / 1.5.1
Code Block Pro – Beautiful Syntax Highlighting v1.5.1
1.27.1 1.27.2 1.27.3 1.27.4 1.27.5 1.27.6 1.27.7 1.28.0 1.3.0 1.4.0 1.5.0 1.5.1 1.5.2 1.6.0 1.7.0 1.8.0 1.9.0 1.9.1 1.9.2 1.9.3 trunk 1.1.0 1.10.0 1.11.0 1.11.1 All 63 releases
code-block-pro / build / shiki / languages / cobol.tmLanguage.json

cobol.tmLanguage.json in Code Block Pro – Beautiful Syntax Highlighting 1.5.1, at build/shiki/languages/cobol.tmLanguage.json

1,089 lines 45.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "_copyright": "The MIT License (MIT)\nCopyright (c) 2015-2022 spgennard\nSource: https://github.com/spgennard/vscode_cobol/blob/main/syntaxes/COBOL.tmLanguage.json",
3 "$schema": "https://raw.githubusercontent.com/spgennard/vscode_cobol/main/schemas/tmlanguage.json",
4 "fileTypes": [
5 "ccp",
6 "scbl",
7 "cobol",
8 "cbl",
9 "cblle",
10 "cblsrce",
11 "cblcpy",
12 "lks",
13 "pdv",
14 "cpy",
15 "copybook",
16 "cobcopy",
17 "fd",
18 "sel",
19 "scb",
20 "scbl",
21 "sqlcblle",
22 "cob",
23 "dds",
24 "def",
25 "src",
26 "ss",
27 "wks",
28 "bib",
29 "pco"
30 ],
31 "name": "cobol",
32 "patterns": [
33 {
34 "match": "(^[ \\*][ \\*][ \\*][ \\*][ \\*][ \\*])([dD]\\s.*$)",
35 "name": "token.info-token.cobol"
36 },
37 {
38 "match": "(^[ \\*][ \\*][ \\*][ \\*][ \\*][ \\*])(\\/.*$)",
39 "captures": {
40 "1": {
41 "name": "constant.numeric.cobol"
42 },
43 "2": {
44 "name": "comment.line.cobol.newpage"
45 }
46 }
47 },
48 {
49 "match": "(^[ \\*][ \\*][ \\*][ \\*][ \\*][ \\*])(\\*.*$)",
50 "captures": {
51 "1": {
52 "name": "constant.numeric.cobol"
53 },
54 "2": {
55 "name": "comment.line.cobol.fixed"
56 }
57 }
58 },
59 {
60 "match": "(^[0-9\\s][0-9\\s][0-9\\s][0-9\\s][0-9\\s][0-9\\s])(\\/.*$)",
61 "captures": {
62 "1": {
63 "name": "constant.numeric.cobol"
64 },
65 "2": {
66 "name": "comment.line.cobol.newpage"
67 }
68 }
69 },
70 {
71 "match": "^[0-9\\s][0-9\\s][0-9\\s][0-9\\s][0-9\\s][0-9\\s]$",
72 "name": "constant.numeric.cobol"
73 },
74 {
75 "match": "(^[0-9\\s][0-9\\s][0-9\\s][0-9\\s][0-9\\s][0-9\\s])(\\*.*$)",
76 "captures": {
77 "1": {
78 "name": "constant.numeric.cobol"
79 },
80 "2": {
81 "name": "comment.line.cobol.fixed"
82 }
83 }
84 },
85 {
86 "match": "(^[0-9a-zA-Z\\s\\$#%\\.@\\- ][0-9a-zA-Z\\s\\$#%\\.@\\- ][0-9a-zA-Z\\s\\$#%\\.@\\- ][0-9a-zA-Z\\s\\$#%\\.@\\- ][0-9a-zA-Z\\s\\$#%\\.@\\- ][0-9a-zA-Z\\s\\$#%\\.@\\- ])(\\*.*$)",
87 "captures": {
88 "1": {
89 "name": "constant.cobol"
90 },
91 "2": {
92 "name": "comment.line.cobol.fixed"
93 }
94 }
95 },
96 {
97 "match": "^\\s+(78)\\s+([0-9a-zA-Z][a-zA-Z\\-0-9_]+)",
98 "captures": {
99 "1": {
100 "name": "constant.numeric.cobol"
101 },
102 "2": {
103 "name": "variable.other.constant"
104 }
105 }
106 },
107 {
108 "match": "^\\s+([0-9]+)\\s+([0-9a-zA-Z][a-zA-Z\\-0-9_]+)\\s+((?i:constant))",
109 "captures": {
110 "1": {
111 "name": "constant.numeric.cobol"
112 },
113 "2": {
114 "name": "variable.other.constant"
115 },
116 "3": {
117 "name": "keyword.identifers.cobol"
118 }
119 }
120 },
121 {
122 "match": "(^[0-9a-zA-Z\\s\\$#%\\.@][0-9a-zA-Z\\s\\$#%\\.@][0-9a-zA-Z\\s\\$#%\\.@][0-9a-zA-Z\\s\\$#%\\.@][0-9a-zA-Z\\s\\$#%\\.@][0-9a-zA-Z\\s\\$#%\\.@])(\\/.*$)",
123 "captures": {
124 "1": {
125 "name": "constant.cobol"
126 },
127 "2": {
128 "name": "comment.line.cobol.newpage"
129 }
130 }
131 },
132 {
133 "match": "^\\*.*$",
134 "name": "comment.line.cobol.fixed"
135 },
136 {
137 "match": "((?:^|\\s+)(?i:\\$set)\\s+)((?i:constant)\\s+)([0-9a-zA-Z][a-zA-Z\\-0-9]+\\s*)([a-zA-Z\\-0-9]*)",
138 "captures": {
139 "1": {
140 "name": "keyword.control.directive.conditional.cobol"
141 },
142 "2": {
143 "name": "entity.name.function.preprocessor.cobol"
144 },
145 "3": {
146 "name": "entity.name.function.cobol"
147 },
148 "4": {
149 "name": "keyword.control.directive.conditional.cobol"
150 }
151 }
152 },
153 {
154 "match": "((?i:\\$\\s*set\\s+)(ilusing)(\\()(.*)(\\)))",
155 "captures": {
156 "1": {
157 "name": "entity.name.function.preprocessor.cobol"
158 },
159 "2": {
160 "name": "storage.modifier.import.cobol"
161 },
162 "3": {
163 "name": "punctuation.begin.bracket.round.cobol"
164 },
165 "4": {
166 "name": "string.quoted.other.cobol"
167 },
168 "5": {
169 "name": "punctuation.end.bracket.round.cobol"
170 }
171 }
172 },
173 {
174 "match": "((?i:\\$\\s*set\\s+)(ilusing)(\")(.*)(\"))",
175 "captures": {
176 "1": {
177 "name": "entity.name.function.preprocessor.cobol"
178 },
179 "2": {
180 "name": "storage.modifier.import.cobol"
181 },
182 "3": {
183 "name": "punctuation.definition.string.begin.cobol"
184 },
185 "4": {
186 "name": "string.quoted.other.cobol"
187 },
188 "5": {
189 "name": "punctuation.definition.string.begin.cobol"
190 }
191 }
192 },
193 {
194 "match": "((?i:\\$set))\\s+(\\w+)\\s*(\")(\\w*)(\")",
195 "captures": {
196 "1": {
197 "name": "keyword.control.directive.conditional.cobol"
198 },
199 "2": {
200 "name": "entity.name.function.preprocessor.cobol"
201 },
202 "3": {
203 "name": "punctuation.definition.string.begin.cobol"
204 },
205 "4": {
206 "name": "string.quoted.other.cobol"
207 },
208 "5": {
209 "name": "punctuation.definition.string.begin.cobol"
210 }
211 }
212 },
213 {
214 "match": "((?i:\\$set))\\s+(\\w+)\\s*(\\()(.*)(\\))",
215 "captures": {
216 "1": {
217 "name": "keyword.control.directive.conditional.cobol"
218 },
219 "2": {
220 "name": "entity.name.function.preprocessor.cobol"
221 },
222 "3": {
223 "name": "punctuation.begin.bracket.round.cobol"
224 },
225 "4": {
226 "name": "string.quoted.other.cobol"
227 },
228 "5": {
229 "name": "punctuation.end.bracket.round.cobol"
230 }
231 }
232 },
233 {
234 "match": "(?:^|\\s+)(?i:\\$\\s*set\\s)((?i:01SHUFFLE|64KPARA|64KSECT|AUXOPT|CHIP|DATALIT|EANIM|EXPANDDATA|FIXING|FLAG-CHIP|MASM|MODEL|OPTSIZE|OPTSPEED|PARAS|PROTMODE|REGPARM|SEGCROSS|SEGSIZE|SIGNCOMPARE|SMALLDD|TABLESEGCROSS|TRICKLECHECK|\\s)+).*$",
235 "captures": {
236 "0": {
237 "name": "keyword.control.directive.conditional.cobol"
238 },
239 "1": {
240 "name": "invalid.illegal.directive"
241 },
242 "2": {
243 "name": "comment.line.set.cobol"
244 }
245 }
246 },
247 {
248 "match": "(\\$region|\\$end-region)(.*$)",
249 "captures": {
250 "1": {
251 "name": "keyword.control.directive.cobol"
252 },
253 "2": {
254 "name": "entity.other.attribute-name.preprocessor.cobol"
255 }
256 }
257 },
258 {
259 "begin": "\\$(?i:doc)(.*$)",
260 "end": "\\$(?i:end-doc)(.*$)",
261 "name": "invalid.illegal.iscobol"
262 },
263 {
264 "match": ">>\\s*(?i:turn|page|listing|leap-seconds|d)\\s+.*$",
265 "name": "invalid.illegal.meta.preprocessor.cobolit"
266 },
267 {
268 "match": "((((>>|\\$)[\\s]*)(?i:if|else|elif|end-if|end-evaluate|end|define|evaluate|when|display|call-convention|set))(.*$))",
269 "captures": {
270 "1": {
271 "name": "keyword.control.directive.conditional.cobol"
272 },
273 "2": {
274 "name": "entity.name.function.preprocessor.cobol"
275 },
276 "3": {
277 "name": "entity.name.function.preprocessor.cobol"
278 }
279 }
280 },
281 {
282 "match": "(\\*>)\\s+(@[0-9a-zA-Z][a-zA-Z\\-0-9]+)\\s+(.*$)",
283 "captures": {
284 "1": {
285 "name": "comment.line.scantoken.cobol"
286 },
287 "2": {
288 "name": "keyword.cobol"
289 },
290 "3": {
291 "name": "string.cobol"
292 }
293 }
294 },
295 {
296 "match": "(\\*>.*$)",
297 "name": "comment.line.modern"
298 },
299 {
300 "match": "(>>.*)$",
301 "name": "strong comment.line.set.acucobol"
302 },
303 {
304 "match": "([nNuU][xX]|[hHxX])'\\h*'",
305 "name": "constant.numeric.integer.hexadecimal.cobol"
306 },
307 {
308 "match": "([nNuU][xX]|[hHxX])'.*'",
309 "name": "invalid.illegal.hexadecimal.cobol"
310 },
311 {
312 "match": "([nNuU][xX]|[hHxX])\"\\h*\"",
313 "name": "constant.numeric.integer.hexadecimal.cobol"
314 },
315 {
316 "match": "([nNuU][xX]|[hHxX])\".*\"",
317 "name": "invalid.illegal.hexadecimal.cobol"
318 },
319 {
320 "match": "[bB]\"[0-1]\"",
321 "name": "constant.numeric.integer.boolean.cobol"
322 },
323 {
324 "match": "[bB]'[0-1]'",
325 "name": "constant.numeric.integer.boolean.cobol"
326 },
327 {
328 "match": "[oO]\"[0-7]*\"",
329 "name": "constant.numeric.integer.octal.cobol"
330 },
331 {
332 "match": "[oO]\".*\"",
333 "name": "invalid.illegal.octal.cobol"
334 },
335 {
336 "match": "(#)([0-9a-zA-Z][a-zA-Z\\-0-9]+)",
337 "name": "meta.symbol.cobol.forced"
338 },
339 {
340 "begin": "((?<![-_a-zA-Z0-9()-])(?i:installation|author|source-computer|object-computer|date-written|security|date-compiled)(\\.|$))",
341 "beginCaptures": {
342 "0": {
343 "name": "keyword.identifiers.cobol"
344 }
345 },
346 "patterns": [
347 {
348 "match": "(^[0-9 ][0-9 ][0-9 ][0-9 ][0-9 ][0-9 ])",
349 "name": "constant.numeric.cobol"
350 }
351 ],
352 "name": "comment.block.cobol.remark",
353 "end": "(?=((?<![-_])(?i:remarks|author|date-written|source-computer|object-computer|installation|date-compiled|special-names|security|environment\\s+division|data\\s+division|working-storage\\s+section|input-output\\s+section|linkage\\s+section|procedure\\s+division|local-storage\\s+section)|^[ \\*][ \\*][ \\*][ \\*][ \\*][ \\*]\\*.*$|^\\+$))"
354 },
355 {
356 "match": "(?<=(\\(|\\[))((\\-\\+)*\\s*[0-9 ,\\.\\+\\-\\*\\/]+)(?=(\\)|\\]))",
357 "name": "constant.numeric.cobol",
358 "captures": {
359 "1": {
360 "name": "keyword.start.bracket.cobol"
361 },
362 "2": {
363 "name": "constant.numeric.cobol"
364 },
365 "3": {
366 "name": "keyword.end.bracket.cobol"
367 }
368 },
369 "comment": "simple numerics in () and []"
370 },
371 {
372 "include": "#number-complex-constant"
373 },
374 {
375 "include": "#number-simple-constant"
376 },
377 {
378 "match": "(?<![-_])(?i:true|false|null|nulls)(?![0-9A-Za-z_-])",
379 "name": "constant.language.cobol"
380 },
381 {
382 "match": "(?<![-_])(?i:zeroes|alphabetic-lower|alphabetic-upper|alphanumeric-edited|alphabetic|alphabet|alphanumeric|zeros|zeros|zero|spaces|space|quotes|quote|low-values|low-value|high-values|high-value)(?=\\s+|\\.|,|\\))",
383 "name": "constant.language.figurative.cobol"
384 },
385 {
386 "begin": "(?i:exec\\s+sqlims|exec\\s+sql)",
387 "name": "keyword.verb.cobol",
388 "contentName": "meta.embedded.block.sql",
389 "patterns": [
390 {
391 "match": "(^\\s*\\*.*)$",
392 "name": "comment.line.sql"
393 },
394 {
395 "match": "(\\:([0-9a-zA-Z\\-_])*)",
396 "name": "variable.cobol"
397 },
398 {
399 "include": "source.sql"
400 }
401 ],
402 "end": "(?i:end\\-exec)"
403 },
404 {
405 "begin": "(?i:exec\\s+cics)",
406 "name": "keyword.verb.cobol",
407 "contentName": "meta.embedded.block.cics",
408 "patterns": [
409 {
410 "match": "(\\()",
411 "name": "meta.symbol.cobol"
412 },
413 {
414 "include": "#cics-keywords"
415 },
416 {
417 "include": "#string-double-quoted-constant"
418 },
419 {
420 "include": "#string-quoted-constant"
421 },
422 {
423 "include": "#number-complex-constant"
424 },
425 {
426 "include": "#number-simple-constant"
427 },
428 {
429 "match": "([a-zA-Z-0-9_]*[a-zA-Z0-9]|([#]?[0-9a-zA-Z]+[a-zA-Z-0-9_]*[a-zA-Z0-9]))",
430 "name": "variable.cobol"
431 }
432 ],
433 "end": "(?i:end\\-exec)"
434 },
435 {
436 "begin": "(?i:exec\\s+sqlims)",
437 "name": "keyword.verb.cobol",
438 "contentName": "meta.embedded.block.sql",
439 "patterns": [
440 {
441 "match": "(\\:([a-zA-Z\\-])*)",
442 "name": "variable.cobol"
443 },
444 {
445 "include": "source.sql"
446 }
447 ],
448 "end": "(?i:end\\-exec)"
449 },
450 {
451 "begin": "(?i:exec\\s+ado)",
452 "name": "keyword.verb.cobol",
453 "contentName": "meta.embedded.block.sql",
454 "patterns": [
455 {
456 "match": "(\\:([a-zA-Z\\-])*)",
457 "name": "variable.cobol"
458 },
459 {
460 "include": "source.sql"
461 }
462 ],
463 "end": "(?i:end\\-exec)"
464 },
465 {
466 "begin": "(?i:exec\\s+html)",
467 "name": "keyword.verb.cobol",
468 "contentName": "meta.embedded.block.html",
469 "patterns": [
470 {
471 "include": "text.html.basic"
472 }
473 ],
474 "end": "(?i:end\\-exec)"
475 },
476 {
477 "begin": "(?i:exec\\s+java)",
478 "name": "keyword.verb.cobol",
479 "contentName": "meta.embedded.block.java",
480 "patterns": [
481 {
482 "include": "source.java"
483 }
484 ],
485 "end": "(?i:end\\-exec)"
486 },
487 {
488 "match": "(\")(CBL_.*)(\")",
489 "captures": {
490 "1": {
491 "name": "punctuation.definition.string.begin.cobol"
492 },
493 "2": {
494 "name": "support.function.cobol"
495 },
496 "3": {
497 "name": "punctuation.definition.string.end.cobol"
498 }
499 }
500 },
501 {
502 "match": "(\")(PC_.*)(\")",
503 "captures": {
504 "1": {
505 "name": "punctuation.definition.string.begin.cobol"
506 },
507 "2": {
508 "name": "support.function.cobol"
509 },
510 "3": {
511 "name": "punctuation.definition.string.end.cobol"
512 }
513 }
514 },
515 {
516 "begin": "\"",
517 "beginCaptures": {
518 "0": {
519 "name": "punctuation.definition.string.begin.cobol"
520 }
521 },
522 "end": "(\"|$)",
523 "endCaptures": {
524 "0": {
525 "name": "punctuation.definition.string.end.cobol"
526 }
527 },
528 "name": "string.quoted.double.cobol"
529 },
530 {
531 "match": "(\\')(CBL_.*)(\\')",
532 "captures": {
533 "1": {
534 "name": "punctuation.definition.string.begin.cobol"
535 },
536 "2": {
537 "name": "support.function.cobol"
538 },
539 "3": {
540 "name": "punctuation.definition.string.end.cobol"
541 }
542 }
543 },
544 {
545 "match": "(\\')(PC_.*)(\\')",
546 "captures": {
547 "1": {
548 "name": "punctuation.definition.string.begin.cobol"
549 },
550 "2": {
551 "name": "support.function.cobol"
552 },
553 "3": {
554 "name": "punctuation.definition.string.end.cobol"
555 }
556 }
557 },
558 {
559 "begin": "'",
560 "beginCaptures": {
561 "0": {
562 "name": "punctuation.definition.string.begin.cobol"
563 }
564 },
565 "end": "('|$)",
566 "endCaptures": {
567 "0": {
568 "name": "punctuation.definition.string.end.cobol"
569 }
570 },
571 "name": "string.quoted.single.cobol"
572 },
573 {
574 "begin": "(?<![\\-\\w])[gGzZ]\"",
575 "beginCaptures": {
576 "0": {
577 "name": "punctuation.definition.string.begin.cobol"
578 }
579 },
580 "end": "(\"|$)",
581 "endCaptures": {
582 "0": {
583 "name": "punctuation.definition.string.end.cobol"
584 }
585 },
586 "name": "string.quoted.double.cobol"
587 },
588 {
589 "begin": "(?<![\\-\\w])[gGzZ]'",
590 "beginCaptures": {
591 "0": {
592 "name": "punctuation.definition.string.begin.cobol"
593 }
594 },
595 "end": "'",
596 "endCaptures": {
597 "0": {
598 "name": "punctuation.definition.string.end.cobol"
599 }
600 },
601 "name": "string.quoted.single.cobol"
602 },
603 {
604 "begin": "(?<![\\-\\w])[gGnN]\"",
605 "beginCaptures": {
606 "0": {
607 "name": "punctuation.definition.string.begin.cobol"
608 }
609 },
610 "end": "(\"|$)",
611 "endCaptures": {
612 "0": {
613 "name": "punctuation.definition.string.end.cobol"
614 }
615 },
616 "name": "string.quoted.double.cobol"
617 },
618 {
619 "begin": "(?<![\\-\\w])[gGnN]'",
620 "beginCaptures": {
621 "0": {
622 "name": "punctuation.definition.string.begin.cobol"
623 }
624 },
625 "end": "'",
626 "endCaptures": {
627 "0": {
628 "name": "punctuation.definition.string.end.cobol"
629 }
630 },
631 "name": "string.quoted.single.cobol"
632 },
633 {
634 "begin": "(?<![\\-\\w])[uU]\"",
635 "beginCaptures": {
636 "0": {
637 "name": "punctuation.definition.string.begin.cobol"
638 }
639 },
640 "end": "(\"|$)",
641 "endCaptures": {
642 "0": {
643 "name": "punctuation.definition.string.end.cobol"
644 }
645 },
646 "name": "string.quoted.utf8.double.cobol"
647 },
648 {
649 "begin": "(?<![\\-\\w])[uU]'",
650 "beginCaptures": {
651 "0": {
652 "name": "punctuation.definition.string.begin.cobol"
653 }
654 },
655 "end": "'",
656 "endCaptures": {
657 "0": {
658 "name": "punctuation.definition.string.end.cobol"
659 }
660 },
661 "name": "string.quoted.utf8.single.cobol"
662 },
663 {
664 "match": "(?<![-_])(?i:id\\s+division|identification\\s+division|identification|id|property-id|getter|setter|entry|function-id|end\\s+attribute|attribute|interface-id|indexer-id|factory|ctl|class-control|options|environment\\s+division|environment-name|environment-value|environment|configuration\\s+section|configuration|decimal-point\\s+is|decimal-point|console\\s+is|call-convention|special-names|cursor\\s+is|update|picture\\s+symbol|currency\\s+sign|currency|repository|input-output\\s+section|input-output|file\\s+section|file-control|select|optional|i-o-control|data\\s+division|working-storage\\s+section|working-storage|section|local-storage|linkage\\s+section|linkage|communication|report|screen\\s+section|object-storage|object\\s+section|class-object|fd|rd|cd|sd|printing|procedure\\s+division|procedure|division|references|debugging|end\\s+declaratives|declaratives|end\\s+static|end\\s+factory|end\\s+class-object|based-storage|size|font|national-edited|national)(?![0-9A-Za-z_-])",
665 "name": "keyword.identifiers.cobol"
666 },
667 {
668 "match": "(?<![-_])((?i:valuetype-id|operator-id|method-id|method|property-id|attribute-id|enum-id|iterator-id|class-id|program-id|operator-id|end\\s+program|end\\s+valuetype|extension))[\\.]*[\\s]+([a-zA-Z0-9_-]*)",
669 "captures": {
670 "1": {
671 "name": "keyword.verb.cobol"
672 },
673 "2": {
674 "name": "entity.name.function.cobol"
675 }
676 }
677 },
678 {
679 "match": "(?<![-_])(?i:implements|inherits|constraints|constrain)(?=\\s|\\.)",
680 "name": "keyword.verb.cobol"
681 },
682 {
683 "match": "(?<![-_])(?i:end\\s+enum|end\\s+interface|end\\s+class|end\\s+property|end\\s+method|end\\s+object|end\\s+iterator|end\\s+function|end\\s+operator|end\\s+program|end\\s+indexer|create|reset|instance|delegate|end-delegate|delegate-id|declare|exception-object|as|stop\\s+iterator|stop\\s+run|stop)(?=\\s|\\.|,|\\))",
684 "name": "keyword.identifiers.cobol"
685 },
686 {
687 "match": "\\s+(?i:attach\\s+method|attach\\s+del|attach|detach\\s+del|detach\\s+method|detach|method|del)(?=\\s|\\.|$)",
688 "name": "keyword.identifiers.cobol"
689 },
690 {
691 "match": "\\s+(?i:sync\\s+(?i:on))(?=\\s|\\.)",
692 "name": "keyword.other.sync.cobol"
693 },
694 {
695 "match": "\\s+(?i:try|finally|catch|end-try|throw)(?=\\s|\\.|$)",
696 "name": "keyword.control.catch-exception.cobol"
697 },
698 {
699 "match": "(?<![-_])(?i:select|use|thru|varying|giving|remainder|tallying|through|until|execute|returning|using|chaining|yielding|\\+\\+include|copy|replace)(?=\\s)",
700 "name": "keyword.otherverb.cobol"
701 },
702 {
703 "match": "(?i:dynamic)\\s+(?i:length)(?=\\s|\\.)",
704 "name": "storage.type.dynamiclength.cobol"
705 },
706 {
707 "match": "(?<![-_])(?i:assign|external|prototype|organization|organisation|indexed|column|plus|line\\*s*sequential|sequential|access|dynamic|relative|label|block|contains|standard|records|record\\s+key|record|is|alternate|duplicates|reel|tape|terminal|disk\\sfilename|disk|disc|recording\\smode|mode|random)(?=\\s|\\.)",
708 "name": "keyword.identifers.cobol"
709 },
710 {
711 "match": "(?<![-_])(?i:max|min|integer-of-date|integer-of-day|integer-part|integer|date-to-yyyymmdd|year-to-yyyy|day-to-yyyyddd|exp|exception-file|exception-location|exception-statement|exception-status|e|variance|integer-of-date|rem|pi|factorial|sqrt|log10|fraction-part|mean|exp|log|char|day-of-integer|date-of-integer|exp10|atan|integer-part|tan|sin|cos|midrange|addr|acos|asin|annuity|present-value|integer-of-day|ord-max|ord-min|ord|random|integer-of-date|sum|standard-deviation|median|reverse|abs|upper-case|lower-case|char-national|numval|mod|range|length|locale-date|locale-time-from-seconds|locale-time|seconds-past-midnight|stored-char-length|substitute-case|substitute|seconds-from-formatted-time|seconds-past-midnight|trim|length-an|numval-c|current-date|national-of|display-of|when-compiled|integer-of-boolean|combined-datetime|concatenate)(?=\\s|\\.|\\(|\\))",
712 "name": "support.function.cobol"
713 },
714 {
715 "match": "(?<![-_])(?i:DFHRESP|DFHVALUE)(?=\\s|\\.|\\(|\\))",
716 "name": "support.function.cics.cobol"
717 },
718 {
719 "match": "(?<![-_])(?i:function)(?=\\s|\\.)",
720 "name": "keyword.verb.cobol"
721 },
722 {
723 "match": "(?<![-_])(?i:end-accept|end-add|end-sync|end-compute|end-delete|end-display|end-divide|end-set|end-multiply|end-of-page|end-read|end-receive|end-return|end-rewrite|end-search|end-start|end-string|end-subtract|end-unstring|end-write|program|class|interface|enum|interface)(?![0-9A-Za-z_-])",
724 "name": "keyword.verb.cobol"
725 },
726 {
727 "match": "(?<![-_])(?:by value|by reference|by content|property-value)(?![0-9A-Za-z_-])",
728 "name": "keyword.other.cobol"
729 },
730 {
731 "match": "(?<![-_])(?i:attr-string|automatic|auto-skip|footing|next|group|indicate|source|control|full|required|of|input|output|i-o|extend|file|error|exception|overflow|goto|off|on|proceed|procedures|procedure|through|invalid|data|normal|eop|returning|to|for|giving|into|by|params|remainder|also|numeric|free|depending|converting|replacing|after|before|all|leading|first|recursive|initialized|global|common|initial|resident|reference|content|are\\sstandard|are|renames|like|format\\stime|values|omitted|value|constant|ascending|descending|key|retry|until|varying|with|no|advancing|up|down|uccurs|ignore\\s+lock|lock|length|delimited|count|delimiter|redefines|from\\s+console|from\\s+command-line|from\\s+user\\s+name|from\\s+day\\s+yyyyddd|from\\s+day|from\\s+time|from\\s+day-of-week|from\\s+escape|from\\s+day\\s+yyyyddd|from\\s+date\\s+yyyymmdd|from\\s+date|from|raising|crt\\s+status|status|class|upon\\s+crt|upon|lines|columns|step|linage|auto|line|position|col|reports|code-set|reporting|arithmetic|localize|program|class|interface|in|at\\s+end|page|name)(?![0-9A-Za-z_-])",
732 "name": "keyword.identifers.cobol"
733 },
734 {
735 "match": "(?<![-_])(?i:type|new)\\s+([a-zA-Z][a-zA-Z0-9\\$\\-\\._]*|[a-zA-Z])(?=\\.$)",
736 "captures": {
737 "0": {
738 "name": "keyword.verb.cobol"
739 },
740 "1": {
741 "name": "storage.type.cobol"
742 }
743 },
744 "comment": "type ssss "
745 },
746 {
747 "match": "(?<![-_])(?i:string)(?=\\s+value|\\.)",
748 "name": "storage.type.cobol"
749 },
750 {
751 "match": "(?<![-_])(?i:bit|byte|binary-char|binary-char-unsigned|binary-short|binary-short-unsigned|binary.long|binary-c-long|binary-long-unsigned|binary-long|binary-double|binary-double-unsigned|float-short|float-extended|float-long|bit|condition-value|characters|character\\s+type|character|comma|crt|decimal|object\\+sreference|object-reference|object|list|dictionary|unsigned)(?=\\s|\\.|,|\\]|\\[)",
752 "name": "storage.type.cobol"
753 },
754 {
755 "match": "(operator-id\\s+[+\\-\\*\\/])",
756 "name": "keyword.operator-id.cobol",
757 "captures": {
758 "1": {
759 "name": "keyword.other.verb.cobol"
760 },
761 "2": {
762 "name": "meta.symbol.cobol"
763 }
764 },
765 "comment": "operator-id ssss "
766 },
767 {
768 "match": "(?i:self)(\\:\\:)([0-9a-zA-Z_\\-\\.]*)(?=\\.$)",
769 "captures": {
770 "1": {
771 "name": "punctuation.accessor.cobol.b3"
772 },
773 "2": {
774 "name": "entity.name.function.b3"
775 }
776 },
777 "comment": " ::.. "
778 },
779 {
780 "match": "(\\:\\:)([0-9a-zA-Z_\\-\\.]*)",
781 "captures": {
782 "1": {
783 "name": "punctuation.accessor.cobol"
784 },
785 "2": {
786 "name": "entity.name.function.cobol"
787 }
788 },
789 "comment": " ::.. "
790 },
791 {
792 "match": "(?<![-_])(?i:type)\\s+([0-9a-zA-Z\\.]*)",
793 "captures": {
794 "0": {
795 "name": "keyword.verb.cobol.aa"
796 },
797 "1": {
798 "name": "storage.type.cobol.bb"
799 }
800 }
801 },
802 {
803 "match": "(?<![-_])(?i:if|else|end-if|exit\\s+iterator|exit\\s+program|exit\\s+method|evaluate|end-evaluate|exit\\s+perform|perform|end-perform|when\\s+other|when|continue|call|end-call|chain|end-chain|invoke|end\\s+invoke|go\\s+to|go|sort|merge|use|xml|parse|stop\\s+run|goback\\s+returning|goback|raise|exit\\s+function|await)(?![0-9A-Za-z_-])",
804 "name": "keyword.control.cobol"
805 },
806 {
807 "match": "(?<![-_])((?i:picture\\s+is|picture|pic\\s+is|pic)\\s+[-+sS\\*$09aAbBxXuUpPnNzZ/,.]*)\\(([0-9]*)\\)([vV][-+sS\\*$09aAbBxXuUpPnNzZ/,\\.]*)\\(([0-9]*)\\)[-|+]",
808 "captures": {
809 "1": {
810 "name": "storage.type.picture10.cobol"
811 },
812 "2": {
813 "name": "constant.numeric.cobol"
814 },
815 "3": {
816 "name": "storage.type.picture10.cobol"
817 },
818 "4": {
819 "name": "constant.numeric.cobol"
820 }
821 }
822 },
823 {
824 "match": "(?<![-_])((?i:picture\\s+is|picture|pic\\s+is|pic)\\s+[-+sS\\*$09aAbBxXuUpPnNzZ/,.]*)\\(([0-9]*)\\)([vV][-+sS\\*$09aAbBxXuUpPnNzZ/,\\.]*)\\(([0-9]*)\\)",
825 "captures": {
826 "1": {
827 "name": "storage.type.picture9.cobol"
828 },
829 "2": {
830 "name": "constant.numeric.cobol"
831 },
832 "3": {
833 "name": "storage.type.picture9.cobol"
834 },
835 "4": {
836 "name": "constant.numeric.cobol"
837 }
838 }
839 },
840 {
841 "match": "(?<![-_])((?i:picture\\s+is|picture|pic\\s+is|pic)\\s+[-+sS\\*$09aAbBxXuUpPnNzZ/,.]*)\\(([0-9]*)\\)([vV\\.][-+s\\*$09aAbBsSnNxXuUzZ/,]*[0-9\\.()])*",
842 "captures": {
843 "1": {
844 "name": "storage.type.picture8.cobol"
845 },
846 "2": {
847 "name": "constant.numeric.cobol"
848 },
849 "3": {
850 "name": "storage.type.picture8.cobol"
851 }
852 }
853 },
854 {
855 "match": "(?<![-_])(?i:picture\\s+is|picture|pic\\s+is|pic)\\s+[-+sS\\*$09aAbBsSnpPNxXuUzZ/,.]*\\([0-9]*\\)[Vv\\.][-+s\\*0$9aAbBsSnNxpPxXuUzZ/,]*",
856 "name": "storage.type.picture7.cobol"
857 },
858 {
859 "match": "(?<![-_])(?i:picture\\s+is|picture|pic\\s+is|pic)\\s+[-+sS\\*$09aAbBsSnpPNxXuUzZ/,.]*\\([0-9]*\\)[-+s\\*0$9aAbBsSnNxpPxXuUzZ/,]*[Vv\\.][-+s\\*0$9aAbBsSnNxpPxXuUzZ/,]*",
860 "name": "storage.type.picture6.cobol"
861 },
862 {
863 "match": "(?<![-_])((?i:picture\\s+is|picture|pic\\s+is|pic)\\s+[-+sS\\*$09aAbBsSnpPNxuUXzZ/,.]*)\\(([0-9]*)\\)[-+s\\*0$9aAbBsSnNxpPxXuUzZ/,]*",
864 "captures": {
865 "1": {
866 "name": "storage.type.picture5.cobol"
867 },
868 "2": {
869 "name": "constant.numeric.cobol"
870 }
871 }
872 },
873 {
874 "match": "(?<![-_])(?i:picture\\s+is|picture|pic\\s+is|pic)\\s+[-+sS\\*$09aAbBsSnpNNxXuUzZ/,.]*\\([0-9]*\\)",
875 "name": "storage.type.picture4.cobol"
876 },
877 {
878 "match": "(?<![-_])(?i:picture\\s+is|picture|pic\\s+is|pic)\\s+[sS]?[9aAbBsSnNxXuUzZ]*[Vv][9aAxbXuUzZ]*\\([0-9]*\\)",
879 "name": "storage.type.picture3.cobol"
880 },
881 {
882 "match": "(?<![-_])(?i:picture\\s+is|picture|pic\\s+is|pic)\\s+[sS]?[9aAbBsSnNxXuUzZ]*[Vv][9aAxbXuUzZ]*",
883 "name": "storage.type.picture2.cobol"
884 },
885 {
886 "match": "(?<![-_])(?i:picture\\s+is|picture|pic\\s+is|pic)\\s+[-+\\*$9aAbBsSnpPNxXuUzZ/,.vV]*",
887 "name": "storage.type.picture1.cobol"
888 },
889 {
890 "match": "((?<![-_])(?i:binary|computational-4|comp-4|computational-5|comp-5))\\(([0-9]*)\\)",
891 "captures": {
892 "1": {
893 "name": "invalid.illegal.keyword.verb.acu.cobol"
894 },
895 "2": {
896 "name": "invalid.illegal.constant.numeric.integer"
897 }
898 }
899 },
900 {
901 "match": "(?i:cblt-x1-compx-const|cblt-x2-compx-const|cblt-x4-compx-const|cblt-alphanum-const|cblt-x9-compx|cblt-x8-compx|cblt-x8-comp5|cblt-x4-compx|cblt-x4-comp5|cblt-x2-compx|cblt-x2-comp5|cblt-x1-compx|cblt-x1-comp5|cblt-x1|cblt-vfile-status|cblt-vfile-handle|cblt-sx8-comp5|cblt-sx4-comp5|cblt-sx2-comp5|cblt-sx1-comp5|cblt-subsys-params|cblt-splitjoin-buf|cblt-screen-position|cblt-rtncode|cblt-request-context|cblt-reqhand-service-info|cblt-reqhand-service-funcs|cblt-reqhand-response|cblt-reqhand-funcs|cblt-prog-info-params|cblt-prog-info-arg-info|cblt-printer-properties|cblt-printer-name|cblt-printer-info|cblt-printer-default|cblt-ppointer|cblt-pointer|cblt-os-ssize|cblt-os-size|cblt-os-offset|cblt-os-info-params|cblt-os-flags|cblt-node-name|cblt-nls-msg-params|cblt-nls-msg-number-pair|cblt-nls-msg-ins-struct|cblt-nls-msg-buffer|cblt-mouse-shape|cblt-mouse-rect|cblt-mouse-pos|cblt-mouse-event|cblt-mem-validate-param|cblt-idp-exit-service-funcs|cblt-idp-exit-info|cblt-HWND|cblt-HINSTANCE|cblt-get-scr-line-draw-buffer|cblt-get-scr-graphics-buffer|cblt-generic-attr-value|cblt-generic-attr-rgb-values|cblt-generic-attr-information|cblt-file-status|cblt-fileexist-buf|cblt-exit-params|cblt-exit-info-params|cblt-cancel-proc-params|cblt-bytestream-handle|cblt-alphanum)",
902 "name": "support.function.cbltypes.cobol"
903 },
904 {
905 "match": "(?<![-_])(?i:computational-1|comp-1|computational-2|comp-2|computational-3|comp-3|computational-4|comp-4|computational-x|comp-x|computational-5|comp-5|computational-6|comp-6|computational-n|comp-n|packed-decimal|index|float|double|signed-short|unsigned-short|signed-int|unsigned-int|signed-long|unsigned-long|comp|computational|group-usage|usage\\sis\\sdisplay|usage\\sis\\sfont|usage\\s+display|binary|mutex-pointer|data-pointer|thread-pointer|sempahore-pointer|event-pointer|program-pointer|procedure-pointer|pointer|window|subwindow|control-type|thread|menu|variant|layout-manager|occurs|typedef|any|times|display\\s+blank\\s+when|blank\\s+when|blank\\s+screen|blank|usage\\sis|is\\spartial|usage|justified|just|right|signed|trailing\\s+separate|sign|seperate|sql)(?=\\s|\\.|\\))",
906 "name": "storage.type.picture.cobol"
907 },
908 {
909 "match": "(?i:byte-length)\\s+[0-9]+",
910 "name": "storage.type.length.cobol"
911 },
912 {
913 "match": "(?<![-_])(?i:accept|add|address|allocate|cancel|close|commit|compute|continue|delete|disable|display|bell|divide|eject|enable|enter|evaluate|exhibit|named|exit|free|generate|go\\s+to|initialize\\sonly|initialize|initiate|inspect|merge|end-set|set|end-invoke|invoke\\s+run|invoke|move|corresponding|corr|multiply|otherwise|open|sharing|sort-merge|purge|ready|read|kept|receive|release|return|rewrite|rounded|rollback|search|send|sort|collating\\s+sequence|collating|start|service|subtract|suppress|terminate|then|unlock|string|unstring|validate|write|next|statement|sentence)(?![0-9A-Za-z_-])",
914 "name": "keyword.verb.cobol"
915 },
916 {
917 "match": "(?<![-_])(?i:thread-local)(?![0-9A-Za-z_-])",
918 "name": "keyword.verb.cobol"
919 },
920 {
921 "match": "(\\s+|^)(?i:foreground-color|background-color|prompt|underline|reverse-video|no-echo|highlight|blink)(?![0-9A-Za-z_-])",
922 "name": "keyword.screens.cobol"
923 },
924 {
925 "match": "(\\s+|^)(?i:bold|high|lowlight|low|standard|background-high|background-low|background-standard)(?![0-9A-Za-z_-])",
926 "name": "invalid.illegal.screens.acu.cobol"
927 },
928 {
929 "match": "(?<![-_])(?i:internal|public|protected|final|private|static|new|abstract|override|readonly|property|async-void|async-value|async)(?=\\s|\\.)",
930 "name": "storage.modifier.cobol"
931 },
932 {
933 "match": "=|<|>|<=|>=|<>|\\+|\\-|\\*|\\/|(?<![-_])(?i:b-and|b-or|b-xor|b-exor|b-not|b-left|b-right|and|or|equals|equal|greater\\s+than|less\\s+than|greater)(?![0-9A-Za-z_-])",
934 "name": "keyword.operator.cobol"
935 },
936 {
937 "match": "(?i:not\\s+at\\s+end)(?![0-9A-Za-z_-])",
938 "name": "keyword.verb.cobol"
939 },
940 {
941 "match": "(?<![-_])(?i:not)(?![0-9A-Za-z_-])",
942 "name": "keyword.operator.cobol"
943 },
944 {
945 "match": "(?<![-_])(?i:sysout-flush|sysin|stderr|stdout|csp|stdin|sysipt|sysout|sysprint|syslist|syslst|printer|syserr|console|c01|c02|c03|c04|c05|c06|c07|c08|c09|c10|c11|c12|formfeed|switch-0|switch-10|switch-11|switch-12|switch-13|switch-13|switch-14|switch-15|switch-1|switch-2|switch-3|switch-4|switch-5|switch-6|switch-7|switch-8|switch-9|sw0|sw11|sw12|sw13|sw14|sw15|sw1|sw2|sw3|sw4|sw5|sw6|sw7|sw8|sw9|sw10|lc_all|lc_collate|lc_ctype|lc_messages|lc_monetary|lc_numeric|lc_time|ucs-4|utf-8|utf-16)(?![0-9A-Za-z_-])",
946 "name": "support.type.cobol"
947 },
948 {
949 "match": "(?<![-_])(?i:end-xml|processing.*procedure|xml\\sparse|xml|xml-information|xml-text|xml-schemal|xml-declaration)(?![0-9A-Za-z_-])",
950 "name": "keyword.xml.cobol"
951 },
952 {
953 "match": "(?<![-_])(?i:json\\s+generate|json|end-json|name\\sof)(?![0-9A-Za-z_-])",
954 "name": "keyword.json.cobol"
955 },
956 {
957 "match": "(?<![-_])(?i:modify|inquire|tab|title|event|center|label-offset|cell|help-id|cells|push-button|radio-button|page-layout-screen|entry-field|list-box|label|default-font|id|no-tab|unsorted|color|height|width|bind|thread|erase|modeless|scroll|system|menu|title-bar|wrap|destroy|resizeable|user-gray|large-font|newline|3-d|data-columns|display-columns|alignment|separation|cursor-frame-width|divider-color|drag-color|heading-color|heading-divider-color|num-rows|record-data|tiled-headings|vpadding|centered-headings|column-headings|self-act|cancel-button|vscroll|report-composer|clsid|primary-interface|active-x-control|default-interface|default-source|auto-minimize|auto-resize|resource|engraved|initial-state|frame|acuactivexcontrol|activex-res|grid|box|message|namespace|class-name|module|constructor|version|strong|culture|method|handle|exception-value|read-only|dividers|graphical|indexed|termination-value|permanent|boxed|visible|centered|record-position|convert)(?=\\s|\\.|,|;|$)",
958 "name": "invalid.illegal.acu.cobol"
959 },
960 {
961 "match": "(?<![-_])(?i:actual|auto|automatic|based-storage|complex|connect|contained|core-index|db-access-control-key|db-data-name|db-exception|db-record-name|db-set-name|db-status|dead-lock|endcobol|end-disable|end-enable|end-send|end-transceive|eos|file-limits|file-limit|formatted|sort-status|usage-mode)(?=\\s|\\.|,|;|$)",
962 "name": "invalid.illegal.netcobol.cobol"
963 },
964 {
965 "match": "(?<![-_])(?i:System-Info|Terminal-Info)(?![0-9A-Za-z_-])",
966 "name": "support.type.cobol.acu strong"
967 },
968 {
969 "begin": "(?<![-_\\*])(?i:remarks)",
970 "beginCaptures": {
971 "0": {
972 "name": "keyword.cobol"
973 }
974 },
975 "name": "comment.2.block.cobol.remark",
976 "end": "(?i:end\\-remark|\\*{Bench}end|environment\\s+division|data\\s+division|working-storage\\s+section|file-control)",
977 "endCaptures": {
978 "0": {
979 "name": "keyword.cobol"
980 }
981 }
982 },
983 {
984 "match": "(?<![-_])(?i:alter)(?=\\s|\\.)",
985 "name": "invalid.illegal.cobol"
986 },
987 {
988 "match": "(?<![-_])(?i:apply|areas|area|clock-units|code|com-reg|controls|dbcs|destination|detail|display-1|ending|every|insert|kanjikey|last|left|less|limits|limit|memory|metaclass|modules|more-labels|multiple|native_binary|native|negative|number|numeric-edited|other|padding|password|pf|ph|postive|processing|queue|recording|reload|removal|rerun|reserve|reserved|rewind|segment-limit|segment|separate|sequence|skip1|skip2|skip3|standard-1|standard-2|sub-queue-1|sub-queue-2|sub-queue-3|sum|symbolic|synchronized|sync|table|test|text|than|top|trace|trailing|unit|words|write-only|at|basis|beginning|bottom|cbl|cf|ch|de|positive|egcs|egi|emi|end|reversed|rf|rh|run|same|order|heading|esi)(?![0-9A-Za-z_-])",
989 "name": "keyword.ibmreserved.cobol"
990 },
991 {
992 "match": "(?<![-_])(?i:active-class|aligned|anycase|boolean|cols|col|condition|ec|eo|system-default|function-pointer)(?![0-9A-Za-z_-])",
993 "name": "strong keyword.potential.reserved.cobol"
994 },
995 {
996 "match": "(?i:filler)",
997 "name": "keyword.filler.cobol"
998 },
999 {
1000 "match": "(?<![-_])(?i:address-of|date|day-of-week|day|debug-content|debug-item|debug-line|debug-item|debug-sub-1|debug-sub-2|debug-sub-3|shift-in|shift-out|sort-control|sort-core-size|sort-file-size|sort-message|sort-return|sort-mode-size|sort-return|tally|time|when-compiled|line-counter|page-counter|return-code|linage-counter|debug-line|debug-name|debug-contents|json-code|json-status|xml-code|xml-event|xml-information|xml-namespace-prefix|xml-namespace|xml-nnamespace-repfix|xml-nnamespace|xml-ntext|jnienvptr)(?![0-9A-Za-z_-])",
1001 "name": "variable.language"
1002 },
1003 {
1004 "match": "(?<![-_])(?i:shortint1|shortint2|shortint3|shortint4|shortint5|shortint6|shortint7|longint1|longint2|longint3|longint4|longint5|longint6|bigint1|bigint2|blob-locator|clob-locator|dbclob-locator|dbclob-file|blob-file|clob-file|clob|dbclob|blob|varbinary|long-varbinary|time-record|timestamp-record|timestamp-offset-record|timestamp-offset|timestamp|rowid|xml|long-varchar)(?=\\s|\\.|\\)|\\()",
1005 "name": "storage.type.sql.picture.cobol"
1006 },
1007 {
1008 "match": "(?<![-_])(?i:self)",
1009 "name": "keyword.other.self.cobol"
1010 },
1011 {
1012 "match": "(?<![-_])(?i:super)",
1013 "name": "keyword.other.super.cobol"
1014 },
1015 {
1016 "match": "(^[0-9][0-9][0-9][0-9][0-9][0-9])",
1017 "name": "constant.numeric.cobol"
1018 },
1019 {
1020 "match": "(\\()([0-9]*)(:)([0-9]*)(\\))",
1021 "captures": {
1022 "1": {
1023 "name": "meta.symbol.cobol"
1024 },
1025 "2": {
1026 "name": "constant.numeric.integer"
1027 },
1028 "3": {
1029 "name": "meta.symbol.cobol"
1030 },
1031 "4": {
1032 "name": "constant.numeric.integer"
1033 },
1034 "5": {
1035 "name": "meta.symbol.cobol"
1036 }
1037 }
1038 },
1039 {
1040 "match": "([a-zA-Z-0-9_]*[a-zA-Z0-9]|([#]?[0-9a-zA-Z]+[a-zA-Z-0-9_]*[a-zA-Z0-9]))",
1041 "name": "meta.symbol.cobol"
1042 }
1043 ],
1044 "repository": {
1045 "cics-keywords": {
1046 "match": "(?<![\\-\\w])(?i:abcode|abdump|abend|abort|abprogram|abstime|accum|acee|acqactivity|acqprocess|acquactivity|action|activity|activityid|actpartn|add|address|after|aid|alarm|all|allocate|alter|alternate|altscrnht|altscrnwd|and|anykey|aplkybd|apltext|applid|as|asa|asis|asktime|asraintrpt|asrakey|asrapsw|asraregs|asraspc|asrastg|assign|asynchronous|at|attach|attachid|attributes|authenticate|autopage|auxiliary|base64|basicauth|below|bif|binary|bit|bodycharset|bookmark|brdata|brdatalength|brexit|bridge|browsetoken|btrans|buffer|build|burgeability|caddrlength|cancel|card|cbuff|ccsid|certificate|change|changetime|channel|char|characterset|check|chunkend|chunking|chunkno|chunkyes|cicsdatakey|ciphers|class|clear|cliconvert|client|clientaddr|clientaddrnu|clientconv|clientname|clntaddr6nu|clntipfamily|close|closestatus|clrpartn|cmdsec|cnamelength|cnotcompl|codepage|color|commarea|commonname|commonnamlen|comparemax|comparemin|complete|composite|compstatus|condition|confirm|confirmation|connect|consistent|console|container|contexttype|control|convdata|converse|convertst|converttime|convid|copy|counter|country|countrylen|create|critical|ctlchar|current|cursor|cwa|cwaleng|data|data1|data2|datalength|datalenth|dataonly|datapointer|dataset|datastr|datatoxml|datatype|datcontainer|date|dateform|datesep|datestring|day|daycount|dayofmonth|dayofweek|dayofyear|days|daysleft|day-of-week|dcounter|ddmmyy|ddmmyyyy|debkey|debrec|debug-contents|debug-item|debug-line|debug-name|debug-sub-1|debug-sub-2|debug-sub-3|deedit|default|define|defresp|defscrnht|defscrnwd|delay|delete|deleteq|delimiter|deq|destcount|destid|destidleng|detail|detaillength|dfhresp|dfhvalue|digest|digesttype|disconnect|docdelete|docsize|docstatus|doctoken|document|ds3270|dsscs|dump|dumpcode|dumpid|duprec|ecaddr|ecblist|eib|elemname|elemnamelen|elemns|elemnslen|end|endactivity|endbr|endbrowse|endfile|endoutput|enq|enter|entry|entryname|eoc|eods|eprfield|eprfrom|eprinto|eprlength|eprset|eprtype|equal|erase|eraseaup|error|errterm|esmreason|esmresp|event|eventtype|eventual|ewasupp|exception|expect|expirytime|extds|external|extract|facility|facilitytokn|false|faultactlen|faultactor|faultcode|faultcodelen|faultcodestr|faultstring|faultstrlen|fci|fct|field|file|firestatus|flength|fmh|fmhparm|for|force|formattime|formfeed|formfield|free|freekb|freemain|from|fromactivity|fromccsid|fromchannel|fromcodepage|fromdoc|fromflength|fromlength|fromprocess|frset|fulldate|function|gchars|gcodes|gds|generic|get|getmain|getnext|gmmi|groupid|gtec|gteq|handle|head|header|hex|high-value|high-values|hilight|hold|honeom|host|hostcodepage|hostlength|hosttype|hours|httpheader|httpmethod|httprnum|httpversion|httpvnum|ignore|immediate|in|increment|initimg|initparm|initparmlen|inpartn|input|inputevent|inputmsg|inputmsglen|inquire|insert|integer|interval|into|intoccsid|intocodepage|invalidcount|invite|invmpsz|invoke|invokingprog|invpartn|invreq|issue|issuer|item|iutype|journalname|jtypeid|jusfirst|juslast|justify|katakana|keep|keylength|keynumber|l40|l64|l80|label|langinuse|languagecode|last|lastusetime|ldc|ldcmnem|ldcnum|leavekb|length|lengthlist|level|lightpen|linage-counter|line|lineaddr|line-counter|link|list|listlength|llid|load|locality|localitylen|logmessage|logmode|logonlogmode|logonmsg|low-value|low-values|luname|main|map|mapcolumn|mapfail|mapheight|mapline|maponly|mapped|mappingdev|mapset|mapwidth|massinsert|maxdatalen|maxflength|maximum|maxlength|maxlifetime|maxproclen|mcc|mediatype|message|messageid|metadata|metadatalen|method|methodlength|milliseconds|minimum|minutes|mmddyy|mmddyyyy|mode|modename|monitor|month|monthofyear|move|msr|msrcontrol|name|namelength|natlang|natlanginuse|netname|newpassword|newphrase|newphraselen|next|nexttransid|nleom|noautopage|nocc|nocheck|nocliconvert|noclose|nodata|node|nodocdelete|nodump|noedit|noflush|nohandle|noinconvert|none|nooutconert|noqueue|noquiesce|nosrvconvert|nosuspend|note|notpurgeable|notruncate|nowait|nscontainer|null|nulls|numciphers|numevents|numitems|numrec|numroutes|numsegments|numtab|of|oidcard|on|opclass|open|operation|operator|operid|operkeys|operpurge|opid|opsecurity|options|or|orgabcode|organization|organizatlen|orgunit|orgunitlen|outdescr|outline|outpartn|output|owner|pa1|pa2|pa3|page|pagenum|page-counter|paging|parse|partn|partner|partnfail|partnpage|partns|partnset|pass|passbk|password|passwordlen|path|pathlength|pct|pf1|pf10|pf11|pf12|pf13|pf14|pf15|pf16|pf17|pf18|pf19|pf2|pf20|pf21|pf22|pf23|pf24|pf3|pf4|pf5|pf6|pf7|pf8|pf9|pfxleng|phrase|phraselen|piplength|piplist|point|pool|pop|portnumber|portnumnu|post|ppt|predicate|prefix|prepare|princonvid|prinsysid|print|priority|privacy|process|processtype|proclength|procname|profile|program|protect|ps|punch|purge|purgeable|push|put|qname|query|queryparm|querystring|querystrlen|queue|quote|quotes|random|rba|rbn|rdatt|read|readnext|readprev|readq|reattach|receive|receiver|recfm|record|recordlen|recordlength|reduce|refparms|refparmslen|relatesindex|relatestype|relatesuri|release|remove|repeatable|repetable|replace|reply|replylength|reqid|requesttype|resclass|reset|resetbr|resid|residlength|resource|resp|resp2|ressec|restart|restype|result|resume|retain|retcode|retcord|retriece|retrieve|return|returnprog|return-code|rewind|rewrite|ridfld|role|rolelength|rollback|route|routecodes|rprocess|rresource|rrn|rtermid|rtransid|run|saddrlength|scheme|schemename|scope|scopelen|scrnht|scrnwd|seconds|security|segmentlist|send|sender|serialnum|serialnumlen|server|serveraddr|serveraddrnu|serverconv|servername|service|session|sesstoken|set|shared|shift-in|shift-out|sigdata|signal|signoff|signon|sit|snamelength|soapfault|sort-control|sort-core-size|sort-file-size|sort-message|sort-mode-size|sort-return|sosi|space|spaces|spoolclose|spoolopen|spoolread|spoolwrite|srvconvert|srvraddr6nu|srvripfamily|ssltype|start|startbr|startbrowse|startcode|state|statelen|stationid|status|statuscode|statuslen|statustext|storage|strfield|stringformat|subaddr|subcodelen|subcodestr|subevent|subevent1|subevent2|subevent3|subevent4|subevent5|subevent6|subevent7|subevent8|sum|suspend|suspstatus|symbol|symbollist|synchronous|synclevel|synconreturn|syncpoint|sysid|tables|tally|task|taskpriority|tcpip|tcpipservice|tct|tctua|tctualeng|td|tellerid|template|termcode|termid|terminal|termpriority|test|text|textkybd|textlength|textprint|time|timeout|timer|timesep|title|to|toactivity|tochannel|tocontainer|toflength|token|tolength|toprocess|trace|tracenum|trailer|tranpriority|transaction|transform|transid|trigger|trt|true|ts|twa|twaleng|type|typename|typenamelen|typens|typenslen|unattend|uncommitted|unescaped|unexpin|unlock|until|uow|update|uri|urimap|url|urllength|userdatakey|userid|username|usernamelen|userpriority|using|validation|value|valuelength|verify|versionlen|volume|volumeleng|wait|waitcics|web|when-compiled|wpmedia1|wpmedia2|wpmedia3|wpmedia4|wrap|write|writeq|wsacontext|wsaepr|xctl|xmlcontainer|xmltodata|xmltransform|xrba|year|yyddd|yyddmm|yymmdd|yyyyddd|yyyyddmm|yyyymmdd|zero|zeroes|zeros)(?![\\-\\w])",
1047 "name": "keyword.verb.cics"
1048 },
1049 "string-quoted-constant": {
1050 "begin": "'",
1051 "beginCaptures": {
1052 "0": {
1053 "name": "punctuation.definition.string.begin.cobol"
1054 }
1055 },
1056 "end": "('|$)",
1057 "endCaptures": {
1058 "0": {
1059 "name": "punctuation.definition.string.end.cobol"
1060 }
1061 },
1062 "name": "string.quoted.single.cobol"
1063 },
1064 "string-double-quoted-constant": {
1065 "begin": "\"",
1066 "beginCaptures": {
1067 "0": {
1068 "name": "punctuation.definition.string.begin.cobol"
1069 }
1070 },
1071 "end": "(\"|$)",
1072 "endCaptures": {
1073 "0": {
1074 "name": "punctuation.definition.string.end.cobol"
1075 }
1076 }
1077 },
1078 "number-complex-constant": {
1079 "match": "(\\-|\\+)?((([0-9]+(\\.[0-9]+))|(\\.[0-9]+))((e|E)(\\+|-)?[0-9]+)?)([LlFfUuDd]|UL|ul)?(?=\\s|\\.$|,|\\))",
1080 "name": "constant.numeric.cobol"
1081 },
1082 "number-simple-constant": {
1083 "match": "(\\-|\\+)?([0-9]+)(?=\\s|\\.$|,|\\))",
1084 "name": "constant.numeric.cobol"
1085 }
1086 },
1087 "scopeName": "source.cobol"
1088 }
1089