forked from texstudio-org/texstudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
completion.qrc
2519 lines (2519 loc) · 94.2 KB
/
completion.qrc
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
<RCC>
<qresource prefix="/">
<file>completion/12many.cwl</file>
<file>completion/2up.cwl</file>
<file>completion/abc.cwl</file>
<file>completion/abntcite.cwl</file>
<file>completion/aboensis.cwl</file>
<file>completion/abraces.cwl</file>
<file>completion/abstract.cwl</file>
<file>completion/academicons.cwl</file>
<file>completion/accanthis.cwl</file>
<file>completion/accents.cwl</file>
<file>completion/accsupp.cwl</file>
<file>completion/Acorn.cwl</file>
<file>completion/acro.cwl</file>
<file>completion/acronym.cwl</file>
<file>completion/actcodes.cwl</file>
<file>completion/actuarialangle.cwl</file>
<file>completion/actuarialsymbol.cwl</file>
<file>completion/addfont.cwl</file>
<file>completion/addlines.cwl</file>
<file>completion/adfarrows.cwl</file>
<file>completion/adfbullets.cwl</file>
<file>completion/adforn.cwl</file>
<file>completion/adigraph.cwl</file>
<file>completion/adjcalc.cwl</file>
<file>completion/adjmulticol.cwl</file>
<file>completion/adjustbox.cwl</file>
<file>completion/adobecaslon.cwl</file>
<file>completion/adtrees.cwl</file>
<file>completion/ae.cwl</file>
<file>completion/aeguill.cwl</file>
<file>completion/aesupp.cwl</file>
<file>completion/afterpackage.cwl</file>
<file>completion/afterpage.cwl</file>
<file>completion/Alegreya.cwl</file>
<file>completion/AlegreyaSans.cwl</file>
<file>completion/alertmessage.cwl</file>
<file>completion/alfaslabone.cwl</file>
<file>completion/algc.cwl</file>
<file>completion/algcompatible.cwl</file>
<file>completion/algmatlab.cwl</file>
<file>completion/algobox.cwl</file>
<file>completion/algolrevived.cwl</file>
<file>completion/algorithm2e.cwl</file>
<file>completion/algorithm.cwl</file>
<file>completion/algorithmic.cwl</file>
<file>completion/algorithmicx.cwl</file>
<file>completion/algpascal.cwl</file>
<file>completion/algpseudocode.cwl</file>
<file>completion/algpseudocodex.cwl</file>
<file>completion/algxpar.cwl</file>
<file>completion/aliascnt.cwl</file>
<file>completion/allauncl.cwl</file>
<file>completion/allcmin.cwl</file>
<file>completion/allegoth.cwl</file>
<file>completion/allimaj.cwl</file>
<file>completion/allimin.cwl</file>
<file>completion/allpgoth.cwl</file>
<file>completion/allrtnd.cwl</file>
<file>completion/allrunes.cwl</file>
<file>completion/allrust.cwl</file>
<file>completion/allsqrc.cwl</file>
<file>completion/alltgoth.cwl</file>
<file>completion/alltt.cwl</file>
<file>completion/almendra.cwl</file>
<file>completion/alphabeta.cwl</file>
<file>completion/alphalph.cwl</file>
<file>completion/alterqcm.cwl</file>
<file>completion/altfont.cwl</file>
<file>completion/altsubsup.cwl</file>
<file>completion/amsbsy.cwl</file>
<file>completion/amscd.cwl</file>
<file>completion/amscdx.cwl</file>
<file>completion/amsfonts.cwl</file>
<file>completion/amsmath.cwl</file>
<file>completion/ams-mdbch.cwl</file>
<file>completion/amsopn.cwl</file>
<file>completion/amssymb.cwl</file>
<file>completion/amstext.cwl</file>
<file>completion/amsthm.cwl</file>
<file>completion/andika.cwl</file>
<file>completion/animate.cwl</file>
<file>completion/annee-scolaire.cwl</file>
<file>completion/AnnSton.cwl</file>
<file>completion/anonchap.cwl</file>
<file>completion/anonymous-acm.cwl</file>
<file>completion/AnonymousPro.cwl</file>
<file>completion/answers.cwl</file>
<file>completion/antanilipsum.cwl</file>
<file>completion/antpolt.cwl</file>
<file>completion/anttor.cwl</file>
<file>completion/appendix.cwl</file>
<file>completion/appendixnumberbeamer.cwl</file>
<file>completion/apptools.cwl</file>
<file>completion/apxproof.cwl</file>
<file>completion/aramaic.cwl</file>
<file>completion/Archivo.cwl</file>
<file>completion/ar.cwl</file>
<file>completion/arev.cwl</file>
<file>completion/arevmath.cwl</file>
<file>completion/arevtext.cwl</file>
<file>completion/arimo.cwl</file>
<file>completion/arraycols.cwl</file>
<file>completion/array.cwl</file>
<file>completion/arrayjobx.cwl</file>
<file>completion/arraysort.cwl</file>
<file>completion/arsclassica.cwl</file>
<file>completion/ArtNouvc.cwl</file>
<file>completion/ArtNouv.cwl</file>
<file>completion/Arvo.cwl</file>
<file>completion/arydshln.cwl</file>
<file>completion/asapsym.cwl</file>
<file>completion/ascii.cwl</file>
<file>completion/asciilist.cwl</file>
<file>completion/askinclude.cwl</file>
<file>completion/askmaps.cwl</file>
<file>completion/association-matrix.cwl</file>
<file>completion/asyalign.cwl</file>
<file>completion/asycolors.cwl</file>
<file>completion/asyfig.cwl</file>
<file>completion/asymptote.cwl</file>
<file>completion/asypictureB.cwl</file>
<file>completion/asyprocess.cwl</file>
<file>completion/atendofenv.cwl</file>
<file>completion/athnum.cwl</file>
<file>completion/atkinson.cwl</file>
<file>completion/attachfile2.cwl</file>
<file>completion/attachfile.cwl</file>
<file>completion/atveryend.cwl</file>
<file>completion/auncial.cwl</file>
<file>completion/aurical.cwl</file>
<file>completion/aurl.cwl</file>
<file>completion/authblk.cwl</file>
<file>completion/authoraftertitle.cwl</file>
<file>completion/authorarchive.cwl</file>
<file>completion/autoaligne.cwl</file>
<file>completion/autobreak.cwl</file>
<file>completion/autopdf.cwl</file>
<file>completion/auto-pst-pdf.cwl</file>
<file>completion/auto-pst-pdf-lua.cwl</file>
<file>completion/autopuncitems.cwl</file>
<file>completion/auxhook.cwl</file>
<file>completion/avremu.cwl</file>
<file>completion/awesomebox.cwl</file>
<file>completion/axessibility.cwl</file>
<file>completion/axodraw2.cwl</file>
<file>completion/babel.cwl</file>
<file>completion/babyloniannum.cwl</file>
<file>completion/background.cwl</file>
<file>completion/backnaur.cwl</file>
<file>completion/backref.cwl</file>
<file>completion/balance.cwl</file>
<file>completion/barracuda.cwl</file>
<file>completion/bashful.cwl</file>
<file>completion/basicarith.cwl</file>
<file>completion/baskervald.cwl</file>
<file>completion/Baskervaldx.cwl</file>
<file>completion/baskervillef.cwl</file>
<file>completion/basque-date.cwl</file>
<file>completion/bbding.cwl</file>
<file>completion/bbm.cwl</file>
<file>completion/bbold.cwl</file>
<file>completion/bboldx.cwl</file>
<file>completion/bchart.cwl</file>
<file>completion/bclogo.cwl</file>
<file>completion/beamerappendixnote.cwl</file>
<file>completion/beamerarticle.cwl</file>
<file>completion/beameraudience.cwl</file>
<file>completion/beamerbasearticle.cwl</file>
<file>completion/beamerbaseauxtemplates.cwl</file>
<file>completion/beamerbaseboxes.cwl</file>
<file>completion/beamerbasecolor.cwl</file>
<file>completion/beamerbasecompatibility.cwl</file>
<file>completion/beamerbasefont.cwl</file>
<file>completion/beamerbaseframecomponents.cwl</file>
<file>completion/beamerbaseframe.cwl</file>
<file>completion/beamerbaseframesize.cwl</file>
<file>completion/beamerbaselocalstructure.cwl</file>
<file>completion/beamerbasemisc.cwl</file>
<file>completion/beamerbasemodes.cwl</file>
<file>completion/beamerbasenavigation.cwl</file>
<file>completion/beamerbasenotes.cwl</file>
<file>completion/beamerbaseoptions.cwl</file>
<file>completion/beamerbaseoverlay.cwl</file>
<file>completion/beamerbaserequires.cwl</file>
<file>completion/beamerbasesection.cwl</file>
<file>completion/beamerbasetemplates.cwl</file>
<file>completion/beamerbasethemes.cwl</file>
<file>completion/beamerbasetheorems.cwl</file>
<file>completion/beamerbasetitle.cwl</file>
<file>completion/beamerbasetoc.cwl</file>
<file>completion/beamerbasetranslator.cwl</file>
<file>completion/beamerbasetwoscreens.cwl</file>
<file>completion/beamerbaseverbatim.cwl</file>
<file>completion/beamerfoils.cwl</file>
<file>completion/beamerposter.cwl</file>
<file>completion/beamerprosper.cwl</file>
<file>completion/beamerseminar.cwl</file>
<file>completion/beamersubframe.cwl</file>
<file>completion/beamertexpower.cwl</file>
<file>completion/beamerthemeArguelles.cwl</file>
<file>completion/beamerthemeBergen.cwl</file>
<file>completion/beamerthemeBerkeley.cwl</file>
<file>completion/beamerthemeBerlin.cwl</file>
<file>completion/beamerthemeBerlinFU.cwl</file>
<file>completion/beamerthemeBFH.cwl</file>
<file>completion/beamerthemeBoadilla.cwl</file>
<file>completion/beamerthemeboxes.cwl</file>
<file>completion/beamerthemeCambridgeUS.cwl</file>
<file>completion/beamerthemeCuerna.cwl</file>
<file>completion/beamerthemeDetlevCM.cwl</file>
<file>completion/beamerthemeDresden.cwl</file>
<file>completion/beamerthemeEastLansing.cwl</file>
<file>completion/beamerthemeepyt.cwl</file>
<file>completion/beamerthemeFhG.cwl</file>
<file>completion/beamerthemefocus.cwl</file>
<file>completion/beamerthemeGoettingen.cwl</file>
<file>completion/beamerthemeHannover.cwl</file>
<file>completion/beamerthemeHeavenlyClouds.cwl</file>
<file>completion/beamerthemehitszbeamer.cwl</file>
<file>completion/beamerthemehohenheim.cwl</file>
<file>completion/beamerthemeIlmenau.cwl</file>
<file>completion/beamerthemelalic.cwl</file>
<file>completion/beamertheme-light.cwl</file>
<file>completion/beamerthemeMadrid.cwl</file>
<file>completion/beamerthemeMarburg.cwl</file>
<file>completion/beamerthememetropolis.cwl</file>
<file>completion/beamerthemeNord.cwl</file>
<file>completion/beamerthemePaloAlto.cwl</file>
<file>completion/beamerthemepureminimalistic.cwl</file>
<file>completion/beamerthemeRochester.cwl</file>
<file>completion/beamerthemeSaintPetersburg.cwl</file>
<file>completion/beamerthemesidebar.cwl</file>
<file>completion/beamerthemeSimpleDarkBlue.cwl</file>
<file>completion/beamerthemeSingapore.cwl</file>
<file>completion/beamerthemeSzeged.cwl</file>
<file>completion/beamerthemetamu.cwl</file>
<file>completion/beamerthemethubeamer.cwl</file>
<file>completion/beamerthemeTorinoTh.cwl</file>
<file>completion/beamerthemetree.cwl</file>
<file>completion/beamerthemetrigon.cwl</file>
<file>completion/beamerthemeTUDa.cwl</file>
<file>completion/beamerthemeVerona.cwl</file>
<file>completion/beamerthemeXiaoshan.cwl</file>
<file>completion/bearwear.cwl</file>
<file>completion/begingreek.cwl</file>
<file>completion/begriff.cwl</file>
<file>completion/bera.cwl</file>
<file>completion/beramono.cwl</file>
<file>completion/berasans.cwl</file>
<file>completion/beraserif.cwl</file>
<file>completion/berenis.cwl</file>
<file>completion/beton.cwl</file>
<file>completion/beuron.cwl</file>
<file>completion/bezierplot.cwl</file>
<file>completion/bfhcolors.cwl</file>
<file>completion/bfhfonts.cwl</file>
<file>completion/bguq.cwl</file>
<file>completion/bibentry.cwl</file>
<file>completion/biblatex2bibitem.cwl</file>
<file>completion/biblatex.cwl</file>
<file>completion/bibleref.cwl</file>
<file>completion/bibleref-mouth.cwl</file>
<file>completion/bibleref-parse.cwl</file>
<file>completion/bibletext.cwl</file>
<file>completion/bibunits.cwl</file>
<file>completion/bicaption.cwl</file>
<file>completion/bickham.cwl</file>
<file>completion/bidi-atbegshi.cwl</file>
<file>completion/bidicontour.cwl</file>
<file>completion/bidi.cwl</file>
<file>completion/bidihl.cwl</file>
<file>completion/bidishadowtext.cwl</file>
<file>completion/bigdelim.cwl</file>
<file>completion/bigintcalc.cwl</file>
<file>completion/bigints.cwl</file>
<file>completion/bigstrut.cwl</file>
<file>completion/binarytree.cwl</file>
<file>completion/biochemistry-colors.cwl</file>
<file>completion/biolinum.cwl</file>
<file>completion/bitpattern.cwl</file>
<file>completion/bitset.cwl</file>
<file>completion/bitter.cwl</file>
<file>completion/blindtext.cwl</file>
<file>completion/blkarray.cwl</file>
<file>completion/blochsphere.cwl</file>
<file>completion/bloques.cwl</file>
<file>completion/blowup.cwl</file>
<file>completion/blox.cwl</file>
<file>completion/bm.cwl</file>
<file>completion/bmpsize-base.cwl</file>
<file>completion/bmpsize.cwl</file>
<file>completion/bnumexpr.cwl</file>
<file>completion/bodegraph.cwl</file>
<file>completion/bohr.cwl</file>
<file>completion/boisik.cwl</file>
<file>completion/boites.cwl</file>
<file>completion/boites_exemples.cwl</file>
<file>completion/boldline.cwl</file>
<file>completion/bondgraph.cwl</file>
<file>completion/bondgraphs.cwl</file>
<file>completion/bookmark.cwl</file>
<file>completion/booktabs.cwl</file>
<file>completion/boolexpr.cwl</file>
<file>completion/BOONDOX-cal.cwl</file>
<file>completion/BOONDOX-calo.cwl</file>
<file>completion/BOONDOX-ds.cwl</file>
<file>completion/BOONDOX-frak.cwl</file>
<file>completion/BOONDOX-uprscr.cwl</file>
<file>completion/bophook.cwl</file>
<file>completion/boxedminipage.cwl</file>
<file>completion/boxhandler.cwl</file>
<file>completion/boxit.cwl</file>
<file>completion/bracketkey.cwl</file>
<file>completion/braille.cwl</file>
<file>completion/braket.cwl</file>
<file>completion/breakurl.cwl</file>
<file>completion/bredzenie.cwl</file>
<file>completion/breqn.cwl</file>
<file>completion/bropd.cwl</file>
<file>completion/btxdockit.cwl</file>
<file>completion/bubblesort.cwl</file>
<file>completion/bullcntr.cwl</file>
<file>completion/bullenum.cwl</file>
<file>completion/bussproofs.cwl</file>
<file>completion/bussproofs-extra.cwl</file>
<file>completion/bxcalcux.cwl</file>
<file>completion/bxnewfont.cwl</file>
<file>completion/bxtexlogo.cwl</file>
<file>completion/byo-twemojis.cwl</file>
<file>completion/bytefield.cwl</file>
<file>completion/cabin.cwl</file>
<file>completion/caladea.cwl</file>
<file>completion/calcage.cwl</file>
<file>completion/calc.cwl</file>
<file>completion/calctab.cwl</file>
<file>completion/calculation.cwl</file>
<file>completion/calculator.cwl</file>
<file>completion/calculus.cwl</file>
<file>completion/calligra.cwl</file>
<file>completion/callouts.cwl</file>
<file>completion/cancel.cwl</file>
<file>completion/canoniclayout.cwl</file>
<file>completion/cantarell.cwl</file>
<file>completion/captdef.cwl</file>
<file>completion/caption.cwl</file>
<file>completion/capt-of.cwl</file>
<file>completion/carbohydrates.cwl</file>
<file>completion/carlito.cwl</file>
<file>completion/carolmin.cwl</file>
<file>completion/Carrickc.cwl</file>
<file>completion/cartonaugh.cwl</file>
<file>completion/cascade.cwl</file>
<file>completion/cascadia-code.cwl</file>
<file>completion/cases.cwl</file>
<file>completion/casiofont.cwl</file>
<file>completion/catchdq.cwl</file>
<file>completion/catchfilebetweentags.cwl</file>
<file>completion/catchfile.cwl</file>
<file>completion/causets.cwl</file>
<file>completion/ccaption.cwl</file>
<file>completion/ccfonts.cwl</file>
<file>completion/ccicons.cwl</file>
<file>completion/cclicenses.cwl</file>
<file>completion/cdcmd.cwl</file>
<file>completion/cellprops.cwl</file>
<file>completion/cellspace.cwl</file>
<file>completion/censor.cwl</file>
<file>completion/centeredline.cwl</file>
<file>completion/centerlastline.cwl</file>
<file>completion/centernot.cwl</file>
<file>completion/cfr-lm.cwl</file>
<file>completion/cgloss4e.cwl</file>
<file>completion/changebar.cwl</file>
<file>completion/changelog.cwl</file>
<file>completion/changepage.cwl</file>
<file>completion/changes.cwl</file>
<file>completion/chappg.cwl</file>
<file>completion/chapterbib.cwl</file>
<file>completion/chapterfolder.cwl</file>
<file>completion/CharisSIL.cwl</file>
<file>completion/chemarr.cwl</file>
<file>completion/chemarrow.cwl</file>
<file>completion/chemfig.cwl</file>
<file>completion/chemformula.cwl</file>
<file>completion/chemgreek.cwl</file>
<file>completion/chemmacros.cwl</file>
<file>completion/chemnum.cwl</file>
<file>completion/chemplants.cwl</file>
<file>completion/chemsec.cwl</file>
<file>completion/chemstyle.cwl</file>
<file>completion/chessboard.cwl</file>
<file>completion/chessfss.cwl</file>
<file>completion/chickenize.cwl</file>
<file>completion/Chivo.cwl</file>
<file>completion/chordbars.cwl</file>
<file>completion/cinzel.cwl</file>
<file>completion/circle.cwl</file>
<file>completion/circledsteps.cwl</file>
<file>completion/circuitikz.cwl</file>
<file>completion/citeall.cwl</file>
<file>completion/cite.cwl</file>
<file>completion/cjhebrew.cwl</file>
<file>completion/CJKutf8.cwl</file>
<file>completion/clara.cwl</file>
<file>completion/class-a0poster.cwl</file>
<file>completion/class-acmart.cwl</file>
<file>completion/class-altacv.cwl</file>
<file>completion/class-amsart.cwl</file>
<file>completion/class-amsbook.cwl</file>
<file>completion/class-amsproc.cwl</file>
<file>completion/class-aomart.cwl</file>
<file>completion/class-bankstatement.cwl</file>
<file>completion/class-beamer.cwl</file>
<file>completion/class-beamerswitch.cwl</file>
<file>completion/class-bfhbeamer.cwl</file>
<file>completion/class-bookcover.cwl</file>
<file>completion/class-book.cwl</file>
<file>completion/class-bookshelf.cwl</file>
<file>completion/class-businesscard-qrcode.cwl</file>
<file>completion/class-cheatsheet.cwl</file>
<file>completion/class-cnltx-doc.cwl</file>
<file>completion/class-codedoc.cwl</file>
<file>completion/class-combine.cwl</file>
<file>completion/class-einfart.cwl</file>
<file>completion/class-elpres.cwl</file>
<file>completion/class-europecv.cwl</file>
<file>completion/class-exam.cwl</file>
<file>completion/class-exesheet.cwl</file>
<file>completion/class-extarticle.cwl</file>
<file>completion/class-extbook.cwl</file>
<file>completion/class-extletter.cwl</file>
<file>completion/class-extproc.cwl</file>
<file>completion/class-extreport.cwl</file>
<file>completion/class-fancyhandout.cwl</file>
<file>completion/class-fancyslides.cwl</file>
<file>completion/class-FUbeamer.cwl</file>
<file>completion/class-graphpaper.cwl</file>
<file>completion/class-gridslides.cwl</file>
<file>completion/class-guitartabs.cwl</file>
<file>completion/classico.cwl</file>
<file>completion/classics.cwl</file>
<file>completion/classicthesis-arsclassica.cwl</file>
<file>completion/classicthesis.cwl</file>
<file>completion/class-isodoc.cwl</file>
<file>completion/class-komacv.cwl</file>
<file>completion/class-l3doc.cwl</file>
<file>completion/class-leadsheet.cwl</file>
<file>completion/class-leaflet.cwl</file>
<file>completion/class-letter.cwl</file>
<file>completion/class-limecv.cwl</file>
<file>completion/classlist.cwl</file>
<file>completion/class-ltxdoc.cwl</file>
<file>completion/class-ltxdockit.cwl</file>
<file>completion/class-ltxguide.cwl</file>
<file>completion/class-ltxguidex.cwl</file>
<file>completion/class-memoir.cwl</file>
<file>completion/class-mensa-tex.cwl</file>
<file>completion/class-metanorma.cwl</file>
<file>completion/class-minimart.cwl</file>
<file>completion/class-minimbook.cwl</file>
<file>completion/class-mla.cwl</file>
<file>completion/class-moderncv.cwl</file>
<file>completion/class-modernposter.cwl</file>
<file>completion/class-ncc.cwl</file>
<file>completion/class-nlctdoc.cwl</file>
<file>completion/class-novel.cwl</file>
<file>completion/class-pdfArticle.cwl</file>
<file>completion/class-proc.cwl</file>
<file>completion/class-pylatex.cwl</file>
<file>completion/class-qcm.cwl</file>
<file>completion/class-ReadableCV.cwl</file>
<file>completion/class-report.cwl</file>
<file>completion/class-schulma-ab.cwl</file>
<file>completion/class-schulma-gutachten.cwl</file>
<file>completion/class-schulma-klausur.cwl</file>
<file>completion/class-schulma-komp.cwl</file>
<file>completion/class-schulma-mdlprf.cwl</file>
<file>completion/class-schulma-praes.cwl</file>
<file>completion/class-scrartcl.cwl</file>
<file>completion/class-scrartcl,scrreprt,scrbook.cwl</file>
<file>completion/class-scrbook.cwl</file>
<file>completion/class-scrlttr2.cwl</file>
<file>completion/class-scrreprt.cwl</file>
<file>completion/class-sdapsclassic.cwl</file>
<file>completion/class-simplivre.cwl</file>
<file>completion/class-skdoc.cwl</file>
<file>completion/class-skrapport.cwl</file>
<file>completion/class-slides.cwl</file>
<file>completion/class-sslides.cwl</file>
<file>completion/class-suftesi.cwl</file>
<file>completion/class-talk.cwl</file>
<file>completion/class-tikzposter.cwl</file>
<file>completion/class-tkz-doc.cwl</file>
<file>completion/class-tlc-article.cwl</file>
<file>completion/class-tufte-book.cwl</file>
<file>completion/class-tufte-handout.cwl</file>
<file>completion/class-turabian-researchpaper.cwl</file>
<file>completion/class-turabian-thesis.cwl</file>
<file>completion/class-webquiz.cwl</file>
<file>completion/class-willowtreebook.cwl</file>
<file>completion/cleanthesis.cwl</file>
<file>completion/ClearSans.cwl</file>
<file>completion/clefval.cwl</file>
<file>completion/cleveref.cwl</file>
<file>completion/clicks.cwl</file>
<file>completion/clipboard.cwl</file>
<file>completion/cloze.cwl</file>
<file>completion/clrdblpg.cwl</file>
<file>completion/clrstrip.cwl</file>
<file>completion/cmathbb.cwl</file>
<file>completion/cmbright.cwl</file>
<file>completion/cmdstring.cwl</file>
<file>completion/cmdtrack.cwl</file>
<file>completion/cmll.cwl</file>
<file>completion/cmsrb.cwl</file>
<file>completion/cmtt.cwl</file>
<file>completion/cmupint.cwl</file>
<file>completion/cncolours.cwl</file>
<file>completion/cnltx-base.cwl</file>
<file>completion/cnltx.cwl</file>
<file>completion/cnltx-example.cwl</file>
<file>completion/cnltx-listings.cwl</file>
<file>completion/cnltx-names.cwl</file>
<file>completion/cnltx-tools.cwl</file>
<file>completion/cnltx-translations.cwl</file>
<file>completion/cntdwn.cwl</file>
<file>completion/cntformats.cwl</file>
<file>completion/cochineal.cwl</file>
<file>completion/codebox.cwl</file>
<file>completion/codehigh.cwl</file>
<file>completion/codesection.cwl</file>
<file>completion/coelacanth.cwl</file>
<file>completion/coffeestains.cwl</file>
<file>completion/collcell.cwl</file>
<file>completion/collectbox.cwl</file>
<file>completion/collect.cwl</file>
<file>completion/collref.cwl</file>
<file>completion/colonequals.cwl</file>
<file>completion/colophon.cwl</file>
<file>completion/color.cwl</file>
<file>completion/colordoc.cwl</file>
<file>completion/color-edits.cwl</file>
<file>completion/colorinfo.cwl</file>
<file>completion/colorpalette.cwl</file>
<file>completion/colorspace.cwl</file>
<file>completion/colortbl.cwl</file>
<file>completion/colorwav.cwl</file>
<file>completion/colorweb.cwl</file>
<file>completion/colourchange.cwl</file>
<file>completion/combelow.cwl</file>
<file>completion/combofont.cwl</file>
<file>completion/comfortaa.cwl</file>
<file>completion/comicneue.cwl</file>
<file>completion/comicsans.cwl</file>
<file>completion/comma.cwl</file>
<file>completion/commath.cwl</file>
<file>completion/comment.cwl</file>
<file>completion/commutative-diagrams.cwl</file>
<file>completion/complexity.cwl</file>
<file>completion/concepts.cwl</file>
<file>completion/concmath.cwl</file>
<file>completion/concmath-otf.cwl</file>
<file>completion/constants.cwl</file>
<file>completion/conteq.cwl</file>
<file>completion/continue.cwl</file>
<file>completion/contour.cwl</file>
<file>completion/conv-xkv.cwl</file>
<file>completion/cookingsymbols.cwl</file>
<file>completion/cooking-units.cwl</file>
<file>completion/coollist.cwl</file>
<file>completion/coolstr.cwl</file>
<file>completion/coolthms.cwl</file>
<file>completion/cooltooltips.cwl</file>
<file>completion/coop-writing.cwl</file>
<file>completion/coordsys.cwl</file>
<file>completion/copyrightbox.cwl</file>
<file>completion/CormorantGaramond.cwl</file>
<file>completion/correctmathalign.cwl</file>
<file>completion/coseoul.cwl</file>
<file>completion/countriesofeurope.cwl</file>
<file>completion/counttexruns.cwl</file>
<file>completion/couriers.cwl</file>
<file>completion/courierten.cwl</file>
<file>completion/covington.cwl</file>
<file>completion/cprotect.cwl</file>
<file>completion/cpssp.cwl</file>
<file>completion/cquthesis.cwl</file>
<file>completion/crbox.cwl</file>
<file>completion/create-theorem.cwl</file>
<file>completion/crefthe.cwl</file>
<file>completion/crimson.cwl</file>
<file>completion/CrimsonPro.cwl</file>
<file>completion/crop.cwl</file>
<file>completion/crossreference.cwl</file>
<file>completion/crossreftools.cwl</file>
<file>completion/crumbs.cwl</file>
<file>completion/csquotes.cwl</file>
<file>completion/css-colors.cwl</file>
<file>completion/cstypo.cwl</file>
<file>completion/csvmerge.cwl</file>
<file>completion/csvsimple.cwl</file>
<file>completion/csvsimple-l3.cwl</file>
<file>completion/ctable.cwl</file>
<file>completion/ctex.cwl</file>
<file>completion/currency.cwl</file>
<file>completion/currfile-abspath.cwl</file>
<file>completion/currfile.cwl</file>
<file>completion/currvita.cwl</file>
<file>completion/cursor.cwl</file>
<file>completion/curves.cwl</file>
<file>completion/cuted.cwl</file>
<file>completion/cutwin.cwl</file>
<file>completion/cwpuzzle.cwl</file>
<file>completion/cypriot.cwl</file>
<file>completion/cyrillic.cwl</file>
<file>completion/dantelogo.cwl</file>
<file>completion/dashbox.cwl</file>
<file>completion/dashrule.cwl</file>
<file>completion/dashundergaps.cwl</file>
<file>completion/databar.cwl</file>
<file>completion/databib.cwl</file>
<file>completion/datagidx.cwl</file>
<file>completion/datapie.cwl</file>
<file>completion/dataplot.cwl</file>
<file>completion/dataref.cwl</file>
<file>completion/datatool-base.cwl</file>
<file>completion/datatool.cwl</file>
<file>completion/datatool-fp.cwl</file>
<file>completion/datatool-pgfmath.cwl</file>
<file>completion/datax.cwl</file>
<file>completion/datenumber.cwl</file>
<file>completion/datestamp.cwl</file>
<file>completion/datetime2-calc.cwl</file>
<file>completion/datetime2.cwl</file>
<file>completion/daytime.cwl</file>
<file>completion/dblfnote.cwl</file>
<file>completion/dbshow.cwl</file>
<file>completion/dcounter.cwl</file>
<file>completion/ddphonism.cwl</file>
<file>completion/debate.cwl</file>
<file>completion/decision-table.cwl</file>
<file>completion/decorule.cwl</file>
<file>completion/dejavu-otf.cwl</file>
<file>completion/DejaVuSansCondensed.cwl</file>
<file>completion/DejaVuSans.cwl</file>
<file>completion/DejaVuSansMono.cwl</file>
<file>completion/DejaVuSerifCondensed.cwl</file>
<file>completion/DejaVuSerif.cwl</file>
<file>completion/delim.cwl</file>
<file>completion/delimset.cwl</file>
<file>completion/derivative.cwl</file>
<file>completion/desclist.cwl</file>
<file>completion/dhua.cwl</file>
<file>completion/diagbox.cwl</file>
<file>completion/diagxy.cwl</file>
<file>completion/dichokey.cwl</file>
<file>completion/diffcoeff.cwl</file>
<file>completion/digiconfigs.cwl</file>
<file>completion/dijkstra.cwl</file>
<file>completion/dimnum.cwl</file>
<file>completion/dingbat.cwl</file>
<file>completion/dirtree.cwl</file>
<file>completion/ditaa.cwl</file>
<file>completion/dlfltxbcodetips.cwl</file>
<file>completion/dlfltxbmarkupbookkeys.cwl</file>
<file>completion/dlfltxbmarkup.cwl</file>
<file>completion/dlfltxbmisc.cwl</file>
<file>completion/dnaseq.cwl</file>
<file>completion/doc.cwl</file>
<file>completion/doclicense.cwl</file>
<file>completion/docmfp.cwl</file>
<file>completion/docmute.cwl</file>
<file>completion/doctools.cwl</file>
<file>completion/dogma.cwl</file>
<file>completion/doi.cwl</file>
<file>completion/doipubmed.cwl</file>
<file>completion/domitian.cwl</file>
<file>completion/domore.cwl</file>
<file>completion/dot2texi.cwl</file>
<file>completion/dotlessi.cwl</file>
<file>completion/dowith.cwl</file>
<file>completion/download.cwl</file>
<file>completion/dox.cwl</file>
<file>completion/dozenal.cwl</file>
<file>completion/DPcircling.cwl</file>
<file>completion/drac.cwl</file>
<file>completion/draftfigure.cwl</file>
<file>completion/draftmark.cwl</file>
<file>completion/draftwatermark.cwl</file>
<file>completion/drawmatrix.cwl</file>
<file>completion/drm.cwl</file>
<file>completion/droid.cwl</file>
<file>completion/droidsans.cwl</file>
<file>completion/droidsansmono.cwl</file>
<file>completion/droidserif.cwl</file>
<file>completion/dsfont.cwl</file>
<file>completion/dsserif.cwl</file>
<file>completion/dtk-logos.cwl</file>
<file>completion/dtxdescribe.cwl</file>
<file>completion/ducksay.cwl</file>
<file>completion/duckuments.cwl</file>
<file>completion/duerer.cwl</file>
<file>completion/dutchcal.cwl</file>
<file>completion/dvipscol.cwl</file>
<file>completion/dynamicnumber.cwl</file>
<file>completion/dynblocks.cwl</file>
<file>completion/dynbrackets.cwl</file>
<file>completion/dynkin-diagrams.cwl</file>
<file>completion/easyfig.cwl</file>
<file>completion/easyformat.cwl</file>
<file>completion/easylist.cwl</file>
<file>completion/easyReview.cwl</file>
<file>completion/easy-todo.cwl</file>
<file>completion/easyvector.cwl</file>
<file>completion/ebgaramond.cwl</file>
<file>completion/ebook.cwl</file>
<file>completion/ebproof.cwl</file>
<file>completion/eco.cwl</file>
<file>completion/econlipsum.cwl</file>
<file>completion/econometrics.cwl</file>
<file>completion/ed.cwl</file>
<file>completion/edichokey.cwl</file>
<file>completion/ednmath0.cwl</file>
<file>completion/edtable.cwl</file>
<file>completion/eepic.cwl</file>
<file>completion/efbox.cwl</file>
<file>completion/egothic.cwl</file>
<file>completion/egplot.cwl</file>
<file>completion/Eichenla.cwl</file>
<file>completion/EileenBl.cwl</file>
<file>completion/Eileen.cwl</file>
<file>completion/electrum.cwl</file>
<file>completion/elements.cwl</file>
<file>completion/ellipsis.cwl</file>
<file>completion/elocalloc.cwl</file>
<file>completion/elpresbluelightgrayscheme.cwl</file>
<file>completion/elpresgrayscheme.cwl</file>
<file>completion/elpreswhitebluescheme.cwl</file>
<file>completion/elpreswhiteredscheme.cwl</file>
<file>completion/elpreswhitetealscheme.cwl</file>
<file>completion/Elzevier.cwl</file>
<file>completion/emarks.cwl</file>
<file>completion/embedall.cwl</file>
<file>completion/embedfile.cwl</file>
<file>completion/embrac.cwl</file>
<file>completion/emf.cwl</file>
<file>completion/emoji.cwl</file>
<file>completion/emp.cwl</file>
<file>completion/empheq.cwl</file>
<file>completion/endfloat.cwl</file>
<file>completion/endnotes.cwl</file>
<file>completion/endnotes-hy.cwl</file>
<file>completion/endofproofwd.cwl</file>
<file>completion/engord.cwl</file>
<file>completion/engpron.cwl</file>
<file>completion/engrec.cwl</file>
<file>completion/enotez.cwl</file>
<file>completion/enparen.cwl</file>
<file>completion/enumerate.cwl</file>
<file>completion/enumitem.cwl</file>
<file>completion/environ.cwl</file>
<file>completion/eolgrab.cwl</file>
<file>completion/epic.cwl</file>
<file>completion/epigrafica.cwl</file>
<file>completion/epigraph.cwl</file>
<file>completion/epigraph-keys.cwl</file>
<file>completion/epiolmec.cwl</file>
<file>completion/epsdice.cwl</file>
<file>completion/epspdfconversion.cwl</file>
<file>completion/epstopdf.cwl</file>
<file>completion/eqell.cwl</file>
<file>completion/eqexpl.cwl</file>
<file>completion/eqlist.cwl</file>
<file>completion/eqname.cwl</file>
<file>completion/eqnarray.cwl</file>
<file>completion/eqnnumwarn.cwl</file>
<file>completion/eqparbox.cwl</file>
<file>completion/erewhon.cwl</file>
<file>completion/errata.cwl</file>
<file>completion/esint.cwl</file>
<file>completion/esk.cwl</file>
<file>completion/eso-pic.cwl</file>
<file>completion/esrelation.cwl</file>
<file>completion/esstixbb.cwl</file>
<file>completion/esstixfrak.cwl</file>
<file>completion/esvect.cwl</file>
<file>completion/etaremune.cwl</file>
<file>completion/ETbb.cwl</file>
<file>completion/etextools.cwl</file>
<file>completion/etoc.cwl</file>
<file>completion/etoolbox.cwl</file>
<file>completion/etruscan.cwl</file>
<file>completion/eucal.cwl</file>
<file>completion/euflag.cwl</file>
<file>completion/eufrak.cwl</file>
<file>completion/eukdate.cwl</file>
<file>completion/euler.cwl</file>
<file>completion/eulerpx.cwl</file>
<file>completion/eulervm.cwl</file>
<file>completion/euroitc.cwl</file>
<file>completion/eurosym.cwl</file>
<file>completion/euscript.cwl</file>
<file>completion/everyhook.cwl</file>
<file>completion/example.cwl</file>
<file>completion/exam-randomizechoices.cwl</file>
<file>completion/exceltex.cwl</file>
<file>completion/excludeonly.cwl</file>
<file>completion/exercisepoints.cwl</file>
<file>completion/exercises.cwl</file>
<file>completion/exesheet.cwl</file>
<file>completion/exframe.cwl</file>
<file>completion/expkv-cs.cwl</file>
<file>completion/expkv.cwl</file>
<file>completion/expkv-def.cwl</file>
<file>completion/expkv-opt.cwl</file>
<file>completion/expl3.cwl</file>
<file>completion/export.cwl</file>
<file>completion/extarrows.cwl</file>
<file>completion/extdash.cwl</file>
<file>completion/extpfeil.cwl</file>
<file>completion/extract.cwl</file>
<file>completion/extraipa.cwl</file>
<file>completion/extramarks.cwl</file>
<file>completion/extsizes.cwl</file>
<file>completion/faktor.cwl</file>
<file>completion/fancybox.cwl</file>
<file>completion/fancyhdr.cwl</file>
<file>completion/fancylabel.cwl</file>
<file>completion/fancynum.cwl</file>
<file>completion/fancypar.cwl</file>
<file>completion/fancyref.cwl</file>
<file>completion/fancytabs.cwl</file>
<file>completion/fancyunits-base.cwl</file>
<file>completion/fancyunits_big-fractions.cwl</file>
<file>completion/fancyunits_medium-fractions.cwl</file>
<file>completion/fancyunits-np.cwl</file>
<file>completion/fancyunits-per.cwl</file>
<file>completion/fancyunits_small-fractions.cwl</file>
<file>completion/fancyvrb.cwl</file>
<file>completion/fancyvrb-ex.cwl</file>
<file>completion/fbb.cwl</file>
<file>completion/fbox.cwl</file>
<file>completion/fclfont.cwl</file>
<file>completion/fcolumn.cwl</file>
<file>completion/fdsymbol.cwl</file>
<file>completion/fetamont.cwl</file>
<file>completion/fetchcls.cwl</file>
<file>completion/fewerfloatpages.cwl</file>
<file>completion/feyn.cwl</file>
<file>completion/ffcode.cwl</file>
<file>completion/fge.cwl</file>
<file>completion/fgruler.cwl</file>
<file>completion/fhgtechdoku_additional.cwl</file>
<file>completion/fibnum.cwl</file>
<file>completion/fifo-stack.cwl</file>
<file>completion/filecontentsdef.cwl</file>
<file>completion/filehook.cwl</file>
<file>completion/filemod.cwl</file>
<file>completion/filemod-expmin.cwl</file>
<file>completion/firamath-otf.cwl</file>
<file>completion/FiraMono.cwl</file>
<file>completion/FiraSans.cwl</file>
<file>completion/fitbox.cwl</file>
<file>completion/fixfoot.cwl</file>
<file>completion/fixmath.cwl</file>
<file>completion/fixme.cwl</file>
<file>completion/fjodor.cwl</file>
<file>completion/flagderiv.cwl</file>
<file>completion/flexisym.cwl</file>
<file>completion/flippdf.cwl</file>
<file>completion/float.cwl</file>
<file>completion/floatflt.cwl</file>
<file>completion/floatpag.cwl</file>
<file>completion/floatpagestyle.cwl</file>
<file>completion/floatrow.cwl</file>
<file>completion/flowchart.cwl</file>
<file>completion/fltpoint.cwl</file>
<file>completion/flushend.cwl</file>
<file>completion/fmp.cwl</file>
<file>completion/fmtcount.cwl</file>
<file>completion/fncychap.cwl</file>
<file>completion/fnlineno.cwl</file>
<file>completion/fnpct.cwl</file>
<file>completion/fnpos.cwl</file>
<file>completion/fnumprint.cwl</file>
<file>completion/foekfont.cwl</file>
<file>completion/foliono.cwl</file>
<file>completion/fonetika.cwl</file>
<file>completion/fontawesome5.cwl</file>
<file>completion/fontawesome.cwl</file>
<file>completion/fontbook.cwl</file>
<file>completion/fontenc.cwl</file>
<file>completion/fontmfizz.cwl</file>
<file>completion/fontsetup.cwl</file>
<file>completion/fontsize.cwl</file>
<file>completion/fontsmpl.cwl</file>
<file>completion/fontspec.cwl</file>
<file>completion/fonts-tlwg.cwl</file>
<file>completion/fonttable.cwl</file>
<file>completion/fontwrap.cwl</file>
<file>completion/footmisc.cwl</file>
<file>completion/footnotebackref.cwl</file>
<file>completion/footnote.cwl</file>
<file>completion/footnotehyper.cwl</file>
<file>completion/footnoterange.cwl</file>
<file>completion/forarray.cwl</file>
<file>completion/foreign.cwl</file>
<file>completion/forest.cwl</file>
<file>completion/forest-index.cwl</file>
<file>completion/forloop.cwl</file>
<file>completion/formal-grammar.cwl</file>
<file>completion/forum.cwl</file>
<file>completion/fouridx.cwl</file>
<file>completion/fourier.cwl</file>
<file>completion/fourier-orns.cwl</file>
<file>completion/fourier-otf.cwl</file>
<file>completion/fp-addons.cwl</file>
<file>completion/fp-basic.cwl</file>
<file>completion/fp.cwl</file>
<file>completion/fp-eqn.cwl</file>
<file>completion/fp-eval.cwl</file>
<file>completion/fp-exp.cwl</file>
<file>completion/fp-pas.cwl</file>
<file>completion/fp-random.cwl</file>
<file>completion/fp-snap.cwl</file>
<file>completion/fp-trigo.cwl</file>
<file>completion/fp-upn.cwl</file>
<file>completion/framed.cwl</file>
<file>completion/frcursive.cwl</file>
<file>completion/frege.cwl</file>
<file>completion/frenchmath.cwl</file>
<file>completion/fr-fancy.cwl</file>
<file>completion/frimurer.cwl</file>
<file>completion/froufrou.cwl</file>
<file>completion/fullminipage.cwl</file>
<file>completion/fullpage.cwl</file>
<file>completion/fullwidth.cwl</file>
<file>completion/futurans.cwl</file>
<file>completion/fvextra.cwl</file>
<file>completion/fwlw.cwl</file>
<file>completion/galois.cwl</file>
<file>completion/gamebook.cwl</file>
<file>completion/gamebooklib.cwl</file>
<file>completion/gandhi.cwl</file>
<file>completion/garamondlibre.cwl</file>
<file>completion/gates.cwl</file>
<file>completion/gatherenum.cwl</file>
<file>completion/gb4e.cwl</file>
<file>completion/genealogytree.cwl</file>
<file>completion/gensymb.cwl</file>
<file>completion/gentium.cwl</file>
<file>completion/geometry.cwl</file>
<file>completion/german.cwl</file>
<file>completion/getfiledate.cwl</file>
<file>completion/getitems.cwl</file>
<file>completion/getmap.cwl</file>
<file>completion/gettitlestring.cwl</file>
<file>completion/gfsartemisia.cwl</file>
<file>completion/gfsbaskerville.cwl</file>
<file>completion/gfsbodoni.cwl</file>
<file>completion/gfscomplutum.cwl</file>
<file>completion/gfsdidot.cwl</file>
<file>completion/gfsneohellenic.cwl</file>
<file>completion/gfsneohellenicot.cwl</file>
<file>completion/ghab.cwl</file>
<file>completion/ghsystem.cwl</file>
<file>completion/gillcm.cwl</file>
<file>completion/gillius2.cwl</file>
<file>completion/gillius.cwl</file>
<file>completion/gincltex.cwl</file>
<file>completion/gitfile-info.cwl</file>
<file>completion/gitinfo2.cwl</file>
<file>completion/gitlog.cwl</file>
<file>completion/gitver.cwl</file>
<file>completion/globalvals.cwl</file>
<file>completion/glosmathtools.cwl</file>
<file>completion/glossaries-accsupp.cwl</file>
<file>completion/glossaries.cwl</file>
<file>completion/glossaries-extra-bib2gls.cwl</file>
<file>completion/glossaries-extra.cwl</file>
<file>completion/glossaries-extra-stylemods.cwl</file>
<file>completion/glossaries-prefix.cwl</file>
<file>completion/glossary-bookindex.cwl</file>
<file>completion/glossary-hypernav.cwl</file>
<file>completion/glossary-inline.cwl</file>
<file>completion/glossary-list.cwl</file>
<file>completion/glossary-longbooktabs.cwl</file>
<file>completion/glossary-long.cwl</file>
<file>completion/glossary-longextra.cwl</file>
<file>completion/glossary-longragged.cwl</file>
<file>completion/glossary-mcols.cwl</file>
<file>completion/glossary-super.cwl</file>
<file>completion/glossary-topic.cwl</file>
<file>completion/glossary-tree.cwl</file>
<file>completion/glosstex.cwl</file>
<file>completion/gmp.cwl</file>
<file>completion/gnuplottex.cwl</file>
<file>completion/gobble-user.cwl</file>