forked from texstudio-org/texstudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
completion.qrc
4105 lines (4105 loc) · 158 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/a4.cwl</file>
<file>completion/a4wide.cwl</file>
<file>completion/abbrevs.cwl</file>
<file>completion/abc.cwl</file>
<file>completion/abntcite.cwl</file>
<file>completion/abntex2abrev.cwl</file>
<file>completion/abntex2cite.cwl</file>
<file>completion/aboensis.cwl</file>
<file>completion/abraces.cwl</file>
<file>completion/abspos.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/achemso.cwl</file>
<file>completion/Acorn.cwl</file>
<file>completion/acro.cwl</file>
<file>completion/acromemory.cwl</file>
<file>completion/acronym.cwl</file>
<file>completion/acrosort.cwl</file>
<file>completion/actcodes.cwl</file>
<file>completion/actuarialangle.cwl</file>
<file>completion/actuarialsymbol.cwl</file>
<file>completion/add2.cwl</file>
<file>completion/addfont.cwl</file>
<file>completion/addlines.cwl</file>
<file>completion/addrset.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/adobeornaments.cwl</file>
<file>completion/adrlist.cwl</file>
<file>completion/adtrees.cwl</file>
<file>completion/advdate.cwl</file>
<file>completion/aeb-comment.cwl</file>
<file>completion/aeb_dad.cwl</file>
<file>completion/aeb_envelope.cwl</file>
<file>completion/aeb-minitoc.cwl</file>
<file>completion/aeb_mlink.cwl</file>
<file>completion/aeb_mobile.cwl</file>
<file>completion/aeb_pro.cwl</file>
<file>completion/aeb_tilebg.cwl</file>
<file>completion/aebxmp.cwl</file>
<file>completion/aecompl.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/ajmacros.cwl</file>
<file>completion/akshar.cwl</file>
<file>completion/alchemist.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/aliphat.cwl</file>
<file>completion/allauncl.cwl</file>
<file>completion/allcmin.cwl</file>
<file>completion/allegoth.cwl</file>
<file>completion/allhmin.cwl</file>
<file>completion/allhuncl.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/alnumsec.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/altverse.cwl</file>
<file>completion/amsaddr.cwl</file>
<file>completion/amsbib.cwl</file>
<file>completion/amsbooka.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/amsmidx.cwl</file>
<file>completion/amsopn.cwl</file>
<file>completion/amsrefs.cwl</file>
<file>completion/amssymb.cwl</file>
<file>completion/amstext.cwl</file>
<file>completion/amsthm.cwl</file>
<file>completion/amsxtra.cwl</file>
<file>completion/analogclock.cwl</file>
<file>completion/andika.cwl</file>
<file>completion/animate.cwl</file>
<file>completion/annee-scolaire.cwl</file>
<file>completion/annotate-equations.cwl</file>
<file>completion/annot_pro.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/aobs-tikz.cwl</file>
<file>completion/apacite.cwl</file>
<file>completion/appendix.cwl</file>
<file>completion/appendixnumberbeamer.cwl</file>
<file>completion/apptools.cwl</file>
<file>completion/apxproof.cwl</file>
<file>completion/arabluatex.cwl</file>
<file>completion/arabxetex.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/armtex.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/artthreads.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/ascmac.cwl</file>
<file>completion/askinclude.cwl</file>
<file>completion/askincv1.cwl</file>
<file>completion/askmaps.cwl</file>
<file>completion/asmewide.cwl</file>
<file>completion/assoccnt.cwl</file>
<file>completion/association-matrix.cwl</file>
<file>completion/assurelatexmode.cwl</file>
<file>completion/asternote.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/at.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/attrib.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/authorindex.cwl</file>
<file>completion/autoaligne.cwl</file>
<file>completion/autobreak.cwl</file>
<file>completion/autofancyhdr.cwl</file>
<file>completion/autolist.cwl</file>
<file>completion/automultiplechoice.cwl</file>
<file>completion/autonum.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/babelbib.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/bangla.cwl</file>
<file>completion/bargraph-js.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/beamerthemeAmurmaple.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/beamerthemeSimplePlus.cwl</file>
<file>completion/beamerthemeSingapore.cwl</file>
<file>completion/beamerthemeSzeged.cwl</file>
<file>completion/beamerthemetamu.cwl</file>
<file>completion/beamerthemethubeamer.cwl</file>
<file>completion/beamerthemeTianQing.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/betababel.cwl</file>
<file>completion/beton.cwl</file>
<file>completion/beuron.cwl</file>
<file>completion/bewerbung-cv.cwl</file>
<file>completion/bewerbung.cwl</file>
<file>completion/bez123.cwl</file>
<file>completion/bezierplot.cwl</file>
<file>completion/bfhcolors.cwl</file>
<file>completion/bfhfonts.cwl</file>
<file>completion/bfhlayout.cwl</file>
<file>completion/bfhletter.cwl</file>
<file>completion/bfhmodule.cwl</file>
<file>completion/bguq.cwl</file>
<file>completion/bibcop.cwl</file>
<file>completion/bibentry.cwl</file>
<file>completion/biblatex2bibitem.cwl</file>
<file>completion/biblatex-archaeology.cwl</file>
<file>completion/biblatex-chicago.cwl</file>
<file>completion/biblatex-cv.cwl</file>
<file>completion/biblatex.cwl</file>
<file>completion/biblatex-ext-oa.cwl</file>
<file>completion/biblatex-ext-oa-doapi.cwl</file>
<file>completion/biblatex-ext-oasymb-l3draw.cwl</file>
<file>completion/biblatex-ext-oasymb-pict2e.cwl</file>
<file>completion/biblatex-ext-oasymb-tikz.cwl</file>
<file>completion/biblatex-ext-tabular.cwl</file>
<file>completion/biblatex-license.cwl</file>
<file>completion/biblatex-ms.cwl</file>
<file>completion/biblatex-multiple-dm.cwl</file>
<file>completion/biblatex-readbbl.cwl</file>
<file>completion/biblatex-shortfields.cwl</file>
<file>completion/biblatex-source-division.cwl</file>
<file>completion/bibleref.cwl</file>
<file>completion/bibleref-french.cwl</file>
<file>completion/bibleref-german.cwl</file>
<file>completion/bibleref-lds.cwl</file>
<file>completion/bibleref-mouth.cwl</file>
<file>completion/bibleref-parse.cwl</file>
<file>completion/bibleref-xidx.cwl</file>
<file>completion/bibletext.cwl</file>
<file>completion/bibnames.cwl</file>
<file>completion/bibpes.cwl</file>
<file>completion/bibtopic.cwl</file>
<file>completion/bibtopicprefix.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/bidicode.cwl</file>
<file>completion/bidicontour.cwl</file>
<file>completion/bidi.cwl</file>
<file>completion/bidihl.cwl</file>
<file>completion/bidipagegrid.cwl</file>
<file>completion/bidi-perpage.cwl</file>
<file>completion/bidipoem.cwl</file>
<file>completion/bidishadowtext.cwl</file>
<file>completion/biditools.cwl</file>
<file>completion/bidituftefloat.cwl</file>
<file>completion/bidituftegeneralstructure.cwl</file>
<file>completion/bidituftehyperref.cwl</file>
<file>completion/bidituftesidenote.cwl</file>
<file>completion/bidituftetitle.cwl</file>
<file>completion/bidituftetoc.cwl</file>
<file>completion/bigdelim.cwl</file>
<file>completion/bigfoot.cwl</file>
<file>completion/bigintcalc.cwl</file>
<file>completion/bigints.cwl</file>
<file>completion/bigstrut.cwl</file>
<file>completion/bilingualpages.cwl</file>
<file>completion/binarytree.cwl</file>
<file>completion/biochemistry-colors.cwl</file>
<file>completion/biocon.cwl</file>
<file>completion/biokey.cwl</file>
<file>completion/biolinum.cwl</file>
<file>completion/biolist.cwl</file>
<file>completion/biotex.cwl</file>
<file>completion/bitelist.cwl</file>
<file>completion/bitpattern.cwl</file>
<file>completion/bitset.cwl</file>
<file>completion/bitter.cwl</file>
<file>completion/bizcard.cwl</file>
<file>completion/bkltprnt.cwl</file>
<file>completion/blindtext.cwl</file>
<file>completion/blkarray.cwl</file>
<file>completion/blkcntrl.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/bodeplot.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/bold-extra.cwl</file>
<file>completion/boldline.cwl</file>
<file>completion/boldtensors.cwl</file>
<file>completion/bondcolor.cwl</file>
<file>completion/bondgraph.cwl</file>
<file>completion/bondgraphs.cwl</file>
<file>completion/booklet.cwl</file>
<file>completion/bookmark.cwl</file>
<file>completion/book-of-common-prayer.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/boustr.cwl</file>
<file>completion/boxdims.cwl</file>
<file>completion/boxedminipage.cwl</file>
<file>completion/boxhandler.cwl</file>
<file>completion/boxit.cwl</file>
<file>completion/bpchem.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/bxbase.cwl</file>
<file>completion/bxcalc.cwl</file>
<file>completion/bxcalcux.cwl</file>
<file>completion/bxcjkjatype.cwl</file>
<file>completion/bxdvidriver.cwl</file>
<file>completion/bxeepic.cwl</file>
<file>completion/bxenclose.cwl</file>
<file>completion/bxghost.cwl</file>
<file>completion/bxghost-lib.cwl</file>
<file>completion/bxjaholiday.cwl</file>
<file>completion/bxjalipsum.cwl</file>
<file>completion/bxjaprnind.cwl</file>
<file>completion/bxjatoucs.cwl</file>
<file>completion/bxnewfont.cwl</file>
<file>completion/bxorigcapt.cwl</file>
<file>completion/bxpapersize.cwl</file>
<file>completion/bxpdfver.cwl</file>
<file>completion/bxtexlogo.cwl</file>
<file>completion/bxtoolbox.cwl</file>
<file>completion/bxwareki.cwl</file>
<file>completion/byo-twemojis.cwl</file>
<file>completion/byrne.cwl</file>
<file>completion/bytefield.cwl</file>
<file>completion/byzantinemusic.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/cals.cwl</file>
<file>completion/cancel.cwl</file>
<file>completion/canoniclayout.cwl</file>
<file>completion/cantarell.cwl</file>
<file>completion/captcont.cwl</file>
<file>completion/captdef.cwl</file>
<file>completion/caption3.cwl</file>
<file>completion/caption.cwl</file>
<file>completion/caption-light.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/carom.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/cas-common.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/catechis.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/ccycle.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/cesenaexam.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/chbibref.cwl</file>
<file>completion/checklistings.cwl</file>
<file>completion/chemarr.cwl</file>
<file>completion/chemarrow.cwl</file>
<file>completion/chemcompounds.cwl</file>
<file>completion/chemfig.cwl</file>
<file>completion/chemformula.cwl</file>
<file>completion/chemgreek.cwl</file>
<file>completion/chemist.cwl</file>
<file>completion/chemmacros.cwl</file>
<file>completion/chemnum.cwl</file>
<file>completion/chemobabel.cwl</file>
<file>completion/chemplants.cwl</file>
<file>completion/chemscheme.cwl</file>
<file>completion/chemschemex.cwl</file>
<file>completion/chemsec.cwl</file>
<file>completion/chemstr.cwl</file>
<file>completion/chemstyle.cwl</file>
<file>completion/cherokee.cwl</file>
<file>completion/chessboard.cwl</file>
<file>completion/chessfss.cwl</file>
<file>completion/chet.cwl</file>
<file>completion/chextras.cwl</file>
<file>completion/chhaya.cwl</file>
<file>completion/chickenize.cwl</file>
<file>completion/china2e.cwl</file>
<file>completion/chinesechess.cwl</file>
<file>completion/Chivo.cwl</file>
<file>completion/chkfloat.cwl</file>
<file>completion/chmst-pdf.cwl</file>
<file>completion/chngcntr.cwl</file>
<file>completion/chordbars.cwl</file>
<file>completion/chordbox.cwl</file>
<file>completion/chronology.cwl</file>
<file>completion/chronosys.cwl</file>
<file>completion/churchslavonic.cwl</file>
<file>completion/cinzel.cwl</file>
<file>completion/circle.cwl</file>
<file>completion/circledsteps.cwl</file>
<file>completion/circledtext.cwl</file>
<file>completion/circuitikz.cwl</file>
<file>completion/citation-style-language.cwl</file>
<file>completion/citeall.cwl</file>
<file>completion/cite.cwl</file>
<file>completion/cjhebrew.cwl</file>
<file>completion/CJK.cwl</file>
<file>completion/CJKfntef.cwl</file>
<file>completion/CJKnumb.cwl</file>
<file>completion/CJKpunct.cwl</file>
<file>completion/CJKutf8.cwl</file>
<file>completion/cjkutf8-josa.cwl</file>
<file>completion/cjkutf8-ko.cwl</file>
<file>completion/CJKvert.cwl</file>
<file>completion/clara.cwl</file>
<file>completion/class-a0poster.cwl</file>
<file>completion/class-aalok.cwl</file>
<file>completion/class-abntex2.cwl</file>
<file>completion/class-abntexto.cwl</file>
<file>completion/class-achemso.cwl</file>
<file>completion/class-acmart.cwl</file>
<file>completion/class-acm-book.cwl</file>
<file>completion/class-altacv.cwl</file>
<file>completion/class-amsart.cwl</file>
<file>completion/class-amsbkrev.cwl</file>
<file>completion/class-amsbook.cwl</file>
<file>completion/class-amsldoc.cwl</file>
<file>completion/class-amsproc.cwl</file>
<file>completion/class-amstext-l.cwl</file>
<file>completion/class-aomart.cwl</file>
<file>completion/class-apa7.cwl</file>
<file>completion/class-arabic-book.cwl</file>
<file>completion/class-argetabelle.cwl</file>
<file>completion/class-artikel1.cwl</file>
<file>completion/class-artikel2.cwl</file>
<file>completion/class-artikel3.cwl</file>
<file>completion/class-asmeconf.cwl</file>
<file>completion/class-asmejour.cwl</file>
<file>completion/class-aucklandthesis.cwl</file>
<file>completion/class-bangorcsthesis.cwl</file>
<file>completion/class-bankstatement.cwl</file>
<file>completion/class-basque-book.cwl</file>
<file>completion/class-beamer.cwl</file>
<file>completion/class-beamer-rl.cwl</file>
<file>completion/class-beamerswitch.cwl</file>
<file>completion/class-beaulivre.cwl</file>
<file>completion/class-beilstein.cwl</file>
<file>completion/class-bewerbung.cwl</file>
<file>completion/class-bfhbeamer.cwl</file>
<file>completion/class-bfhpub.cwl</file>
<file>completion/class-bfhsciposter.cwl</file>
<file>completion/class-bfhthesis.cwl</file>
<file>completion/class-BHCexam.cwl</file>
<file>completion/class-biditufte-book.cwl</file>
<file>completion/class-biditufte-handout.cwl</file>
<file>completion/class-bitart.cwl</file>
<file>completion/class-bitbeamer.cwl</file>
<file>completion/class-bitbook.cwl</file>
<file>completion/class-bithesis.cwl</file>
<file>completion/class-bitreport.cwl</file>
<file>completion/class-bjfuthesis.cwl</file>
<file>completion/class-boek3.cwl</file>
<file>completion/class-boek.cwl</file>
<file>completion/class-bookcover.cwl</file>
<file>completion/class-book.cwl</file>
<file>completion/class-bookshelf.cwl</file>
<file>completion/class-brandeis-thesis.cwl</file>
<file>completion/class-brief.cwl</file>
<file>completion/class-br-lex.cwl</file>
<file>completion/class-buctcover.cwl</file>
<file>completion/class-buctthesis.cwl</file>
<file>completion/class-bull-l.cwl</file>
<file>completion/class-businesscard-qrcode.cwl</file>
<file>completion/class-caesar_book.cwl</file>
<file>completion/class-cas-dc.cwl</file>
<file>completion/class-cas-sc.cwl</file>
<file>completion/class-cesenaexam.cwl</file>
<file>completion/class-cheatsheet.cwl</file>
<file>completion/class-chletter.cwl</file>
<file>completion/class-cnltx-doc.cwl</file>
<file>completion/class-codedoc.cwl</file>
<file>completion/class-colorart.cwl</file>
<file>completion/class-colorbook.cwl</file>
<file>completion/class-combine.cwl</file>
<file>completion/class-contracard.cwl</file>
<file>completion/class-cours.cwl</file>
<file>completion/class-cquthesis.cwl</file>
<file>completion/class-csassignments.cwl</file>
<file>completion/class-ctexart.cwl</file>
<file>completion/class-ctexbeamer.cwl</file>
<file>completion/class-ctexbook.cwl</file>
<file>completion/class-ctexrep.cwl</file>
<file>completion/class-ctxdoc.cwl</file>
<file>completion/class-curve.cwl</file>
<file>completion/class-droit-fr.cwl</file>
<file>completion/class-dtk.cwl</file>
<file>completion/class-easybook.cwl</file>
<file>completion/class-ecgd-l.cwl</file>
<file>completion/class-einfart.cwl</file>
<file>completion/class-ejpecp.cwl</file>
<file>completion/class-elegantbook.cwl</file>
<file>completion/class-elegantnote.cwl</file>
<file>completion/class-elegantpaper.cwl</file>
<file>completion/class-elpres.cwl</file>
<file>completion/class-elsarticle.cwl</file>
<file>completion/class-elteikthesis.cwl</file>
<file>completion/class-emisa.cwl</file>
<file>completion/class-ert-l.cwl</file>
<file>completion/class-europasscv.cwl</file>
<file>completion/class-europecv.cwl</file>
<file>completion/class-exam.cwl</file>
<file>completion/class-examz.cwl</file>
<file>completion/class-exam-n.cwl</file>
<file>completion/class-exam-zh.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-factura.cwl</file>
<file>completion/class-facture.cwl</file>
<file>completion/class-fancyhandout.cwl</file>
<file>completion/class-fancyslides.cwl</file>
<file>completion/class-fduthesis.cwl</file>
<file>completion/class-fduthesis-en.cwl</file>
<file>completion/class-fei.cwl</file>
<file>completion/class-fiche.cwl</file>
<file>completion/class-fithesis4.cwl</file>
<file>completion/class-flashcards.cwl</file>
<file>completion/class-FUbeamer.cwl</file>
<file>completion/class-FUpowerdot.cwl</file>
<file>completion/class-gammas.cwl</file>
<file>completion/class-g-brief2.cwl</file>
<file>completion/class-g-brief.cwl</file>
<file>completion/class-geradwp.cwl</file>
<file>completion/class-grant-afosr.cwl</file>
<file>completion/class-grant-aro.cwl</file>
<file>completion/class-grant.cwl</file>
<file>completion/class-grant-darpa.cwl</file>
<file>completion/class-grant-doe.cwl</file>
<file>completion/class-grant-nih.cwl</file>
<file>completion/class-grant-nrl.cwl</file>
<file>completion/class-grant-nsf.cwl</file>
<file>completion/class-grant-onr.cwl</file>
<file>completion/class-graphpaper.cwl</file>
<file>completion/class-gridslides.cwl</file>
<file>completion/class-gtpart.cwl</file>
<file>completion/class-guitartabs.cwl</file>
<file>completion/class-guitbeamer.cwl</file>
<file>completion/class-gztarticle.cwl</file>
<file>completion/class-harnon-cv.cwl</file>
<file>completion/class-hausarbeit-jura.cwl</file>
<file>completion/class-hecthese.cwl</file>
<file>completion/class-hepthesis.cwl</file>
<file>completion/class-hfutthesis.cwl</file>
<file>completion/class-hgbarticle.cwl</file>
<file>completion/class-hgbreport.cwl</file>
<file>completion/class-hgbthesis.cwl</file>
<file>completion/class-hitec.cwl</file>
<file>completion/class-hletter.cwl</file>
<file>completion/class-hu-berlin-letter.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-idcc.cwl</file>
<file>completion/class-IEEEconf.cwl</file>
<file>completion/class-IEEEtran.cwl</file>
<file>completion/classif2.cwl</file>
<file>completion/class-ijdc-v14.cwl</file>
<file>completion/class-ijdc-v9.cwl</file>
<file>completion/class-image-gallery.cwl</file>
<file>completion/class-imsart.cwl</file>
<file>completion/class-invoice-class.cwl</file>
<file>completion/class-iodhbwm.cwl</file>
<file>completion/class-iopart.cwl</file>
<file>completion/class-iscram.cwl</file>
<file>completion/class-isodoc.cwl</file>
<file>completion/class-isov2.cwl</file>
<file>completion/class-jacow.cwl</file>
<file>completion/class-jag-l.cwl</file>
<file>completion/class-jams-l.cwl</file>
<file>completion/class-jarticle.cwl</file>
<file>completion/class-jbook.cwl</file>
<file>completion/class-jj_game.cwl</file>
<file>completion/class-jlreq.cwl</file>
<file>completion/class-jltxdoc.cwl</file>
<file>completion/class-jmlr.cwl</file>
<file>completion/class-jourcl.cwl</file>
<file>completion/class-jreport.cwl</file>
<file>completion/class-jsarticle.cwl</file>
<file>completion/class-jsbook.cwl</file>
<file>completion/class-jspf.cwl</file>
<file>completion/class-jsreport.cwl</file>
<file>completion/class-jurabook.cwl</file>
<file>completion/class-juraovw.cwl</file>
<file>completion/class-juraurtl.cwl</file>
<file>completion/class-jwjournal.cwl</file>
<file>completion/class-kaobook.cwl</file>
<file>completion/class-kaohandt.cwl</file>
<file>completion/class-kdpcover.cwl</file>
<file>completion/class-kerntest.cwl</file>
<file>completion/class-kiyou.cwl</file>
<file>completion/class-komacv.cwl</file>
<file>completion/class-l3doc.cwl</file>
<file>completion/class-labbook.cwl</file>
<file>completion/class-langscibook.cwl</file>
<file>completion/class-leadsheet.cwl</file>
<file>completion/class-leaflet.cwl</file>
<file>completion/class-lebhart.cwl</file>
<file>completion/class-letgut.cwl</file>
<file>completion/class-letter.cwl</file>
<file>completion/class-lettre.cwl</file>
<file>completion/class-limap.cwl</file>
<file>completion/class-limecv.cwl</file>
<file>completion/classlist.cwl</file>
<file>completion/class-llncs.cwl</file>
<file>completion/class-lni.cwl</file>
<file>completion/class-ltjarticle.cwl</file>
<file>completion/class-ltjbook.cwl</file>
<file>completion/class-ltjltxdoc.cwl</file>
<file>completion/class-ltjreport.cwl</file>
<file>completion/class-ltjsarticle.cwl</file>
<file>completion/class-ltjsbook.cwl</file>
<file>completion/class-ltjskiyou.cwl</file>
<file>completion/class-ltjspf.cwl</file>
<file>completion/class-ltjsreport.cwl</file>
<file>completion/class-ltjtarticle.cwl</file>
<file>completion/class-ltjtbook.cwl</file>
<file>completion/class-ltjtreport.cwl</file>
<file>completion/class-ltnews.cwl</file>
<file>completion/class-ltugboat.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-maabook.cwl</file>
<file>completion/class-matapli.cwl</file>
<file>completion/class-mcmthesis.cwl</file>
<file>completion/class-mcom-l.cwl</file>
<file>completion/class-meetingmins.cwl</file>
<file>completion/class-memoir.cwl</file>
<file>completion/class-memo-l.cwl</file>
<file>completion/class-mensa-tex.cwl</file>
<file>completion/class-metanorma.cwl</file>
<file>completion/class-milog.cwl</file>
<file>completion/class-minimart.cwl</file>
<file>completion/class-minimbook.cwl</file>
<file>completion/class-mitthesis.cwl</file>
<file>completion/class-mla.cwl</file>
<file>completion/class-mnras.cwl</file>
<file>completion/class-moderncv.cwl</file>
<file>completion/class-modernposter.cwl</file>
<file>completion/class-mosc-l.cwl</file>
<file>completion/class-msu-thesis.cwl</file>
<file>completion/class-mucproc.cwl</file>
<file>completion/class-mugsthesis.cwl</file>
<file>completion/class-mwart.cwl</file>
<file>completion/class-mwbk.cwl</file>
<file>completion/class-mwrep.cwl</file>
<file>completion/class-mynsfc.cwl</file>
<file>completion/class-nanicolle.cwl</file>
<file>completion/class-ncc.cwl</file>
<file>completion/class-nddiss2e.cwl</file>
<file>completion/class-newlfm.cwl</file>
<file>completion/class-njustthesis.cwl</file>
<file>completion/class-njuthesis.cwl</file>
<file>completion/class-nlctdoc.cwl</file>
<file>completion/class-nostarch.cwl</file>
<file>completion/class-novel.cwl</file>
<file>completion/class-nwafuthesis.cwl</file>
<file>completion/class-nwejmart.cwl</file>
<file>completion/class-oblivoir.cwl</file>
<file>completion/class-octavo.cwl</file>
<file>completion/class-oup-authoring-template.cwl</file>
<file>completion/class-pagelayout.cwl</file>
<file>completion/class-papertex.cwl</file>
<file>completion/class-pdfArticle.cwl</file>
<file>completion/class-petiteannonce.cwl</file>
<file>completion/class-phfextendedabstract.cwl</file>
<file>completion/class-philosophersimprint.cwl</file>
<file>completion/class-photobook.cwl</file>
<file>completion/class-pkuthss.cwl</file>
<file>completion/class-powerdot.cwl</file>
<file>completion/class-pressrelease.cwl</file>
<file>completion/class-proc.cwl</file>
<file>completion/class-proc-l.cwl</file>
<file>completion/class-protocol.cwl</file>
<file>completion/class-prtec.cwl</file>
<file>completion/class-pylatex.cwl</file>
<file>completion/class-qam-l.cwl</file>
<file>completion/class-qcm.cwl</file>
<file>completion/class-quantumarticle.cwl</file>
<file>completion/class-quantumview.cwl</file>
<file>completion/class-rapport1.cwl</file>
<file>completion/class-rapport3.cwl</file>
<file>completion/class-ReadableCV.cwl</file>
<file>completion/class-report.cwl</file>
<file>completion/class-resphilosophica.cwl</file>
<file>completion/class-resumecls.cwl</file>
<file>completion/class-revtex4-2.cwl</file>
<file>completion/class-ryersonSGSThesis.cwl</file>
<file>completion/class-sagej.cwl</file>
<file>completion/class-sapthesis.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-schwalbe.cwl</file>
<file>completion/class-sciposter.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-scrdoc.cwl</file>
<file>completion/class-screenplay.cwl</file>
<file>completion/class-scrlttr2.cwl</file>
<file>completion/class-scrreprt.cwl</file>
<file>completion/class-sdapsclassic.cwl</file>
<file>completion/class-se2thesis.cwl</file>
<file>completion/class-shtthesis.cwl</file>
<file>completion/class-simplethesisdissertation.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-smfart.cwl</file>
<file>completion/class-smfbook.cwl</file>
<file>completion/class-sn-jnl.cwl</file>
<file>completion/class-spmj-l.cwl</file>
<file>completion/class-sr-vorl.cwl</file>
<file>completion/class-sslides.cwl</file>
<file>completion/class-stage.cwl</file>
<file>completion/class-standalone.cwl</file>
<file>completion/class-stex.cwl</file>
<file>completion/class-suftesi.cwl</file>
<file>completion/class-surv-l.cwl</file>
<file>completion/class-svmono.cwl</file>
<file>completion/class-svmult.cwl</file>
<file>completion/class-talk.cwl</file>
<file>completion/class-tarticle.cwl</file>
<file>completion/class-tbook.cwl</file>
<file>completion/class-thesis-ekf.cwl</file>
<file>completion/class-thuthesis.cwl</file>
<file>completion/class-tikz-kalender.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-toptesi.cwl</file>
<file>completion/class-tpms-l.cwl</file>
<file>completion/class-tran-l.cwl</file>
<file>completion/class-trans2-l.cwl</file>
<file>completion/class-treport.cwl</file>
<file>completion/class-tudabeamer.cwl</file>
<file>completion/class-tudaexercise.cwl</file>
<file>completion/class-tudaleaflet.cwl</file>
<file>completion/class-tudaletter.cwl</file>
<file>completion/class-tudaposter.cwl</file>
<file>completion/class-tudapub.cwl</file>
<file>completion/class-tudasciposter.cwl</file>
<file>completion/class-tudscrartcl.cwl</file>
<file>completion/class-tudscrbook.cwl</file>
<file>completion/class-tudscrposter.cwl</file>
<file>completion/class-tudscrreprt.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-ucalgmthesis.cwl</file>
<file>completion/class-ucbthesis.cwl</file>
<file>completion/class-ucdavisthesis.cwl</file>
<file>completion/class-udes-genie-these.cwl</file>
<file>completion/class-ujarticle.cwl</file>
<file>completion/class-ujbook.cwl</file>
<file>completion/class-ujreport.cwl</file>
<file>completion/class-ukbill.cwl</file>
<file>completion/class-ulect-l.cwl</file>
<file>completion/class-ulthese.cwl</file>
<file>completion/class-unbtex.cwl</file>
<file>completion/class-unifith.cwl</file>
<file>completion/class-unigrazpub.cwl</file>
<file>completion/class-univie-ling-expose.cwl</file>
<file>completion/class-univie-ling-handout.cwl</file>
<file>completion/class-univie-ling-paper.cwl</file>
<file>completion/class-univie-ling-poster.cwl</file>
<file>completion/class-univie-ling-thesis.cwl</file>
<file>completion/class-univie-ling-wlg.cwl</file>
<file>completion/class-upmethodology-document.cwl</file>
<file>completion/class-utarticle.cwl</file>
<file>completion/class-utbook.cwl</file>
<file>completion/class-utexasthesis.cwl</file>
<file>completion/class-utreport.cwl</file>
<file>completion/class-ut-thesis.cwl</file>
<file>completion/class-uuthesis2e.cwl</file>
<file>completion/class-verifica.cwl</file>
<file>completion/class-webquiz.cwl</file>
<file>completion/class-wgexport.cwl</file>
<file>completion/class-willowtreebook.cwl</file>
<file>completion/class-xdupgthesis.cwl</file>
<file>completion/class-xduugthesis.cwl</file>
<file>completion/class-xduugtp.cwl</file>
<file>completion/class-xebaposter.cwl</file>
<file>completion/class-xepersian-magazine.cwl</file>
<file>completion/class-yaletter.cwl</file>
<file>completion/class-ycbook.cwl</file>
<file>completion/class-ydoc.cwl</file>
<file>completion/class-zbMATH.cwl</file>
<file>completion/cleanthesis.cwl</file>
<file>completion/ClearSans.cwl</file>
<file>completion/clefval.cwl</file>
<file>completion/cleveref.cwl</file>
<file>completion/cleveref-usedon.cwl</file>
<file>completion/clicks.cwl</file>
<file>completion/clipboard.cwl</file>
<file>completion/clock.cwl</file>
<file>completion/clojure-pamphlet.cwl</file>
<file>completion/cloze.cwl</file>
<file>completion/clrdblpg.cwl</file>
<file>completion/clrscode3e.cwl</file>
<file>completion/clrstrip.cwl</file>
<file>completion/cmathbb.cwl</file>
<file>completion/cmbright.cwl</file>