forked from decal/werdlists
-
Notifications
You must be signed in to change notification settings - Fork 4
/
vim-autocmd-list.txt
1398 lines (1398 loc) · 29.9 KB
/
vim-autocmd-list.txt
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
*.xpm if getline(1) =~ "XPM2" | setf xpm2 | else
*.xpm2 setf xpm2
*.aap setf aap
a2psrc setf a2ps
.a2psrc setf a2ps
*.abap setf abap
*.abc setf abc
*.abl setf abel
*.wrm setf acedb
*.adb setf ada
*.ads setf ada
*.ada setf ada
*.gpr setf ada
*.tdf setf ahdl
*.run setf ampl
build.xml setf ant
*.ino setf arduino
*.pde setf arduino
.htaccess setf apache
*.a65 setf a65
*.scpt setf applescript
.asoundrc setf alsaconf
*.aml setf aml
apt.conf setf aptconf
*.art setf art
*.adoc setf asciidoc
*.asn setf asn
*.asn1 setf asn
*.asa if exists("g:filetype_asa") | exe "setf "
*.asp if exists("g:filetype_asp") | exe "setf "
*.mar setf vmasm
*.atl setf atlas
*.as setf atlas
*.au3 setf autoit
*.ahk setf autohotkey
*.at setf m4
*.ave setf ave
*.awk setf awk
*.mch setf b
*.ref setf b
*.imp setf b
*.vb setf vb
*.vbs setf vb
*.dsm setf vb
*.ctl setf vb
*.iba setf ibasic
*.ibi setf ibasic
*.fb setf freebasic
*.bi setf freebasic
*.bat setf dosbatch
*.sys setf dosbatch
*.cmd if getline(1) =~ '^/\*' | setf rexx | else |
*.bc setf bc
*.bdf setf bdf
*.bib setf bib
*.bst setf bst
rndc.conf setf named
*.bl setf blank
*.bzl setfiletype bzl
BUILD setfiletype bzl
WORKSPACE setfiletype bzl
calendar setf calendar
*.cs setf cs
*.csdl setf csdl
*.cabal setf cabal
*.toc setf cdrtoc
.cdrdao setf cdrdaoconf
*.chai setf chaiscript
*.cdl setf cdl
*.recipe setf conaryrecipe
*.crm setf crm
*.cyn setf cynpp
*.cc if exists("cynlib_syntax_for_cc")|setf cynli
*.cpp if exists("cynlib_syntax_for_cpp")|setf cynl
*.cxx setf cpp
*.c++ setf cpp
*.hh setf cpp
*.hxx setf cpp
*.hpp setf cpp
*.ipp setf cpp
*.moc setf cpp
*.tcc setf cpp
*.inl setf cpp
*.C setf cpp
*.H setf cpp
*.chf setf ch
*.tlh setf cpp
*.css setf css
*.con setf cterm
NEWS.dch setf debchangelog
NEWS if getline(1) =~ '; urgency='| setf debcha
*..ch setf chill
*.chopro setf chordpro
*.crd setf chordpro
*.cho setf chordpro
*.crdpro setf chordpro
*.dcl setf clean
*.icl setf clean
*.eni setf cl
*.prg if exists("g:filetype_prg") | exe "setf "
*.clj setf clojure
*.cljs setf clojure
*.cljx setf clojure
*.cljc setf clojure
*.cmake setf cmake
*.cbl setf cobol
*.cob setf cobol
*.lib setf cobol
*.cpy if getline(1) =~ '^##' | setf python | els
*.atg setf coco
*.cfm setf cf
*.cfi setf cf
*.cfc setf cf
*.cu setf cuda
*.dcd setf dcd
lynx.cfg setf lynx
*.qc setf c
*.cfg setf cfg
*.feature setf cucumber
*.csp setf csp
*.fdr setf csp
*.pld setf cupl
*.si setf cuplsim
control if getline(1) =~ '^Source:'| setf debcontr
*.desc setf desc
*.desktop setf desktop
dict.conf setf dictconf
.dictrc setf dictconf
*.diff setf diff
*.rej setf diff
*.patch setf diff
*.dot setf dot
*.lid setf dylanlid
*.intr setf dylanintr
*.dylan setf dylan
*.def setf def
*.drac setf dracula
*.drc setf dracula
*lvs setf dracula
*lpe setf dracula
*.ds setf datascript
*.dsl setf dsl
*.dtd setf dtd
*.dts setf dts
*.dtsi setf dts
*.ecd setf ecd
*.erl setf erlang
*.hrl setf erlang
*.yaws setf erlang
*esmtprc setf esmtprc
*.ec setf esqlc
*.EC setf esqlc
*.strl setf esterel
*.csc setf csc
exim.conf setf exim
*.exp setf expect
exports setf exports
*.fal setf falcon
*.fan setf fan
*.fwt setf fan
*.factor setf factor
*.fex setf focexec
*.focexec setf focexec
*.mas setf master
*.master setf master
*.fs setf forth
*.ft setf forth
*.frt setf reva
*.F setf fortran
*.FOR setf fortran
*.FPP setf fortran
*.FTN setf fortran
*.F77 setf fortran
*.F90 setf fortran
*.F95 setf fortran
*.F03 setf fortran
*.F08 setf fortran
*.f setf fortran
*.for setf fortran
*.fortran setf fortran
*.fpp setf fortran
*.ftn setf fortran
*.f77 setf fortran
*.f90 setf fortran
*.f95 setf fortran
*.f03 setf fortran
*.f08 setf fortran
*.fsl setf framescript
fstab setf fstab
mtab setf fstab
.gdbinit setf gdb
*.mo setf gdmo
*.gdmo setf gdmo
*.ged setf gedcom
MERGE_MSG setf gitcommit
gkrellmrc setf gkrellmrc
*.gp setf gp
.gprc setf gp
gnashrc setf gnash
.gnashrc setf gnash
*.gpi setf gnuplot
*.go setf go
*.gs setf grads
*.gretl setf gretl
*.gradle setf groovy
*.groovy setf groovy
*.gsp setf gsp
.gtkrc setf gtkrc
gtkrc setf gtkrc
*.haml setf haml
*.hsc setf hamster
*.hsm setf hamster
*.hs setf haskell
*.hs-boot setf haskell
*.lhs setf lhaskell
*.chs setf chaskell
*.ht setf haste
*.htpp setf hastepreproc
*.vc setf hercules
*.ev setf hercules
*.rs setf hercules
*.sum setf hercules
*.errsum setf hercules
*.hex setf hex
*.h32 setf hex
*.t.html setf tilde
*.erb setf eruby
*.rhtml setf eruby
*.html.m4 setf htmlm4
*.tmpl setf htmlcheetah
*.hb setf hb
*.htt setf httest
*.htb setf httest
*.icn setf icon
*.odl setf msidl
*.mof setf msidl
indentrc setf indent
*.inf setf inform
*.INF setf inform
*.ii setf initng
ipf.conf setf ipfilter
ipf6.conf setf ipfilter
ipf.rules setf ipfilter
*.4gl setf fgl
*.4gh setf fgl
*.m4gl setf fgl
*.ini setf dosini
inittab setf inittab
*.iss setf iss
*.ijs setf j
*.jal setf jal
*.JAL setf jal
*.jpl setf jam
*.jpr setf jam
*.java setf java
*.jav setf java
*.jj setf javacc
*.jjt setf javacc
*.js setf javascript
*.es setf javascript
*.jsx setf javascript
*.jsp setf jsp
*.clp setf jess
*.jgr setf jgraph
*.jov setf jovial
*.j73 setf jovial
*.jovial setf jovial
*.json setf json
*.jsonp setf json
*.kix setf kix
*.k setf kwt
*.kv setf kivy
*.ks setf kscript
Kconfig setf kconfig
*.ace setf lace
*.ACE setf lace
*.latte setf latte
*.lte setf latte
*.sig setf lprolog
*.ldif setf ldif
*.ld setf ld
*.less setf less
*.lex setf lex
*.l setf lex
*.lxx setf lex
*.l++ setf lex
*/.libao setf libao
lftp.conf setf lftp
.lftprc setf lftp
*lftp/rc setf lftp
*.ll setf lifelines
lilo.conf setf lilo
*.lsp setf lisp
*.lisp setf lisp
*.el setf lisp
*.cl setf lisp
*.jl setf lisp
*.L setf lisp
.emacs setf lisp
sbclrc setf lisp
.sbclrc setf lisp
*.liquid setf liquid
*.lite setf lite
*.lt setf lite
*.lgt setf logtalk
*.lot setf lotos
*.lotos setf lotos
*.lou setf lout
*.lout setf lout
*.lua setf lua
*.lsl setf lsl
*.lss setf lss
*.mgp setf mgp
snd.\d\+ setf mail
.letter setf mail
.followup setf mail
.article setf mail
pico.\d\+ setf mail
*.eml setf mail
.mailcap setf mailcap
mailcap setf mailcap
*.mk setf make
*.mak setf make
*.dsp setf make
*.ist setf ist
*.mst setf ist
*.page setf mallard
*.man setf man
*.mv setf maple
*.mpl setf maple
*.mws setf maple
*.map setf map
*.mdown setf markdown
*.mkd setf markdown
*.mkdn setf markdown
*.mdwn setf markdown
*.md setf markdown
*.mason setf mason
*.mhtml setf mason
*.comp setf mason
*.nb setf mma
*.mel setf mel
*.hgrc setf cfg
*hgrc setf cfg
*.mf setf mf
*.mp setf mp
*.mgl setf mgl
*.mix setf mix
*.mixal setf mix
*.mmp setf mmp
*.mod if getline(1) =~ '\<module\>' | setf lprol
*.m2 setf modula2
*.DEF setf modula2
*.MOD setf modula2
*.mi setf modula2
*.isc setf monk
*.monk setf monk
*.ssc setf monk
*.tsc setf monk
*.moo setf moo
*.s19 setf srec
*.s28 setf srec
*.s37 setf srec
*.mot setf srec
*.srec setf srec
mrxvtrc setf mrxvtrc
.mrxvtrc setf mrxvtrc
*.msql setf msql
*.mysql setf mysql
*.rc setf rc
*.rch setf rc
*.mu setf mupad
*.mush setf mush
*.nanorc setf nanorc
.netrc setf netrc
*.ninja setf ninja
*.ncf setf ncf
*.tr setf nroff
*.nr setf nroff
*.roff setf nroff
*.tmac setf nroff
*.mom setf nroff
*.nqc setf nqc
*.nsi setf nsis
*.nsh setf nsis
*.ml setf ocaml
*.mli setf ocaml
*.mll setf ocaml
*.mly setf ocaml
*.occ setf occam
*.xom setf omnimark
*.xin setf omnimark
*.or setf openroad
*.ora setf ora
pf.conf setf pf
*.papp setf papp
*.pxml setf papp
*.pxsl setf papp
*.pas setf pascal
*.dpr setf pascal
*.pdf setf pdf
*.plx setf perl
*.al setf perl
*.p6 setf perl6
*.pm6 setf perl6
*.pl6 setf perl6
*.pm if getline(1) =~ "XPM2" | setf xpm2 | else
*.pod setf pod
*.pod6 setf pod6
*.php setf php
*.php\d setf php
*.phtml setf php
*.ctp setf php
*.pike setf pike
*.lpc setf pike
*.ulpc setf pike
*.pmod setf pike
*.rcp setf pilrc
.pinerc setf pine
pinerc setf pine
.pinercex setf pine
pinercex setf pine
*.pli setf pli
*.pl1 setf pli
*.plm setf plm
*.p36 setf plm
*.pac setf plm
*.pls setf plsql
*.plsql setf plsql
*.plp setf plp
*.po setf po
*.pot setf po
main.cf setf pfmain
*.ps setf postscr
*.pfa setf postscr
*.afm setf postscr
*.eps setf postscr
*.epsf setf postscr
*.epsi setf postscr
*.ai setf postscr
*.ppd setf ppd
*.pov setf pov
.povrayrc setf povini
*printcap let b:ptcap_type = "print" | setf ptcap
*termcap let b:ptcap_type = "term" | setf ptcap
*.g setf pccts
*.it setf ppwiz
*.ih setf ppwiz
*.obj setf obj
*.pc setf proc
*.action setf privoxy
.procmail setf procmail
*.psf setf psf
*.pdb setf prolog
*.pml setf promela
*.proto setf proto
*.pyx setf pyrex
*.pxd setf pyrex
*.py setf python
*.pyw setf python
.pythonrc setf python
*.ptl setf python
*.rad setf radiance
*.mat setf radiance
*\,v setf rcs
.inputrc setf readline
inputrc setf readline
*.rib setf rib
*.rex setf rexx
*.orx setf rexx
*.rxo setf rexx
*.rxj setf rexx
*.jrexx setf rexx
*.rexxj setf rexx
*.rexx setf rexx
*.s setf r
*.S setf r
*.rd setf rhelp
*.Rd setf rhelp
*.Rnw setf rnoweb
*.rnw setf rnoweb
*.Snw setf rnoweb
*.snw setf rnoweb
*.Rmd setf rmd
*.rmd setf rmd
*.Smd setf rmd
*.smd setf rmd
*.Rrst setf rrst
*.rrst setf rrst
*.Srst setf rrst
*.srst setf rrst
*.remind setf remind
*.rem setf remind
*.rnc setf rnc
*.rng setf rng
*.rpl setf rpl
*.x setf rpcgen
*.rst setf rst
*.rtf setf rtf
.irbrc setf ruby
irbrc setf ruby
*.rb setf ruby
*.rbw setf ruby
*.gemspec setf ruby
*.ru setf ruby
Gemfile setf ruby
*.builder setf ruby
*.rxml setf ruby
*.rjs setf ruby
*.rant setf ruby
*.rake setf ruby
*.sl setf slang
smb.conf setf samba
*.sas setf sas
*.sass setf sass
*.sa setf sather
*.scala setf scala
*.sci setf scilab
*.sce setf scilab
*.scss setf scss
*.sd setf sd
*.sdl setf sdl
*.pr setf sdl
*.sed setf sed
*.siv setf sieve
catalog setf catalog
*.install if getline(1) =~ '<?php' | setf php | else
.zprofile setf zsh
*.zsh setf zsh
*.scm setf scheme
*.ss setf scheme
*.rkt setf scheme
.screenrc setf screen
screenrc setf screen
*.sim setf simula
*.sin setf sinda
*.s85 setf sinda
*.sst setf sisu
*.ssm setf sisu
*.ssi setf sisu
*.-sst setf sisu
*._sst setf sisu
*.il setf skill
*.ils setf skill
*.cdf setf skill
.slrnrc setf slrnrc
*.score setf slrnsc
*.st setf st
*.cls if getline(1) =~ '^%' | setf tex | elseif g
*.tpl setf smarty
*.smil if getline(1) =~ '<?\s*xml.*?>' | setf xml
*.smi if getline(1) =~ '\<smil\>' | setf smil |
*.smt setf smith
*.smith setf smith
*.sno setf snobol4
*.spt setf snobol4
*.mib setf mib
*.my setf mib
*.hog setf hog
*.spec setf spec
*.speedup setf spup
*.spdata setf spup
*.spd setf spup
*.ice setf slice
*.sp setf spice
*.spice setf spice
*.spy setf spyce
*.spi setf spyce
*.tyb setf sql
*.typ setf sql
*.tyc setf sql
*.pkb setf sql
*.pks setf sql
*.sqlj setf sqlj
*.sqr setf sqr
*.sqi setf sqr
*.ado setf stata
*.class setf stata
*.do setf stata
*.imata setf stata
*.mata setf stata
*.hlp setf smcl
*.ihlp setf smcl
*.smcl setf smcl
*.stp setf stp
*.sml setf sml
*.cm setf voscm
*.sdc setf sdc
*.svg setf svg
*.t if !s:FTnroff() && !s:FTperl() | setf tads |
tags setf tags
*.tak setf tak
*.task setf taskedit
*.tcl setf tcl
*.tk setf tcl
*.itcl setf tcl
*.itk setf tcl
*.jacl setf tcl
*.tli setf tli
*.slt setf tsalt
*.ttl setf teraterm
*.ti setf terminfo
*.latex setf tex
*.sty setf tex
*.dtx setf tex
*.ltx setf tex
*.bbl setf tex
*.mkii setf context
*.mkiv setf context
*.texinfo setf texinfo
*.texi setf texinfo
*.txi setf texinfo
texmf.cnf setf texmf
.tidyrc setf tidy
tidyrc setf tidy
*.tf setf tf
.tfrc setf tf
tfrc setf tf
*.tpp setf tpp
*.treetop setf treetop
*.tssgm setf tssgm
*.tssop setf tssop
*.tsscl setf tsscl
*.twig setf twig
*.uit setf uil
*.uil setf uil
*.uc setf uc
*.vr setf vera
*.vri setf vera
*.vrh setf vera
*.v setf verilog
*.va setf verilogams
*.vams setf verilogams
*.sv setf systemverilog
*.svh setf systemverilog
*.hdl setf vhdl
*.vhd setf vhdl
*.vhdl setf vhdl
*.vbe setf vhdl
*.vst setf vhdl
*.vim setf vim
*.vba setf vim
.exrc setf vim
_exrc setf vim
.viminfo setf viminfo
_viminfo setf viminfo
*.hw if getline(1) =~ '<?php' | setf php | else
*.module if getline(1) =~ '<?php' | setf php | else
*.pkg if getline(1) =~ '<?php' | setf php | else
*.sba setf vb
vgrindefs setf vgrindefs
*.wrl setf vrml
*.vroom setf vroom
*.wm setf webmacro
.wgetrc setf wget
wgetrc setf wget
*.wml setf wml
*.wbt setf winbatch
*.wsml setf wsml
.wvdialrc setf wvdial
.cvsrc setf cvsrc
cvs\d\+ setf cvs
*.ws[fc] setf wsh
*.xhtml setf xhtml
*.xht setf xhtml
xorg.conf let b:xf86conf_xfree86_version = 4 | setf xf
*.xs setf xs
*.ad setf xdefaults
*.msc setf xmath
*.msf setf xmath
*.xmi setf xml
*.csproj setf xml
*.ts setf xml
*.ui setf xml
*.tpm setf xml
fglrxrc setf xml
*.xlf setf xml
*.xliff setf xml
*.xul setf xml
*Xmodmap setf xmodmap
*.xq setf xquery
*.xql setf xquery
*.xqm setf xquery
*.xquery setf xquery
*.xqy setf xquery
*.xsd setf xsd
*.xsl setf xslt
*.xslt setf xslt
*.yy setf yacc
*.yxx setf yacc
*.y++ setf yacc
*.yaml setf yaml
*.yml setf yaml
*.zu setf zimbu
*.zut setf zimbutempl
*.z8a setf z8a
bzr_log.* setf bzr
*.txt setf text
*.text setf text
README setf text
*.aap setf aap
a2psrc setf a2ps
.a2psrc setf a2ps
*.abap setf abap
*.abc setf abc
*.abl setf abel
*.wrm setf acedb
*.adb setf ada
*.ads setf ada
*.ada setf ada
*.gpr setf ada
*.tdf setf ahdl
*.run setf ampl
build.xml setf ant
*.ino setf arduino
*.pde setf arduino
.htaccess setf apache
*.a65 setf a65
*.scpt setf applescript
.asoundrc setf alsaconf
*.aml setf aml
apt.conf setf aptconf
*.art setf art
*.adoc setf asciidoc
*.asn setf asn
*.asn1 setf asn
*.asa if exists("g:filetype_asa") | exe "setf "
*.asp if exists("g:filetype_asp") | exe "setf "
*.mar setf vmasm
*.atl setf atlas
*.as setf atlas
*.au3 setf autoit
*.ahk setf autohotkey
*.at setf m4
*.ave setf ave
*.awk setf awk
*.mch setf b
*.ref setf b
*.imp setf b
*.vb setf vb
*.vbs setf vb
*.dsm setf vb
*.ctl setf vb
*.iba setf ibasic
*.ibi setf ibasic
*.fb setf freebasic
*.bi setf freebasic
*.bat setf dosbatch
*.sys setf dosbatch
*.cmd if getline(1) =~ '^/\*' | setf rexx | else |
*.bc setf bc
*.bdf setf bdf
*.bib setf bib
*.bst setf bst
rndc.conf setf named
*.bl setf blank
*.bzl setfiletype bzl
BUILD setfiletype bzl
WORKSPACE setfiletype bzl
calendar setf calendar
*.cs setf cs
*.csdl setf csdl
*.cabal setf cabal
*.toc setf cdrtoc
.cdrdao setf cdrdaoconf
*.chai setf chaiscript
*.cdl setf cdl
*.recipe setf conaryrecipe
*.crm setf crm
*.cyn setf cynpp
*.cc if exists("cynlib_syntax_for_cc")|setf cynli
*.cpp if exists("cynlib_syntax_for_cpp")|setf cynl
*.cxx setf cpp
*.c++ setf cpp
*.hh setf cpp
*.hxx setf cpp
*.hpp setf cpp
*.ipp setf cpp
*.moc setf cpp
*.tcc setf cpp
*.inl setf cpp
*.C setf cpp
*.H setf cpp
*.chf setf ch
*.tlh setf cpp
*.css setf css
*.con setf cterm
NEWS.dch setf debchangelog
NEWS if getline(1) =~ '; urgency='| setf debcha
*..ch setf chill
*.chopro setf chordpro
*.crd setf chordpro
*.cho setf chordpro
*.crdpro setf chordpro
*.dcl setf clean
*.icl setf clean
*.eni setf cl
*.prg if exists("g:filetype_prg") | exe "setf "
*.clj setf clojure
*.cljs setf clojure
*.cljx setf clojure
*.cljc setf clojure
*.cmake setf cmake
*.cbl setf cobol
*.cob setf cobol
*.lib setf cobol
*.cpy if getline(1) =~ '^##' | setf python | els
*.atg setf coco
*.cfm setf cf
*.cfi setf cf
*.cfc setf cf
*.cu setf cuda
*.dcd setf dcd
lynx.cfg setf lynx
*.qc setf c
*.cfg setf cfg
*.feature setf cucumber
*.csp setf csp
*.fdr setf csp
*.pld setf cupl
*.si setf cuplsim
control if getline(1) =~ '^Source:'| setf debcontr
*.desc setf desc
*.desktop setf desktop
dict.conf setf dictconf
.dictrc setf dictconf
*.diff setf diff
*.rej setf diff
*.patch setf diff
*.dot setf dot
*.lid setf dylanlid
*.intr setf dylanintr
*.dylan setf dylan
*.def setf def
*.drac setf dracula
*.drc setf dracula
*lvs setf dracula
*lpe setf dracula
*.ds setf datascript
*.dsl setf dsl
*.dtd setf dtd
*.dts setf dts
*.dtsi setf dts
*.ecd setf ecd
*.erl setf erlang
*.hrl setf erlang
*.yaws setf erlang
*esmtprc setf esmtprc
*.ec setf esqlc
*.EC setf esqlc
*.strl setf esterel
*.csc setf csc
exim.conf setf exim
*.exp setf expect
exports setf exports
*.fal setf falcon
*.fan setf fan
*.fwt setf fan
*.factor setf factor
*.fex setf focexec
*.focexec setf focexec
*.mas setf master
*.master setf master
*.fs setf forth
*.ft setf forth
*.frt setf reva
*.F setf fortran
*.FOR setf fortran
*.FPP setf fortran
*.FTN setf fortran
*.F77 setf fortran
*.F90 setf fortran
*.F95 setf fortran
*.F03 setf fortran
*.F08 setf fortran
*.f setf fortran
*.for setf fortran
*.fortran setf fortran
*.fpp setf fortran
*.ftn setf fortran
*.f77 setf fortran
*.f90 setf fortran
*.f95 setf fortran
*.f03 setf fortran
*.f08 setf fortran
*.fsl setf framescript
fstab setf fstab
mtab setf fstab
.gdbinit setf gdb
*.mo setf gdmo
*.gdmo setf gdmo
*.ged setf gedcom
MERGE_MSG setf gitcommit
gkrellmrc setf gkrellmrc
*.gp setf gp
.gprc setf gp
gnashrc setf gnash
.gnashrc setf gnash
*.gpi setf gnuplot
*.go setf go
*.gs setf grads
*.gretl setf gretl
*.gradle setf groovy
*.groovy setf groovy
*.gsp setf gsp
.gtkrc setf gtkrc
gtkrc setf gtkrc
*.haml setf haml
*.hsc setf hamster
*.hsm setf hamster
*.hs setf haskell
*.hs-boot setf haskell
*.lhs setf lhaskell
*.chs setf chaskell
*.ht setf haste
*.htpp setf hastepreproc
*.vc setf hercules
*.ev setf hercules
*.rs setf hercules
*.sum setf hercules
*.errsum setf hercules
*.hex setf hex
*.h32 setf hex
*.t.html setf tilde
*.erb setf eruby
*.rhtml setf eruby
*.html.m4 setf htmlm4
*.tmpl setf htmlcheetah
*.hb setf hb
*.htt setf httest
*.htb setf httest
*.icn setf icon
*.odl setf msidl
*.mof setf msidl
indentrc setf indent
*.inf setf inform
*.INF setf inform
*.ii setf initng
ipf.conf setf ipfilter
ipf6.conf setf ipfilter
ipf.rules setf ipfilter
*.4gl setf fgl
*.4gh setf fgl
*.m4gl setf fgl
*.ini setf dosini
inittab setf inittab
*.iss setf iss
*.ijs setf j
*.jal setf jal
*.JAL setf jal
*.jpl setf jam
*.jpr setf jam
*.java setf java
*.jav setf java
*.jj setf javacc
*.jjt setf javacc
*.js setf javascript
*.es setf javascript
*.jsx setf javascript
*.jsp setf jsp
*.clp setf jess
*.jgr setf jgraph
*.jov setf jovial
*.j73 setf jovial
*.jovial setf jovial
*.json setf json
*.jsonp setf json
*.kix setf kix
*.k setf kwt
*.kv setf kivy
*.ks setf kscript
Kconfig setf kconfig
*.ace setf lace
*.ACE setf lace
*.latte setf latte
*.lte setf latte
*.sig setf lprolog
*.ldif setf ldif
*.ld setf ld
*.less setf less
*.lex setf lex
*.l setf lex
*.lxx setf lex
*.l++ setf lex
*/.libao setf libao
lftp.conf setf lftp
.lftprc setf lftp
*lftp/rc setf lftp
*.ll setf lifelines
lilo.conf setf lilo
*.lsp setf lisp
*.lisp setf lisp
*.el setf lisp
*.cl setf lisp
*.jl setf lisp
*.L setf lisp
.emacs setf lisp
sbclrc setf lisp
.sbclrc setf lisp
*.liquid setf liquid