-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgolf.vim
executable file
·2177 lines (2177 loc) · 213 KB
/
golf.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
" Language: Golf
" Vim syntax file
" Maintainer: Gliim LLC
" Latest Revision: 2025-January-18
so $VIMRUNTIME/syntax/c.vim
syntax sync minlines=10000
hi def link golfConstruct Statement
hi def link golfClause Identifier
hi def link golfClauseOutput Type
hi def link gg_h_other Constant
hi def link Comment SpecialKey
syn region gg_r_inline_dot start="<<[[:space:]]*[\.]" skip="\\[[:space:]]*$" end=">>" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat contained containedin=gg_r_at keepend
syn match gg_h_print_inline_dot '<<[[:space:]]*[\.]' contained containedin=gg_r_inline_dot
syn match gg_h_print_inline_dot '>>' contained containedin=gg_r_inline_dot
hi def link gg_h_print_inline_dot golfConstruct
syn region gg_r_excl start="^[[:space:]]*[!]" skip="\\[[:space:]]*$" end="$" keepend
syn match gg_h_excl_begin '^[[:space:]]*[!]' contained containedin=gg_r_excl
hi def link gg_h_excl_begin golfConstruct
syn match gg_h_dot '^[[:space:]]*\.'
syn region gg_r_at start="^[[:space:]]*[@]" skip="\\[[:space:]]*$" end="$" keepend
syn match gg_h_at_begin '^[[:space:]]*[@]' contained containedin=gg_r_at
hi def link gg_h_at_begin golfConstruct
hi def link gg_h_dot golfConstruct
syn region gg_r_construct_end_read_line start="^[[:space:]]*end-read-line" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_end_read_line,gg_r_inline_end_read_line,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_end_read_line,gg_r_inline_end_read_line,gg_r_at
syn match gg_h_construct_end_read_line "^[[:space:]]*end-read-line" contained containedin=gg_r_construct_end_read_line
hi def link gg_h_clause_end_read_line golfClause
hi def link gg_h_clause_output_end_read_line golfClauseOutput
hi def link gg_h_construct_end_read_line golfConstruct
hi def link gg_h_print_inline_end_read_line golfConstruct
syn region gg_r_construct_read_line start="^[[:space:]]*read-line" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_read_line,gg_r_inline_read_line,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_read_line,gg_r_inline_read_line,gg_r_at
syn match gg_h_construct_read_line "^[[:space:]]*read-line" contained containedin=gg_r_construct_read_line
syn match gg_h_clause_read_line " delimiter \@=" contained containedin=gg_r_construct_read_line
syn match gg_h_clause_output_read_line " status \@=" contained containedin=gg_r_construct_read_line
syn match gg_h_clause_output_read_line " to \@=" contained containedin=gg_r_construct_read_line
hi def link gg_h_clause_read_line golfClause
hi def link gg_h_clause_output_read_line golfClauseOutput
hi def link gg_h_construct_read_line golfConstruct
hi def link gg_h_print_inline_read_line golfConstruct
syn region gg_r_construct_double_left_par start="^[[:space:]]*((" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_double_left_par,gg_r_inline_double_left_par,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_double_left_par,gg_r_inline_double_left_par,gg_r_at
syn match gg_h_construct_double_left_par "^[[:space:]]*((" contained containedin=gg_r_construct_double_left_par
hi def link gg_h_clause_double_left_par golfClause
hi def link gg_h_clause_output_double_left_par golfClauseOutput
hi def link gg_h_construct_double_left_par golfConstruct
hi def link gg_h_print_inline_double_left_par golfConstruct
syn region gg_r_construct_write_string start="^[[:space:]]*write-string" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_write_string,gg_r_inline_write_string,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_write_string,gg_r_inline_write_string,gg_r_at
syn match gg_h_construct_write_string "^[[:space:]]*write-string" contained containedin=gg_r_construct_write_string
hi def link gg_h_clause_write_string golfClause
hi def link gg_h_clause_output_write_string golfClauseOutput
hi def link gg_h_construct_write_string golfConstruct
hi def link gg_h_print_inline_write_string golfConstruct
syn region gg_r_construct_double_right_par start="^[[:space:]]*))" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_double_right_par,gg_r_inline_double_right_par,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_double_right_par,gg_r_inline_double_right_par,gg_r_at
syn match gg_h_construct_double_right_par "^[[:space:]]*))" contained containedin=gg_r_construct_double_right_par
syn match gg_h_clause_double_right_par " notrim \@=" contained containedin=gg_r_construct_double_right_par
syn match gg_h_clause_double_right_par " notrim,\@=" contained containedin=gg_r_construct_double_right_par
syn match gg_h_clause_double_right_par " notrim$" contained containedin=gg_r_construct_double_right_par
hi def link gg_h_clause_double_right_par golfClause
hi def link gg_h_clause_output_double_right_par golfClauseOutput
hi def link gg_h_construct_double_right_par golfConstruct
hi def link gg_h_print_inline_double_right_par golfConstruct
syn region gg_r_construct_end_write_string start="^[[:space:]]*end-write-string" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_end_write_string,gg_r_inline_end_write_string,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_end_write_string,gg_r_inline_end_write_string,gg_r_at
syn match gg_h_construct_end_write_string "^[[:space:]]*end-write-string" contained containedin=gg_r_construct_end_write_string
syn match gg_h_clause_end_write_string " notrim \@=" contained containedin=gg_r_construct_end_write_string
syn match gg_h_clause_end_write_string " notrim,\@=" contained containedin=gg_r_construct_end_write_string
syn match gg_h_clause_end_write_string " notrim$" contained containedin=gg_r_construct_end_write_string
hi def link gg_h_clause_end_write_string golfClause
hi def link gg_h_clause_output_end_write_string golfClauseOutput
hi def link gg_h_construct_end_write_string golfConstruct
hi def link gg_h_print_inline_end_write_string golfConstruct
syn region gg_r_construct_open_file start="^[[:space:]]*open-file" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_open_file,gg_r_inline_open_file,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_open_file,gg_r_inline_open_file,gg_r_at
syn match gg_h_construct_open_file "^[[:space:]]*open-file" contained containedin=gg_r_construct_open_file
syn match gg_h_clause_output_open_file " file-id \@=" contained containedin=gg_r_construct_open_file
syn match gg_h_clause_open_file " new-truncate \@=" contained containedin=gg_r_construct_open_file
syn match gg_h_clause_open_file " new-truncate,\@=" contained containedin=gg_r_construct_open_file
syn match gg_h_clause_open_file " new-truncate$" contained containedin=gg_r_construct_open_file
syn match gg_h_clause_output_open_file " status \@=" contained containedin=gg_r_construct_open_file
hi def link gg_h_clause_open_file golfClause
hi def link gg_h_clause_output_open_file golfClauseOutput
hi def link gg_h_construct_open_file golfConstruct
hi def link gg_h_print_inline_open_file golfConstruct
syn region gg_r_construct_close_file start="^[[:space:]]*close-file" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_close_file,gg_r_inline_close_file,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_close_file,gg_r_inline_close_file,gg_r_at
syn match gg_h_construct_close_file "^[[:space:]]*close-file" contained containedin=gg_r_construct_close_file
syn match gg_h_clause_close_file " file-id \@=" contained containedin=gg_r_construct_close_file
syn match gg_h_clause_output_close_file " status \@=" contained containedin=gg_r_construct_close_file
hi def link gg_h_clause_close_file golfClause
hi def link gg_h_clause_output_close_file golfClauseOutput
hi def link gg_h_construct_close_file golfConstruct
hi def link gg_h_print_inline_close_file golfConstruct
syn region gg_r_construct_file_position start="^[[:space:]]*file-position" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_file_position,gg_r_inline_file_position,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_file_position,gg_r_inline_file_position,gg_r_at
syn match gg_h_construct_file_position "^[[:space:]]*file-position" contained containedin=gg_r_construct_file_position
syn match gg_h_clause_file_position " file-id \@=" contained containedin=gg_r_construct_file_position
syn match gg_h_clause_output_file_position " get \@=" contained containedin=gg_r_construct_file_position
syn match gg_h_clause_file_position " set \@=" contained containedin=gg_r_construct_file_position
syn match gg_h_clause_output_file_position " status \@=" contained containedin=gg_r_construct_file_position
hi def link gg_h_clause_file_position golfClause
hi def link gg_h_clause_output_file_position golfClauseOutput
hi def link gg_h_construct_file_position golfConstruct
hi def link gg_h_print_inline_file_position golfConstruct
syn region gg_r_construct_exit_handler start="^[[:space:]]*exit-handler" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_exit_handler,gg_r_inline_exit_handler,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_exit_handler,gg_r_inline_exit_handler,gg_r_at
syn match gg_h_construct_exit_handler "^[[:space:]]*exit-handler" contained containedin=gg_r_construct_exit_handler
hi def link gg_h_clause_exit_handler golfClause
hi def link gg_h_clause_output_exit_handler golfClauseOutput
hi def link gg_h_construct_exit_handler golfConstruct
hi def link gg_h_print_inline_exit_handler golfConstruct
syn region gg_r_construct_return_handler start="^[[:space:]]*return-handler" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_return_handler,gg_r_inline_return_handler,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_return_handler,gg_r_inline_return_handler,gg_r_at
syn match gg_h_construct_return_handler "^[[:space:]]*return-handler" contained containedin=gg_r_construct_return_handler
hi def link gg_h_clause_return_handler golfClause
hi def link gg_h_clause_output_return_handler golfClauseOutput
hi def link gg_h_construct_return_handler golfConstruct
hi def link gg_h_print_inline_return_handler golfConstruct
syn region gg_r_construct_finish_output start="^[[:space:]]*finish-output" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_finish_output,gg_r_inline_finish_output,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_finish_output,gg_r_inline_finish_output,gg_r_at
syn match gg_h_construct_finish_output "^[[:space:]]*finish-output" contained containedin=gg_r_construct_finish_output
hi def link gg_h_clause_finish_output golfClause
hi def link gg_h_clause_output_finish_output golfClauseOutput
hi def link gg_h_construct_finish_output golfConstruct
hi def link gg_h_print_inline_finish_output golfConstruct
syn region gg_r_construct_copy_file start="^[[:space:]]*copy-file" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_copy_file,gg_r_inline_copy_file,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_copy_file,gg_r_inline_copy_file,gg_r_at
syn match gg_h_construct_copy_file "^[[:space:]]*copy-file" contained containedin=gg_r_construct_copy_file
syn match gg_h_clause_output_copy_file " status \@=" contained containedin=gg_r_construct_copy_file
syn match gg_h_clause_copy_file " to \@=" contained containedin=gg_r_construct_copy_file
hi def link gg_h_clause_copy_file golfClause
hi def link gg_h_clause_output_copy_file golfClauseOutput
hi def link gg_h_construct_copy_file golfConstruct
hi def link gg_h_print_inline_copy_file golfConstruct
syn region gg_r_construct_end_do_once start="^[[:space:]]*end-do-once" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_end_do_once,gg_r_inline_end_do_once,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_end_do_once,gg_r_inline_end_do_once,gg_r_at
syn match gg_h_construct_end_do_once "^[[:space:]]*end-do-once" contained containedin=gg_r_construct_end_do_once
hi def link gg_h_clause_end_do_once golfClause
hi def link gg_h_clause_output_end_do_once golfClauseOutput
hi def link gg_h_construct_end_do_once golfConstruct
hi def link gg_h_print_inline_end_do_once golfConstruct
syn region gg_r_construct_do_once start="^[[:space:]]*do-once" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_do_once,gg_r_inline_do_once,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_do_once,gg_r_inline_do_once,gg_r_at
syn match gg_h_construct_do_once "^[[:space:]]*do-once" contained containedin=gg_r_construct_do_once
hi def link gg_h_clause_do_once golfClause
hi def link gg_h_clause_output_do_once golfClauseOutput
hi def link gg_h_construct_do_once golfConstruct
hi def link gg_h_print_inline_do_once golfConstruct
syn region gg_r_construct_use_cursor start="^[[:space:]]*use-cursor" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_use_cursor,gg_r_inline_use_cursor,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_use_cursor,gg_r_inline_use_cursor,gg_r_at
syn match gg_h_construct_use_cursor "^[[:space:]]*use-cursor" contained containedin=gg_r_construct_use_cursor
syn match gg_h_clause_use_cursor " current \@=" contained containedin=gg_r_construct_use_cursor
syn match gg_h_clause_use_cursor " current,\@=" contained containedin=gg_r_construct_use_cursor
syn match gg_h_clause_use_cursor " current$" contained containedin=gg_r_construct_use_cursor
syn match gg_h_clause_use_cursor " get-greater \@=" contained containedin=gg_r_construct_use_cursor
syn match gg_h_clause_use_cursor " get-greater,\@=" contained containedin=gg_r_construct_use_cursor
syn match gg_h_clause_use_cursor " get-greater$" contained containedin=gg_r_construct_use_cursor
syn match gg_h_clause_use_cursor " get-lesser \@=" contained containedin=gg_r_construct_use_cursor
syn match gg_h_clause_use_cursor " get-lesser,\@=" contained containedin=gg_r_construct_use_cursor
syn match gg_h_clause_use_cursor " get-lesser$" contained containedin=gg_r_construct_use_cursor
syn match gg_h_clause_output_use_cursor " key \@=" contained containedin=gg_r_construct_use_cursor
syn match gg_h_clause_output_use_cursor " status \@=" contained containedin=gg_r_construct_use_cursor
syn match gg_h_clause_use_cursor " update-value \@=" contained containedin=gg_r_construct_use_cursor
syn match gg_h_clause_output_use_cursor " value \@=" contained containedin=gg_r_construct_use_cursor
hi def link gg_h_clause_use_cursor golfClause
hi def link gg_h_clause_output_use_cursor golfClauseOutput
hi def link gg_h_construct_use_cursor golfConstruct
hi def link gg_h_print_inline_use_cursor golfConstruct
syn region gg_r_construct_delete_index start="^[[:space:]]*delete-index" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_delete_index,gg_r_inline_delete_index,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_delete_index,gg_r_inline_delete_index,gg_r_at
syn match gg_h_construct_delete_index "^[[:space:]]*delete-index" contained containedin=gg_r_construct_delete_index
syn match gg_h_clause_delete_index " key \@=" contained containedin=gg_r_construct_delete_index
syn match gg_h_clause_output_delete_index " status \@=" contained containedin=gg_r_construct_delete_index
syn match gg_h_clause_output_delete_index " value \@=" contained containedin=gg_r_construct_delete_index
hi def link gg_h_clause_delete_index golfClause
hi def link gg_h_clause_output_delete_index golfClauseOutput
hi def link gg_h_construct_delete_index golfConstruct
hi def link gg_h_print_inline_delete_index golfConstruct
syn region gg_r_construct_read_index start="^[[:space:]]*read-index" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_read_index,gg_r_inline_read_index,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_read_index,gg_r_inline_read_index,gg_r_at
syn match gg_h_construct_read_index "^[[:space:]]*read-index" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_read_index " equal \@=" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_read_index " greater \@=" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_read_index " greater-equal \@=" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_output_read_index " key \@=" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_read_index " lesser \@=" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_read_index " lesser-equal \@=" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_read_index " max-key \@=" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_read_index " max-key,\@=" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_read_index " max-key$" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_read_index " min-key \@=" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_read_index " min-key,\@=" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_read_index " min-key$" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_output_read_index " new-cursor \@=" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_output_read_index " status \@=" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_read_index " update-value \@=" contained containedin=gg_r_construct_read_index
syn match gg_h_clause_output_read_index " value \@=" contained containedin=gg_r_construct_read_index
hi def link gg_h_clause_read_index golfClause
hi def link gg_h_clause_output_read_index golfClauseOutput
hi def link gg_h_construct_read_index golfConstruct
hi def link gg_h_print_inline_read_index golfConstruct
syn region gg_r_construct_write_index start="^[[:space:]]*write-index" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_write_index,gg_r_inline_write_index,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_write_index,gg_r_inline_write_index,gg_r_at
syn match gg_h_construct_write_index "^[[:space:]]*write-index" contained containedin=gg_r_construct_write_index
syn match gg_h_clause_write_index " key \@=" contained containedin=gg_r_construct_write_index
syn match gg_h_clause_output_write_index " new-cursor \@=" contained containedin=gg_r_construct_write_index
syn match gg_h_clause_output_write_index " status \@=" contained containedin=gg_r_construct_write_index
syn match gg_h_clause_write_index " value \@=" contained containedin=gg_r_construct_write_index
hi def link gg_h_clause_write_index golfClause
hi def link gg_h_clause_output_write_index golfClauseOutput
hi def link gg_h_construct_write_index golfConstruct
hi def link gg_h_print_inline_write_index golfConstruct
syn region gg_r_construct_purge_index start="^[[:space:]]*purge-index" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_purge_index,gg_r_inline_purge_index,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_purge_index,gg_r_inline_purge_index,gg_r_at
syn match gg_h_construct_purge_index "^[[:space:]]*purge-index" contained containedin=gg_r_construct_purge_index
hi def link gg_h_clause_purge_index golfClause
hi def link gg_h_clause_output_purge_index golfClauseOutput
hi def link gg_h_construct_purge_index golfConstruct
hi def link gg_h_print_inline_purge_index golfConstruct
syn region gg_r_construct_get_index start="^[[:space:]]*get-index" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_get_index,gg_r_inline_get_index,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_get_index,gg_r_inline_get_index,gg_r_at
syn match gg_h_construct_get_index "^[[:space:]]*get-index" contained containedin=gg_r_construct_get_index
syn match gg_h_clause_output_get_index " count \@=" contained containedin=gg_r_construct_get_index
syn match gg_h_clause_output_get_index " hops \@=" contained containedin=gg_r_construct_get_index
hi def link gg_h_clause_get_index golfClause
hi def link gg_h_clause_output_get_index golfClauseOutput
hi def link gg_h_construct_get_index golfConstruct
hi def link gg_h_print_inline_get_index golfConstruct
syn region gg_r_construct_get_list start="^[[:space:]]*get-list" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_get_list,gg_r_inline_get_list,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_get_list,gg_r_inline_get_list,gg_r_at
syn match gg_h_construct_get_list "^[[:space:]]*get-list" contained containedin=gg_r_construct_get_list
syn match gg_h_clause_output_get_list " count \@=" contained containedin=gg_r_construct_get_list
hi def link gg_h_clause_get_list golfClause
hi def link gg_h_clause_output_get_list golfClauseOutput
hi def link gg_h_construct_get_list golfConstruct
hi def link gg_h_print_inline_get_list golfConstruct
syn region gg_r_construct_new_index start="^[[:space:]]*new-index" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_new_index,gg_r_inline_new_index,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_new_index,gg_r_inline_new_index,gg_r_at
syn match gg_h_construct_new_index "^[[:space:]]*new-index" contained containedin=gg_r_construct_new_index
syn match gg_h_clause_new_index " key-as \@=" contained containedin=gg_r_construct_new_index
syn match gg_h_clause_new_index " process-scope \@=" contained containedin=gg_r_construct_new_index
syn match gg_h_clause_new_index " process-scope,\@=" contained containedin=gg_r_construct_new_index
syn match gg_h_clause_new_index " process-scope$" contained containedin=gg_r_construct_new_index
syn match gg_h_clause_new_index " unsorted \@=" contained containedin=gg_r_construct_new_index
syn match gg_h_clause_new_index " unsorted,\@=" contained containedin=gg_r_construct_new_index
syn match gg_h_clause_new_index " unsorted$" contained containedin=gg_r_construct_new_index
hi def link gg_h_clause_new_index golfClause
hi def link gg_h_clause_output_new_index golfClauseOutput
hi def link gg_h_construct_new_index golfConstruct
hi def link gg_h_print_inline_new_index golfConstruct
syn region gg_r_construct_json_doc start="^[[:space:]]*json-doc" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_json_doc,gg_r_inline_json_doc,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_json_doc,gg_r_inline_json_doc,gg_r_at
syn match gg_h_construct_json_doc "^[[:space:]]*json-doc" contained containedin=gg_r_construct_json_doc
syn match gg_h_clause_json_doc " delete \@=" contained containedin=gg_r_construct_json_doc
syn match gg_h_clause_output_json_doc " error-position \@=" contained containedin=gg_r_construct_json_doc
syn match gg_h_clause_output_json_doc " error-text \@=" contained containedin=gg_r_construct_json_doc
syn match gg_h_clause_json_doc " length \@=" contained containedin=gg_r_construct_json_doc
syn match gg_h_clause_json_doc " noencode \@=" contained containedin=gg_r_construct_json_doc
syn match gg_h_clause_json_doc " noencode,\@=" contained containedin=gg_r_construct_json_doc
syn match gg_h_clause_json_doc " noencode$" contained containedin=gg_r_construct_json_doc
syn match gg_h_clause_json_doc " no-enum \@=" contained containedin=gg_r_construct_json_doc
syn match gg_h_clause_json_doc " no-enum,\@=" contained containedin=gg_r_construct_json_doc
syn match gg_h_clause_json_doc " no-enum$" contained containedin=gg_r_construct_json_doc
syn match gg_h_clause_output_json_doc " status \@=" contained containedin=gg_r_construct_json_doc
syn match gg_h_clause_output_json_doc " to \@=" contained containedin=gg_r_construct_json_doc
hi def link gg_h_clause_json_doc golfClause
hi def link gg_h_clause_output_json_doc golfClauseOutput
hi def link gg_h_construct_json_doc golfConstruct
hi def link gg_h_print_inline_json_doc golfConstruct
syn region gg_r_construct_read_json start="^[[:space:]]*read-json" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_read_json,gg_r_inline_read_json,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_read_json,gg_r_inline_read_json,gg_r_at
syn match gg_h_construct_read_json "^[[:space:]]*read-json" contained containedin=gg_r_construct_read_json
syn match gg_h_clause_output_read_json " key \@=" contained containedin=gg_r_construct_read_json
syn match gg_h_clause_read_json " next \@=" contained containedin=gg_r_construct_read_json
syn match gg_h_clause_read_json " next,\@=" contained containedin=gg_r_construct_read_json
syn match gg_h_clause_read_json " next$" contained containedin=gg_r_construct_read_json
syn match gg_h_clause_output_read_json " type \@=" contained containedin=gg_r_construct_read_json
syn match gg_h_clause_output_read_json " value \@=" contained containedin=gg_r_construct_read_json
hi def link gg_h_clause_read_json golfClause
hi def link gg_h_clause_output_read_json golfClauseOutput
hi def link gg_h_construct_read_json golfConstruct
hi def link gg_h_print_inline_read_json golfConstruct
syn region gg_r_construct_read_set start="^[[:space:]]*read-set" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_read_set,gg_r_inline_read_set,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_read_set,gg_r_inline_read_set,gg_r_at
syn match gg_h_construct_read_set "^[[:space:]]*read-set" contained containedin=gg_r_construct_read_set
syn match gg_h_clause_read_set " begin \@=" contained containedin=gg_r_construct_read_set
syn match gg_h_clause_read_set " begin,\@=" contained containedin=gg_r_construct_read_set
syn match gg_h_clause_read_set " begin$" contained containedin=gg_r_construct_read_set
syn match gg_h_clause_read_set " delete \@=" contained containedin=gg_r_construct_read_set
syn match gg_h_clause_read_set " delete,\@=" contained containedin=gg_r_construct_read_set
syn match gg_h_clause_read_set " delete$" contained containedin=gg_r_construct_read_set
syn match gg_h_clause_output_read_set " key \@=" contained containedin=gg_r_construct_read_set
syn match gg_h_clause_output_read_set " status \@=" contained containedin=gg_r_construct_read_set
syn match gg_h_clause_read_set " traverse \@=" contained containedin=gg_r_construct_read_set
syn match gg_h_clause_read_set " traverse,\@=" contained containedin=gg_r_construct_read_set
syn match gg_h_clause_read_set " traverse$" contained containedin=gg_r_construct_read_set
syn match gg_h_clause_output_read_set " value \@=" contained containedin=gg_r_construct_read_set
hi def link gg_h_clause_read_set golfClause
hi def link gg_h_clause_output_read_set golfClauseOutput
hi def link gg_h_construct_read_set golfConstruct
hi def link gg_h_print_inline_read_set golfConstruct
syn region gg_r_construct_write_set start="^[[:space:]]*write-set" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_write_set,gg_r_inline_write_set,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_write_set,gg_r_inline_write_set,gg_r_at
syn match gg_h_construct_write_set "^[[:space:]]*write-set" contained containedin=gg_r_construct_write_set
syn match gg_h_clause_write_set " key \@=" contained containedin=gg_r_construct_write_set
syn match gg_h_clause_output_write_set " old-value \@=" contained containedin=gg_r_construct_write_set
syn match gg_h_clause_output_write_set " status \@=" contained containedin=gg_r_construct_write_set
syn match gg_h_clause_write_set " value \@=" contained containedin=gg_r_construct_write_set
hi def link gg_h_clause_write_set golfClause
hi def link gg_h_clause_output_write_set golfClauseOutput
hi def link gg_h_construct_write_set golfConstruct
hi def link gg_h_print_inline_write_set golfConstruct
syn region gg_r_construct_new_set start="^[[:space:]]*new-set" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_new_set,gg_r_inline_new_set,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_new_set,gg_r_inline_new_set,gg_r_at
syn match gg_h_construct_new_set "^[[:space:]]*new-set" contained containedin=gg_r_construct_new_set
syn match gg_h_clause_new_set " hash-size \@=" contained containedin=gg_r_construct_new_set
syn match gg_h_clause_new_set " process-scope \@=" contained containedin=gg_r_construct_new_set
syn match gg_h_clause_new_set " process-scope,\@=" contained containedin=gg_r_construct_new_set
syn match gg_h_clause_new_set " process-scope$" contained containedin=gg_r_construct_new_set
hi def link gg_h_clause_new_set golfClause
hi def link gg_h_clause_output_new_set golfClauseOutput
hi def link gg_h_construct_new_set golfConstruct
hi def link gg_h_print_inline_new_set golfConstruct
syn region gg_r_construct_resize_set start="^[[:space:]]*resize-set" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_resize_set,gg_r_inline_resize_set,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_resize_set,gg_r_inline_resize_set,gg_r_at
syn match gg_h_construct_resize_set "^[[:space:]]*resize-set" contained containedin=gg_r_construct_resize_set
syn match gg_h_clause_resize_set " hash-size \@=" contained containedin=gg_r_construct_resize_set
hi def link gg_h_clause_resize_set golfClause
hi def link gg_h_clause_output_resize_set golfClauseOutput
hi def link gg_h_construct_resize_set golfConstruct
hi def link gg_h_print_inline_resize_set golfConstruct
syn region gg_r_construct_purge_set start="^[[:space:]]*purge-set" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_purge_set,gg_r_inline_purge_set,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_purge_set,gg_r_inline_purge_set,gg_r_at
syn match gg_h_construct_purge_set "^[[:space:]]*purge-set" contained containedin=gg_r_construct_purge_set
hi def link gg_h_clause_purge_set golfClause
hi def link gg_h_clause_output_purge_set golfClauseOutput
hi def link gg_h_construct_purge_set golfConstruct
hi def link gg_h_print_inline_purge_set golfConstruct
syn region gg_r_construct_get_set start="^[[:space:]]*get-set" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_get_set,gg_r_inline_get_set,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_get_set,gg_r_inline_get_set,gg_r_at
syn match gg_h_construct_get_set "^[[:space:]]*get-set" contained containedin=gg_r_construct_get_set
syn match gg_h_clause_output_get_set " average-reads \@=" contained containedin=gg_r_construct_get_set
syn match gg_h_clause_output_get_set " hash-size \@=" contained containedin=gg_r_construct_get_set
syn match gg_h_clause_output_get_set " length \@=" contained containedin=gg_r_construct_get_set
hi def link gg_h_clause_get_set golfClause
hi def link gg_h_clause_output_get_set golfClauseOutput
hi def link gg_h_construct_get_set golfConstruct
hi def link gg_h_print_inline_get_set golfConstruct
syn region gg_r_construct_read_file start="^[[:space:]]*read-file" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_read_file,gg_r_inline_read_file,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_read_file,gg_r_inline_read_file,gg_r_at
syn match gg_h_construct_read_file "^[[:space:]]*read-file" contained containedin=gg_r_construct_read_file
syn match gg_h_clause_read_file " file-id \@=" contained containedin=gg_r_construct_read_file
syn match gg_h_clause_read_file " length \@=" contained containedin=gg_r_construct_read_file
syn match gg_h_clause_read_file " position \@=" contained containedin=gg_r_construct_read_file
syn match gg_h_clause_output_read_file " status \@=" contained containedin=gg_r_construct_read_file
syn match gg_h_clause_output_read_file " to \@=" contained containedin=gg_r_construct_read_file
hi def link gg_h_clause_read_file golfClause
hi def link gg_h_clause_output_read_file golfClauseOutput
hi def link gg_h_construct_read_file golfConstruct
hi def link gg_h_print_inline_read_file golfConstruct
syn region gg_r_construct_write_file start="^[[:space:]]*write-file" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_write_file,gg_r_inline_write_file,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_write_file,gg_r_inline_write_file,gg_r_at
syn match gg_h_construct_write_file "^[[:space:]]*write-file" contained containedin=gg_r_construct_write_file
syn match gg_h_clause_write_file " append \@=" contained containedin=gg_r_construct_write_file
syn match gg_h_clause_write_file " append,\@=" contained containedin=gg_r_construct_write_file
syn match gg_h_clause_write_file " append$" contained containedin=gg_r_construct_write_file
syn match gg_h_clause_write_file " file-id \@=" contained containedin=gg_r_construct_write_file
syn match gg_h_clause_write_file " from \@=" contained containedin=gg_r_construct_write_file
syn match gg_h_clause_write_file " length \@=" contained containedin=gg_r_construct_write_file
syn match gg_h_clause_write_file " position \@=" contained containedin=gg_r_construct_write_file
syn match gg_h_clause_output_write_file " status \@=" contained containedin=gg_r_construct_write_file
hi def link gg_h_clause_write_file golfClause
hi def link gg_h_clause_output_write_file golfClauseOutput
hi def link gg_h_construct_write_file golfConstruct
hi def link gg_h_print_inline_write_file golfConstruct
syn region gg_r_construct_read_lifo start="^[[:space:]]*read-lifo" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_read_lifo,gg_r_inline_read_lifo,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_read_lifo,gg_r_inline_read_lifo,gg_r_at
syn match gg_h_construct_read_lifo "^[[:space:]]*read-lifo" contained containedin=gg_r_construct_read_lifo
syn match gg_h_clause_output_read_lifo " key \@=" contained containedin=gg_r_construct_read_lifo
syn match gg_h_clause_output_read_lifo " status \@=" contained containedin=gg_r_construct_read_lifo
syn match gg_h_clause_output_read_lifo " value \@=" contained containedin=gg_r_construct_read_lifo
hi def link gg_h_clause_read_lifo golfClause
hi def link gg_h_clause_output_read_lifo golfClauseOutput
hi def link gg_h_construct_read_lifo golfConstruct
hi def link gg_h_print_inline_read_lifo golfConstruct
syn region gg_r_construct_read_fifo start="^[[:space:]]*read-fifo" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_read_fifo,gg_r_inline_read_fifo,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_read_fifo,gg_r_inline_read_fifo,gg_r_at
syn match gg_h_construct_read_fifo "^[[:space:]]*read-fifo" contained containedin=gg_r_construct_read_fifo
syn match gg_h_clause_output_read_fifo " key \@=" contained containedin=gg_r_construct_read_fifo
syn match gg_h_clause_output_read_fifo " status \@=" contained containedin=gg_r_construct_read_fifo
syn match gg_h_clause_output_read_fifo " value \@=" contained containedin=gg_r_construct_read_fifo
hi def link gg_h_clause_read_fifo golfClause
hi def link gg_h_clause_output_read_fifo golfClauseOutput
hi def link gg_h_construct_read_fifo golfConstruct
hi def link gg_h_print_inline_read_fifo golfConstruct
syn region gg_r_construct_purge_lifo start="^[[:space:]]*purge-lifo" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_purge_lifo,gg_r_inline_purge_lifo,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_purge_lifo,gg_r_inline_purge_lifo,gg_r_at
syn match gg_h_construct_purge_lifo "^[[:space:]]*purge-lifo" contained containedin=gg_r_construct_purge_lifo
hi def link gg_h_clause_purge_lifo golfClause
hi def link gg_h_clause_output_purge_lifo golfClauseOutput
hi def link gg_h_construct_purge_lifo golfConstruct
hi def link gg_h_print_inline_purge_lifo golfConstruct
syn region gg_r_construct_purge_fifo start="^[[:space:]]*purge-fifo" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_purge_fifo,gg_r_inline_purge_fifo,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_purge_fifo,gg_r_inline_purge_fifo,gg_r_at
syn match gg_h_construct_purge_fifo "^[[:space:]]*purge-fifo" contained containedin=gg_r_construct_purge_fifo
hi def link gg_h_clause_purge_fifo golfClause
hi def link gg_h_clause_output_purge_fifo golfClauseOutput
hi def link gg_h_construct_purge_fifo golfConstruct
hi def link gg_h_print_inline_purge_fifo golfConstruct
syn region gg_r_construct_delete_lifo start="^[[:space:]]*delete-lifo" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_delete_lifo,gg_r_inline_delete_lifo,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_delete_lifo,gg_r_inline_delete_lifo,gg_r_at
syn match gg_h_construct_delete_lifo "^[[:space:]]*delete-lifo" contained containedin=gg_r_construct_delete_lifo
hi def link gg_h_clause_delete_lifo golfClause
hi def link gg_h_clause_output_delete_lifo golfClauseOutput
hi def link gg_h_construct_delete_lifo golfConstruct
hi def link gg_h_print_inline_delete_lifo golfConstruct
syn region gg_r_construct_delete_fifo start="^[[:space:]]*delete-fifo" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_delete_fifo,gg_r_inline_delete_fifo,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_delete_fifo,gg_r_inline_delete_fifo,gg_r_at
syn match gg_h_construct_delete_fifo "^[[:space:]]*delete-fifo" contained containedin=gg_r_construct_delete_fifo
hi def link gg_h_clause_delete_fifo golfClause
hi def link gg_h_clause_output_delete_fifo golfClauseOutput
hi def link gg_h_construct_delete_fifo golfConstruct
hi def link gg_h_print_inline_delete_fifo golfConstruct
syn region gg_r_construct_rewind_lifo start="^[[:space:]]*rewind-lifo" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_rewind_lifo,gg_r_inline_rewind_lifo,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_rewind_lifo,gg_r_inline_rewind_lifo,gg_r_at
syn match gg_h_construct_rewind_lifo "^[[:space:]]*rewind-lifo" contained containedin=gg_r_construct_rewind_lifo
hi def link gg_h_clause_rewind_lifo golfClause
hi def link gg_h_clause_output_rewind_lifo golfClauseOutput
hi def link gg_h_construct_rewind_lifo golfConstruct
hi def link gg_h_print_inline_rewind_lifo golfConstruct
syn region gg_r_construct_rewind_fifo start="^[[:space:]]*rewind-fifo" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_rewind_fifo,gg_r_inline_rewind_fifo,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_rewind_fifo,gg_r_inline_rewind_fifo,gg_r_at
syn match gg_h_construct_rewind_fifo "^[[:space:]]*rewind-fifo" contained containedin=gg_r_construct_rewind_fifo
hi def link gg_h_clause_rewind_fifo golfClause
hi def link gg_h_clause_output_rewind_fifo golfClauseOutput
hi def link gg_h_construct_rewind_fifo golfConstruct
hi def link gg_h_print_inline_rewind_fifo golfConstruct
syn region gg_r_construct_write_lifo start="^[[:space:]]*write-lifo" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_write_lifo,gg_r_inline_write_lifo,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_write_lifo,gg_r_inline_write_lifo,gg_r_at
syn match gg_h_construct_write_lifo "^[[:space:]]*write-lifo" contained containedin=gg_r_construct_write_lifo
syn match gg_h_clause_write_lifo " key \@=" contained containedin=gg_r_construct_write_lifo
syn match gg_h_clause_write_lifo " value \@=" contained containedin=gg_r_construct_write_lifo
hi def link gg_h_clause_write_lifo golfClause
hi def link gg_h_clause_output_write_lifo golfClauseOutput
hi def link gg_h_construct_write_lifo golfConstruct
hi def link gg_h_print_inline_write_lifo golfConstruct
syn region gg_r_construct_write_fifo start="^[[:space:]]*write-fifo" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_write_fifo,gg_r_inline_write_fifo,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_write_fifo,gg_r_inline_write_fifo,gg_r_at
syn match gg_h_construct_write_fifo "^[[:space:]]*write-fifo" contained containedin=gg_r_construct_write_fifo
syn match gg_h_clause_write_fifo " key \@=" contained containedin=gg_r_construct_write_fifo
syn match gg_h_clause_write_fifo " value \@=" contained containedin=gg_r_construct_write_fifo
hi def link gg_h_clause_write_fifo golfClause
hi def link gg_h_clause_output_write_fifo golfClauseOutput
hi def link gg_h_construct_write_fifo golfConstruct
hi def link gg_h_print_inline_write_fifo golfConstruct
syn region gg_r_construct_new_lifo start="^[[:space:]]*new-lifo" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_new_lifo,gg_r_inline_new_lifo,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_new_lifo,gg_r_inline_new_lifo,gg_r_at
syn match gg_h_construct_new_lifo "^[[:space:]]*new-lifo" contained containedin=gg_r_construct_new_lifo
hi def link gg_h_clause_new_lifo golfClause
hi def link gg_h_clause_output_new_lifo golfClauseOutput
hi def link gg_h_construct_new_lifo golfConstruct
hi def link gg_h_print_inline_new_lifo golfConstruct
syn region gg_r_construct_new_fifo start="^[[:space:]]*new-fifo" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_new_fifo,gg_r_inline_new_fifo,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_new_fifo,gg_r_inline_new_fifo,gg_r_at
syn match gg_h_construct_new_fifo "^[[:space:]]*new-fifo" contained containedin=gg_r_construct_new_fifo
hi def link gg_h_clause_new_fifo golfClause
hi def link gg_h_clause_output_new_fifo golfClauseOutput
hi def link gg_h_construct_new_fifo golfConstruct
hi def link gg_h_print_inline_new_fifo golfConstruct
syn region gg_r_construct_delete_list start="^[[:space:]]*delete-list" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_delete_list,gg_r_inline_delete_list,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_delete_list,gg_r_inline_delete_list,gg_r_at
syn match gg_h_construct_delete_list "^[[:space:]]*delete-list" contained containedin=gg_r_construct_delete_list
syn match gg_h_clause_output_delete_list " status \@=" contained containedin=gg_r_construct_delete_list
hi def link gg_h_clause_delete_list golfClause
hi def link gg_h_clause_output_delete_list golfClauseOutput
hi def link gg_h_construct_delete_list golfConstruct
hi def link gg_h_print_inline_delete_list golfConstruct
syn region gg_r_construct_purge_list start="^[[:space:]]*purge-list" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_purge_list,gg_r_inline_purge_list,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_purge_list,gg_r_inline_purge_list,gg_r_at
syn match gg_h_construct_purge_list "^[[:space:]]*purge-list" contained containedin=gg_r_construct_purge_list
hi def link gg_h_clause_purge_list golfClause
hi def link gg_h_clause_output_purge_list golfClauseOutput
hi def link gg_h_construct_purge_list golfConstruct
hi def link gg_h_print_inline_purge_list golfConstruct
syn region gg_r_construct_position_list start="^[[:space:]]*position-list" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_position_list,gg_r_inline_position_list,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_position_list,gg_r_inline_position_list,gg_r_at
syn match gg_h_construct_position_list "^[[:space:]]*position-list" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " end \@=" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " end,\@=" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " end$" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " first \@=" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " first,\@=" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " first$" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " last \@=" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " last,\@=" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " last$" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " next \@=" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " next,\@=" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " next$" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " previous \@=" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " previous,\@=" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_position_list " previous$" contained containedin=gg_r_construct_position_list
syn match gg_h_clause_output_position_list " status \@=" contained containedin=gg_r_construct_position_list
hi def link gg_h_clause_position_list golfClause
hi def link gg_h_clause_output_position_list golfClauseOutput
hi def link gg_h_construct_position_list golfConstruct
hi def link gg_h_print_inline_position_list golfConstruct
syn region gg_r_construct_read_list start="^[[:space:]]*read-list" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_read_list,gg_r_inline_read_list,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_read_list,gg_r_inline_read_list,gg_r_at
syn match gg_h_construct_read_list "^[[:space:]]*read-list" contained containedin=gg_r_construct_read_list
syn match gg_h_clause_output_read_list " key \@=" contained containedin=gg_r_construct_read_list
syn match gg_h_clause_output_read_list " status \@=" contained containedin=gg_r_construct_read_list
syn match gg_h_clause_read_list " update-key \@=" contained containedin=gg_r_construct_read_list
syn match gg_h_clause_read_list " update-value \@=" contained containedin=gg_r_construct_read_list
syn match gg_h_clause_output_read_list " value \@=" contained containedin=gg_r_construct_read_list
hi def link gg_h_clause_read_list golfClause
hi def link gg_h_clause_output_read_list golfClauseOutput
hi def link gg_h_construct_read_list golfConstruct
hi def link gg_h_print_inline_read_list golfConstruct
syn region gg_r_construct_write_list start="^[[:space:]]*write-list" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_write_list,gg_r_inline_write_list,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_write_list,gg_r_inline_write_list,gg_r_at
syn match gg_h_construct_write_list "^[[:space:]]*write-list" contained containedin=gg_r_construct_write_list
syn match gg_h_clause_write_list " append \@=" contained containedin=gg_r_construct_write_list
syn match gg_h_clause_write_list " append,\@=" contained containedin=gg_r_construct_write_list
syn match gg_h_clause_write_list " append$" contained containedin=gg_r_construct_write_list
syn match gg_h_clause_write_list " key \@=" contained containedin=gg_r_construct_write_list
syn match gg_h_clause_write_list " value \@=" contained containedin=gg_r_construct_write_list
hi def link gg_h_clause_write_list golfClause
hi def link gg_h_clause_output_write_list golfClauseOutput
hi def link gg_h_construct_write_list golfConstruct
hi def link gg_h_print_inline_write_list golfConstruct
syn region gg_r_construct_new_list start="^[[:space:]]*new-list" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_new_list,gg_r_inline_new_list,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_new_list,gg_r_inline_new_list,gg_r_at
syn match gg_h_construct_new_list "^[[:space:]]*new-list" contained containedin=gg_r_construct_new_list
syn match gg_h_clause_new_list " process-scope \@=" contained containedin=gg_r_construct_new_list
syn match gg_h_clause_new_list " process-scope,\@=" contained containedin=gg_r_construct_new_list
syn match gg_h_clause_new_list " process-scope$" contained containedin=gg_r_construct_new_list
hi def link gg_h_clause_new_list golfClause
hi def link gg_h_clause_output_new_list golfClauseOutput
hi def link gg_h_construct_new_list golfConstruct
hi def link gg_h_print_inline_new_list golfConstruct
syn region gg_r_construct_unused_var start="^[[:space:]]*unused-var" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_unused_var,gg_r_inline_unused_var,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_unused_var,gg_r_inline_unused_var,gg_r_at
syn match gg_h_construct_unused_var "^[[:space:]]*unused-var" contained containedin=gg_r_construct_unused_var
hi def link gg_h_clause_unused_var golfClause
hi def link gg_h_clause_output_unused_var golfClauseOutput
hi def link gg_h_construct_unused_var golfConstruct
hi def link gg_h_print_inline_unused_var golfConstruct
syn region gg_r_construct_split_string start="^[[:space:]]*split-string" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_split_string,gg_r_inline_split_string,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_split_string,gg_r_inline_split_string,gg_r_at
syn match gg_h_construct_split_string "^[[:space:]]*split-string" contained containedin=gg_r_construct_split_string
syn match gg_h_clause_output_split_string " count \@=" contained containedin=gg_r_construct_split_string
syn match gg_h_clause_split_string " delete \@=" contained containedin=gg_r_construct_split_string
syn match gg_h_clause_output_split_string " to \@=" contained containedin=gg_r_construct_split_string
syn match gg_h_clause_split_string " with \@=" contained containedin=gg_r_construct_split_string
hi def link gg_h_clause_split_string golfClause
hi def link gg_h_clause_output_split_string golfClauseOutput
hi def link gg_h_construct_split_string golfConstruct
hi def link gg_h_print_inline_split_string golfConstruct
syn region gg_r_construct_read_split start="^[[:space:]]*read-split" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_read_split,gg_r_inline_read_split,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_read_split,gg_r_inline_read_split,gg_r_at
syn match gg_h_construct_read_split "^[[:space:]]*read-split" contained containedin=gg_r_construct_read_split
syn match gg_h_clause_read_split " from \@=" contained containedin=gg_r_construct_read_split
syn match gg_h_clause_output_read_split " status \@=" contained containedin=gg_r_construct_read_split
syn match gg_h_clause_output_read_split " to \@=" contained containedin=gg_r_construct_read_split
hi def link gg_h_clause_read_split golfClause
hi def link gg_h_clause_output_read_split golfClauseOutput
hi def link gg_h_construct_read_split golfConstruct
hi def link gg_h_print_inline_read_split golfConstruct
syn region gg_r_construct_new_message start="^[[:space:]]*new-message" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_new_message,gg_r_inline_new_message,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_new_message,gg_r_inline_new_message,gg_r_at
syn match gg_h_construct_new_message "^[[:space:]]*new-message" contained containedin=gg_r_construct_new_message
syn match gg_h_clause_new_message " from \@=" contained containedin=gg_r_construct_new_message
hi def link gg_h_clause_new_message golfClause
hi def link gg_h_clause_output_new_message golfClauseOutput
hi def link gg_h_construct_new_message golfConstruct
hi def link gg_h_print_inline_new_message golfConstruct
syn region gg_r_construct_get_message start="^[[:space:]]*get-message" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_get_message,gg_r_inline_get_message,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_get_message,gg_r_inline_get_message,gg_r_at
syn match gg_h_construct_get_message "^[[:space:]]*get-message" contained containedin=gg_r_construct_get_message
syn match gg_h_clause_output_get_message " to \@=" contained containedin=gg_r_construct_get_message
hi def link gg_h_clause_get_message golfClause
hi def link gg_h_clause_output_get_message golfClauseOutput
hi def link gg_h_construct_get_message golfConstruct
hi def link gg_h_print_inline_get_message golfConstruct
syn region gg_r_construct_read_message start="^[[:space:]]*read-message" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_read_message,gg_r_inline_read_message,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_read_message,gg_r_inline_read_message,gg_r_at
syn match gg_h_construct_read_message "^[[:space:]]*read-message" contained containedin=gg_r_construct_read_message
syn match gg_h_clause_output_read_message " key \@=" contained containedin=gg_r_construct_read_message
syn match gg_h_clause_output_read_message " status \@=" contained containedin=gg_r_construct_read_message
syn match gg_h_clause_output_read_message " value \@=" contained containedin=gg_r_construct_read_message
hi def link gg_h_clause_read_message golfClause
hi def link gg_h_clause_output_read_message golfClauseOutput
hi def link gg_h_construct_read_message golfConstruct
hi def link gg_h_print_inline_read_message golfConstruct
syn region gg_r_construct_write_message start="^[[:space:]]*write-message" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_write_message,gg_r_inline_write_message,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_write_message,gg_r_inline_write_message,gg_r_at
syn match gg_h_construct_write_message "^[[:space:]]*write-message" contained containedin=gg_r_construct_write_message
syn match gg_h_clause_write_message " key \@=" contained containedin=gg_r_construct_write_message
syn match gg_h_clause_write_message " value \@=" contained containedin=gg_r_construct_write_message
hi def link gg_h_clause_write_message golfClause
hi def link gg_h_clause_output_write_message golfClauseOutput
hi def link gg_h_construct_write_message golfConstruct
hi def link gg_h_print_inline_write_message golfConstruct
syn region gg_r_construct_delete_string start="^[[:space:]]*delete-string" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_delete_string,gg_r_inline_delete_string,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_delete_string,gg_r_inline_delete_string,gg_r_at
syn match gg_h_construct_delete_string "^[[:space:]]*delete-string" contained containedin=gg_r_construct_delete_string
hi def link gg_h_clause_delete_string golfClause
hi def link gg_h_clause_output_delete_string golfClauseOutput
hi def link gg_h_construct_delete_string golfConstruct
hi def link gg_h_print_inline_delete_string golfConstruct
syn region gg_r_construct_end_if start="^[[:space:]]*end-if" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_end_if,gg_r_inline_end_if,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_end_if,gg_r_inline_end_if,gg_r_at
syn match gg_h_construct_end_if "^[[:space:]]*end-if" contained containedin=gg_r_construct_end_if
hi def link gg_h_clause_end_if golfClause
hi def link gg_h_clause_output_end_if golfClauseOutput
hi def link gg_h_construct_end_if golfConstruct
hi def link gg_h_print_inline_end_if golfConstruct
syn region gg_r_construct_else_if start="^[[:space:]]*else-if" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_else_if,gg_r_inline_else_if,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_else_if,gg_r_inline_else_if,gg_r_at
syn match gg_h_construct_else_if "^[[:space:]]*else-if" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " and \@=" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " case-insensitive \@=" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " case-insensitive,\@=" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " case-insensitive$" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " contain \@=" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " equal \@=" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " every \@=" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " greater-equal \@=" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " greater-than \@=" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " length \@=" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " lesser-equal \@=" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " lesser-than \@=" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " not-contain \@=" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " not-equal \@=" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " not-every \@=" contained containedin=gg_r_construct_else_if
syn match gg_h_clause_else_if " or \@=" contained containedin=gg_r_construct_else_if
hi def link gg_h_clause_else_if golfClause
hi def link gg_h_clause_output_else_if golfClauseOutput
hi def link gg_h_construct_else_if golfConstruct
hi def link gg_h_print_inline_else_if golfConstruct
syn region gg_r_construct_if_true start="^[[:space:]]*if-true" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_if_true,gg_r_inline_if_true,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_if_true,gg_r_inline_if_true,gg_r_at
syn match gg_h_construct_if_true "^[[:space:]]*if-true" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " and \@=" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " case-insensitive \@=" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " case-insensitive,\@=" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " case-insensitive$" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " contain \@=" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " equal \@=" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " every \@=" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " greater-equal \@=" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " greater-than \@=" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " length \@=" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " lesser-equal \@=" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " lesser-than \@=" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " not-contain \@=" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " not-equal \@=" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " not-every \@=" contained containedin=gg_r_construct_if_true
syn match gg_h_clause_if_true " or \@=" contained containedin=gg_r_construct_if_true
hi def link gg_h_clause_if_true golfClause
hi def link gg_h_clause_output_if_true golfClauseOutput
hi def link gg_h_construct_if_true golfConstruct
hi def link gg_h_print_inline_if_true golfConstruct
syn region gg_r_construct_set_string start="^[[:space:]]*set-string" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_set_string,gg_r_inline_set_string,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_set_string,gg_r_inline_set_string,gg_r_at
syn match gg_h_construct_set_string "^[[:space:]]*set-string" contained containedin=gg_r_construct_set_string
syn match gg_h_clause_set_string " process-scope \@=" contained containedin=gg_r_construct_set_string
syn match gg_h_clause_set_string " process-scope,\@=" contained containedin=gg_r_construct_set_string
syn match gg_h_clause_set_string " process-scope$" contained containedin=gg_r_construct_set_string
syn match gg_h_clause_set_string " unquoted \@=" contained containedin=gg_r_construct_set_string
syn match gg_h_clause_set_string " unquoted,\@=" contained containedin=gg_r_construct_set_string
syn match gg_h_clause_set_string " unquoted$" contained containedin=gg_r_construct_set_string
hi def link gg_h_clause_set_string golfClause
hi def link gg_h_clause_output_set_string golfClauseOutput
hi def link gg_h_construct_set_string golfConstruct
hi def link gg_h_print_inline_set_string golfConstruct
syn region gg_r_construct_set_number start="^[[:space:]]*set-number" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_set_number,gg_r_inline_set_number,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_set_number,gg_r_inline_set_number,gg_r_at
syn match gg_h_construct_set_number "^[[:space:]]*set-number" contained containedin=gg_r_construct_set_number
syn match gg_h_clause_set_number " process-scope \@=" contained containedin=gg_r_construct_set_number
syn match gg_h_clause_set_number " process-scope,\@=" contained containedin=gg_r_construct_set_number
syn match gg_h_clause_set_number " process-scope$" contained containedin=gg_r_construct_set_number
hi def link gg_h_clause_set_number golfClause
hi def link gg_h_clause_output_set_number golfClauseOutput
hi def link gg_h_construct_set_number golfConstruct
hi def link gg_h_print_inline_set_number golfConstruct
syn region gg_r_construct_set_bool start="^[[:space:]]*set-bool" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_set_bool,gg_r_inline_set_bool,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_set_bool,gg_r_inline_set_bool,gg_r_at
syn match gg_h_construct_set_bool "^[[:space:]]*set-bool" contained containedin=gg_r_construct_set_bool
syn match gg_h_clause_set_bool " process-scope \@=" contained containedin=gg_r_construct_set_bool
syn match gg_h_clause_set_bool " process-scope,\@=" contained containedin=gg_r_construct_set_bool
syn match gg_h_clause_set_bool " process-scope$" contained containedin=gg_r_construct_set_bool
hi def link gg_h_clause_set_bool golfClause
hi def link gg_h_clause_output_set_bool golfClauseOutput
hi def link gg_h_construct_set_bool golfConstruct
hi def link gg_h_print_inline_set_bool golfConstruct
syn region gg_r_construct___ start="^[[:space:]]*%%" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct___,gg_r_inline___,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct___,gg_r_inline___,gg_r_at
syn match gg_h_construct___ "^[[:space:]]*%%" contained containedin=gg_r_construct___
syn match gg_h_clause___ " private \@=" contained containedin=gg_r_construct___
syn match gg_h_clause___ " private,\@=" contained containedin=gg_r_construct___
syn match gg_h_clause___ " private$" contained containedin=gg_r_construct___
syn match gg_h_clause___ " public \@=" contained containedin=gg_r_construct___
syn match gg_h_clause___ " public,\@=" contained containedin=gg_r_construct___
syn match gg_h_clause___ " public$" contained containedin=gg_r_construct___
hi def link gg_h_clause___ golfClause
hi def link gg_h_clause_output___ golfClauseOutput
hi def link gg_h_construct___ golfConstruct
hi def link gg_h_print_inline___ golfConstruct
syn region gg_r_construct_begin_handler start="^[[:space:]]*begin-handler" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_begin_handler,gg_r_inline_begin_handler,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_begin_handler,gg_r_inline_begin_handler,gg_r_at
syn match gg_h_construct_begin_handler "^[[:space:]]*begin-handler" contained containedin=gg_r_construct_begin_handler
syn match gg_h_clause_begin_handler " private \@=" contained containedin=gg_r_construct_begin_handler
syn match gg_h_clause_begin_handler " private,\@=" contained containedin=gg_r_construct_begin_handler
syn match gg_h_clause_begin_handler " private$" contained containedin=gg_r_construct_begin_handler
syn match gg_h_clause_begin_handler " public \@=" contained containedin=gg_r_construct_begin_handler
syn match gg_h_clause_begin_handler " public,\@=" contained containedin=gg_r_construct_begin_handler
syn match gg_h_clause_begin_handler " public$" contained containedin=gg_r_construct_begin_handler
hi def link gg_h_clause_begin_handler golfClause
hi def link gg_h_clause_output_begin_handler golfClauseOutput
hi def link gg_h_construct_begin_handler golfConstruct
hi def link gg_h_print_inline_begin_handler golfConstruct
syn region gg_r_construct_end_before_handler start="^[[:space:]]*end-before-handler" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_end_before_handler,gg_r_inline_end_before_handler,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_end_before_handler,gg_r_inline_end_before_handler,gg_r_at
syn match gg_h_construct_end_before_handler "^[[:space:]]*end-before-handler" contained containedin=gg_r_construct_end_before_handler
hi def link gg_h_clause_end_before_handler golfClause
hi def link gg_h_clause_output_end_before_handler golfClauseOutput
hi def link gg_h_construct_end_before_handler golfConstruct
hi def link gg_h_print_inline_end_before_handler golfConstruct
syn region gg_r_construct_end_after_handler start="^[[:space:]]*end-after-handler" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_end_after_handler,gg_r_inline_end_after_handler,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_end_after_handler,gg_r_inline_end_after_handler,gg_r_at
syn match gg_h_construct_end_after_handler "^[[:space:]]*end-after-handler" contained containedin=gg_r_construct_end_after_handler
hi def link gg_h_clause_end_after_handler golfClause
hi def link gg_h_clause_output_end_after_handler golfClauseOutput
hi def link gg_h_construct_end_after_handler golfConstruct
hi def link gg_h_print_inline_end_after_handler golfConstruct
syn region gg_r_construct_before_handler start="^[[:space:]]*before-handler" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_before_handler,gg_r_inline_before_handler,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_before_handler,gg_r_inline_before_handler,gg_r_at
syn match gg_h_construct_before_handler "^[[:space:]]*before-handler" contained containedin=gg_r_construct_before_handler
hi def link gg_h_clause_before_handler golfClause
hi def link gg_h_clause_output_before_handler golfClauseOutput
hi def link gg_h_construct_before_handler golfConstruct
hi def link gg_h_print_inline_before_handler golfConstruct
syn region gg_r_construct_after_handler start="^[[:space:]]*after-handler" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_after_handler,gg_r_inline_after_handler,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_after_handler,gg_r_inline_after_handler,gg_r_at
syn match gg_h_construct_after_handler "^[[:space:]]*after-handler" contained containedin=gg_r_construct_after_handler
hi def link gg_h_clause_after_handler golfClause
hi def link gg_h_clause_output_after_handler golfClauseOutput
hi def link gg_h_construct_after_handler golfConstruct
hi def link gg_h_print_inline_after_handler golfConstruct
syn region gg_r_construct_end_handler start="^[[:space:]]*end-handler" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_end_handler,gg_r_inline_end_handler,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_end_handler,gg_r_inline_end_handler,gg_r_at
syn match gg_h_construct_end_handler "^[[:space:]]*end-handler" contained containedin=gg_r_construct_end_handler
hi def link gg_h_clause_end_handler golfClause
hi def link gg_h_clause_output_end_handler golfClauseOutput
hi def link gg_h_construct_end_handler golfConstruct
hi def link gg_h_print_inline_end_handler golfConstruct
syn region gg_r_construct_set_param start="^[[:space:]]*set-param" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_set_param,gg_r_inline_set_param,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_set_param,gg_r_inline_set_param,gg_r_at
syn match gg_h_construct_set_param "^[[:space:]]*set-param" contained containedin=gg_r_construct_set_param
syn match gg_h_clause_set_param " , \@=" contained containedin=gg_r_construct_set_param
syn match gg_h_clause_set_param " ,,\@=" contained containedin=gg_r_construct_set_param
syn match gg_h_clause_set_param " ,$" contained containedin=gg_r_construct_set_param
hi def link gg_h_clause_set_param golfClause
hi def link gg_h_clause_output_set_param golfClauseOutput
hi def link gg_h_construct_set_param golfConstruct
hi def link gg_h_print_inline_set_param golfConstruct
syn region gg_r_construct_get_param start="^[[:space:]]*get-param" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_get_param,gg_r_inline_get_param,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_get_param,gg_r_inline_get_param,gg_r_at
syn match gg_h_construct_get_param "^[[:space:]]*get-param" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " , \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " ,,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " ,$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " bool \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " bool,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " bool$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " encrypt-decrypt \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " encrypt-decrypt,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " encrypt-decrypt$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " fifo \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " fifo,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " fifo$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " file \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " file,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " file$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " array \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " array,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " array$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " lifo \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " lifo,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " lifo$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " list \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " list,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " list$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " message \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " message,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " message$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " number \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " number,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " number$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " service \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " service,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " service$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " split-string \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " split-string,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " split-string$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " string \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " string,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " string$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " index \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " index,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " index$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " index-cursor \@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " index-cursor,\@=" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " index-cursor$" contained containedin=gg_r_construct_get_param
syn match gg_h_clause_get_param " type \@=" contained containedin=gg_r_construct_get_param
hi def link gg_h_clause_get_param golfClause
hi def link gg_h_clause_output_get_param golfClauseOutput
hi def link gg_h_construct_get_param golfConstruct
hi def link gg_h_print_inline_get_param golfConstruct
syn region gg_r_construct_get_cookie start="^[[:space:]]*get-cookie" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_get_cookie,gg_r_inline_get_cookie,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_get_cookie,gg_r_inline_get_cookie,gg_r_at
syn match gg_h_construct_get_cookie "^[[:space:]]*get-cookie" contained containedin=gg_r_construct_get_cookie
syn match gg_h_clause_get_cookie " , \@=" contained containedin=gg_r_construct_get_cookie
syn match gg_h_clause_get_cookie " ,,\@=" contained containedin=gg_r_construct_get_cookie
syn match gg_h_clause_get_cookie " ,$" contained containedin=gg_r_construct_get_cookie
hi def link gg_h_clause_get_cookie golfClause
hi def link gg_h_clause_output_get_cookie golfClauseOutput
hi def link gg_h_construct_get_cookie golfConstruct
hi def link gg_h_print_inline_get_cookie golfConstruct
syn region gg_r_construct_set_cookie start="^[[:space:]]*set-cookie" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_set_cookie,gg_r_inline_set_cookie,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_set_cookie,gg_r_inline_set_cookie,gg_r_at
syn match gg_h_construct_set_cookie "^[[:space:]]*set-cookie" contained containedin=gg_r_construct_set_cookie
syn match gg_h_clause_set_cookie " , \@=" contained containedin=gg_r_construct_set_cookie
syn match gg_h_clause_set_cookie " ,,\@=" contained containedin=gg_r_construct_set_cookie
syn match gg_h_clause_set_cookie " ,$" contained containedin=gg_r_construct_set_cookie
syn match gg_h_clause_set_cookie " expires \@=" contained containedin=gg_r_construct_set_cookie
syn match gg_h_clause_set_cookie " no-http-only \@=" contained containedin=gg_r_construct_set_cookie
syn match gg_h_clause_set_cookie " no-http-only,\@=" contained containedin=gg_r_construct_set_cookie
syn match gg_h_clause_set_cookie " no-http-only$" contained containedin=gg_r_construct_set_cookie
syn match gg_h_clause_set_cookie " path \@=" contained containedin=gg_r_construct_set_cookie
syn match gg_h_clause_set_cookie " same-site \@=" contained containedin=gg_r_construct_set_cookie
syn match gg_h_clause_set_cookie " secure \@=" contained containedin=gg_r_construct_set_cookie
syn match gg_h_clause_set_cookie " secure,\@=" contained containedin=gg_r_construct_set_cookie
syn match gg_h_clause_set_cookie " secure$" contained containedin=gg_r_construct_set_cookie
hi def link gg_h_clause_set_cookie golfClause
hi def link gg_h_clause_output_set_cookie golfClauseOutput
hi def link gg_h_construct_set_cookie golfConstruct
hi def link gg_h_print_inline_set_cookie golfConstruct
syn region gg_r_construct_request_body start="^[[:space:]]*request-body" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_request_body,gg_r_inline_request_body,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_request_body,gg_r_inline_request_body,gg_r_at
syn match gg_h_construct_request_body "^[[:space:]]*request-body" contained containedin=gg_r_construct_request_body
hi def link gg_h_clause_request_body golfClause
hi def link gg_h_clause_output_request_body golfClauseOutput
hi def link gg_h_construct_request_body golfConstruct
hi def link gg_h_print_inline_request_body golfConstruct
syn region gg_r_construct_delete_cookie start="^[[:space:]]*delete-cookie" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_delete_cookie,gg_r_inline_delete_cookie,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_delete_cookie,gg_r_inline_delete_cookie,gg_r_at
syn match gg_h_construct_delete_cookie "^[[:space:]]*delete-cookie" contained containedin=gg_r_construct_delete_cookie
syn match gg_h_clause_delete_cookie " path \@=" contained containedin=gg_r_construct_delete_cookie
syn match gg_h_clause_delete_cookie " secure \@=" contained containedin=gg_r_construct_delete_cookie
syn match gg_h_clause_delete_cookie " secure,\@=" contained containedin=gg_r_construct_delete_cookie
syn match gg_h_clause_delete_cookie " secure$" contained containedin=gg_r_construct_delete_cookie
syn match gg_h_clause_output_delete_cookie " status \@=" contained containedin=gg_r_construct_delete_cookie
hi def link gg_h_clause_delete_cookie golfClause
hi def link gg_h_clause_output_delete_cookie golfClauseOutput
hi def link gg_h_construct_delete_cookie golfConstruct
hi def link gg_h_print_inline_delete_cookie golfConstruct
syn region gg_r_construct_copy_string start="^[[:space:]]*copy-string" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_copy_string,gg_r_inline_copy_string,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_copy_string,gg_r_inline_copy_string,gg_r_at
syn match gg_h_construct_copy_string "^[[:space:]]*copy-string" contained containedin=gg_r_construct_copy_string
syn match gg_h_clause_copy_string " length \@=" contained containedin=gg_r_construct_copy_string
syn match gg_h_clause_copy_string " start-with \@=" contained containedin=gg_r_construct_copy_string
syn match gg_h_clause_output_copy_string " to \@=" contained containedin=gg_r_construct_copy_string
hi def link gg_h_clause_copy_string golfClause
hi def link gg_h_clause_output_copy_string golfClauseOutput
hi def link gg_h_construct_copy_string golfConstruct
hi def link gg_h_print_inline_copy_string golfConstruct
syn region gg_r_construct_replace_string start="^[[:space:]]*replace-string" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_replace_string,gg_r_inline_replace_string,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_replace_string,gg_r_inline_replace_string,gg_r_at
syn match gg_h_construct_replace_string "^[[:space:]]*replace-string" contained containedin=gg_r_construct_replace_string
syn match gg_h_clause_replace_string " copy \@=" contained containedin=gg_r_construct_replace_string
syn match gg_h_clause_replace_string " copy-end \@=" contained containedin=gg_r_construct_replace_string
syn match gg_h_clause_replace_string " length \@=" contained containedin=gg_r_construct_replace_string
syn match gg_h_clause_replace_string " start-with \@=" contained containedin=gg_r_construct_replace_string
hi def link gg_h_clause_replace_string golfClause
hi def link gg_h_clause_output_replace_string golfClauseOutput
hi def link gg_h_construct_replace_string golfConstruct
hi def link gg_h_print_inline_replace_string golfConstruct
syn region gg_r_construct_pf_url start="^[[:space:]]*pf-url" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_pf_url,gg_r_inline_pf_url,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_pf_url,gg_r_inline_pf_url,gg_r_at
syn match gg_h_construct_pf_url "^[[:space:]]*pf-url" contained containedin=gg_r_construct_pf_url
syn match gg_h_clause_pf_url " , \@=" contained containedin=gg_r_construct_pf_url
syn match gg_h_clause_pf_url " ,,\@=" contained containedin=gg_r_construct_pf_url
syn match gg_h_clause_pf_url " ,$" contained containedin=gg_r_construct_pf_url
syn match gg_h_print_inline_pf_url " ,\(>>\)\@=" contained containedin=gg_r_inline_pf_url
syn match gg_h_print_inline_pf_url " , \@=" contained containedin=gg_r_inline_pf_url
syn match gg_h_clause_output_pf_url " to \@=" contained containedin=gg_r_construct_pf_url
syn match gg_h_print_inline_pf_url " to \@=" contained containedin=gg_r_inline_pf_url
syn match gg_h_clause_pf_url " to-error \@=" contained containedin=gg_r_construct_pf_url
syn match gg_h_clause_pf_url " to-error,\@=" contained containedin=gg_r_construct_pf_url
syn match gg_h_clause_pf_url " to-error$" contained containedin=gg_r_construct_pf_url
syn match gg_h_print_inline_pf_url " to-error\(>>\)\@=" contained containedin=gg_r_inline_pf_url
syn match gg_h_print_inline_pf_url " to-error \@=" contained containedin=gg_r_inline_pf_url
syn region gg_r_inline_pf_url start="<<[[:space:]]*pf-url \@=" skip="\\[[:space:]]*$" end=">>" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat contained containedin=gg_r_at keepend
syn match gg_h_print_inline_pf_url '<<[[:space:]]*pf-url \@=' contained containedin=gg_r_inline_pf_url
syn match gg_h_print_inline_pf_url '>>' contained containedin=gg_r_inline_pf_url
hi def link gg_h_clause_pf_url golfClause
hi def link gg_h_clause_output_pf_url golfClauseOutput
hi def link gg_h_construct_pf_url golfConstruct
hi def link gg_h_print_inline_pf_url golfConstruct
syn region gg_r_construct_trace_run start="^[[:space:]]*trace-run" skip="\\[[:space:]]*$" end="$" contains=cString,cNumbers,cOperator,cType,cConstant,cFormat,cComment,cCommentL keepend
syn match gg_h_other_var '[_a-zA-Z][_a-zA-Z0-9]\+' contained containedin=gg_r_construct_trace_run,gg_r_inline_trace_run,gg_r_at
syn match gg_h_other '[0-9]\+' contained containedin=gg_r_construct_trace_run,gg_r_inline_trace_run,gg_r_at
syn match gg_h_construct_trace_run "^[[:space:]]*trace-run" contained containedin=gg_r_construct_trace_run
syn match gg_h_clause_trace_run " , \@=" contained containedin=gg_r_construct_trace_run