Mercurial > vim
annotate runtime/filetype.vim @ 30215:40491de2f0a6 v9.0.0443
patch 9.0.0443: blueprint files are not recognized
Commit: https://github.com/vim/vim/commit/cce82a55b8105560a2ef724999c856966337b48e
Author: Gabriele Musco <gabmus@disroot.org>
Date: Sun Sep 11 13:37:37 2022 +0100
patch 9.0.0443: blueprint files are not recognized
Problem: Blueprint files are not recognized.
Solution: Add a pattern for blueprint files. (Gabriele Musco, closes https://github.com/vim/vim/issues/11107)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 11 Sep 2022 14:45:05 +0200 |
parents | fee9eccee266 |
children | 1fbc86e18258 |
rev | line source |
---|---|
7 | 1 " Vim support file to detect file types |
2 " | |
3 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
30202 | 4 " Last Change: 2022 Sep 09 |
7 | 5 |
6 " Listen very carefully, I will say this only once | |
7 if exists("did_load_filetypes") | |
8 finish | |
9 endif | |
10 let did_load_filetypes = 1 | |
11 | |
12 " Line continuation is used here, remove 'C' from 'cpoptions' | |
13 let s:cpo_save = &cpo | |
14 set cpo&vim | |
15 | |
16 augroup filetypedetect | |
17 | |
18 " Ignored extensions | |
1586 | 19 if exists("*fnameescape") |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
20 au BufNewFile,BufRead ?\+.orig,?\+.bak,?\+.old,?\+.new,?\+.dpkg-dist,?\+.dpkg-old,?\+.dpkg-new,?\+.dpkg-bak,?\+.rpmsave,?\+.rpmnew,?\+.pacsave,?\+.pacnew |
1586 | 21 \ exe "doau filetypedetect BufRead " . fnameescape(expand("<afile>:r")) |
7 | 22 au BufNewFile,BufRead *~ |
23 \ let s:name = expand("<afile>") | | |
24 \ let s:short = substitute(s:name, '\~$', '', '') | | |
25 \ if s:name != s:short && s:short != "" | | |
1586 | 26 \ exe "doau filetypedetect BufRead " . fnameescape(s:short) | |
7 | 27 \ endif | |
1698 | 28 \ unlet! s:name s:short |
532 | 29 au BufNewFile,BufRead ?\+.in |
7 | 30 \ if expand("<afile>:t") != "configure.in" | |
1586 | 31 \ exe "doau filetypedetect BufRead " . fnameescape(expand("<afile>:r")) | |
7 | 32 \ endif |
1586 | 33 elseif &verbose > 0 |
34 echomsg "Warning: some filetypes will not be recognized because this version of Vim does not have fnameescape()" | |
35 endif | |
7 | 36 |
37 " Pattern used to match file names which should not be inspected. | |
38 " Currently finds compressed files. | |
39 if !exists("g:ft_ignore_pat") | |
40 let g:ft_ignore_pat = '\.\(Z\|gz\|bz2\|zip\|tgz\)$' | |
41 endif | |
42 | |
216 | 43 " Function used for patterns that end in a star: don't set the filetype if the |
44 " file name matches ft_ignore_pat. | |
16208 | 45 " When using this, the entry should probably be further down below with the |
46 " other StarSetf() calls. | |
27770
219471ed2fec
patch 8.2.4411: bicep files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27653
diff
changeset
|
47 func s:StarSetf(ft) |
216 | 48 if expand("<amatch>") !~ g:ft_ignore_pat |
49 exe 'setf ' . a:ft | |
50 endif | |
1219 | 51 endfunc |
216 | 52 |
11533
c83dd5fa40d8
patch 8.0.0649: when opening a help file the filetype is set several times
Christian Brabandt <cb@256bit.org>
parents:
11518
diff
changeset
|
53 " Vim help file |
c83dd5fa40d8
patch 8.0.0649: when opening a help file the filetype is set several times
Christian Brabandt <cb@256bit.org>
parents:
11518
diff
changeset
|
54 au BufNewFile,BufRead $VIMRUNTIME/doc/*.txt setf help |
c83dd5fa40d8
patch 8.0.0649: when opening a help file the filetype is set several times
Christian Brabandt <cb@256bit.org>
parents:
11518
diff
changeset
|
55 |
7 | 56 " Abaqus or Trasys |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
57 au BufNewFile,BufRead *.inp call dist#ft#Check_inp() |
7 | 58 |
15878 | 59 " 8th (Firth-derivative) |
60 au BufNewFile,BufRead *.8th setf 8th | |
61 | |
7 | 62 " A-A-P recipe |
63 au BufNewFile,BufRead *.aap setf aap | |
64 | |
389 | 65 " A2ps printing utility |
2751 | 66 au BufNewFile,BufRead */etc/a2ps.cfg,*/etc/a2ps/*.cfg,a2psrc,.a2psrc setf a2ps |
389 | 67 |
22 | 68 " ABAB/4 |
69 au BufNewFile,BufRead *.abap setf abap | |
70 | |
7 | 71 " ABC music notation |
72 au BufNewFile,BufRead *.abc setf abc | |
73 | |
74 " ABEL | |
75 au BufNewFile,BufRead *.abl setf abel | |
76 | |
77 " AceDB | |
78 au BufNewFile,BufRead *.wrm setf acedb | |
79 | |
80 " Ada (83, 9X, 95) | |
81 au BufNewFile,BufRead *.adb,*.ads,*.ada setf ada | |
1125 | 82 if has("vms") |
1676 | 83 au BufNewFile,BufRead *.gpr,*.ada_m,*.adc setf ada |
1125 | 84 else |
1676 | 85 au BufNewFile,BufRead *.gpr setf ada |
1125 | 86 endif |
7 | 87 |
88 " AHDL | |
89 au BufNewFile,BufRead *.tdf setf ahdl | |
90 | |
21483
de74d764d36c
patch 8.2.1292: AIDL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
21093
diff
changeset
|
91 " AIDL |
de74d764d36c
patch 8.2.1292: AIDL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
21093
diff
changeset
|
92 au BufNewFile,BufRead *.aidl setf aidl |
de74d764d36c
patch 8.2.1292: AIDL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
21093
diff
changeset
|
93 |
7 | 94 " AMPL |
95 au BufNewFile,BufRead *.run setf ampl | |
96 | |
97 " Ant | |
98 au BufNewFile,BufRead build.xml setf ant | |
99 | |
5577 | 100 " Arduino |
101 au BufNewFile,BufRead *.ino,*.pde setf arduino | |
102 | |
7 | 103 " Apache config file |
2751 | 104 au BufNewFile,BufRead .htaccess,*/etc/httpd/*.conf setf apache |
15729 | 105 au BufNewFile,BufRead */etc/apache2/sites-*/*.com setf apache |
7 | 106 |
107 " XA65 MOS6510 cross assembler | |
108 au BufNewFile,BufRead *.a65 setf a65 | |
109 | |
2034 | 110 " Applescript |
111 au BufNewFile,BufRead *.scpt setf applescript | |
112 | |
7 | 113 " Applix ELF |
114 au BufNewFile,BufRead *.am | |
115 \ if expand("<afile>") !~? 'Makefile.am\>' | setf elf | endif | |
116 | |
24 | 117 " ALSA configuration |
2788 | 118 au BufNewFile,BufRead .asoundrc,*/usr/share/alsa/alsa.conf,*/etc/asound.conf setf alsaconf |
24 | 119 |
7 | 120 " Arc Macro Language |
121 au BufNewFile,BufRead *.aml setf aml | |
122 | |
3854 | 123 " APT config file |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
124 au BufNewFile,BufRead apt.conf setf aptconf |
3854 | 125 au BufNewFile,BufRead */.aptitude/config setf aptconf |
26390
24632928d8c5
patch 8.2.3726: README file in a config directory gets wrong filetype
Bram Moolenaar <Bram@vim.org>
parents:
26344
diff
changeset
|
126 " more generic pattern far down |
3854 | 127 |
7 | 128 " Arch Inventory file |
129 au BufNewFile,BufRead .arch-inventory,=tagging-method setf arch | |
130 | |
131 " ART*Enterprise (formerly ART-IM) | |
132 au BufNewFile,BufRead *.art setf art | |
133 | |
4229 | 134 " AsciiDoc |
7147
c590de398af9
commit https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
135 au BufNewFile,BufRead *.asciidoc,*.adoc setf asciidoc |
4229 | 136 |
7 | 137 " ASN.1 |
138 au BufNewFile,BufRead *.asn,*.asn1 setf asn | |
139 | |
140 " Active Server Pages (with Visual Basic Script) | |
141 au BufNewFile,BufRead *.asa | |
142 \ if exists("g:filetype_asa") | | |
143 \ exe "setf " . g:filetype_asa | | |
144 \ else | | |
145 \ setf aspvbs | | |
146 \ endif | |
147 | |
148 " Active Server Pages (with Perl or Visual Basic Script) | |
149 au BufNewFile,BufRead *.asp | |
150 \ if exists("g:filetype_asp") | | |
151 \ exe "setf " . g:filetype_asp | | |
152 \ elseif getline(1) . getline(2) . getline(3) =~? "perlscript" | | |
153 \ setf aspperl | | |
154 \ else | | |
155 \ setf aspvbs | | |
156 \ endif | |
157 | |
28538
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
158 " Grub (must be before pattern *.lst) |
2788 | 159 au BufNewFile,BufRead */boot/grub/menu.lst,*/boot/grub/grub.conf,*/etc/grub.conf setf grub |
7 | 160 |
28513
6a1e5b188374
patch 8.2.4781: Maxima files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28507
diff
changeset
|
161 " Maxima, see: |
6a1e5b188374
patch 8.2.4781: Maxima files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28507
diff
changeset
|
162 " https://maxima.sourceforge.io/docs/manual/maxima_71.html#file_005ftype_005fmaxima |
28538
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
163 " Must be before the pattern *.mac. |
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
164 " *.dem omitted - also used by gnuplot demos |
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
165 " *.mc omitted - used by dist#ft#McSetf() |
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
166 au BufNewFile,BufRead *.demo,*.dm{1,2,3,t},*.wxm,maxima-init.mac setf maxima |
28513
6a1e5b188374
patch 8.2.4781: Maxima files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28507
diff
changeset
|
167 |
7 | 168 " Assembly (all kinds) |
169 " *.lst is not pure assembly, it has two extra columns (address, byte codes) | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
170 au BufNewFile,BufRead *.asm,*.[sS],*.[aA],*.mac,*.lst call dist#ft#FTasm() |
7 | 171 |
28538
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
172 " Assembly - Macro (VAX) |
7 | 173 au BufNewFile,BufRead *.mar setf vmasm |
174 | |
29714
1317743de840
patch 9.0.0197: astro files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
29710
diff
changeset
|
175 " Astro |
1317743de840
patch 9.0.0197: astro files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
29710
diff
changeset
|
176 au BufNewFile,BufRead *.astro setf astro |
1317743de840
patch 9.0.0197: astro files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
29710
diff
changeset
|
177 |
7 | 178 " Atlas |
179 au BufNewFile,BufRead *.atl,*.as setf atlas | |
180 | |
24166
13618b8fb0dc
patch 8.2.2624: atom files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24103
diff
changeset
|
181 " Atom is based on XML |
13618b8fb0dc
patch 8.2.2624: atom files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24103
diff
changeset
|
182 au BufNewFile,BufRead *.atom setf xml |
13618b8fb0dc
patch 8.2.2624: atom files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24103
diff
changeset
|
183 |
1125 | 184 " Autoit v3 |
185 au BufNewFile,BufRead *.au3 setf autoit | |
186 | |
1219 | 187 " Autohotkey |
188 au BufNewFile,BufRead *.ahk setf autohotkey | |
189 | |
7 | 190 " Automake |
809 | 191 au BufNewFile,BufRead [mM]akefile.am,GNUmakefile.am setf automake |
7 | 192 |
375 | 193 " Autotest .at files are actually m4 |
194 au BufNewFile,BufRead *.at setf m4 | |
195 | |
7 | 196 " Avenue |
197 au BufNewFile,BufRead *.ave setf ave | |
198 | |
199 " Awk | |
21817
c2c2e57562ee
patch 8.2.1458: .gawk files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
21719
diff
changeset
|
200 au BufNewFile,BufRead *.awk,*.gawk setf awk |
7 | 201 |
202 " B | |
203 au BufNewFile,BufRead *.mch,*.ref,*.imp setf b | |
204 | |
205 " BASIC or Visual Basic | |
27287
9f72ec92d361
patch 8.2.4172: filetype detection for BASIC is not optimal
Bram Moolenaar <Bram@vim.org>
parents:
27162
diff
changeset
|
206 au BufNewFile,BufRead *.bas call dist#ft#FTbas() |
9f72ec92d361
patch 8.2.4172: filetype detection for BASIC is not optimal
Bram Moolenaar <Bram@vim.org>
parents:
27162
diff
changeset
|
207 au BufNewFile,BufRead *.bi,*.bm call dist#ft#FTbas() |
7 | 208 |
3465 | 209 " Visual Basic Script (close to Visual Basic) or Visual Basic .NET |
210 au BufNewFile,BufRead *.vb,*.vbs,*.dsm,*.ctl setf vb | |
7 | 211 |
1125 | 212 " IBasic file (similar to QBasic) |
213 au BufNewFile,BufRead *.iba,*.ibi setf ibasic | |
214 | |
215 " FreeBasic file (similar to QBasic) | |
27287
9f72ec92d361
patch 8.2.4172: filetype detection for BASIC is not optimal
Bram Moolenaar <Bram@vim.org>
parents:
27162
diff
changeset
|
216 au BufNewFile,BufRead *.fb setf freebasic |
1125 | 217 |
28390
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
218 " Batch file for MSDOS. See dist#ft#FTsys for *.sys |
28443
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
219 au BufNewFile,BufRead *.bat setf dosbatch |
7 | 220 " *.cmd is close to a Batch file, but on OS/2 Rexx files also use *.cmd. |
221 au BufNewFile,BufRead *.cmd | |
222 \ if getline(1) =~ '^/\*' | setf rexx | else | setf dosbatch | endif | |
28390
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
223 " ABB RAPID or Batch file for MSDOS. |
28443
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
224 au BufNewFile,BufRead *.sys\c call dist#ft#FTsys() |
7 | 225 |
226 " Batch file for 4DOS | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
227 au BufNewFile,BufRead *.btm call dist#ft#FTbtm() |
7 | 228 |
229 " BC calculator | |
230 au BufNewFile,BufRead *.bc setf bc | |
231 | |
232 " BDF font | |
233 au BufNewFile,BufRead *.bdf setf bdf | |
234 | |
23960
dbc6c893a67a
patch 8.2.2522: Beancount filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23737
diff
changeset
|
235 " Beancount |
dbc6c893a67a
patch 8.2.2522: Beancount filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23737
diff
changeset
|
236 au BufNewFile,BufRead *.beancount setf beancount |
dbc6c893a67a
patch 8.2.2522: Beancount filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23737
diff
changeset
|
237 |
7 | 238 " BibTeX bibliography database file |
239 au BufNewFile,BufRead *.bib setf bib | |
240 | |
846 | 241 " BibTeX Bibliography Style |
242 au BufNewFile,BufRead *.bst setf bst | |
243 | |
27770
219471ed2fec
patch 8.2.4411: bicep files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27653
diff
changeset
|
244 " Bicep |
219471ed2fec
patch 8.2.4411: bicep files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27653
diff
changeset
|
245 au BufNewFile,BufRead *.bicep setf bicep |
219471ed2fec
patch 8.2.4411: bicep files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27653
diff
changeset
|
246 |
7 | 247 " BIND configuration |
11262 | 248 " sudoedit uses namedXXXX.conf |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
249 au BufNewFile,BufRead named*.conf,rndc*.conf,rndc*.key setf named |
7 | 250 |
251 " BIND zone | |
252 au BufNewFile,BufRead named.root setf bindzone | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
253 au BufNewFile,BufRead *.db call dist#ft#BindzoneCheck('') |
7 | 254 |
255 " Blank | |
256 au BufNewFile,BufRead *.bl setf blank | |
257 | |
29427
2830faa3e100
patch 9.0.0055: bitbake files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
29415
diff
changeset
|
258 " Bitbake |
2830faa3e100
patch 9.0.0055: bitbake files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
29415
diff
changeset
|
259 au BufNewFile,BufRead *.bb,*.bbappend,*.bbclass,*/build/conf/*.conf,*/meta{-*,}/conf/*.conf setf bitbake |
2830faa3e100
patch 9.0.0055: bitbake files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
29415
diff
changeset
|
260 |
1676 | 261 " Blkid cache file |
2751 | 262 au BufNewFile,BufRead */etc/blkid.tab,*/etc/blkid.tab.old setf xml |
1676 | 263 |
19717
de7c724bf803
patch 8.2.0415: bsdl filetype is not detected
Bram Moolenaar <Bram@vim.org>
parents:
19404
diff
changeset
|
264 " BSDL |
29463
27ebab59172e
patch 9.0.0073: too many files recognized as bsdl
Bram Moolenaar <Bram@vim.org>
parents:
29427
diff
changeset
|
265 au BufNewFile,BufRead *.bsd,*.bsdl setf bsdl |
19717
de7c724bf803
patch 8.2.0415: bsdl filetype is not detected
Bram Moolenaar <Bram@vim.org>
parents:
19404
diff
changeset
|
266 |
7176
30042ddff503
commit https://github.com/vim/vim/commit/60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d
Christian Brabandt <cb@256bit.org>
parents:
7147
diff
changeset
|
267 " Bazel (http://bazel.io) |
22033
cdf95988615a
patch 8.2.1566: not all Bazel files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
21817
diff
changeset
|
268 autocmd BufRead,BufNewFile *.bzl,*.bazel,WORKSPACE setf bzl |
10548
74effdaa369e
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10348
diff
changeset
|
269 if has("fname_case") |
11358
a6b9cdcde548
patch 8.0.0564: cannot detect Bazel BUILD files on some systems
Christian Brabandt <cb@256bit.org>
parents:
11262
diff
changeset
|
270 " There is another check for BUILD further below. |
22033
cdf95988615a
patch 8.2.1566: not all Bazel files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
21817
diff
changeset
|
271 autocmd BufRead,BufNewFile *.BUILD,BUILD setf bzl |
10548
74effdaa369e
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10348
diff
changeset
|
272 endif |
7176
30042ddff503
commit https://github.com/vim/vim/commit/60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d
Christian Brabandt <cb@256bit.org>
parents:
7147
diff
changeset
|
273 |
7 | 274 " C or lpc |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
275 au BufNewFile,BufRead *.c call dist#ft#FTlpc() |
13125 | 276 au BufNewFile,BufRead *.lpc,*.ulpc setf lpc |
7 | 277 |
278 " Calendar | |
216 | 279 au BufNewFile,BufRead calendar setf calendar |
7 | 280 |
281 " C# | |
26570
b1f4052d6c51
patch 8.2.3814: .csx files and .sln files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26552
diff
changeset
|
282 au BufNewFile,BufRead *.cs,*.csx setf cs |
7 | 283 |
4186 | 284 " CSDL |
285 au BufNewFile,BufRead *.csdl setf csdl | |
286 | |
2152 | 287 " Cabal |
2725 | 288 au BufNewFile,BufRead *.cabal setf cabal |
2152 | 289 |
1219 | 290 " Cdrdao TOC |
291 au BufNewFile,BufRead *.toc setf cdrtoc | |
292 | |
1648 | 293 " Cdrdao config |
2788 | 294 au BufNewFile,BufRead */etc/cdrdao.conf,*/etc/defaults/cdrdao,*/etc/default/cdrdao,.cdrdao setf cdrdaoconf |
1648 | 295 |
555 | 296 " Cfengine |
297 au BufNewFile,BufRead cfengine.conf setf cfengine | |
298 | |
2152 | 299 " ChaiScript |
300 au BufRead,BufNewFile *.chai setf chaiscript | |
301 | |
7 | 302 " Comshare Dimension Definition Language |
303 au BufNewFile,BufRead *.cdl setf cdl | |
304 | |
1125 | 305 " Conary Recipe |
306 au BufNewFile,BufRead *.recipe setf conaryrecipe | |
307 | |
7 | 308 " Controllable Regex Mutilator |
309 au BufNewFile,BufRead *.crm setf crm | |
310 | |
311 " Cyn++ | |
312 au BufNewFile,BufRead *.cyn setf cynpp | |
313 | |
314 " Cynlib | |
315 " .cc and .cpp files can be C++ or Cynlib. | |
316 au BufNewFile,BufRead *.cc | |
317 \ if exists("cynlib_syntax_for_cc")|setf cynlib|else|setf cpp|endif | |
318 au BufNewFile,BufRead *.cpp | |
319 \ if exists("cynlib_syntax_for_cpp")|setf cynlib|else|setf cpp|endif | |
320 | |
321 " C++ | |
2034 | 322 au BufNewFile,BufRead *.cxx,*.c++,*.hh,*.hxx,*.hpp,*.ipp,*.moc,*.tcc,*.inl setf cpp |
7 | 323 if has("fname_case") |
2034 | 324 au BufNewFile,BufRead *.C,*.H setf cpp |
7 | 325 endif |
326 | |
1648 | 327 " .h files can be C, Ch C++, ObjC or ObjC++. |
328 " Set c_syntax_for_h if you want C, ch_syntax_for_h if you want Ch. ObjC is | |
329 " detected automatically. | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
330 au BufNewFile,BufRead *.h call dist#ft#FTheader() |
7 | 331 |
332 " Ch (CHscript) | |
333 au BufNewFile,BufRead *.chf setf ch | |
334 | |
335 " TLH files are C++ headers generated by Visual C++'s #import from typelibs | |
336 au BufNewFile,BufRead *.tlh setf cpp | |
337 | |
338 " Cascading Style Sheets | |
339 au BufNewFile,BufRead *.css setf css | |
340 | |
341 " Century Term Command Scripts (*.cmd too) | |
342 au BufNewFile,BufRead *.con setf cterm | |
343 | |
344 " Changelog | |
22462
89566aaebfb2
patch 8.2.1779: some debian changelog files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
22441
diff
changeset
|
345 au BufNewFile,BufRead changelog.Debian,changelog.dch,NEWS.Debian,NEWS.dch,*/debian/changelog |
809 | 346 \ setf debchangelog |
347 | |
348 au BufNewFile,BufRead [cC]hange[lL]og | |
349 \ if getline(1) =~ '; urgency=' | |
350 \| setf debchangelog | |
351 \| else | |
352 \| setf changelog | |
353 \| endif | |
354 | |
355 au BufNewFile,BufRead NEWS | |
356 \ if getline(1) =~ '; urgency=' | |
357 \| setf debchangelog | |
358 \| endif | |
7 | 359 |
360 " CHILL | |
361 au BufNewFile,BufRead *..ch setf chill | |
362 | |
363 " Changes for WEB and CWEB or CHILL | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
364 au BufNewFile,BufRead *.ch call dist#ft#FTchange() |
7 | 365 |
839 | 366 " ChordPro |
367 au BufNewFile,BufRead *.chopro,*.crd,*.cho,*.crdpro,*.chordpro setf chordpro | |
368 | |
7 | 369 " Clean |
370 au BufNewFile,BufRead *.dcl,*.icl setf clean | |
371 | |
372 " Clever | |
373 au BufNewFile,BufRead *.eni setf cl | |
374 | |
375 " Clever or dtd | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
376 au BufNewFile,BufRead *.ent call dist#ft#FTent() |
7 | 377 |
28390
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
378 " Clipper, FoxPro, ABB RAPID or eviews |
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
379 au BufNewFile,BufRead *.prg\c call dist#ft#FTprg() |
7 | 380 |
4098 | 381 " Clojure |
6823 | 382 au BufNewFile,BufRead *.clj,*.cljs,*.cljx,*.cljc setf clojure |
4098 | 383 |
836 | 384 " Cmake |
385 au BufNewFile,BufRead CMakeLists.txt,*.cmake,*.cmake.in setf cmake | |
386 | |
1125 | 387 " Cmusrc |
2788 | 388 au BufNewFile,BufRead */.cmus/{autosave,rc,command-history,*.theme} setf cmusrc |
1125 | 389 au BufNewFile,BufRead */cmus/{rc,*.theme} setf cmusrc |
390 | |
7 | 391 " Cobol |
809 | 392 au BufNewFile,BufRead *.cbl,*.cob,*.lib setf cobol |
393 " cobol or zope form controller python script? (heuristic) | |
394 au BufNewFile,BufRead *.cpy | |
395 \ if getline(1) =~ '^##' | | |
396 \ setf python | | |
397 \ else | | |
398 \ setf cobol | | |
399 \ endif | |
7 | 400 |
1648 | 401 " Coco/R |
402 au BufNewFile,BufRead *.atg setf coco | |
403 | |
7 | 404 " Cold Fusion |
405 au BufNewFile,BufRead *.cfm,*.cfi,*.cfc setf cf | |
406 | |
407 " Configure scripts | |
408 au BufNewFile,BufRead configure.in,configure.ac setf config | |
409 | |
28393
860c2c6bcdfd
patch 8.2.4721: cooklang files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28390
diff
changeset
|
410 " Cooklang |
860c2c6bcdfd
patch 8.2.4721: cooklang files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28390
diff
changeset
|
411 au BufNewFile,BufRead *.cook setf cook |
860c2c6bcdfd
patch 8.2.4721: cooklang files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28390
diff
changeset
|
412 |
29415
87174e9f7529
patch 9.0.0049: csv and tsv files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29403
diff
changeset
|
413 " CSV Files |
87174e9f7529
patch 9.0.0049: csv and tsv files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29403
diff
changeset
|
414 au BufNewFile,BufRead *.csv setf csv |
87174e9f7529
patch 9.0.0049: csv and tsv files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29403
diff
changeset
|
415 |
25026
fda44c0b4b7b
patch 8.2.3050: cannot recognize elixir files
Bram Moolenaar <Bram@vim.org>
parents:
25024
diff
changeset
|
416 " CUDA Compute Unified Device Architecture |
13125 | 417 au BufNewFile,BufRead *.cu,*.cuh setf cuda |
1648 | 418 |
19263
06d9be5c0107
patch 8.2.0190: Kotlin files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19205
diff
changeset
|
419 " Dockerfile; Podman uses the same syntax with name Containerfile |
26753
c271b07a56f6
patch 8.2.3905: Dockerfile using prefix name not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26708
diff
changeset
|
420 " Also see Dockerfile.* below. |
28986
560793de4032
patch 8.2.5015: Hoon and Moonscript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28670
diff
changeset
|
421 au BufNewFile,BufRead Containerfile,Dockerfile,dockerfile,*.[dD]ockerfile setf dockerfile |
6180 | 422 |
7 | 423 " WildPackets EtherPeek Decoder |
424 au BufNewFile,BufRead *.dcd setf dcd | |
425 | |
426 " Enlightenment configuration files | |
427 au BufNewFile,BufRead *enlightenment/*.cfg setf c | |
428 | |
429 " Eterm | |
430 au BufNewFile,BufRead *Eterm/*.cfg setf eterm | |
431 | |
25026
fda44c0b4b7b
patch 8.2.3050: cannot recognize elixir files
Bram Moolenaar <Bram@vim.org>
parents:
25024
diff
changeset
|
432 " Elixir or Euphoria |
fda44c0b4b7b
patch 8.2.3050: cannot recognize elixir files
Bram Moolenaar <Bram@vim.org>
parents:
25024
diff
changeset
|
433 au BufNewFile,BufRead *.ex call dist#ft#ExCheck() |
fda44c0b4b7b
patch 8.2.3050: cannot recognize elixir files
Bram Moolenaar <Bram@vim.org>
parents:
25024
diff
changeset
|
434 |
28417
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
435 " Elixir |
25026
fda44c0b4b7b
patch 8.2.3050: cannot recognize elixir files
Bram Moolenaar <Bram@vim.org>
parents:
25024
diff
changeset
|
436 au BufRead,BufNewFile mix.lock,*.exs setf elixir |
28417
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
437 au BufRead,BufNewFile *.eex,*.leex setf eelixir |
25026
fda44c0b4b7b
patch 8.2.3050: cannot recognize elixir files
Bram Moolenaar <Bram@vim.org>
parents:
25024
diff
changeset
|
438 |
28277
4e2753f7ec65
patch 8.2.4664: Elvish files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28265
diff
changeset
|
439 " Elvish |
4e2753f7ec65
patch 8.2.4664: Elvish files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28265
diff
changeset
|
440 au BufRead,BufNewFile *.elv setf elvish |
4e2753f7ec65
patch 8.2.4664: Elvish files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28265
diff
changeset
|
441 |
5692
80e5f9584b02
Update runtime files. Add Euphoria syntax files.
Bram Moolenaar <bram@vim.org>
parents:
5663
diff
changeset
|
442 " Euphoria 3 or 4 |
25026
fda44c0b4b7b
patch 8.2.3050: cannot recognize elixir files
Bram Moolenaar <Bram@vim.org>
parents:
25024
diff
changeset
|
443 au BufNewFile,BufRead *.eu,*.ew,*.exu,*.exw call dist#ft#EuphoriaCheck() |
5692
80e5f9584b02
Update runtime files. Add Euphoria syntax files.
Bram Moolenaar <bram@vim.org>
parents:
5663
diff
changeset
|
444 if has("fname_case") |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
445 au BufNewFile,BufRead *.EU,*.EW,*.EX,*.EXU,*.EXW call dist#ft#EuphoriaCheck() |
5692
80e5f9584b02
Update runtime files. Add Euphoria syntax files.
Bram Moolenaar <bram@vim.org>
parents:
5663
diff
changeset
|
446 endif |
80e5f9584b02
Update runtime files. Add Euphoria syntax files.
Bram Moolenaar <bram@vim.org>
parents:
5663
diff
changeset
|
447 |
7 | 448 " Lynx config files |
449 au BufNewFile,BufRead lynx.cfg setf lynx | |
450 | |
24458
1d126cb683c1
patch 8.2.2769: Modula-3 config files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24347
diff
changeset
|
451 " Modula-3 configuration language (must be before *.cfg and *makefile) |
1d126cb683c1
patch 8.2.2769: Modula-3 config files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24347
diff
changeset
|
452 au BufNewFile,BufRead *.quake,cm3.cfg setf m3quake |
1d126cb683c1
patch 8.2.2769: Modula-3 config files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24347
diff
changeset
|
453 au BufNewFile,BufRead m3makefile,m3overrides setf m3build |
1d126cb683c1
patch 8.2.2769: Modula-3 config files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24347
diff
changeset
|
454 |
7 | 455 " Quake |
456 au BufNewFile,BufRead *baseq[2-3]/*.cfg,*id1/*.cfg setf quake | |
457 au BufNewFile,BufRead *quake[1-3]/*.cfg setf quake | |
458 | |
459 " Quake C | |
460 au BufNewFile,BufRead *.qc setf c | |
461 | |
462 " Configure files | |
28390
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
463 au BufNewFile,BufRead *.cfg\c call dist#ft#FTcfg() |
7 | 464 |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
465 " Cucumber |
2725 | 466 au BufNewFile,BufRead *.feature setf cucumber |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
467 |
7 | 468 " Communicating Sequential Processes |
469 au BufNewFile,BufRead *.csp,*.fdr setf csp | |
470 | |
471 " CUPL logic description and simulation | |
472 au BufNewFile,BufRead *.pld setf cupl | |
473 au BufNewFile,BufRead *.si setf cuplsim | |
474 | |
18366
c6826a74ad9b
patch 8.1.2177: Dart files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18362
diff
changeset
|
475 " Dart |
c6826a74ad9b
patch 8.1.2177: Dart files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18362
diff
changeset
|
476 au BufRead,BufNewfile *.dart,*.drt setf dart |
c6826a74ad9b
patch 8.1.2177: Dart files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18362
diff
changeset
|
477 |
7 | 478 " Debian Control |
479 au BufNewFile,BufRead */debian/control setf debcontrol | |
1648 | 480 au BufNewFile,BufRead control |
481 \ if getline(1) =~ '^Source:' | |
482 \| setf debcontrol | |
483 \| endif | |
7 | 484 |
13857 | 485 " Debian Copyright |
486 au BufNewFile,BufRead */debian/copyright setf debcopyright | |
487 au BufNewFile,BufRead copyright | |
488 \ if getline(1) =~ '^Format:' | |
489 \| setf debcopyright | |
490 \| endif | |
491 | |
816 | 492 " Debian Sources.list |
2751 | 493 au BufNewFile,BufRead */etc/apt/sources.list setf debsources |
494 au BufNewFile,BufRead */etc/apt/sources.list.d/*.list setf debsources | |
816 | 495 |
1648 | 496 " Deny hosts |
497 au BufNewFile,BufRead denyhosts.conf setf denyhosts | |
498 | |
2788 | 499 " dnsmasq(8) configuration files |
2833 | 500 au BufNewFile,BufRead */etc/dnsmasq.conf setf dnsmasq |
2788 | 501 |
7 | 502 " ROCKLinux package description |
503 au BufNewFile,BufRead *.desc setf desc | |
504 | |
1648 | 505 " the D language or dtrace |
27877
834d3fba1e7c
patch 8.2.4464: Dtrace files are recognized as filetype D
Bram Moolenaar <Bram@vim.org>
parents:
27804
diff
changeset
|
506 au BufNewFile,BufRead */dtrace/*.d setf dtrace |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
507 au BufNewFile,BufRead *.d call dist#ft#DtraceCheck() |
7 | 508 |
509 " Desktop files | |
20804
ad15725594f8
patch 8.2.0954: not all desktop files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
20753
diff
changeset
|
510 au BufNewFile,BufRead *.desktop,*.directory setf desktop |
7 | 511 |
389 | 512 " Dict config |
513 au BufNewFile,BufRead dict.conf,.dictrc setf dictconf | |
514 | |
515 " Dictd config | |
25848
86c3af1be1db
patch 8.2.3458: not all dictdconf files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
25836
diff
changeset
|
516 au BufNewFile,BufRead dictd*.conf setf dictdconf |
389 | 517 |
26628
7efd8f561d04
patch 8.2.3843: dep3patch files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26591
diff
changeset
|
518 " DEP3 formatted patch files |
7efd8f561d04
patch 8.2.3843: dep3patch files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26591
diff
changeset
|
519 au BufNewFile,BufRead */debian/patches/* call dist#ft#Dep3patch() |
7efd8f561d04
patch 8.2.3843: dep3patch files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26591
diff
changeset
|
520 |
7 | 521 " Diff files |
11659
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
522 au BufNewFile,BufRead *.diff,*.rej setf diff |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
523 au BufNewFile,BufRead *.patch |
26970
733295e9d755
patch 8.2.4014: git and gitcommit file types not properly recognized
Bram Moolenaar <Bram@vim.org>
parents:
26933
diff
changeset
|
524 \ if getline(1) =~# '^From [0-9a-f]\{40,\} Mon Sep 17 00:00:00 2001$' | |
11659
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
525 \ setf gitsendemail | |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
526 \ else | |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
527 \ setf diff | |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
528 \ endif |
7 | 529 |
530 " Dircolors | |
2751 | 531 au BufNewFile,BufRead .dir_colors,.dircolors,*/etc/DIR_COLORS setf dircolors |
7 | 532 |
533 " Diva (with Skill) or InstallShield | |
534 au BufNewFile,BufRead *.rul | |
535 \ if getline(1).getline(2).getline(3).getline(4).getline(5).getline(6) =~? 'InstallShield' | | |
536 \ setf ishd | | |
537 \ else | | |
538 \ setf diva | | |
539 \ endif | |
540 | |
541 " DCL (Digital Command Language - vms) or DNS zone file | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
542 au BufNewFile,BufRead *.com call dist#ft#BindzoneCheck('dcl') |
7 | 543 |
544 " DOT | |
19205
861b1cc1a8a2
patch 8.2.0161: not recognizing .gv file as dot filetype
Bram Moolenaar <Bram@vim.org>
parents:
19180
diff
changeset
|
545 au BufNewFile,BufRead *.dot,*.gv setf dot |
7 | 546 |
23430
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
547 " Dune |
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
548 au BufNewFile,BufRead jbuild,dune,dune-project,dune-workspace setf dune |
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
549 |
7 | 550 " Dylan - lid files |
551 au BufNewFile,BufRead *.lid setf dylanlid | |
552 | |
553 " Dylan - intr files (melange) | |
554 au BufNewFile,BufRead *.intr setf dylanintr | |
555 | |
556 " Dylan | |
557 au BufNewFile,BufRead *.dylan setf dylan | |
558 | |
559 " Microsoft Module Definition | |
560 au BufNewFile,BufRead *.def setf def | |
561 | |
562 " Dracula | |
563 au BufNewFile,BufRead *.drac,*.drc,*lvs,*lpe setf dracula | |
564 | |
2467
9c8d603fd4d1
Add Datascript syntax file. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2439
diff
changeset
|
565 " Datascript |
9c8d603fd4d1
Add Datascript syntax file. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2439
diff
changeset
|
566 au BufNewFile,BufRead *.ds setf datascript |
9c8d603fd4d1
Add Datascript syntax file. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2439
diff
changeset
|
567 |
25644
59a1c9a2ca2e
patch 8.2.3358: structurizr files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25497
diff
changeset
|
568 " dsl: DSSSL or Structurizr |
59a1c9a2ca2e
patch 8.2.3358: structurizr files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25497
diff
changeset
|
569 au BufNewFile,BufRead *.dsl |
59a1c9a2ca2e
patch 8.2.3358: structurizr files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25497
diff
changeset
|
570 \ if getline(1) =~ '^\s*<\!' | |
59a1c9a2ca2e
patch 8.2.3358: structurizr files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25497
diff
changeset
|
571 \ setf dsl | |
59a1c9a2ca2e
patch 8.2.3358: structurizr files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25497
diff
changeset
|
572 \ else | |
59a1c9a2ca2e
patch 8.2.3358: structurizr files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25497
diff
changeset
|
573 \ setf structurizr | |
59a1c9a2ca2e
patch 8.2.3358: structurizr files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25497
diff
changeset
|
574 \ endif |
7 | 575 |
576 " DTD (Document Type Definition for XML) | |
577 au BufNewFile,BufRead *.dtd setf dtd | |
578 | |
3847 | 579 " DTS/DSTI (device tree files) |
580 au BufNewFile,BufRead *.dts,*.dtsi setf dts | |
581 | |
10617 | 582 " EDIF (*.edf,*.edif,*.edn,*.edo) or edn |
583 au BufNewFile,BufRead *.ed\(f\|if\|o\) setf edif | |
584 au BufNewFile,BufRead *.edn | |
585 \ if getline(1) =~ '^\s*(\s*edif\>' | | |
586 \ setf edif | | |
587 \ else | | |
588 \ setf clojure | | |
589 \ endif | |
7 | 590 |
10211
b7da8d4c594c
commit https://github.com/vim/vim/commit/d07969093a9b3051511c478d71c36de6fc33c0d6
Christian Brabandt <cb@256bit.org>
parents:
9975
diff
changeset
|
591 " EditorConfig (close enough to dosini) |
b7da8d4c594c
commit https://github.com/vim/vim/commit/d07969093a9b3051511c478d71c36de6fc33c0d6
Christian Brabandt <cb@256bit.org>
parents:
9975
diff
changeset
|
592 au BufNewFile,BufRead .editorconfig setf dosini |
b7da8d4c594c
commit https://github.com/vim/vim/commit/d07969093a9b3051511c478d71c36de6fc33c0d6
Christian Brabandt <cb@256bit.org>
parents:
9975
diff
changeset
|
593 |
7 | 594 " Embedix Component Description |
595 au BufNewFile,BufRead *.ecd setf ecd | |
596 | |
5697 | 597 " Eiffel or Specman or Euphoria |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
598 au BufNewFile,BufRead *.e,*.E call dist#ft#FTe() |
7 | 599 |
600 " Elinks configuration | |
21018
2b07e2e7d95b
patch 8.2.1060: not all elinks files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
21008
diff
changeset
|
601 au BufNewFile,BufRead elinks.conf setf elinks |
7 | 602 |
1648 | 603 " ERicsson LANGuage; Yaws is erlang too |
1668 | 604 au BufNewFile,BufRead *.erl,*.hrl,*.yaws setf erlang |
7 | 605 |
20579
6e6c98dc5732
patch 8.2.0843: filetype elm not detected
Bram Moolenaar <Bram@vim.org>
parents:
20361
diff
changeset
|
606 " Elm |
6e6c98dc5732
patch 8.2.0843: filetype elm not detected
Bram Moolenaar <Bram@vim.org>
parents:
20361
diff
changeset
|
607 au BufNewFile,BufRead *.elm setf elm |
6e6c98dc5732
patch 8.2.0843: filetype elm not detected
Bram Moolenaar <Bram@vim.org>
parents:
20361
diff
changeset
|
608 |
7 | 609 " Elm Filter Rules file |
610 au BufNewFile,BufRead filter-rules setf elmfilt | |
611 | |
168 | 612 " ESMTP rc file |
613 au BufNewFile,BufRead *esmtprc setf esmtprc | |
614 | |
7 | 615 " ESQL-C |
616 au BufNewFile,BufRead *.ec,*.EC setf esqlc | |
617 | |
278 | 618 " Esterel |
619 au BufNewFile,BufRead *.strl setf esterel | |
620 | |
7 | 621 " Essbase script |
622 au BufNewFile,BufRead *.csc setf csc | |
623 | |
624 " Exim | |
625 au BufNewFile,BufRead exim.conf setf exim | |
626 | |
627 " Expect | |
628 au BufNewFile,BufRead *.exp setf expect | |
629 | |
630 " Exports | |
631 au BufNewFile,BufRead exports setf exports | |
632 | |
2596 | 633 " Falcon |
2725 | 634 au BufNewFile,BufRead *.fal setf falcon |
2596 | 635 |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2202
diff
changeset
|
636 " Fantom |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2202
diff
changeset
|
637 au BufNewFile,BufRead *.fan,*.fwt setf fan |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2202
diff
changeset
|
638 |
333 | 639 " Factor |
640 au BufNewFile,BufRead *.factor setf factor | |
641 | |
23701
c5b5e7520fe2
patch 8.2.2392: fennel filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23685
diff
changeset
|
642 " Fennel |
24466
f5a6a6e98ec4
patch 8.2.2773: PSL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24458
diff
changeset
|
643 autocmd BufRead,BufNewFile *.fnl setf fennel |
23701
c5b5e7520fe2
patch 8.2.2392: fennel filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23685
diff
changeset
|
644 |
7 | 645 " Fetchmail RC file |
646 au BufNewFile,BufRead .fetchmailrc setf fetchmail | |
647 | |
26141
77ad8ea01c00
patch 8.2.3603: fish filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26133
diff
changeset
|
648 " Fish shell |
77ad8ea01c00
patch 8.2.3603: fish filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26133
diff
changeset
|
649 au BufNewFile,BufRead *.fish setf fish |
77ad8ea01c00
patch 8.2.3603: fish filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26133
diff
changeset
|
650 |
2034 | 651 " FlexWiki - disabled, because it has side effects when a .wiki file |
652 " is not actually FlexWiki | |
653 "au BufNewFile,BufRead *.wiki setf flexwiki | |
846 | 654 |
7 | 655 " Focus Executable |
656 au BufNewFile,BufRead *.fex,*.focexec setf focexec | |
657 | |
658 " Focus Master file (but not for auto.master) | |
659 au BufNewFile,BufRead auto.master setf conf | |
660 au BufNewFile,BufRead *.mas,*.master setf master | |
661 | |
662 " Forth | |
26311
ce3678583211
patch 8.2.3686: filetype detection often mixes up Forth and F#
Bram Moolenaar <Bram@vim.org>
parents:
26309
diff
changeset
|
663 au BufNewFile,BufRead *.ft,*.fth setf forth |
ce3678583211
patch 8.2.3686: filetype detection often mixes up Forth and F#
Bram Moolenaar <Bram@vim.org>
parents:
26309
diff
changeset
|
664 |
1648 | 665 " Reva Forth |
666 au BufNewFile,BufRead *.frt setf reva | |
667 | |
7 | 668 " Fortran |
1125 | 669 if has("fname_case") |
2478
11def19fbb0e
Recognize .f03 and .f08 as Fortran files. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2467
diff
changeset
|
670 au BufNewFile,BufRead *.F,*.FOR,*.FPP,*.FTN,*.F77,*.F90,*.F95,*.F03,*.F08 setf fortran |
1125 | 671 endif |
2478
11def19fbb0e
Recognize .f03 and .f08 as Fortran files. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2467
diff
changeset
|
672 au BufNewFile,BufRead *.f,*.for,*.fortran,*.fpp,*.ftn,*.f77,*.f90,*.f95,*.f03,*.f08 setf fortran |
7 | 673 |
1698 | 674 " Framescript |
675 au BufNewFile,BufRead *.fsl setf framescript | |
676 | |
7 | 677 " FStab |
819 | 678 au BufNewFile,BufRead fstab,mtab setf fstab |
7 | 679 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
680 " Fusion |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
681 au BufRead,BufNewFile *.fusion setf fusion |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
682 |
26344
36f3a77e4b8c
patch 8.2.3703: most people call F# "fsharp" and not "fs"
Bram Moolenaar <Bram@vim.org>
parents:
26311
diff
changeset
|
683 " F# or Forth |
36f3a77e4b8c
patch 8.2.3703: most people call F# "fsharp" and not "fs"
Bram Moolenaar <Bram@vim.org>
parents:
26311
diff
changeset
|
684 au BufNewFile,BufRead *.fs call dist#ft#FTfs() |
36f3a77e4b8c
patch 8.2.3703: most people call F# "fsharp" and not "fs"
Bram Moolenaar <Bram@vim.org>
parents:
26311
diff
changeset
|
685 |
36f3a77e4b8c
patch 8.2.3703: most people call F# "fsharp" and not "fs"
Bram Moolenaar <Bram@vim.org>
parents:
26311
diff
changeset
|
686 " F# |
36f3a77e4b8c
patch 8.2.3703: most people call F# "fsharp" and not "fs"
Bram Moolenaar <Bram@vim.org>
parents:
26311
diff
changeset
|
687 au BufNewFile,BufRead *.fsi,*.fsx setf fsharp |
36f3a77e4b8c
patch 8.2.3703: most people call F# "fsharp" and not "fs"
Bram Moolenaar <Bram@vim.org>
parents:
26311
diff
changeset
|
688 |
7 | 689 " GDB command files |
28093
3fd6b3ebe0b7
patch 8.2.4571: not all gdb files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
27877
diff
changeset
|
690 au BufNewFile,BufRead .gdbinit,gdbinit,.gdbearlyinit,gdbearlyinit,*.gdb setf gdb |
7 | 691 |
692 " GDMO | |
693 au BufNewFile,BufRead *.mo,*.gdmo setf gdmo | |
694 | |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
695 " GDscript |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
696 au BufNewFile,BufRead *.gd setf gdscript |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
697 |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
698 " Godot resource |
29962
32e35a6d4292
patch 9.0.0319: Godot shader files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29952
diff
changeset
|
699 au BufRead,BufNewFile *.tscn,*.tres setf gdresource |
32e35a6d4292
patch 9.0.0319: Godot shader files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29952
diff
changeset
|
700 |
32e35a6d4292
patch 9.0.0319: Godot shader files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29952
diff
changeset
|
701 " Godot shader |
32e35a6d4292
patch 9.0.0319: Godot shader files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29952
diff
changeset
|
702 au BufRead,BufNewFile *.gdshader,*.shader setf gdshader |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
703 |
7 | 704 " Gedcom |
2034 | 705 au BufNewFile,BufRead *.ged,lltxxxxx.txt setf gedcom |
7 | 706 |
25100
d5f856033f6b
patch 8.2.3087: Gemtext files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25096
diff
changeset
|
707 " Gemtext |
d5f856033f6b
patch 8.2.3087: Gemtext files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25096
diff
changeset
|
708 au BufNewFile,BufRead *.gmi,*.gemini setf gemtext |
d5f856033f6b
patch 8.2.3087: Gemtext files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25096
diff
changeset
|
709 |
23316
32cc5e9875bb
patch 8.2.2203: Moodle gift files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23164
diff
changeset
|
710 " Gift (Moodle) |
24466
f5a6a6e98ec4
patch 8.2.2773: PSL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24458
diff
changeset
|
711 autocmd BufRead,BufNewFile *.gift setf gift |
23316
32cc5e9875bb
patch 8.2.2203: Moodle gift files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23164
diff
changeset
|
712 |
1648 | 713 " Git |
20965 | 714 au BufNewFile,BufRead COMMIT_EDITMSG,MERGE_MSG,TAG_EDITMSG setf gitcommit |
26970
733295e9d755
patch 8.2.4014: git and gitcommit file types not properly recognized
Bram Moolenaar <Bram@vim.org>
parents:
26933
diff
changeset
|
715 au BufNewFile,BufRead NOTES_EDITMSG,EDIT_DESCRIPTION setf gitcommit |
27319
c6533967ca9f
patch 8.2.4188: not all gitconfig files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
27317
diff
changeset
|
716 au BufNewFile,BufRead *.git/config,.gitconfig,*/etc/gitconfig setf gitconfig |
14974
f8e6b4f82086
patch 8.1.0498: /etc/gitconfig not recognized at a gitconfig file
Bram Moolenaar <Bram@vim.org>
parents:
14946
diff
changeset
|
717 au BufNewFile,BufRead */.config/git/config setf gitconfig |
27319
c6533967ca9f
patch 8.2.4188: not all gitconfig files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
27317
diff
changeset
|
718 au BufNewFile,BufRead *.git/config.worktree setf gitconfig |
c6533967ca9f
patch 8.2.4188: not all gitconfig files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
27317
diff
changeset
|
719 au BufNewFile,BufRead *.git/worktrees/*/config.worktree setf gitconfig |
14974
f8e6b4f82086
patch 8.1.0498: /etc/gitconfig not recognized at a gitconfig file
Bram Moolenaar <Bram@vim.org>
parents:
14946
diff
changeset
|
720 au BufNewFile,BufRead .gitmodules,*.git/modules/*/config setf gitconfig |
6336 | 721 if !empty($XDG_CONFIG_HOME) |
14974
f8e6b4f82086
patch 8.1.0498: /etc/gitconfig not recognized at a gitconfig file
Bram Moolenaar <Bram@vim.org>
parents:
14946
diff
changeset
|
722 au BufNewFile,BufRead $XDG_CONFIG_HOME/git/config setf gitconfig |
30176
042513ec99d7
patch 9.0.0424: gitattributes files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30162
diff
changeset
|
723 au BufNewFile,BufRead $XDG_CONFIG_HOME/git/attributes setf gitattributes |
30196
381462ee23fd
patch 9.0.0434: gitignore files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30182
diff
changeset
|
724 au BufNewFile,BufRead $XDG_CONFIG_HOME/git/ignore setf gitignore |
6336 | 725 endif |
30176
042513ec99d7
patch 9.0.0424: gitattributes files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30162
diff
changeset
|
726 au BufNewFile,BufRead .gitattributes,*.git/info/attributes setf gitattributes |
30196
381462ee23fd
patch 9.0.0434: gitignore files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30182
diff
changeset
|
727 au BufNewFile,BufRead */.config/git/attributes setf gitattributes |
381462ee23fd
patch 9.0.0434: gitignore files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30182
diff
changeset
|
728 au BufNewFile,BufRead */etc/gitattributes setf gitattributes |
381462ee23fd
patch 9.0.0434: gitignore files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30182
diff
changeset
|
729 au BufNewFile,BufRead .gitignore,*.git/info/exclude setf gitignore |
381462ee23fd
patch 9.0.0434: gitignore files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30182
diff
changeset
|
730 au BufNewFile,BufRead */.config/git/ignore setf gitignore |
381462ee23fd
patch 9.0.0434: gitignore files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30182
diff
changeset
|
731 au BufNewFile,BufRead git-rebase-todo setf gitrebase |
381462ee23fd
patch 9.0.0434: gitignore files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30182
diff
changeset
|
732 au BufRead,BufNewFile .gitsendemail.msg.?????? setf gitsendemail |
5277 | 733 au BufNewFile,BufRead *.git/* |
26970
733295e9d755
patch 8.2.4014: git and gitcommit file types not properly recognized
Bram Moolenaar <Bram@vim.org>
parents:
26933
diff
changeset
|
734 \ if getline(1) =~# '^\x\{40,\}\>\|^ref: ' | |
1648 | 735 \ setf git | |
736 \ endif | |
737 | |
7 | 738 " Gkrellmrc |
739 au BufNewFile,BufRead gkrellmrc,gkrellmrc_? setf gkrellmrc | |
740 | |
28650
be4410fa2bac
patch 8.2.4849: Gleam filetype not detected
Bram Moolenaar <Bram@vim.org>
parents:
28620
diff
changeset
|
741 " Gleam |
be4410fa2bac
patch 8.2.4849: Gleam filetype not detected
Bram Moolenaar <Bram@vim.org>
parents:
28620
diff
changeset
|
742 au BufNewFile,BufRead *.gleam setf gleam |
be4410fa2bac
patch 8.2.4849: Gleam filetype not detected
Bram Moolenaar <Bram@vim.org>
parents:
28620
diff
changeset
|
743 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
744 " GLSL |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
745 au BufNewFile,BufRead *.glsl setf glsl |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
746 |
7 | 747 " GP scripts (2.0 and onward) |
827 | 748 au BufNewFile,BufRead *.gp,.gprc setf gp |
7 | 749 |
750 " GPG | |
751 au BufNewFile,BufRead */.gnupg/options setf gpg | |
752 au BufNewFile,BufRead */.gnupg/gpg.conf setf gpg | |
5277 | 753 au BufNewFile,BufRead */usr/*/gnupg/options.skel setf gpg |
10218
584c835a2de1
commit https://github.com/vim/vim/commit/50ba526fbf3e9e5e0e6b0b3086a4d5df581ebc7e
Christian Brabandt <cb@256bit.org>
parents:
10211
diff
changeset
|
754 if !empty($GNUPGHOME) |
584c835a2de1
commit https://github.com/vim/vim/commit/50ba526fbf3e9e5e0e6b0b3086a4d5df581ebc7e
Christian Brabandt <cb@256bit.org>
parents:
10211
diff
changeset
|
755 au BufNewFile,BufRead $GNUPGHOME/options setf gpg |
584c835a2de1
commit https://github.com/vim/vim/commit/50ba526fbf3e9e5e0e6b0b3086a4d5df581ebc7e
Christian Brabandt <cb@256bit.org>
parents:
10211
diff
changeset
|
756 au BufNewFile,BufRead $GNUPGHOME/gpg.conf setf gpg |
584c835a2de1
commit https://github.com/vim/vim/commit/50ba526fbf3e9e5e0e6b0b3086a4d5df581ebc7e
Christian Brabandt <cb@256bit.org>
parents:
10211
diff
changeset
|
757 endif |
2788 | 758 |
759 " gnash(1) configuration files | |
760 au BufNewFile,BufRead gnashrc,.gnashrc,gnashpluginrc,.gnashpluginrc setf gnash | |
7 | 761 |
3153 | 762 " Gitolite |
763 au BufNewFile,BufRead gitolite.conf setf gitolite | |
4229 | 764 au BufNewFile,BufRead {,.}gitolite.rc,example.gitolite.rc setf perl |
3153 | 765 |
27796
8fdc92bdcff1
patch 8.2.4424: ".gts" and ".gjs" files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27776
diff
changeset
|
766 " Glimmer-flavored TypeScript and JavaScript |
8fdc92bdcff1
patch 8.2.4424: ".gts" and ".gjs" files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27776
diff
changeset
|
767 au BufNewFile,BufRead *.gts setf typescript.glimmer |
8fdc92bdcff1
patch 8.2.4424: ".gts" and ".gjs" files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27776
diff
changeset
|
768 au BufNewFile,BufRead *.gjs setf javascript.glimmer |
8fdc92bdcff1
patch 8.2.4424: ".gts" and ".gjs" files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27776
diff
changeset
|
769 |
7 | 770 " Gnuplot scripts |
27317
839be955609f
patch 8.2.4187: gnuplot file not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27287
diff
changeset
|
771 au BufNewFile,BufRead *.gpi,.gnuplot setf gnuplot |
7 | 772 |
6153 | 773 " Go (Google) |
774 au BufNewFile,BufRead *.go setf go | |
25971
217cd7833e8b
patch 8.2.3519: TOML files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25935
diff
changeset
|
775 au BufNewFile,BufRead Gopkg.lock setf toml |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
776 au BufRead,BufNewFile go.work setf gowork |
6153 | 777 |
7 | 778 " GrADS scripts |
779 au BufNewFile,BufRead *.gs setf grads | |
780 | |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
781 " GraphQL |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
782 au BufNewFile,BufRead *.graphql,*.graphqls,*.gql setf graphql |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
783 |
625 | 784 " Gretl |
785 au BufNewFile,BufRead *.gretl setf gretl | |
786 | |
7 | 787 " Groovy |
7147
c590de398af9
commit https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
788 au BufNewFile,BufRead *.gradle,*.groovy setf groovy |
7 | 789 |
790 " GNU Server Pages | |
791 au BufNewFile,BufRead *.gsp setf gsp | |
792 | |
389 | 793 " Group file |
2751 | 794 au BufNewFile,BufRead */etc/group,*/etc/group-,*/etc/group.edit,*/etc/gshadow,*/etc/gshadow-,*/etc/gshadow.edit,*/var/backups/group.bak,*/var/backups/gshadow.bak setf group |
389 | 795 |
7 | 796 " GTK RC |
797 au BufNewFile,BufRead .gtkrc,gtkrc setf gtkrc | |
798 | |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
799 " Hack |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
800 au BufRead,BufNewFile *.hack,*.hackpartial setf hack |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
801 |
1668 | 802 " Haml |
803 au BufNewFile,BufRead *.haml setf haml | |
804 | |
1125 | 805 " Hamster Classic | Playground files |
24466
f5a6a6e98ec4
patch 8.2.2773: PSL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24458
diff
changeset
|
806 au BufNewFile,BufRead *.hsm setf hamster |
1125 | 807 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
808 " Handlebars |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
809 au BufNewFile,BufRead *.hbs setf handlebars |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
810 |
29324
71f2af5d8447
patch 9.0.0005: hare files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29066
diff
changeset
|
811 " Hare |
71f2af5d8447
patch 9.0.0005: hare files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29066
diff
changeset
|
812 au BufNewFile,BufRead *.ha setf hare |
71f2af5d8447
patch 9.0.0005: hare files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29066
diff
changeset
|
813 |
7 | 814 " Haskell |
24681
1077a2762d06
patch 8.2.2879: file extension .hsig not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24598
diff
changeset
|
815 au BufNewFile,BufRead *.hs,*.hsc,*.hs-boot,*.hsig setf haskell |
7 | 816 au BufNewFile,BufRead *.lhs setf lhaskell |
817 au BufNewFile,BufRead *.chs setf chaskell | |
22971
f39f960f3ea0
patch 8.2.2032: cabalconfig and cabalproject filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
22918
diff
changeset
|
818 au BufNewFile,BufRead cabal.project setf cabalproject |
f39f960f3ea0
patch 8.2.2032: cabalconfig and cabalproject filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
22918
diff
changeset
|
819 au BufNewFile,BufRead $HOME/.cabal/config setf cabalconfig |
f39f960f3ea0
patch 8.2.2032: cabalconfig and cabalproject filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
22918
diff
changeset
|
820 au BufNewFile,BufRead cabal.config setf cabalconfig |
7 | 821 |
1648 | 822 " Haste |
823 au BufNewFile,BufRead *.ht setf haste | |
1668 | 824 au BufNewFile,BufRead *.htpp setf hastepreproc |
1648 | 825 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
826 " HCL |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
827 au BufRead,BufNewFile *.hcl setf hcl |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
828 |
7 | 829 " Hercules |
10319
169a62d5bcb9
commit https://github.com/vim/vim/commit/b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59
Christian Brabandt <cb@256bit.org>
parents:
10301
diff
changeset
|
830 au BufNewFile,BufRead *.vc,*.ev,*.sum,*.errsum setf hercules |
7 | 831 |
28417
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
832 " HEEx |
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
833 au BufRead,BufNewFile *.heex setf heex |
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
834 |
7 | 835 " HEX (Intel) |
836 au BufNewFile,BufRead *.hex,*.h32 setf hex | |
837 | |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
838 " Hjson |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
839 au BufNewFile,BufRead *.hjson setf hjson |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
840 |
17758 | 841 " Hollywood |
842 au BufRead,BufNewFile *.hws setf hollywood | |
843 | |
28986
560793de4032
patch 8.2.5015: Hoon and Moonscript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28670
diff
changeset
|
844 " Hoon |
560793de4032
patch 8.2.5015: Hoon and Moonscript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28670
diff
changeset
|
845 au BufRead,BufNewFile *.hoon setf hoon |
560793de4032
patch 8.2.5015: Hoon and Moonscript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28670
diff
changeset
|
846 |
7 | 847 " Tilde (must be before HTML) |
848 au BufNewFile,BufRead *.t.html setf tilde | |
849 | |
497 | 850 " HTML (.shtml and .stm for server side) |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
851 au BufNewFile,BufRead *.html,*.htm,*.shtml,*.stm call dist#ft#FThtml() |
28604
9c70f7df6d61
patch 8.2.4826: .cshtml files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28538
diff
changeset
|
852 au BufNewFile,BufRead *.cshtml setf html |
7 | 853 |
497 | 854 " HTML with Ruby - eRuby |
1219 | 855 au BufNewFile,BufRead *.erb,*.rhtml setf eruby |
7 | 856 |
857 " HTML with M4 | |
858 au BufNewFile,BufRead *.html.m4 setf htmlm4 | |
859 | |
16562
a6c073fa99e1
patch 8.1.1284: detecting *.tmpl as htmlcheetah is outdated
Bram Moolenaar <Bram@vim.org>
parents:
16364
diff
changeset
|
860 " Some template. Used to be HTML Cheetah. |
a6c073fa99e1
patch 8.1.1284: detecting *.tmpl as htmlcheetah is outdated
Bram Moolenaar <Bram@vim.org>
parents:
16364
diff
changeset
|
861 au BufNewFile,BufRead *.tmpl setf template |
7 | 862 |
1648 | 863 " Host config |
2751 | 864 au BufNewFile,BufRead */etc/host.conf setf hostconf |
1648 | 865 |
1676 | 866 " Hosts access |
2751 | 867 au BufNewFile,BufRead */etc/hosts.allow,*/etc/hosts.deny setf hostsaccess |
1676 | 868 |
7 | 869 " Hyper Builder |
870 au BufNewFile,BufRead *.hb setf hb | |
871 | |
4869 | 872 " Httest |
873 au BufNewFile,BufRead *.htt,*.htb setf httest | |
874 | |
29503
e6e18c0a1694
patch 9.0.0093: sway config files are recognized as i3config
Bram Moolenaar <Bram@vim.org>
parents:
29485
diff
changeset
|
875 " i3 |
e6e18c0a1694
patch 9.0.0093: sway config files are recognized as i3config
Bram Moolenaar <Bram@vim.org>
parents:
29485
diff
changeset
|
876 au BufNewFile,BufRead */i3/config setf i3config |
30215
40491de2f0a6
patch 9.0.0443: blueprint files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30202
diff
changeset
|
877 au BufNewFile,BufRead */.i3/config setf i3config |
29503
e6e18c0a1694
patch 9.0.0093: sway config files are recognized as i3config
Bram Moolenaar <Bram@vim.org>
parents:
29485
diff
changeset
|
878 |
e6e18c0a1694
patch 9.0.0093: sway config files are recognized as i3config
Bram Moolenaar <Bram@vim.org>
parents:
29485
diff
changeset
|
879 " sway |
e6e18c0a1694
patch 9.0.0093: sway config files are recognized as i3config
Bram Moolenaar <Bram@vim.org>
parents:
29485
diff
changeset
|
880 au BufNewFile,BufRead */sway/config setf swayconfig |
30215
40491de2f0a6
patch 9.0.0443: blueprint files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30202
diff
changeset
|
881 au BufNewFile,BufRead */.sway/config setf swayconfig |
26552
297984d49331
patch 8.2.3805: i3config files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26478
diff
changeset
|
882 |
7 | 883 " Icon |
884 au BufNewFile,BufRead *.icn setf icon | |
885 | |
886 " IDL (Interface Description Language) | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
887 au BufNewFile,BufRead *.idl call dist#ft#FTidl() |
7 | 888 |
889 " Microsoft IDL (Interface Description Language) Also *.idl | |
890 " MOF = WMI (Windows Management Instrumentation) Managed Object Format | |
891 au BufNewFile,BufRead *.odl,*.mof setf msidl | |
892 | |
893 " Icewm menu | |
894 au BufNewFile,BufRead */.icewm/menu setf icemenu | |
895 | |
1219 | 896 " Indent profile (must come before IDL *.pro!) |
897 au BufNewFile,BufRead .indent.pro setf indent | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
898 au BufNewFile,BufRead indent.pro call dist#ft#ProtoCheck('indent') |
1219 | 899 |
7 | 900 " IDL (Interactive Data Language) |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
901 au BufNewFile,BufRead *.pro call dist#ft#ProtoCheck('idlang') |
7 | 902 |
389 | 903 " Indent RC |
1676 | 904 au BufNewFile,BufRead indentrc setf indent |
389 | 905 |
7 | 906 " Inform |
907 au BufNewFile,BufRead *.inf,*.INF setf inform | |
908 | |
1125 | 909 " Initng |
5277 | 910 au BufNewFile,BufRead */etc/initng/*/*.i,*.ii setf initng |
1125 | 911 |
4992 | 912 " Innovation Data Processing |
20965 | 913 au BufRead,BufNewFile upstream.dat\c,upstream.*.dat\c,*.upstream.dat\c setf upstreamdat |
914 au BufRead,BufNewFile fdrupstream.log,upstream.log\c,upstream.*.log\c,*.upstream.log\c,UPSTREAM-*.log\c setf upstreamlog | |
5277 | 915 au BufRead,BufNewFile upstreaminstall.log\c,upstreaminstall.*.log\c,*.upstreaminstall.log\c setf upstreaminstalllog |
20965 | 916 au BufRead,BufNewFile usserver.log\c,usserver.*.log\c,*.usserver.log\c setf usserverlog |
917 au BufRead,BufNewFile usw2kagt.log\c,usw2kagt.*.log\c,*.usw2kagt.log\c setf usw2kagtlog | |
4992 | 918 |
148 | 919 " Ipfilter |
1125 | 920 au BufNewFile,BufRead ipf.conf,ipf6.conf,ipf.rules setf ipfilter |
148 | 921 |
7 | 922 " Informix 4GL (source - canonical, include file, I4GL+M4 preproc.) |
923 au BufNewFile,BufRead *.4gl,*.4gh,*.m4gl setf fgl | |
924 | |
925 " .INI file for MSDOS | |
926 au BufNewFile,BufRead *.ini setf dosini | |
927 | |
928 " SysV Inittab | |
929 au BufNewFile,BufRead inittab setf inittab | |
930 | |
931 " Inno Setup | |
932 au BufNewFile,BufRead *.iss setf iss | |
933 | |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
934 " J |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
935 au BufNewFile,BufRead *.ijs setf j |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
936 |
7 | 937 " JAL |
938 au BufNewFile,BufRead *.jal,*.JAL setf jal | |
939 | |
940 " Jam | |
941 au BufNewFile,BufRead *.jpl,*.jpr setf jam | |
942 | |
943 " Java | |
944 au BufNewFile,BufRead *.java,*.jav setf java | |
945 | |
946 " JavaCC | |
947 au BufNewFile,BufRead *.jj,*.jjt setf javacc | |
948 | |
18707
e190e64d253b
patch 8.1.2345: .cjs files are not recognized as Javascript
Bram Moolenaar <Bram@vim.org>
parents:
18489
diff
changeset
|
949 " JavaScript, ECMAScript, ES module script, CommonJS script |
30132
01919e5a070c
patch 9.0.0402: javascript module files are not recoginzed
Bram Moolenaar <Bram@vim.org>
parents:
30023
diff
changeset
|
950 au BufNewFile,BufRead *.js,*.jsm,*.javascript,*.es,*.mjs,*.cjs setf javascript |
17867
180fb9981255
patch 8.1.1930: cannot recognize .jsx and .tsx files
Bram Moolenaar <Bram@vim.org>
parents:
17758
diff
changeset
|
951 |
180fb9981255
patch 8.1.1930: cannot recognize .jsx and .tsx files
Bram Moolenaar <Bram@vim.org>
parents:
17758
diff
changeset
|
952 " JavaScript with React |
180fb9981255
patch 8.1.1930: cannot recognize .jsx and .tsx files
Bram Moolenaar <Bram@vim.org>
parents:
17758
diff
changeset
|
953 au BufNewFile,BufRead *.jsx setf javascriptreact |
7 | 954 |
955 " Java Server Pages | |
956 au BufNewFile,BufRead *.jsp setf jsp | |
957 | |
958 " Java Properties resource file (note: doesn't catch font.properties.pl) | |
216 | 959 au BufNewFile,BufRead *.properties,*.properties_??,*.properties_??_?? setf jproperties |
7 | 960 |
961 " Jess | |
962 au BufNewFile,BufRead *.clp setf jess | |
963 | |
964 " Jgraph | |
965 au BufNewFile,BufRead *.jgr setf jgraph | |
966 | |
2908 | 967 " Jovial |
968 au BufNewFile,BufRead *.jov,*.j73,*.jovial setf jovial | |
969 | |
6070
32a77cc160d9
Update runtime files. Make matchparen plugin backwards compatible.
Bram Moolenaar <bram@vim.org>
parents:
6051
diff
changeset
|
970 " JSON |
9407
619a98a67f67
commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents:
9041
diff
changeset
|
971 au BufNewFile,BufRead *.json,*.jsonp,*.webmanifest setf json |
6070
32a77cc160d9
Update runtime files. Make matchparen plugin backwards compatible.
Bram Moolenaar <bram@vim.org>
parents:
6051
diff
changeset
|
972 |
27326
234516a43f33
patch 8.2.4191: json5 files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27321
diff
changeset
|
973 " JSON5 |
234516a43f33
patch 8.2.4191: json5 files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27321
diff
changeset
|
974 au BufNewFile,BufRead *.json5 setf json5 |
234516a43f33
patch 8.2.4191: json5 files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27321
diff
changeset
|
975 |
25024
a1b0fe1c7cd5
patch 8.2.3049: JSON patch file not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
976 " JSON Patch (RFC 6902) |
a1b0fe1c7cd5
patch 8.2.3049: JSON patch file not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
977 au BufNewFile,BufRead *.json-patch setf json |
a1b0fe1c7cd5
patch 8.2.3049: JSON patch file not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
978 |
24905
50cdd1e6f152
patch 8.2.2990: Jupyter Notebook files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24832
diff
changeset
|
979 " Jupyter Notebook is also json |
50cdd1e6f152
patch 8.2.2990: Jupyter Notebook files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24832
diff
changeset
|
980 au BufNewFile,BufRead *.ipynb setf json |
50cdd1e6f152
patch 8.2.2990: Jupyter Notebook files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24832
diff
changeset
|
981 |
25870
3c797fa8206d
patch 8.2.3469: some files with json syntax are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25860
diff
changeset
|
982 " Other files that look like json |
3c797fa8206d
patch 8.2.3469: some files with json syntax are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25860
diff
changeset
|
983 au BufNewFile,BufRead .babelrc,.eslintrc,.prettierrc,.firebaserc setf json |
3c797fa8206d
patch 8.2.3469: some files with json syntax are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25860
diff
changeset
|
984 |
25096
d0625ed91013
patch 8.2.3085: JSONC files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25026
diff
changeset
|
985 " JSONC |
d0625ed91013
patch 8.2.3085: JSONC files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25026
diff
changeset
|
986 au BufNewFile,BufRead *.jsonc setf jsonc |
d0625ed91013
patch 8.2.3085: JSONC files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25026
diff
changeset
|
987 |
30162
d12d9d724d27
patch 9.0.0417: Jsonnet files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30132
diff
changeset
|
988 " Jsonnet |
d12d9d724d27
patch 9.0.0417: Jsonnet files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30132
diff
changeset
|
989 au BufNewFile,BufRead *.jsonnet,*.libjsonnet setf jsonnet |
d12d9d724d27
patch 9.0.0417: Jsonnet files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30132
diff
changeset
|
990 |
25493
224c96c497d3
patch 8.2.3283: Julia filetype is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25161
diff
changeset
|
991 " Julia |
224c96c497d3
patch 8.2.3283: Julia filetype is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25161
diff
changeset
|
992 au BufNewFile,BufRead *.jl setf julia |
224c96c497d3
patch 8.2.3283: Julia filetype is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25161
diff
changeset
|
993 |
7 | 994 " Kixtart |
995 au BufNewFile,BufRead *.kix setf kix | |
996 | |
28351
1aa3460f799d
patch 8.2.4701: Kuka Robot Language files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28277
diff
changeset
|
997 " Kuka Robot Language |
1aa3460f799d
patch 8.2.4701: Kuka Robot Language files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28277
diff
changeset
|
998 au BufNewFile,BufRead *.src\c call dist#ft#FTsrc() |
1aa3460f799d
patch 8.2.4701: Kuka Robot Language files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28277
diff
changeset
|
999 au BufNewFile,BufRead *.dat\c call dist#ft#FTdat() |
1aa3460f799d
patch 8.2.4701: Kuka Robot Language files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28277
diff
changeset
|
1000 au BufNewFile,BufRead *.sub\c setf krl |
1aa3460f799d
patch 8.2.4701: Kuka Robot Language files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28277
diff
changeset
|
1001 |
7 | 1002 " Kimwitu[++] |
1003 au BufNewFile,BufRead *.k setf kwt | |
1004 | |
5968 | 1005 " Kivy |
1006 au BufNewFile,BufRead *.kv setf kivy | |
1007 | |
19263
06d9be5c0107
patch 8.2.0190: Kotlin files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19205
diff
changeset
|
1008 " Kotlin |
06d9be5c0107
patch 8.2.0190: Kotlin files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19205
diff
changeset
|
1009 au BufNewFile,BufRead *.kt,*.ktm,*.kts setf kotlin |
06d9be5c0107
patch 8.2.0190: Kotlin files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19205
diff
changeset
|
1010 |
7 | 1011 " KDE script |
1012 au BufNewFile,BufRead *.ks setf kscript | |
1013 | |
826 | 1014 " Kconfig |
1015 au BufNewFile,BufRead Kconfig,Kconfig.debug setf kconfig | |
1016 | |
7 | 1017 " Lace (ISE) |
1018 au BufNewFile,BufRead *.ace,*.ACE setf lace | |
1019 | |
1020 " Latte | |
1021 au BufNewFile,BufRead *.latte,*.lte setf latte | |
1022 | |
375 | 1023 " Limits |
2751 | 1024 au BufNewFile,BufRead */etc/limits,*/etc/*limits.conf,*/etc/*limits.d/*.conf setf limits |
375 | 1025 |
29338
f4f531986753
patch 9.0.0012: signature files not detected properly
Bram Moolenaar <Bram@vim.org>
parents:
29326
diff
changeset
|
1026 " LambdaProlog or SML (see dist#ft#FTmod for *.mod) |
f4f531986753
patch 9.0.0012: signature files not detected properly
Bram Moolenaar <Bram@vim.org>
parents:
29326
diff
changeset
|
1027 au BufNewFile,BufRead *.sig call dist#ft#FTsig() |
7 | 1028 |
1029 " LDAP LDIF | |
1030 au BufNewFile,BufRead *.ldif setf ldif | |
1031 | |
375 | 1032 " Ld loader |
1033 au BufNewFile,BufRead *.ld setf ld | |
1034 | |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1035 " Ledger |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1036 au BufRead,BufNewFile *.ldg,*.ledger,*.journal setf ledger |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1037 |
6476 | 1038 " Less |
1039 au BufNewFile,BufRead *.less setf less | |
1040 | |
7 | 1041 " Lex |
5697 | 1042 au BufNewFile,BufRead *.lex,*.l,*.lxx,*.l++ setf lex |
7 | 1043 |
1044 " Libao | |
2751 | 1045 au BufNewFile,BufRead */etc/libao.conf,*/.libao setf libao |
7 | 1046 |
389 | 1047 " Libsensors |
2751 | 1048 au BufNewFile,BufRead */etc/sensors.conf,*/etc/sensors3.conf setf sensors |
389 | 1049 |
7 | 1050 " LFTP |
1051 au BufNewFile,BufRead lftp.conf,.lftprc,*lftp/rc setf lftp | |
1052 | |
1053 " Lifelines (or Lex for C++!) | |
1054 au BufNewFile,BufRead *.ll setf lifelines | |
1055 | |
1056 " Lilo: Linux loader | |
2788 | 1057 au BufNewFile,BufRead lilo.conf setf lilo |
7 | 1058 |
28532
11387538e7c4
patch 8.2.4790: lilypond filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28517
diff
changeset
|
1059 " Lilypond |
11387538e7c4
patch 8.2.4790: lilypond filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28517
diff
changeset
|
1060 au BufNewFile,BufRead *.ly,*.ily setf lilypond |
11387538e7c4
patch 8.2.4790: lilypond filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28517
diff
changeset
|
1061 |
20639
3dab6fbe133c
patch 8.2.0873: a .jl file can be sawfish (lisp) or Julia
Bram Moolenaar <Bram@vim.org>
parents:
20579
diff
changeset
|
1062 " Lisp (*.el = ELisp, *.cl = Common Lisp) |
3dab6fbe133c
patch 8.2.0873: a .jl file can be sawfish (lisp) or Julia
Bram Moolenaar <Bram@vim.org>
parents:
20579
diff
changeset
|
1063 " *.jl was removed, it's also used for Julia, better skip than guess wrong. |
7 | 1064 if has("fname_case") |
26871
c8d32e12c934
patch 8.2.3964: some common lisp and scheme files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26779
diff
changeset
|
1065 au BufNewFile,BufRead *.lsp,*.lisp,*.asd,*.el,*.cl,*.L,.emacs,.sawfishrc setf lisp |
7 | 1066 else |
26871
c8d32e12c934
patch 8.2.3964: some common lisp and scheme files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26779
diff
changeset
|
1067 au BufNewFile,BufRead *.lsp,*.lisp,*.asd,*.el,*.cl,.emacs,.sawfishrc setf lisp |
7 | 1068 endif |
1069 | |
375 | 1070 " SBCL implementation of Common Lisp |
1071 au BufNewFile,BufRead sbclrc,.sbclrc setf lisp | |
1072 | |
2202 | 1073 " Liquid |
1074 au BufNewFile,BufRead *.liquid setf liquid | |
1075 | |
7 | 1076 " Lite |
1077 au BufNewFile,BufRead *.lite,*.lt setf lite | |
1078 | |
1219 | 1079 " LiteStep RC files |
1080 au BufNewFile,BufRead */LiteStep/*/*.rc setf litestep | |
1081 | |
375 | 1082 " Login access |
2751 | 1083 au BufNewFile,BufRead */etc/login.access setf loginaccess |
375 | 1084 |
1085 " Login defs | |
2751 | 1086 au BufNewFile,BufRead */etc/login.defs setf logindefs |
375 | 1087 |
7 | 1088 " Logtalk |
1089 au BufNewFile,BufRead *.lgt setf logtalk | |
1090 | |
1091 " LOTOS | |
1092 au BufNewFile,BufRead *.lot,*.lotos setf lotos | |
1093 | |
1094 " Lout (also: *.lt) | |
1095 au BufNewFile,BufRead *.lou,*.lout setf lout | |
1096 | |
1097 " Lua | |
1098 au BufNewFile,BufRead *.lua setf lua | |
1099 | |
6213 | 1100 " Luarocks |
1101 au BufNewFile,BufRead *.rockspec setf lua | |
1102 | |
1648 | 1103 " Linden Scripting Language (Second Life) |
1104 au BufNewFile,BufRead *.lsl setf lsl | |
1105 | |
7 | 1106 " Lynx style file (or LotusScript!) |
1107 au BufNewFile,BufRead *.lss setf lss | |
1108 | |
1109 " M4 | |
1110 au BufNewFile,BufRead *.m4 | |
1111 \ if expand("<afile>") !~? 'html.m4$\|fvwm2rc' | setf m4 | endif | |
1112 | |
1113 " MaGic Point | |
1114 au BufNewFile,BufRead *.mgp setf mgp | |
1115 | |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1116 " Mail (for Elm, trn, mutt, muttng, rn, slrn, neomutt) |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1117 au BufNewFile,BufRead snd.\d\+,.letter,.letter.\d\+,.followup,.article,.article.\d\+,pico.\d\+,mutt{ng,}-*-\w\+,mutt[[:alnum:]_-]\\\{6\},neomutt-*-\w\+,neomutt[[:alnum:]_-]\\\{6\},ae\d\+.txt,/tmp/SLRN[0-9A-Z.]\+,*.eml setf mail |
7 | 1118 |
809 | 1119 " Mail aliases |
2751 | 1120 au BufNewFile,BufRead */etc/mail/aliases,*/etc/aliases setf mailaliases |
809 | 1121 |
7 | 1122 " Mailcap configuration file |
1123 au BufNewFile,BufRead .mailcap,mailcap setf mailcap | |
1124 | |
1125 " Makefile | |
1126 au BufNewFile,BufRead *[mM]akefile,*.mk,*.mak,*.dsp setf make | |
1127 | |
1128 " MakeIndex | |
1129 au BufNewFile,BufRead *.ist,*.mst setf ist | |
1130 | |
4119 | 1131 " Mallard |
1132 au BufNewFile,BufRead *.page setf mallard | |
1133 | |
7 | 1134 " Manpage |
1135 au BufNewFile,BufRead *.man setf man | |
1136 | |
389 | 1137 " Man config |
2751 | 1138 au BufNewFile,BufRead */etc/man.conf,man.config setf manconf |
389 | 1139 |
7 | 1140 " Maple V |
1141 au BufNewFile,BufRead *.mv,*.mpl,*.mws setf maple | |
1142 | |
1668 | 1143 " Map (UMN mapserver config file) |
1144 au BufNewFile,BufRead *.map setf map | |
1145 | |
2202 | 1146 " Markdown |
6292
31f7581068a9
Update runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
6213
diff
changeset
|
1147 au BufNewFile,BufRead *.markdown,*.mdown,*.mkd,*.mkdn,*.mdwn,*.md setf markdown |
2202 | 1148 |
7 | 1149 " Mason |
6153 | 1150 au BufNewFile,BufRead *.mason,*.mhtml,*.comp setf mason |
7 | 1151 |
25727
71d3ebfb00b6
patch 8.2.3399: Octave files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25700
diff
changeset
|
1152 " Mathematica, Matlab, Murphi, Objective C or Octave |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1153 au BufNewFile,BufRead *.m call dist#ft#FTm() |
7 | 1154 |
1648 | 1155 " Mathematica notebook |
1156 au BufNewFile,BufRead *.nb setf mma | |
1157 | |
7 | 1158 " Maya Extension Language |
1159 au BufNewFile,BufRead *.mel setf mel | |
1160 | |
3750 | 1161 " Mercurial (hg) commit file |
1162 au BufNewFile,BufRead hg-editor-*.txt setf hgcommit | |
1163 | |
2034 | 1164 " Mercurial config (looks like generic config file) |
1165 au BufNewFile,BufRead *.hgrc,*hgrc setf cfg | |
1166 | |
18362
8144f89e6f28
patch 8.1.2175: meson files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18343
diff
changeset
|
1167 " Meson Build system config |
8144f89e6f28
patch 8.1.2175: meson files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18343
diff
changeset
|
1168 au BufNewFile,BufRead meson.build,meson_options.txt setf meson |
24598
6b85c09a4d73
patch 8.2.2838: file extension .wrap not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24523
diff
changeset
|
1169 au BufNewFile,BufRead *.wrap setf dosini |
18362
8144f89e6f28
patch 8.1.2175: meson files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18343
diff
changeset
|
1170 |
2709 | 1171 " Messages (logs mostly) |
2788 | 1172 au BufNewFile,BufRead */log/{auth,cron,daemon,debug,kern,lpr,mail,messages,news/news,syslog,user}{,.log,.err,.info,.warn,.crit,.notice}{,.[0-9]*,-[0-9]*} setf messages |
1125 | 1173 |
7 | 1174 " Metafont |
1175 au BufNewFile,BufRead *.mf setf mf | |
1176 | |
1177 " MetaPost | |
1178 au BufNewFile,BufRead *.mp setf mp | |
29710
0edbf9b01c42
patch 9.0.0195: metafun files are not recogized
Bram Moolenaar <Bram@vim.org>
parents:
29684
diff
changeset
|
1179 au BufNewFile,BufRead *.mpxl,*.mpiv,*.mpvi let b:mp_metafun = 1 | setf mp |
7 | 1180 |
683 | 1181 " MGL |
1182 au BufNewFile,BufRead *.mgl setf mgl | |
1183 | |
5487 | 1184 " MIX - Knuth assembly |
1185 au BufNewFile,BufRead *.mix,*.mixal setf mix | |
1186 | |
7 | 1187 " MMIX or VMS makefile |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1188 au BufNewFile,BufRead *.mms call dist#ft#FTmms() |
7 | 1189 |
1648 | 1190 " Symbian meta-makefile definition (MMP) |
1191 au BufNewFile,BufRead *.mmp setf mmp | |
1192 | |
28390
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
1193 " ABB Rapid, Modula-2, Modsim III or LambdaProlog |
28443
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1194 au BufNewFile,BufRead *.mod\c call dist#ft#FTmod() |
28390
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
1195 |
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
1196 " Modula-2 (.md removed in favor of Markdown, see dist#ft#FTmod for *.MOD) |
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
1197 au BufNewFile,BufRead *.m2,*.DEF,*.mi setf modula2 |
7 | 1198 |
24458
1d126cb683c1
patch 8.2.2769: Modula-3 config files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24347
diff
changeset
|
1199 " Modula-3 (.m3, .i3, .mg, .ig) |
7 | 1200 au BufNewFile,BufRead *.[mi][3g] setf modula3 |
1201 | |
1202 " Monk | |
1203 au BufNewFile,BufRead *.isc,*.monk,*.ssc,*.tsc setf monk | |
1204 | |
1205 " MOO | |
1206 au BufNewFile,BufRead *.moo setf moo | |
1207 | |
28986
560793de4032
patch 8.2.5015: Hoon and Moonscript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28670
diff
changeset
|
1208 " Moonscript |
560793de4032
patch 8.2.5015: Hoon and Moonscript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28670
diff
changeset
|
1209 au BufNewFile,BufRead *.moon setf moonscript |
560793de4032
patch 8.2.5015: Hoon and Moonscript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28670
diff
changeset
|
1210 |
7 | 1211 " Modconf |
2788 | 1212 au BufNewFile,BufRead */etc/modules.conf,*/etc/modules,*/etc/conf.modules setf modconf |
7 | 1213 |
25834
a89664a64d62
patch 8.2.3452: MPD files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25832
diff
changeset
|
1214 " MPD is based on XML |
a89664a64d62
patch 8.2.3452: MPD files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25832
diff
changeset
|
1215 au BufNewFile,BufRead *.mpd setf xml |
a89664a64d62
patch 8.2.3452: MPD files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25832
diff
changeset
|
1216 |
7 | 1217 " Mplayer config |
1218 au BufNewFile,BufRead mplayer.conf,*/.mplayer/config setf mplayerconf | |
1219 | |
6697 | 1220 " Motorola S record |
1221 au BufNewFile,BufRead *.s19,*.s28,*.s37,*.mot,*.srec setf srec | |
7 | 1222 |
846 | 1223 " Mrxvtrc |
1224 au BufNewFile,BufRead mrxvtrc,.mrxvtrc setf mrxvtrc | |
1225 | |
7 | 1226 " Msql |
1227 au BufNewFile,BufRead *.msql setf msql | |
1228 | |
1229 " Mysql | |
1230 au BufNewFile,BufRead *.mysql setf mysql | |
1231 | |
25878
f88641e6996c
patch 8.2.3473: some files with tcl syntax are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25870
diff
changeset
|
1232 " Tcl Shell RC file |
f88641e6996c
patch 8.2.3473: some files with tcl syntax are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25870
diff
changeset
|
1233 au BufNewFile,BufRead tclsh.rc setf tcl |
f88641e6996c
patch 8.2.3473: some files with tcl syntax are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25870
diff
changeset
|
1234 |
7 | 1235 " M$ Resource files |
26398
34548fb19e0e
patch 8.2.3730: "/etc/Muttrc.d/README" gets filetype muttrc
Bram Moolenaar <Bram@vim.org>
parents:
26396
diff
changeset
|
1236 " /etc/Muttrc.d/file.rc is muttrc |
34548fb19e0e
patch 8.2.3730: "/etc/Muttrc.d/README" gets filetype muttrc
Bram Moolenaar <Bram@vim.org>
parents:
26396
diff
changeset
|
1237 au BufNewFile,BufRead *.rc,*.rch |
34548fb19e0e
patch 8.2.3730: "/etc/Muttrc.d/README" gets filetype muttrc
Bram Moolenaar <Bram@vim.org>
parents:
26396
diff
changeset
|
1238 \ if expand("<afile>") !~ "/etc/Muttrc.d/" | |
34548fb19e0e
patch 8.2.3730: "/etc/Muttrc.d/README" gets filetype muttrc
Bram Moolenaar <Bram@vim.org>
parents:
26396
diff
changeset
|
1239 \ setf rc | |
34548fb19e0e
patch 8.2.3730: "/etc/Muttrc.d/README" gets filetype muttrc
Bram Moolenaar <Bram@vim.org>
parents:
26396
diff
changeset
|
1240 \ endif |
7 | 1241 |
12 | 1242 " MuPAD source |
1243 au BufRead,BufNewFile *.mu setf mupad | |
1244 | |
7 | 1245 " Mush |
1246 au BufNewFile,BufRead *.mush setf mush | |
1247 | |
1125 | 1248 " Mutt setup file (also for Muttng) |
1648 | 1249 au BufNewFile,BufRead Mutt{ng,}rc setf muttrc |
7 | 1250 |
12052
7eb512f2a896
patch 8.0.0906: don't recognize Couchbase files
Christian Brabandt <cb@256bit.org>
parents:
12027
diff
changeset
|
1251 " N1QL |
7eb512f2a896
patch 8.0.0906: don't recognize Couchbase files
Christian Brabandt <cb@256bit.org>
parents:
12027
diff
changeset
|
1252 au BufRead,BufNewfile *.n1ql,*.nql setf n1ql |
7eb512f2a896
patch 8.0.0906: don't recognize Couchbase files
Christian Brabandt <cb@256bit.org>
parents:
12027
diff
changeset
|
1253 |
389 | 1254 " Nano |
20965 | 1255 au BufNewFile,BufRead */etc/nanorc,*.nanorc setf nanorc |
389 | 1256 |
7 | 1257 " Nastran input/DMAP |
1258 "au BufNewFile,BufRead *.dat setf nastran | |
1259 | |
1260 " Natural | |
1261 au BufNewFile,BufRead *.NS[ACGLMNPS] setf natural | |
1262 | |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1263 " Noemutt setup file |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1264 au BufNewFile,BufRead Neomuttrc setf neomuttrc |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1265 |
39 | 1266 " Netrc |
1267 au BufNewFile,BufRead .netrc setf netrc | |
1268 | |
25860
a7305a9b32ba
patch 8.2.3464: nginx files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25848
diff
changeset
|
1269 " Nginx |
a7305a9b32ba
patch 8.2.3464: nginx files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25848
diff
changeset
|
1270 au BufNewFile,BufRead *.nginx,nginx*.conf,*nginx.conf,*/etc/nginx/*,*/usr/local/nginx/conf/*,*/nginx/*.conf setf nginx |
a7305a9b32ba
patch 8.2.3464: nginx files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25848
diff
changeset
|
1271 |
3256 | 1272 " Ninja file |
1273 au BufNewFile,BufRead *.ninja setf ninja | |
1274 | |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1275 " Nix |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1276 au BufRead,BufNewFile *.nix setf nix |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1277 |
21719
40dca24258ff
patch 8.2.1409: nmpmrc and php.ini filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
21676
diff
changeset
|
1278 " NPM RC file |
40dca24258ff
patch 8.2.1409: nmpmrc and php.ini filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
21676
diff
changeset
|
1279 au BufNewFile,BufRead npmrc,.npmrc setf dosini |
40dca24258ff
patch 8.2.1409: nmpmrc and php.ini filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
21676
diff
changeset
|
1280 |
7 | 1281 " Novell netware batch files |
1282 au BufNewFile,BufRead *.ncf setf ncf | |
1283 | |
1284 " Nroff/Troff (*.ms and *.t are checked below) | |
1285 au BufNewFile,BufRead *.me | |
1286 \ if expand("<afile>") != "read.me" && expand("<afile>") != "click.me" | | |
1287 \ setf nroff | | |
1288 \ endif | |
1289 au BufNewFile,BufRead *.tr,*.nr,*.roff,*.tmac,*.mom setf nroff | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1290 au BufNewFile,BufRead *.[1-9] call dist#ft#FTnroff() |
7 | 1291 |
1292 " Nroff or Objective C++ | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1293 au BufNewFile,BufRead *.mm call dist#ft#FTmm() |
7 | 1294 |
1295 " Not Quite C | |
1296 au BufNewFile,BufRead *.nqc setf nqc | |
1297 | |
11160 | 1298 " NSE - Nmap Script Engine - uses Lua syntax |
1299 au BufNewFile,BufRead *.nse setf lua | |
1300 | |
7 | 1301 " NSIS |
3492 | 1302 au BufNewFile,BufRead *.nsi,*.nsh setf nsis |
7 | 1303 |
23430
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
1304 " OCaml |
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
1305 au BufNewFile,BufRead *.ml,*.mli,*.mll,*.mly,.ocamlinit,*.mlt,*.mlp,*.mlip,*.mli.cppo,*.ml.cppo setf ocaml |
7 | 1306 |
1307 " Occam | |
1308 au BufNewFile,BufRead *.occ setf occam | |
1309 | |
25727
71d3ebfb00b6
patch 8.2.3399: Octave files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25700
diff
changeset
|
1310 " Octave |
71d3ebfb00b6
patch 8.2.3399: Octave files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25700
diff
changeset
|
1311 au BufNewFile,BufRead octave.conf,.octaverc,octaverc setf octave |
71d3ebfb00b6
patch 8.2.3399: Octave files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25700
diff
changeset
|
1312 |
7 | 1313 " Omnimark |
1314 au BufNewFile,BufRead *.xom,*.xin setf omnimark | |
1315 | |
23430
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
1316 " OPAM |
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
1317 au BufNewFile,BufRead opam,*.opam,*.opam.template setf opam |
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
1318 |
27070
b353bd9faec8
patch 8.2.4064: foam files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
27036
diff
changeset
|
1319 " OpenFOAM |
b353bd9faec8
patch 8.2.4064: foam files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
27036
diff
changeset
|
1320 au BufNewFile,BufRead [a-zA-Z0-9]*Dict\(.*\)\=,[a-zA-Z]*Properties\(.*\)\=,*Transport\(.*\),fvSchemes,fvSolution,fvConstrains,fvModels,*/constant/g,*/0\(\.orig\)\=/* call dist#ft#FTfoam() |
b353bd9faec8
patch 8.2.4064: foam files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
27036
diff
changeset
|
1321 |
7 | 1322 " OpenROAD |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1323 au BufNewFile,BufRead *.or setf openroad |
7 | 1324 |
1325 " OPL | |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1326 au BufNewFile,BufRead *.[Oo][Pp][Ll] setf opl |
7 | 1327 |
28485
75f181bef230
patch 8.2.4767: openscad files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28443
diff
changeset
|
1328 " OpenSCAD |
30182
4d3c7b4927f2
patch 9.0.0427: Drupal theme files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30176
diff
changeset
|
1329 au BufNewFile,BufRead *.scad setf openscad |
28485
75f181bef230
patch 8.2.4767: openscad files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28443
diff
changeset
|
1330 |
7 | 1331 " Oracle config file |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1332 au BufNewFile,BufRead *.ora setf ora |
7 | 1333 |
28265
67ef250562e5
patch 8.2.4658: org-mode files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28093
diff
changeset
|
1334 " Org |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1335 au BufNewFile,BufRead *.org,*.org_archive setf org |
28265
67ef250562e5
patch 8.2.4658: org-mode files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28093
diff
changeset
|
1336 |
7 | 1337 " Packet filter conf |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1338 au BufNewFile,BufRead pf.conf setf pf |
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1339 |
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1340 " ini style config files, using # comments |
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1341 au BufNewFile,BufRead */etc/pacman.conf,mpv.conf setf confini |
21008
2cf49849e933
patch 8.2.1055: no filetype set for pacman config files
Bram Moolenaar <Bram@vim.org>
parents:
20986
diff
changeset
|
1342 |
2cf49849e933
patch 8.2.1055: no filetype set for pacman config files
Bram Moolenaar <Bram@vim.org>
parents:
20986
diff
changeset
|
1343 " Pacman hooks |
2cf49849e933
patch 8.2.1055: no filetype set for pacman config files
Bram Moolenaar <Bram@vim.org>
parents:
20986
diff
changeset
|
1344 au BufNewFile,BufRead *.hook |
2cf49849e933
patch 8.2.1055: no filetype set for pacman config files
Bram Moolenaar <Bram@vim.org>
parents:
20986
diff
changeset
|
1345 \ if getline(1) == '[Trigger]' | |
28507
73f235d0b6c8
patch 8.2.4778: pacman files use dosini filetype
Bram Moolenaar <Bram@vim.org>
parents:
28485
diff
changeset
|
1346 \ setf conf | |
21008
2cf49849e933
patch 8.2.1055: no filetype set for pacman config files
Bram Moolenaar <Bram@vim.org>
parents:
20986
diff
changeset
|
1347 \ endif |
2cf49849e933
patch 8.2.1055: no filetype set for pacman config files
Bram Moolenaar <Bram@vim.org>
parents:
20986
diff
changeset
|
1348 |
375 | 1349 " Pam conf |
21008
2cf49849e933
patch 8.2.1055: no filetype set for pacman config files
Bram Moolenaar <Bram@vim.org>
parents:
20986
diff
changeset
|
1350 au BufNewFile,BufRead */etc/pam.conf setf pamconf |
375 | 1351 |
20315
190ffc6453d4
patch 8.2.0713: the pam_environment file is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
20215
diff
changeset
|
1352 " Pam environment |
20361
4bb526ae0989
patch 8.2.0736: some files not recognized as pamenv
Bram Moolenaar <Bram@vim.org>
parents:
20317
diff
changeset
|
1353 au BufNewFile,BufRead pam_env.conf,.pam_environment setf pamenv |
20315
190ffc6453d4
patch 8.2.0713: the pam_environment file is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
20215
diff
changeset
|
1354 |
7 | 1355 " PApp |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1356 au BufNewFile,BufRead *.papp,*.pxml,*.pxsl setf papp |
7 | 1357 |
389 | 1358 " Password file |
2751 | 1359 au BufNewFile,BufRead */etc/passwd,*/etc/passwd-,*/etc/passwd.edit,*/etc/shadow,*/etc/shadow-,*/etc/shadow.edit,*/var/backups/passwd.bak,*/var/backups/shadow.bak setf passwd |
389 | 1360 |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1361 " Pascal (also *.p, *.pp, *.inc) |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1362 au BufNewFile,BufRead *.pas setf pascal |
23584
397f95f103e8
patch 8.2.2334: Pascal-like filetypes not always detected
Bram Moolenaar <Bram@vim.org>
parents:
23466
diff
changeset
|
1363 |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1364 " Pascal or Puppet manifest |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1365 au BufNewFile,BufRead *.pp call dist#ft#FTpp() |
22353
889143dbe2cd
patch 8.2.1725: not all Pascal files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
22033
diff
changeset
|
1366 |
889143dbe2cd
patch 8.2.1725: not all Pascal files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
22033
diff
changeset
|
1367 " Delphi or Lazarus program file |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1368 au BufNewFile,BufRead *.dpr,*.lpr setf pascal |
7 | 1369 |
24523
71bd205c72f5
patch 8.2.2801: free Pascal makefile not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24496
diff
changeset
|
1370 " Free Pascal makefile definition file |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1371 au BufNewFile,BufRead *.fpc setf fpcmake |
24523
71bd205c72f5
patch 8.2.2801: free Pascal makefile not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24496
diff
changeset
|
1372 |
1648 | 1373 " PDF |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1374 au BufNewFile,BufRead *.pdf setf pdf |
1648 | 1375 |
14991
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
1376 " PCMK - HAE - crm configure edit |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1377 au BufNewFile,BufRead *.pcmk setf pcmk |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1378 |
7 | 1379 " Perl |
1380 if has("fname_case") | |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1381 au BufNewFile,BufRead *.pl,*.PL call dist#ft#FTpl() |
7 | 1382 else |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1383 au BufNewFile,BufRead *.pl call dist#ft#FTpl() |
7 | 1384 endif |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1385 au BufNewFile,BufRead *.plx,*.al,*.psgi setf perl |
7 | 1386 |
1387 " Perl, XPM or XPM2 | |
1388 au BufNewFile,BufRead *.pm | |
1389 \ if getline(1) =~ "XPM2" | | |
1390 \ setf xpm2 | | |
1391 \ elseif getline(1) =~ "XPM" | | |
1392 \ setf xpm | | |
1393 \ else | | |
1394 \ setf perl | | |
1395 \ endif | |
1396 | |
1397 " Perl POD | |
1398 au BufNewFile,BufRead *.pod setf pod | |
1399 | |
850 | 1400 " Php, php3, php4, etc. |
28365
da2f2f8fd66e
patch 8.2.4708: PHP test files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28351
diff
changeset
|
1401 " Also Phtml (was used for PHP 2 in the past). |
da2f2f8fd66e
patch 8.2.4708: PHP test files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28351
diff
changeset
|
1402 " Also .ctp for Cake template file. |
da2f2f8fd66e
patch 8.2.4708: PHP test files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28351
diff
changeset
|
1403 " Also .phpt for php tests. |
30182
4d3c7b4927f2
patch 9.0.0427: Drupal theme files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30176
diff
changeset
|
1404 " Also .theme for Drupal theme files. |
4d3c7b4927f2
patch 9.0.0427: Drupal theme files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30176
diff
changeset
|
1405 au BufNewFile,BufRead *.php,*.php\d,*.phtml,*.ctp,*.phpt,*.theme setf php |
7 | 1406 |
21719
40dca24258ff
patch 8.2.1409: nmpmrc and php.ini filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
21676
diff
changeset
|
1407 " PHP config |
22441 | 1408 au BufNewFile,BufRead php.ini-* setf dosini |
21719
40dca24258ff
patch 8.2.1409: nmpmrc and php.ini filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
21676
diff
changeset
|
1409 |
13125 | 1410 " Pike and Cmod |
1411 au BufNewFile,BufRead *.pike,*.pmod setf pike | |
1412 au BufNewFile,BufRead *.cmod setf cmod | |
7 | 1413 |
1414 " Pinfo config | |
1415 au BufNewFile,BufRead */etc/pinforc,*/.pinforc setf pinfo | |
1416 | |
1417 " Palm Resource compiler | |
1418 au BufNewFile,BufRead *.rcp setf pilrc | |
1419 | |
1420 " Pine config | |
1421 au BufNewFile,BufRead .pinerc,pinerc,.pinercex,pinercex setf pine | |
1422 | |
16364
db8f57e3e9f5
patch 8.1.1187: cannot recognize Pipfile
Bram Moolenaar <Bram@vim.org>
parents:
16344
diff
changeset
|
1423 " Pipenv Pipfiles |
25971
217cd7833e8b
patch 8.2.3519: TOML files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25935
diff
changeset
|
1424 au BufNewFile,BufRead Pipfile setf toml |
16364
db8f57e3e9f5
patch 8.1.1187: cannot recognize Pipfile
Bram Moolenaar <Bram@vim.org>
parents:
16344
diff
changeset
|
1425 au BufNewFile,BufRead Pipfile.lock setf json |
db8f57e3e9f5
patch 8.1.1187: cannot recognize Pipfile
Bram Moolenaar <Bram@vim.org>
parents:
16344
diff
changeset
|
1426 |
5239 | 1427 " PL/1, PL/I |
1428 au BufNewFile,BufRead *.pli,*.pl1 setf pli | |
1429 | |
7 | 1430 " PL/M (also: *.inp) |
1431 au BufNewFile,BufRead *.plm,*.p36,*.pac setf plm | |
1432 | |
1433 " PL/SQL | |
1434 au BufNewFile,BufRead *.pls,*.plsql setf plsql | |
1435 | |
1436 " PLP | |
1437 au BufNewFile,BufRead *.plp setf plp | |
1438 | |
1439 " PO and PO template (GNU gettext) | |
1440 au BufNewFile,BufRead *.po,*.pot setf po | |
1441 | |
1442 " Postfix main config | |
1443 au BufNewFile,BufRead main.cf setf pfmain | |
1444 | |
1445 " PostScript (+ font files, encapsulated PostScript, Adobe Illustrator) | |
1446 au BufNewFile,BufRead *.ps,*.pfa,*.afm,*.eps,*.epsf,*.epsi,*.ai setf postscr | |
1447 | |
1448 " PostScript Printer Description | |
1449 au BufNewFile,BufRead *.ppd setf ppd | |
1450 | |
1451 " Povray | |
1452 au BufNewFile,BufRead *.pov setf pov | |
1453 | |
1454 " Povray configuration | |
1455 au BufNewFile,BufRead .povrayrc setf povini | |
1456 | |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1457 " Povray, Pascal, PHP or assembly |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1458 au BufNewFile,BufRead *.inc call dist#ft#FTinc() |
7 | 1459 |
24299
201239ff51d7
patch 8.2.2690: PowerShell files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24278
diff
changeset
|
1460 " PowerShell |
201239ff51d7
patch 8.2.2690: PowerShell files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24278
diff
changeset
|
1461 au BufNewFile,BufRead *.ps1,*.psd1,*.psm1,*.pssc setf ps1 |
201239ff51d7
patch 8.2.2690: PowerShell files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24278
diff
changeset
|
1462 au BufNewFile,BufRead *.ps1xml setf ps1xml |
201239ff51d7
patch 8.2.2690: PowerShell files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24278
diff
changeset
|
1463 au BufNewFile,BufRead *.cdxml,*.psc1 setf xml |
201239ff51d7
patch 8.2.2690: PowerShell files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24278
diff
changeset
|
1464 |
7 | 1465 " Printcap and Termcap |
1466 au BufNewFile,BufRead *printcap | |
1467 \ let b:ptcap_type = "print" | setf ptcap | |
1468 au BufNewFile,BufRead *termcap | |
1469 \ let b:ptcap_type = "term" | setf ptcap | |
1470 | |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1471 " Prisma |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1472 au BufRead,BufNewFile *.prisma setf prisma |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1473 |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1474 " PCCTS / ANTLR |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1475 "au BufNewFile,BufRead *.g setf antlr |
7 | 1476 au BufNewFile,BufRead *.g setf pccts |
1477 | |
1478 " PPWizard | |
1479 au BufNewFile,BufRead *.it,*.ih setf ppwiz | |
1480 | |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1481 " Pug |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1482 au BufRead,BufNewFile *.pug setf pug |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1483 |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1484 " Puppet |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1485 au BufNewFile,BufRead Puppetfile setf ruby |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1486 |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1487 " Embedded Puppet |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1488 au BufNewFile,BufRead *.epp setf epuppet |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1489 |
2152 | 1490 " Obj 3D file format |
1491 " TODO: is there a way to avoid MS-Windows Object files? | |
2725 | 1492 au BufNewFile,BufRead *.obj setf obj |
2152 | 1493 |
7 | 1494 " Oracle Pro*C/C++ |
1287 | 1495 au BufNewFile,BufRead *.pc setf proc |
7 | 1496 |
1125 | 1497 " Privoxy actions file |
1498 au BufNewFile,BufRead *.action setf privoxy | |
1499 | |
7 | 1500 " Procmail |
1501 au BufNewFile,BufRead .procmail,.procmailrc setf procmail | |
1502 | |
1503 " Progress or CWEB | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1504 au BufNewFile,BufRead *.w call dist#ft#FTprogress_cweb() |
7 | 1505 |
1506 " Progress or assembly | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1507 au BufNewFile,BufRead *.i call dist#ft#FTprogress_asm() |
7 | 1508 |
1509 " Progress or Pascal | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1510 au BufNewFile,BufRead *.p call dist#ft#FTprogress_pascal() |
7 | 1511 |
1512 " Software Distributor Product Specification File (POSIX 1387.2-1995) | |
1513 au BufNewFile,BufRead *.psf setf psf | |
1514 au BufNewFile,BufRead INDEX,INFO | |
1515 \ if getline(1) =~ '^\s*\(distribution\|installed_software\|root\|bundle\|product\)\s*$' | | |
1516 \ setf psf | | |
1517 \ endif | |
1518 | |
1519 " Prolog | |
1520 au BufNewFile,BufRead *.pdb setf prolog | |
1521 | |
1648 | 1522 " Promela |
1523 au BufNewFile,BufRead *.pml setf promela | |
1524 | |
24466
f5a6a6e98ec4
patch 8.2.2773: PSL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24458
diff
changeset
|
1525 " Property Specification Language (PSL) |
f5a6a6e98ec4
patch 8.2.2773: PSL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24458
diff
changeset
|
1526 au BufNewFile,BufRead *.psl setf psl |
f5a6a6e98ec4
patch 8.2.2773: PSL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24458
diff
changeset
|
1527 |
4869 | 1528 " Google protocol buffers |
1529 au BufNewFile,BufRead *.proto setf proto | |
22918
f83e31419f6e
patch 8.2.2006: .pbtxt files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
22834
diff
changeset
|
1530 au BufNewFile,BufRead *.pbtxt setf pbtxt |
4869 | 1531 |
24099
209caadb403f
patch 8.2.2591: Poke files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23962
diff
changeset
|
1532 " Poke |
24466
f5a6a6e98ec4
patch 8.2.2773: PSL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24458
diff
changeset
|
1533 au BufNewFile,BufRead *.pk setf poke |
24099
209caadb403f
patch 8.2.2591: Poke files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23962
diff
changeset
|
1534 |
389 | 1535 " Protocols |
2751 | 1536 au BufNewFile,BufRead */etc/protocols setf protocols |
389 | 1537 |
25676
0385bd4411b7
patch 8.2.3374: Pyret files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25664
diff
changeset
|
1538 " Pyret |
0385bd4411b7
patch 8.2.3374: Pyret files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25664
diff
changeset
|
1539 au BufNewFile,BufRead *.arr setf pyret |
0385bd4411b7
patch 8.2.3374: Pyret files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25664
diff
changeset
|
1540 |
7 | 1541 " Pyrex |
1542 au BufNewFile,BufRead *.pyx,*.pxd setf pyrex | |
1543 | |
14946
8ca1dc213836
patch 8.1.0484: some file types are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
14519
diff
changeset
|
1544 " Python, Python Shell Startup and Python Stub Files |
1676 | 1545 " Quixote (Python-based web framework) |
20863
69cd83562725
patch 8.2.0983: SConstruct file type not recognized
Bram Moolenaar <Bram@vim.org>
parents:
20857
diff
changeset
|
1546 au BufNewFile,BufRead *.py,*.pyw,.pythonstartup,.pythonrc setf python |
69cd83562725
patch 8.2.0983: SConstruct file type not recognized
Bram Moolenaar <Bram@vim.org>
parents:
20857
diff
changeset
|
1547 au BufNewFile,BufRead *.ptl,*.pyi,SConstruct setf python |
1676 | 1548 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1549 " QL |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1550 au BufRead,BufNewFile *.ql,*.qll setf ql |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1551 |
29684
d6c90b936159
patch 9.0.0182: quarto files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29503
diff
changeset
|
1552 " Quarto |
d6c90b936159
patch 9.0.0182: quarto files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29503
diff
changeset
|
1553 au BufRead,BufNewFile *.qmd setf quarto |
d6c90b936159
patch 9.0.0182: quarto files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29503
diff
changeset
|
1554 |
7 | 1555 " Radiance |
1556 au BufNewFile,BufRead *.rad,*.mat setf radiance | |
1557 | |
25773 | 1558 " Raku (formerly Perl6) |
24496
706cfd8bcba6
patch 8.2.2788: Raku is now the only name what once was called perl6
Bram Moolenaar <Bram@vim.org>
parents:
24468
diff
changeset
|
1559 au BufNewFile,BufRead *.pm6,*.p6,*.t6,*.pod6,*.raku,*.rakumod,*.rakudoc,*.rakutest setf raku |
706cfd8bcba6
patch 8.2.2788: Raku is now the only name what once was called perl6
Bram Moolenaar <Bram@vim.org>
parents:
24468
diff
changeset
|
1560 |
7 | 1561 " Ratpoison config/command files |
1562 au BufNewFile,BufRead .ratpoisonrc,ratpoisonrc setf ratpoison | |
1563 | |
1564 " RCS file | |
1565 au BufNewFile,BufRead *\,v setf rcs | |
1566 | |
1567 " Readline | |
237 | 1568 au BufNewFile,BufRead .inputrc,inputrc setf readline |
7 | 1569 |
1570 " Registry for MS-Windows | |
1571 au BufNewFile,BufRead *.reg | |
1572 \ if getline(1) =~? '^REGEDIT[0-9]*\s*$\|^Windows Registry Editor Version \d*\.\d*\s*$' | setf registry | endif | |
1573 | |
1574 " Renderman Interface Bytestream | |
1575 au BufNewFile,BufRead *.rib setf rib | |
1576 | |
18926
50355c55519f
patch 8.2.0024: filetype Rego not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18707
diff
changeset
|
1577 " Rego Policy Language |
50355c55519f
patch 8.2.0024: filetype Rego not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18707
diff
changeset
|
1578 au BufNewFile,BufRead *.rego setf rego |
50355c55519f
patch 8.2.0024: filetype Rego not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18707
diff
changeset
|
1579 |
7 | 1580 " Rexx |
3893 | 1581 au BufNewFile,BufRead *.rex,*.orx,*.rxo,*.rxj,*.jrexx,*.rexxj,*.rexx,*.testGroup,*.testUnit setf rexx |
7 | 1582 |
699 | 1583 " R Help file |
836 | 1584 if has("fname_case") |
1585 au BufNewFile,BufRead *.rd,*.Rd setf rhelp | |
1586 else | |
1587 au BufNewFile,BufRead *.rd setf rhelp | |
1588 endif | |
1589 | |
1590 " R noweb file | |
1591 if has("fname_case") | |
1592 au BufNewFile,BufRead *.Rnw,*.rnw,*.Snw,*.snw setf rnoweb | |
1593 else | |
1594 au BufNewFile,BufRead *.rnw,*.snw setf rnoweb | |
1595 endif | |
699 | 1596 |
6051 | 1597 " R Markdown file |
1598 if has("fname_case") | |
1599 au BufNewFile,BufRead *.Rmd,*.rmd,*.Smd,*.smd setf rmd | |
1600 else | |
1601 au BufNewFile,BufRead *.rmd,*.smd setf rmd | |
1602 endif | |
1603 | |
24168
4cd112203e16
patch 8.2.2625: rss files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24166
diff
changeset
|
1604 " RSS looks like XML |
4cd112203e16
patch 8.2.2625: rss files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24166
diff
changeset
|
1605 au BufNewFile,BufRead *.rss setf xml |
4cd112203e16
patch 8.2.2625: rss files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24166
diff
changeset
|
1606 |
6051 | 1607 " R reStructuredText file |
1608 if has("fname_case") | |
1609 au BufNewFile,BufRead *.Rrst,*.rrst,*.Srst,*.srst setf rrst | |
1610 else | |
1611 au BufNewFile,BufRead *.rrst,*.srst setf rrst | |
1612 endif | |
1613 | |
7 | 1614 " Rexx, Rebol or R |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1615 au BufNewFile,BufRead *.r,*.R call dist#ft#FTr() |
7 | 1616 |
1617 " Remind | |
2788 | 1618 au BufNewFile,BufRead .reminders,*.remind,*.rem setf remind |
7 | 1619 |
27653
52bbe3590f50
patch 8.2.4352: ReScript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27493
diff
changeset
|
1620 " ReScript |
52bbe3590f50
patch 8.2.4352: ReScript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27493
diff
changeset
|
1621 au BufNewFile,BufRead *.res,*.resi setf rescript |
52bbe3590f50
patch 8.2.4352: ReScript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27493
diff
changeset
|
1622 |
7 | 1623 " Resolv.conf |
1624 au BufNewFile,BufRead resolv.conf setf resolv | |
1625 | |
1626 " Relax NG Compact | |
1627 au BufNewFile,BufRead *.rnc setf rnc | |
1628 | |
4264 | 1629 " Relax NG XML |
1630 au BufNewFile,BufRead *.rng setf rng | |
1631 | |
7 | 1632 " RPL/2 |
1633 au BufNewFile,BufRead *.rpl setf rpl | |
1634 | |
28662
dfe200e3d315
patch 8.2.4855: robot files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28650
diff
changeset
|
1635 " Robot Framework |
dfe200e3d315
patch 8.2.4855: robot files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28650
diff
changeset
|
1636 au BufNewFile,BufRead *.robot,*.resource setf robot |
dfe200e3d315
patch 8.2.4855: robot files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28650
diff
changeset
|
1637 |
7 | 1638 " Robots.txt |
1639 au BufNewFile,BufRead robots.txt setf robots | |
1640 | |
1641 " Rpcgen | |
1642 au BufNewFile,BufRead *.x setf rpcgen | |
1643 | |
26131
87d8f52d3821
patch 8.2.3598: RouterOS filetype is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25971
diff
changeset
|
1644 " MikroTik RouterOS script |
87d8f52d3821
patch 8.2.3598: RouterOS filetype is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25971
diff
changeset
|
1645 au BufRead,BufNewFile *.rsc setf routeros |
87d8f52d3821
patch 8.2.3598: RouterOS filetype is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25971
diff
changeset
|
1646 |
7 | 1647 " reStructuredText Documentation Format |
1648 au BufNewFile,BufRead *.rst setf rst | |
1649 | |
1650 " RTF | |
1651 au BufNewFile,BufRead *.rtf setf rtf | |
1652 | |
1676 | 1653 " Interactive Ruby shell |
1654 au BufNewFile,BufRead .irbrc,irbrc setf ruby | |
1655 | |
7 | 1656 " Ruby |
2681 | 1657 au BufNewFile,BufRead *.rb,*.rbw setf ruby |
1658 | |
1659 " RubyGems | |
1660 au BufNewFile,BufRead *.gemspec setf ruby | |
1661 | |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1662 " RBS (Ruby Signature) |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1663 au BufNewFile,BufRead *.rbs setf rbs |
10319
169a62d5bcb9
commit https://github.com/vim/vim/commit/b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59
Christian Brabandt <cb@256bit.org>
parents:
10301
diff
changeset
|
1664 |
2681 | 1665 " Rackup |
1666 au BufNewFile,BufRead *.ru setf ruby | |
1667 | |
1668 " Bundler | |
1669 au BufNewFile,BufRead Gemfile setf ruby | |
7 | 1670 |
1219 | 1671 " Ruby on Rails |
1672 au BufNewFile,BufRead *.builder,*.rxml,*.rjs setf ruby | |
1673 | |
1674 " Rantfile and Rakefile is like Ruby | |
1675 au BufNewFile,BufRead [rR]antfile,*.rant,[rR]akefile,*.rake setf ruby | |
557 | 1676 |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1677 " Rust |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1678 au BufNewFile,BufRead *.rs setf rust |
25971
217cd7833e8b
patch 8.2.3519: TOML files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25935
diff
changeset
|
1679 au BufNewFile,BufRead Cargo.lock,*/.cargo/config,*/.cargo/credentials setf toml |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1680 |
2034 | 1681 " S-lang (or shader language, or SmallLisp) |
7 | 1682 au BufNewFile,BufRead *.sl setf slang |
1683 | |
1684 " Samba config | |
1685 au BufNewFile,BufRead smb.conf setf samba | |
1686 | |
1687 " SAS script | |
1688 au BufNewFile,BufRead *.sas setf sas | |
1689 | |
1668 | 1690 " Sass |
1691 au BufNewFile,BufRead *.sass setf sass | |
1692 | |
7 | 1693 " Sather |
1694 au BufNewFile,BufRead *.sa setf sather | |
1695 | |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
9908
diff
changeset
|
1696 " Scala |
28443
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1697 au BufNewFile,BufRead *.scala setf scala |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
9908
diff
changeset
|
1698 |
11442 | 1699 " SBT - Scala Build Tool |
1700 au BufNewFile,BufRead *.sbt setf sbt | |
1701 | |
28443
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1702 " SuperCollider |
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1703 au BufNewFile,BufRead *.sc call dist#ft#FTsc() |
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1704 |
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1705 au BufNewFile,BufRead *.quark setf supercollider |
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1706 |
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1707 " scdoc |
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1708 au BufNewFile,BufRead *.scd call dist#ft#FTscd() |
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1709 |
7 | 1710 " Scilab |
809 | 1711 au BufNewFile,BufRead *.sci,*.sce setf scilab |
7 | 1712 |
25497
2246bcbeff89
patch 8.2.3285: scdoc filetype is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25493
diff
changeset
|
1713 |
2415 | 1714 " SCSS |
2725 | 1715 au BufNewFile,BufRead *.scss setf scss |
2415 | 1716 |
1125 | 1717 " SD: Streaming Descriptors |
1718 au BufNewFile,BufRead *.sd setf sd | |
1719 | |
7 | 1720 " SDL |
1721 au BufNewFile,BufRead *.sdl,*.pr setf sdl | |
1722 | |
1723 " sed | |
1724 au BufNewFile,BufRead *.sed setf sed | |
1725 | |
23962
436e702af70c
patch 8.2.2523: Svelte filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23960
diff
changeset
|
1726 " svelte |
436e702af70c
patch 8.2.2523: Svelte filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23960
diff
changeset
|
1727 au BufNewFile,BufRead *.svelte setf svelte |
436e702af70c
patch 8.2.2523: Svelte filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23960
diff
changeset
|
1728 |
14946
8ca1dc213836
patch 8.1.0484: some file types are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
14519
diff
changeset
|
1729 " Sieve (RFC 3028, 5228) |
8ca1dc213836
patch 8.1.0484: some file types are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
14519
diff
changeset
|
1730 au BufNewFile,BufRead *.siv,*.sieve setf sieve |
36 | 1731 |
7 | 1732 " Sendmail |
1733 au BufNewFile,BufRead sendmail.cf setf sm | |
1734 | |
28538
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
1735 " Sendmail .mc files are actually m4. Could also be MS Message text file or |
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
1736 " Maxima. |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1737 au BufNewFile,BufRead *.mc call dist#ft#McSetf() |
7 | 1738 |
389 | 1739 " Services |
2751 | 1740 au BufNewFile,BufRead */etc/services setf services |
389 | 1741 |
1742 " Service Location config | |
2751 | 1743 au BufNewFile,BufRead */etc/slp.conf setf slpconf |
389 | 1744 |
1745 " Service Location registration | |
2751 | 1746 au BufNewFile,BufRead */etc/slp.reg setf slpreg |
389 | 1747 |
1748 " Service Location SPI | |
2751 | 1749 au BufNewFile,BufRead */etc/slp.spi setf slpspi |
389 | 1750 |
1751 " Setserial config | |
2751 | 1752 au BufNewFile,BufRead */etc/serial.conf setf setserial |
389 | 1753 |
7 | 1754 " SGML |
1755 au BufNewFile,BufRead *.sgm,*.sgml | |
1756 \ if getline(1).getline(2).getline(3).getline(4).getline(5) =~? 'linuxdoc' | | |
1757 \ setf sgmllnx | | |
1758 \ elseif getline(1) =~ '<!DOCTYPE.*DocBook' || getline(2) =~ '<!DOCTYPE.*DocBook' | | |
3967 | 1759 \ let b:docbk_type = "sgml" | |
1760 \ let b:docbk_ver = 4 | | |
7 | 1761 \ setf docbk | |
1762 \ else | | |
1763 \ setf sgml | | |
1764 \ endif | |
1765 | |
1766 " SGMLDECL | |
1767 au BufNewFile,BufRead *.decl,*.dcl,*.dec | |
1768 \ if getline(1).getline(2).getline(3) =~? '^<!SGML' | | |
1769 \ setf sgmldecl | | |
1770 \ endif | |
1771 | |
1772 " SGML catalog file | |
216 | 1773 au BufNewFile,BufRead catalog setf catalog |
7 | 1774 |
1775 " Shell scripts (sh, ksh, bash, bash2, csh); Allow .profile_foo etc. | |
22723 | 1776 " Gentoo ebuilds, Arch Linux PKGBUILDs and Alpine Linux APKBUILDs are actually |
1777 " bash scripts. | |
15527
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
1778 " NOTE: Patterns ending in a star are further down, these have lower priority. |
24347
1df930301857
patch 8.2.2714: filetype pattern ending in star is too far up
Bram Moolenaar <Bram@vim.org>
parents:
24299
diff
changeset
|
1779 au BufNewFile,BufRead .bashrc,bashrc,bash.bashrc,.bash[_-]profile,.bash[_-]logout,.bash[_-]aliases,bash-fc[-.],*.ebuild,*.bash,*.eclass,PKGBUILD,APKBUILD call dist#ft#SetFileTypeSH("bash") |
15527
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
1780 au BufNewFile,BufRead .kshrc,*.ksh call dist#ft#SetFileTypeSH("ksh") |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
1781 au BufNewFile,BufRead */etc/profile,.profile,*.sh,*.env call dist#ft#SetFileTypeSH(getline(1)) |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
1782 |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1783 " Shell script (Arch Linux) or PHP file (Drupal) |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1784 au BufNewFile,BufRead *.install |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1785 \ if getline(1) =~ '<?php' | |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1786 \ setf php | |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1787 \ else | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1788 \ call dist#ft#SetFileTypeSH("bash") | |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1789 \ endif |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1790 |
15535
45a159f62dd0
patch 8.1.0775: matching too many files as zsh
Bram Moolenaar <Bram@vim.org>
parents:
15527
diff
changeset
|
1791 " tcsh scripts (patterns ending in a star further below) |
15527
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
1792 au BufNewFile,BufRead .tcshrc,*.tcsh,tcsh.tcshrc,tcsh.login call dist#ft#SetFileTypeShell("tcsh") |
7 | 1793 |
1794 " csh scripts, but might also be tcsh scripts (on some systems csh is tcsh) | |
15535
45a159f62dd0
patch 8.1.0775: matching too many files as zsh
Bram Moolenaar <Bram@vim.org>
parents:
15527
diff
changeset
|
1795 " (patterns ending in a start further below) |
15527
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
1796 au BufNewFile,BufRead .login,.cshrc,csh.cshrc,csh.login,csh.logout,*.csh,.alias call dist#ft#CSH() |
7 | 1797 |
26478
dd09291cf1ac
patch 8.2.3769: zig files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26438
diff
changeset
|
1798 " Zig |
dd09291cf1ac
patch 8.2.3769: zig files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26438
diff
changeset
|
1799 au BufNewFile,BufRead *.zig setf zig |
dd09291cf1ac
patch 8.2.3769: zig files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26438
diff
changeset
|
1800 |
15535
45a159f62dd0
patch 8.1.0775: matching too many files as zsh
Bram Moolenaar <Bram@vim.org>
parents:
15527
diff
changeset
|
1801 " Z-Shell script (patterns ending in a star further below) |
2751 | 1802 au BufNewFile,BufRead .zprofile,*/etc/zprofile,.zfbfmarks setf zsh |
15535
45a159f62dd0
patch 8.1.0775: matching too many files as zsh
Bram Moolenaar <Bram@vim.org>
parents:
15527
diff
changeset
|
1803 au BufNewFile,BufRead .zshrc,.zshenv,.zlogin,.zlogout,.zcompdump setf zsh |
2725 | 1804 au BufNewFile,BufRead *.zsh setf zsh |
7 | 1805 |
1806 " Scheme | |
28265
67ef250562e5
patch 8.2.4658: org-mode files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28093
diff
changeset
|
1807 au BufNewFile,BufRead *.scm,*.ss,*.sld,*.rkt,*.rktd,*.rktl setf scheme |
7 | 1808 |
1809 " Screen RC | |
1810 au BufNewFile,BufRead .screenrc,screenrc setf screen | |
1811 | |
23430
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
1812 " Sexplib |
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
1813 au BufNewFile,BufRead *.sexp setf sexplib |
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
1814 |
7 | 1815 " Simula |
1816 au BufNewFile,BufRead *.sim setf simula | |
1817 | |
1818 " SINDA | |
1819 au BufNewFile,BufRead *.sin,*.s85 setf sinda | |
1820 | |
819 | 1821 " SiSU |
857 | 1822 au BufNewFile,BufRead *.sst,*.ssm,*.ssi,*.-sst,*._sst setf sisu |
819 | 1823 au BufNewFile,BufRead *.sst.meta,*.-sst.meta,*._sst.meta setf sisu |
1824 | |
7 | 1825 " SKILL |
336 | 1826 au BufNewFile,BufRead *.il,*.ils,*.cdf setf skill |
7 | 1827 |
1828 " SLRN | |
1829 au BufNewFile,BufRead .slrnrc setf slrnrc | |
1830 au BufNewFile,BufRead *.score setf slrnsc | |
1831 | |
29326
1f1d99bba06c
patch 9.0.0006: not all Visual Basic files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
29324
diff
changeset
|
1832 " Smalltalk |
271 | 1833 au BufNewFile,BufRead *.st setf st |
29326
1f1d99bba06c
patch 9.0.0006: not all Visual Basic files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
29324
diff
changeset
|
1834 |
1f1d99bba06c
patch 9.0.0006: not all Visual Basic files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
29324
diff
changeset
|
1835 " Smalltalk (and Rexx, TeX, and Visual Basic) |
30023
87063bfe81cd
patch 9.0.0349: filetype of *.sil files not well detected
Bram Moolenaar <Bram@vim.org>
parents:
29962
diff
changeset
|
1836 au BufNewFile,BufRead *.cls call dist#ft#FTcls() |
7 | 1837 |
1838 " Smarty templates | |
1839 au BufNewFile,BufRead *.tpl setf smarty | |
1840 | |
1841 " SMIL or XML | |
1842 au BufNewFile,BufRead *.smil | |
1843 \ if getline(1) =~ '<?\s*xml.*?>' | | |
1844 \ setf xml | | |
1845 \ else | | |
1846 \ setf smil | | |
1847 \ endif | |
1848 | |
1849 " SMIL or SNMP MIB file | |
1850 au BufNewFile,BufRead *.smi | |
1851 \ if getline(1) =~ '\<smil\>' | | |
1852 \ setf smil | | |
1853 \ else | | |
1854 \ setf mib | | |
1855 \ endif | |
1856 | |
1857 " SMITH | |
1858 au BufNewFile,BufRead *.smt,*.smith setf smith | |
1859 | |
857 | 1860 " Snobol4 and spitbol |
1861 au BufNewFile,BufRead *.sno,*.spt setf snobol4 | |
7 | 1862 |
1863 " SNMP MIB files | |
1864 au BufNewFile,BufRead *.mib,*.my setf mib | |
1865 | |
1866 " Snort Configuration | |
1219 | 1867 au BufNewFile,BufRead *.hog,snort.conf,vision.conf setf hog |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1868 au BufNewFile,BufRead *.rules call dist#ft#FTRules() |
1219 | 1869 |
27776
addcf70c8346
patch 8.2.4414: solidity files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27770
diff
changeset
|
1870 " Solidity |
addcf70c8346
patch 8.2.4414: solidity files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27770
diff
changeset
|
1871 au BufRead,BufNewFile *.sol setf solidity |
addcf70c8346
patch 8.2.4414: solidity files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27770
diff
changeset
|
1872 |
23622
53cbcc2d2234
patch 8.2.2353: spartql files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
23584
diff
changeset
|
1873 " SPARQL queries |
53cbcc2d2234
patch 8.2.2353: spartql files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
23584
diff
changeset
|
1874 au BufNewFile,BufRead *.rq,*.sparql setf sparql |
53cbcc2d2234
patch 8.2.2353: spartql files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
23584
diff
changeset
|
1875 |
7 | 1876 " Spec (Linux RPM) |
1877 au BufNewFile,BufRead *.spec setf spec | |
1878 | |
1879 " Speedup (AspenTech plant simulator) | |
1880 au BufNewFile,BufRead *.speedup,*.spdata,*.spd setf spup | |
1881 | |
1882 " Slice | |
1883 au BufNewFile,BufRead *.ice setf slice | |
1884 | |
26570
b1f4052d6c51
patch 8.2.3814: .csx files and .sln files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26552
diff
changeset
|
1885 " Microsoft Visual Studio Solution |
b1f4052d6c51
patch 8.2.3814: .csx files and .sln files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26552
diff
changeset
|
1886 au BufNewFile,BufRead *.sln setf solution |
26702
1ef0c9a92168
patch 8.2.3880: Solution filter files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26688
diff
changeset
|
1887 au BufNewFile,BufRead *.slnf setf json |
26570
b1f4052d6c51
patch 8.2.3814: .csx files and .sln files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26552
diff
changeset
|
1888 |
7 | 1889 " Spice |
1890 au BufNewFile,BufRead *.sp,*.spice setf spice | |
1891 | |
1892 " Spyce | |
1893 au BufNewFile,BufRead *.spy,*.spi setf spyce | |
1894 | |
1895 " Squid | |
1896 au BufNewFile,BufRead squid.conf setf squid | |
1897 | |
22 | 1898 " SQL for Oracle Designer |
1899 au BufNewFile,BufRead *.tyb,*.typ,*.tyc,*.pkb,*.pks setf sql | |
1900 | |
1901 " SQL | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1902 au BufNewFile,BufRead *.sql call dist#ft#SQL() |
7 | 1903 |
1904 " SQLJ | |
1905 au BufNewFile,BufRead *.sqlj setf sqlj | |
1906 | |
1907 " SQR | |
1908 au BufNewFile,BufRead *.sqr,*.sqi setf sqr | |
1909 | |
26396
f4e6431ca146
patch 8.2.3729: no support for squirrels
Bram Moolenaar <Bram@vim.org>
parents:
26390
diff
changeset
|
1910 " Squirrel |
f4e6431ca146
patch 8.2.3729: no support for squirrels
Bram Moolenaar <Bram@vim.org>
parents:
26390
diff
changeset
|
1911 au BufNewFile,BufRead *.nut setf squirrel |
f4e6431ca146
patch 8.2.3729: no support for squirrels
Bram Moolenaar <Bram@vim.org>
parents:
26390
diff
changeset
|
1912 |
7 | 1913 " OpenSSH configuration |
26933
959f943e6dd1
patch 8.2.3995: not all sshconfig files are detected as such
Bram Moolenaar <Bram@vim.org>
parents:
26871
diff
changeset
|
1914 au BufNewFile,BufRead ssh_config,*/.ssh/config,*/.ssh/*.conf setf sshconfig |
959f943e6dd1
patch 8.2.3995: not all sshconfig files are detected as such
Bram Moolenaar <Bram@vim.org>
parents:
26871
diff
changeset
|
1915 au BufNewFile,BufRead */etc/ssh/ssh_config.d/*.conf setf sshconfig |
7 | 1916 |
1917 " OpenSSH server configuration | |
20749
dae1811e84dd
patch 8.2.0927: some sshconfig and ssdhconfig files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
20639
diff
changeset
|
1918 au BufNewFile,BufRead sshd_config setf sshdconfig |
dae1811e84dd
patch 8.2.0927: some sshconfig and ssdhconfig files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
20639
diff
changeset
|
1919 au BufNewFile,BufRead */etc/ssh/sshd_config.d/*.conf setf sshdconfig |
7 | 1920 |
831 | 1921 " Stata |
11400
0f8713fe20dc
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
11358
diff
changeset
|
1922 au BufNewFile,BufRead *.ado,*.do,*.imata,*.mata setf stata |
0f8713fe20dc
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
11358
diff
changeset
|
1923 " Also *.class, but not when it's a Java bytecode file |
0f8713fe20dc
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
11358
diff
changeset
|
1924 au BufNewFile,BufRead *.class |
0f8713fe20dc
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
11358
diff
changeset
|
1925 \ if getline(1) !~ "^\xca\xfe\xba\xbe" | setf stata | endif |
831 | 1926 |
1927 " SMCL | |
1928 au BufNewFile,BufRead *.hlp,*.ihlp,*.smcl setf smcl | |
1929 | |
7 | 1930 " Stored Procedures |
1931 au BufNewFile,BufRead *.stp setf stp | |
1932 | |
1933 " Standard ML | |
1934 au BufNewFile,BufRead *.sml setf sml | |
1935 | |
1648 | 1936 " Sratus VOS command macro |
1937 au BufNewFile,BufRead *.cm setf voscm | |
1938 | |
19164
bfe90421e223
patch 8.2.0141: no swift filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
18926
diff
changeset
|
1939 " Swift |
bfe90421e223
patch 8.2.0141: no swift filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
18926
diff
changeset
|
1940 au BufNewFile,BufRead *.swift setf swift |
20965 | 1941 au BufNewFile,BufRead *.swift.gyb setf swiftgyb |
19164
bfe90421e223
patch 8.2.0141: no swift filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
18926
diff
changeset
|
1942 |
30023
87063bfe81cd
patch 9.0.0349: filetype of *.sil files not well detected
Bram Moolenaar <Bram@vim.org>
parents:
29962
diff
changeset
|
1943 " Swift Intermediate Language or SILE |
87063bfe81cd
patch 9.0.0349: filetype of *.sil files not well detected
Bram Moolenaar <Bram@vim.org>
parents:
29962
diff
changeset
|
1944 au BufNewFile,BufRead *.sil call dist#ft#FTsil() |
19164
bfe90421e223
patch 8.2.0141: no swift filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
18926
diff
changeset
|
1945 |
375 | 1946 " Sysctl |
2751 | 1947 au BufNewFile,BufRead */etc/sysctl.conf,*/etc/sysctl.d/*.conf setf sysctl |
375 | 1948 |
7176
30042ddff503
commit https://github.com/vim/vim/commit/60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d
Christian Brabandt <cb@256bit.org>
parents:
7147
diff
changeset
|
1949 " Systemd unit files |
20986
9dccf57e918a
patch 8.2.1044: not all systemd file types are recognized
Bram Moolenaar <Bram@vim.org>
parents:
20965
diff
changeset
|
1950 au BufNewFile,BufRead */systemd/*.{automount,dnssd,link,mount,netdev,network,nspawn,path,service,slice,socket,swap,target,timer} setf systemd |
16086 | 1951 " Systemd overrides |
20986
9dccf57e918a
patch 8.2.1044: not all systemd file types are recognized
Bram Moolenaar <Bram@vim.org>
parents:
20965
diff
changeset
|
1952 au BufNewFile,BufRead */etc/systemd/*.conf.d/*.conf setf systemd |
19987
9cbe7ba51ce5
patch 8.2.0549: user systemd files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19721
diff
changeset
|
1953 au BufNewFile,BufRead */etc/systemd/system/*.d/*.conf setf systemd |
9cbe7ba51ce5
patch 8.2.0549: user systemd files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19721
diff
changeset
|
1954 au BufNewFile,BufRead */.config/systemd/user/*.d/*.conf setf systemd |
16086 | 1955 " Systemd temp files |
19987
9cbe7ba51ce5
patch 8.2.0549: user systemd files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19721
diff
changeset
|
1956 au BufNewFile,BufRead */etc/systemd/system/*.d/.#* setf systemd |
20215
ca9c2be2334a
patch 8.2.0663: not all systemd temp files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
20115
diff
changeset
|
1957 au BufNewFile,BufRead */etc/systemd/system/.#* setf systemd |
19987
9cbe7ba51ce5
patch 8.2.0549: user systemd files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19721
diff
changeset
|
1958 au BufNewFile,BufRead */.config/systemd/user/*.d/.#* setf systemd |
20215
ca9c2be2334a
patch 8.2.0663: not all systemd temp files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
20115
diff
changeset
|
1959 au BufNewFile,BufRead */.config/systemd/user/.#* setf systemd |
7176
30042ddff503
commit https://github.com/vim/vim/commit/60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d
Christian Brabandt <cb@256bit.org>
parents:
7147
diff
changeset
|
1960 |
2034 | 1961 " Synopsys Design Constraints |
1962 au BufNewFile,BufRead *.sdc setf sdc | |
1963 | |
39 | 1964 " Sudoers |
2751 | 1965 au BufNewFile,BufRead */etc/sudoers,sudoers.tmp setf sudoers |
39 | 1966 |
2152 | 1967 " SVG (Scalable Vector Graphics) |
1968 au BufNewFile,BufRead *.svg setf svg | |
1969 | |
28417
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
1970 " Surface |
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
1971 au BufRead,BufNewFile *.sface setf surface |
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
1972 |
557 | 1973 " Tads (or Nroff or Perl test file) |
7 | 1974 au BufNewFile,BufRead *.t |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1975 \ if !dist#ft#FTnroff() && !dist#ft#FTperl() | setf tads | endif |
7 | 1976 |
1977 " Tags | |
1978 au BufNewFile,BufRead tags setf tags | |
1979 | |
1980 " TAK | |
1981 au BufNewFile,BufRead *.tak setf tak | |
1982 | |
2034 | 1983 " Task |
1984 au BufRead,BufNewFile {pending,completed,undo}.data setf taskdata | |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
1985 au BufRead,BufNewFile *.task setf taskedit |
2034 | 1986 |
557 | 1987 " Tcl (JACL too) |
25878
f88641e6996c
patch 8.2.3473: some files with tcl syntax are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25870
diff
changeset
|
1988 au BufNewFile,BufRead *.tcl,*.tm,*.tk,*.itcl,*.itk,*.jacl,.tclshrc,.wishrc setf tcl |
7 | 1989 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1990 " Teal |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1991 au BufRead,BufNewFile *.tl setf teal |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1992 |
7 | 1993 " TealInfo |
1994 au BufNewFile,BufRead *.tli setf tli | |
1995 | |
1996 " Telix Salt | |
1997 au BufNewFile,BufRead *.slt setf tsalt | |
1998 | |
23685
eb30aed2059f
patch 8.2.2384: turtle filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23622
diff
changeset
|
1999 " Tera Term Language or Turtle |
eb30aed2059f
patch 8.2.2384: turtle filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23622
diff
changeset
|
2000 au BufRead,BufNewFile *.ttl |
eb30aed2059f
patch 8.2.2384: turtle filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23622
diff
changeset
|
2001 \ if getline(1) =~ '^@\?\(prefix\|base\)' | |
eb30aed2059f
patch 8.2.2384: turtle filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23622
diff
changeset
|
2002 \ setf turtle | |
eb30aed2059f
patch 8.2.2384: turtle filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23622
diff
changeset
|
2003 \ else | |
eb30aed2059f
patch 8.2.2384: turtle filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23622
diff
changeset
|
2004 \ setf teraterm | |
eb30aed2059f
patch 8.2.2384: turtle filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23622
diff
changeset
|
2005 \ endif |
6951
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6823
diff
changeset
|
2006 |
7 | 2007 " Terminfo |
2008 au BufNewFile,BufRead *.ti setf terminfo | |
2009 | |
29485
7355529ee87f
patch 9.0.0084: using "terraform" filetype for .tfvars file is bad
Bram Moolenaar <Bram@vim.org>
parents:
29463
diff
changeset
|
2010 " Terraform variables |
7355529ee87f
patch 9.0.0084: using "terraform" filetype for .tfvars file is bad
Bram Moolenaar <Bram@vim.org>
parents:
29463
diff
changeset
|
2011 au BufRead,BufNewFile *.tfvars setf terraform-vars |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
2012 |
7 | 2013 " TeX |
378 | 2014 au BufNewFile,BufRead *.latex,*.sty,*.dtx,*.ltx,*.bbl setf tex |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
2015 au BufNewFile,BufRead *.tex call dist#ft#FTtex() |
378 | 2016 |
1648 | 2017 " ConTeXt |
22834
fcbded1e3602
patch 8.2.1964: not all ConTeXt files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
22723
diff
changeset
|
2018 au BufNewFile,BufRead *.mkii,*.mkiv,*.mkvi,*.mkxl,*.mklx setf context |
7 | 2019 |
2020 " Texinfo | |
2021 au BufNewFile,BufRead *.texinfo,*.texi,*.txi setf texinfo | |
2022 | |
2023 " TeX configuration | |
2024 au BufNewFile,BufRead texmf.cnf setf texmf | |
2025 | |
2026 " Tidy config | |
22353
889143dbe2cd
patch 8.2.1725: not all Pascal files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
22033
diff
changeset
|
2027 au BufNewFile,BufRead .tidyrc,tidyrc,tidy.conf setf tidy |
7 | 2028 |
2029 " TF mud client | |
27420
978890380129
patch 8.2.4238: *.tf file could be fileytpe "tf" or "terraform"
Bram Moolenaar <Bram@vim.org>
parents:
27336
diff
changeset
|
2030 au BufNewFile,BufRead .tfrc,tfrc setf tf |
978890380129
patch 8.2.4238: *.tf file could be fileytpe "tf" or "terraform"
Bram Moolenaar <Bram@vim.org>
parents:
27336
diff
changeset
|
2031 |
978890380129
patch 8.2.4238: *.tf file could be fileytpe "tf" or "terraform"
Bram Moolenaar <Bram@vim.org>
parents:
27336
diff
changeset
|
2032 " TF mud client or terraform |
978890380129
patch 8.2.4238: *.tf file could be fileytpe "tf" or "terraform"
Bram Moolenaar <Bram@vim.org>
parents:
27336
diff
changeset
|
2033 au BufNewFile,BufRead *.tf call dist#ft#FTtf() |
7 | 2034 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
2035 " TLA+ |
27420
978890380129
patch 8.2.4238: *.tf file could be fileytpe "tf" or "terraform"
Bram Moolenaar <Bram@vim.org>
parents:
27336
diff
changeset
|
2036 au BufNewFile,BufRead *.tla setf tla |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
2037 |
11062 | 2038 " tmux configuration |
11160 | 2039 au BufNewFile,BufRead {.,}tmux*.conf setf tmux |
11062 | 2040 |
23120
640ec41661b1
patch 8.2.2106: TOML files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23078
diff
changeset
|
2041 " TOML |
640ec41661b1
patch 8.2.2106: TOML files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23078
diff
changeset
|
2042 au BufNewFile,BufRead *.toml setf toml |
640ec41661b1
patch 8.2.2106: TOML files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23078
diff
changeset
|
2043 |
33 | 2044 " TPP - Text Presentation Program |
27420
978890380129
patch 8.2.4238: *.tf file could be fileytpe "tf" or "terraform"
Bram Moolenaar <Bram@vim.org>
parents:
27336
diff
changeset
|
2045 au BufNewFile,BufRead *.tpp setf tpp |
33 | 2046 |
2725 | 2047 " Treetop |
2048 au BufRead,BufNewFile *.treetop setf treetop | |
2049 | |
555 | 2050 " Trustees |
2051 au BufNewFile,BufRead trustees.conf setf trustees | |
2052 | |
7 | 2053 " TSS - Geometry |
2054 au BufNewFile,BufReadPost *.tssgm setf tssgm | |
2055 | |
2056 " TSS - Optics | |
2057 au BufNewFile,BufReadPost *.tssop setf tssop | |
2058 | |
2059 " TSS - Command Line (temporary) | |
2060 au BufNewFile,BufReadPost *.tsscl setf tsscl | |
2061 | |
29415
87174e9f7529
patch 9.0.0049: csv and tsv files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29403
diff
changeset
|
2062 " TSV Files |
87174e9f7529
patch 9.0.0049: csv and tsv files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29403
diff
changeset
|
2063 au BufNewFile,BufRead *.tsv setf tsv |
87174e9f7529
patch 9.0.0049: csv and tsv files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29403
diff
changeset
|
2064 |
3456 | 2065 " TWIG files |
2066 au BufNewFile,BufReadPost *.twig setf twig | |
2067 | |
23078
d01b011f91b9
patch 8.2.2085: Qt translation file is recognized as typescript
Bram Moolenaar <Bram@vim.org>
parents:
23047
diff
changeset
|
2068 " Typescript or Qt translation file (which is XML) |
d01b011f91b9
patch 8.2.2085: Qt translation file is recognized as typescript
Bram Moolenaar <Bram@vim.org>
parents:
23047
diff
changeset
|
2069 au BufNewFile,BufReadPost *.ts |
d01b011f91b9
patch 8.2.2085: Qt translation file is recognized as typescript
Bram Moolenaar <Bram@vim.org>
parents:
23047
diff
changeset
|
2070 \ if getline(1) =~ '<?xml' | |
d01b011f91b9
patch 8.2.2085: Qt translation file is recognized as typescript
Bram Moolenaar <Bram@vim.org>
parents:
23047
diff
changeset
|
2071 \ setf xml | |
d01b011f91b9
patch 8.2.2085: Qt translation file is recognized as typescript
Bram Moolenaar <Bram@vim.org>
parents:
23047
diff
changeset
|
2072 \ else | |
d01b011f91b9
patch 8.2.2085: Qt translation file is recognized as typescript
Bram Moolenaar <Bram@vim.org>
parents:
23047
diff
changeset
|
2073 \ setf typescript | |
d01b011f91b9
patch 8.2.2085: Qt translation file is recognized as typescript
Bram Moolenaar <Bram@vim.org>
parents:
23047
diff
changeset
|
2074 \ endif |
16344
d24e5d848a09
patch 8.1.1177: .ts files are recognized as xml, typescript is more common
Bram Moolenaar <Bram@vim.org>
parents:
16208
diff
changeset
|
2075 |
17867
180fb9981255
patch 8.1.1930: cannot recognize .jsx and .tsx files
Bram Moolenaar <Bram@vim.org>
parents:
17758
diff
changeset
|
2076 " TypeScript with React |
180fb9981255
patch 8.1.1930: cannot recognize .jsx and .tsx files
Bram Moolenaar <Bram@vim.org>
parents:
17758
diff
changeset
|
2077 au BufNewFile,BufRead *.tsx setf typescriptreact |
180fb9981255
patch 8.1.1930: cannot recognize .jsx and .tsx files
Bram Moolenaar <Bram@vim.org>
parents:
17758
diff
changeset
|
2078 |
7 | 2079 " Motif UIT/UIL files |
2080 au BufNewFile,BufRead *.uit,*.uil setf uil | |
2081 | |
389 | 2082 " Udev conf |
2751 | 2083 au BufNewFile,BufRead */etc/udev/udev.conf setf udevconf |
389 | 2084 |
2085 " Udev permissions | |
2751 | 2086 au BufNewFile,BufRead */etc/udev/permissions.d/*.permissions setf udevperm |
389 | 2087 " |
2088 " Udev symlinks config | |
2751 | 2089 au BufNewFile,BufRead */etc/udev/cdsymlinks.conf setf sh |
389 | 2090 |
7 | 2091 " UnrealScript |
2092 au BufNewFile,BufRead *.uc setf uc | |
2093 | |
375 | 2094 " Updatedb |
2751 | 2095 au BufNewFile,BufRead */etc/updatedb.conf setf updatedb |
375 | 2096 |
2725 | 2097 " Upstart (init(8)) config files |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
2098 au BufNewFile,BufRead */usr/share/upstart/*.conf setf upstart |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
2099 au BufNewFile,BufRead */usr/share/upstart/*.override setf upstart |
4186 | 2100 au BufNewFile,BufRead */etc/init/*.conf,*/etc/init/*.override setf upstart |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
9908
diff
changeset
|
2101 au BufNewFile,BufRead */.init/*.conf,*/.init/*.override setf upstart |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
2102 au BufNewFile,BufRead */.config/upstart/*.conf setf upstart |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
2103 au BufNewFile,BufRead */.config/upstart/*.override setf upstart |
2725 | 2104 |
27445
31b0d8898489
patch 8.2.4251: vala files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27420
diff
changeset
|
2105 " Vala |
31b0d8898489
patch 8.2.4251: vala files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27420
diff
changeset
|
2106 au BufNewFile,BufRead *.vala setf vala |
31b0d8898489
patch 8.2.4251: vala files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27420
diff
changeset
|
2107 |
29952
eba6020b286a
patch 9.0.0314: VDM files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29714
diff
changeset
|
2108 " VDM |
eba6020b286a
patch 9.0.0314: VDM files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29714
diff
changeset
|
2109 au BufRead,BufNewFile *.vdmpp,*.vpp setf vdmpp |
eba6020b286a
patch 9.0.0314: VDM files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29714
diff
changeset
|
2110 au BufRead,BufNewFile *.vdmrt setf vdmrt |
eba6020b286a
patch 9.0.0314: VDM files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29714
diff
changeset
|
2111 au BufRead,BufNewFile *.vdmsl,*.vdm setf vdmsl |
eba6020b286a
patch 9.0.0314: VDM files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29714
diff
changeset
|
2112 |
836 | 2113 " Vera |
2114 au BufNewFile,BufRead *.vr,*.vri,*.vrh setf vera | |
2115 | |
28380
90d43a367955
patch 8.2.4715: Vagrantfile not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28379
diff
changeset
|
2116 " Vagrant (uses Ruby syntax) |
90d43a367955
patch 8.2.4715: Vagrantfile not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28379
diff
changeset
|
2117 au BufNewFile,BufRead Vagrantfile setf ruby |
90d43a367955
patch 8.2.4715: Vagrantfile not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28379
diff
changeset
|
2118 |
7 | 2119 " Verilog HDL |
2120 au BufNewFile,BufRead *.v setf verilog | |
2121 | |
481 | 2122 " Verilog-AMS HDL |
2123 au BufNewFile,BufRead *.va,*.vams setf verilogams | |
2124 | |
5663
1dea14d4c738
Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents:
5577
diff
changeset
|
2125 " SystemVerilog |
5692
80e5f9584b02
Update runtime files. Add Euphoria syntax files.
Bram Moolenaar <bram@vim.org>
parents:
5663
diff
changeset
|
2126 au BufNewFile,BufRead *.sv,*.svh setf systemverilog |
5663
1dea14d4c738
Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents:
5577
diff
changeset
|
2127 |
7 | 2128 " VHDL |
19717
de7c724bf803
patch 8.2.0415: bsdl filetype is not detected
Bram Moolenaar <Bram@vim.org>
parents:
19404
diff
changeset
|
2129 au BufNewFile,BufRead *.hdl,*.vhd,*.vhdl,*.vbe,*.vst,*.vho setf vhdl |
7 | 2130 |
2131 " Vim script | |
794 | 2132 au BufNewFile,BufRead *.vim,*.vba,.exrc,_exrc setf vim |
7 | 2133 |
2134 " Viminfo file | |
2135 au BufNewFile,BufRead .viminfo,_viminfo setf viminfo | |
2136 | |
2034 | 2137 " Virata Config Script File or Drupal module |
2138 au BufRead,BufNewFile *.hw,*.module,*.pkg | |
2139 \ if getline(1) =~ '<?php' | | |
2140 \ setf php | | |
2141 \ else | | |
2142 \ setf virata | | |
2143 \ endif | |
7 | 2144 |
2145 " Visual Basic (also uses *.bas) or FORM | |
27493
3af3dee7e5d9
patch 8.2.4274: Basic and form filetype detection is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
27492
diff
changeset
|
2146 au BufNewFile,BufRead *.frm call dist#ft#FTfrm() |
7 | 2147 |
2148 " SaxBasic is close to Visual Basic | |
2149 au BufNewFile,BufRead *.sba setf vb | |
2150 | |
2151 " Vgrindefs file | |
2152 au BufNewFile,BufRead vgrindefs setf vgrindefs | |
2153 | |
2154 " VRML V1.0c | |
2155 au BufNewFile,BufRead *.wrl setf vrml | |
2156 | |
6091
7090d7f160f7
Update runtime files. Add vroom file support.
Bram Moolenaar <bram@vim.org>
parents:
6070
diff
changeset
|
2157 " Vroom (vim testing and executable documentation) |
7090d7f160f7
Update runtime files. Add vroom file support.
Bram Moolenaar <bram@vim.org>
parents:
6070
diff
changeset
|
2158 au BufNewFile,BufRead *.vroom setf vroom |
7090d7f160f7
Update runtime files. Add vroom file support.
Bram Moolenaar <bram@vim.org>
parents:
6070
diff
changeset
|
2159 |
17528
62a6d99082f7
patch 8.1.1762: some filetype rules are in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
17526
diff
changeset
|
2160 " Vue.js Single File Component |
62a6d99082f7
patch 8.1.1762: some filetype rules are in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
17526
diff
changeset
|
2161 au BufNewFile,BufRead *.vue setf vue |
7 | 2162 |
14432 | 2163 " WebAssembly |
2164 au BufNewFile,BufRead *.wast,*.wat setf wast | |
2165 | |
17528
62a6d99082f7
patch 8.1.1762: some filetype rules are in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
17526
diff
changeset
|
2166 " Webmacro |
62a6d99082f7
patch 8.1.1762: some filetype rules are in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
17526
diff
changeset
|
2167 au BufNewFile,BufRead *.wm setf webmacro |
62a6d99082f7
patch 8.1.1762: some filetype rules are in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
17526
diff
changeset
|
2168 |
7 | 2169 " Wget config |
2170 au BufNewFile,BufRead .wgetrc,wgetrc setf wget | |
2171 | |
28670
239bd331e0a9
patch 8.2.4859: wget2 files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28662
diff
changeset
|
2172 " Wget2 config |
239bd331e0a9
patch 8.2.4859: wget2 files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28662
diff
changeset
|
2173 au BufNewFile,BufRead .wget2rc,wget2rc setf wget2 |
239bd331e0a9
patch 8.2.4859: wget2 files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28662
diff
changeset
|
2174 |
7 | 2175 " Website MetaLanguage |
2176 au BufNewFile,BufRead *.wml setf wml | |
2177 | |
2178 " Winbatch | |
2179 au BufNewFile,BufRead *.wbt setf winbatch | |
2180 | |
753 | 2181 " WSML |
2182 au BufNewFile,BufRead *.wsml setf wsml | |
2183 | |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2184 " WPL |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2185 au BufNewFile,BufRead *.wpl setf xml |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2186 |
7 | 2187 " WvDial |
2188 au BufNewFile,BufRead wvdial.conf,.wvdialrc setf wvdial | |
2189 | |
2190 " CVS RC file | |
2191 au BufNewFile,BufRead .cvsrc setf cvsrc | |
2192 | |
2193 " CVS commit file | |
2194 au BufNewFile,BufRead cvs\d\+ setf cvs | |
2195 | |
2196 " WEB (*.web is also used for Winbatch: Guess, based on expecting "%" comment | |
2197 " lines in a WEB file). | |
2198 au BufNewFile,BufRead *.web | |
2199 \ if getline(1)[0].getline(2)[0].getline(3)[0].getline(4)[0].getline(5)[0] =~ "%" | | |
2200 \ setf web | | |
2201 \ else | | |
2202 \ setf winbatch | | |
2203 \ endif | |
2204 | |
2205 " Windows Scripting Host and Windows Script Component | |
2206 au BufNewFile,BufRead *.ws[fc] setf wsh | |
2207 | |
1125 | 2208 " XHTML |
2209 au BufNewFile,BufRead *.xhtml,*.xht setf xhtml | |
2210 | |
25880 | 2211 " X Pixmap (dynamically sets colors, this used to trigger on BufEnter to make |
2212 " it work better, but that breaks setting 'filetype' manually) | |
2213 au BufNewFile,BufRead *.xpm | |
7 | 2214 \ if getline(1) =~ "XPM2" | |
2215 \ setf xpm2 | | |
2216 \ else | | |
2217 \ setf xpm | | |
2218 \ endif | |
25880 | 2219 au BufNewFile,BufRead *.xpm2 setf xpm2 |
7 | 2220 |
2221 " XFree86 config | |
2222 au BufNewFile,BufRead XF86Config | |
2223 \ if getline(1) =~ '\<XConfigurator\>' | | |
2788 | 2224 \ let b:xf86conf_xfree86_version = 3 | |
7 | 2225 \ endif | |
2226 \ setf xf86conf | |
2751 | 2227 au BufNewFile,BufRead */xorg.conf.d/*.conf |
2228 \ let b:xf86conf_xfree86_version = 4 | | |
2229 \ setf xf86conf | |
7 | 2230 |
2231 " Xorg config | |
2751 | 2232 au BufNewFile,BufRead xorg.conf,xorg.conf-4 let b:xf86conf_xfree86_version = 4 | setf xf86conf |
7 | 2233 |
375 | 2234 " Xinetd conf |
2751 | 2235 au BufNewFile,BufRead */etc/xinetd.conf setf xinetd |
375 | 2236 |
7 | 2237 " XS Perl extension interface language |
2238 au BufNewFile,BufRead *.xs setf xs | |
2239 | |
2240 " X resources file | |
2241 au BufNewFile,BufRead .Xdefaults,.Xpdefaults,.Xresources,xdm-config,*.ad setf xdefaults | |
2242 | |
2243 " Xmath | |
2244 au BufNewFile,BufRead *.msc,*.msf setf xmath | |
2245 au BufNewFile,BufRead *.ms | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
2246 \ if !dist#ft#FTnroff() | setf xmath | endif |
7 | 2247 |
1648 | 2248 " XML specific variants: docbk and xbl |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
2249 au BufNewFile,BufRead *.xml call dist#ft#FTxml() |
7 | 2250 |
2251 " XMI (holding UML models) is also XML | |
2252 au BufNewFile,BufRead *.xmi setf xml | |
2253 | |
26309
270ac1efc93b
patch 8.2.3685: Visual studio project files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26148
diff
changeset
|
2254 " CSPROJ files are Visual Studio.NET's XML-based C# project config files |
7 | 2255 au BufNewFile,BufRead *.csproj,*.csproj.user setf xml |
2256 | |
26309
270ac1efc93b
patch 8.2.3685: Visual studio project files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26148
diff
changeset
|
2257 " FSPROJ files are Visual Studio.NET's XML-based F# project config files |
270ac1efc93b
patch 8.2.3685: Visual studio project files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26148
diff
changeset
|
2258 au BufNewFile,BufRead *.fsproj,*.fsproj.user setf xml |
270ac1efc93b
patch 8.2.3685: Visual studio project files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26148
diff
changeset
|
2259 |
270ac1efc93b
patch 8.2.3685: Visual studio project files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26148
diff
changeset
|
2260 " VBPROJ files are Visual Studio.NET's XML-based Visual Basic project config files |
270ac1efc93b
patch 8.2.3685: Visual studio project files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26148
diff
changeset
|
2261 au BufNewFile,BufRead *.vbproj,*.vbproj.user setf xml |
270ac1efc93b
patch 8.2.3685: Visual studio project files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26148
diff
changeset
|
2262 |
7 | 2263 " Qt Linguist translation source and Qt User Interface Files are XML |
16364
db8f57e3e9f5
patch 8.1.1187: cannot recognize Pipfile
Bram Moolenaar <Bram@vim.org>
parents:
16344
diff
changeset
|
2264 " However, for .ts Typescript is more common. |
db8f57e3e9f5
patch 8.1.1187: cannot recognize Pipfile
Bram Moolenaar <Bram@vim.org>
parents:
16344
diff
changeset
|
2265 au BufNewFile,BufRead *.ui setf xml |
7 | 2266 |
1125 | 2267 " TPM's are RDF-based descriptions of TeX packages (Nikolai Weibull) |
2268 au BufNewFile,BufRead *.tpm setf xml | |
2269 | |
389 | 2270 " Xdg menus |
2751 | 2271 au BufNewFile,BufRead */etc/xdg/menus/*.menu setf xml |
389 | 2272 |
1648 | 2273 " ATI graphics driver configuration |
2274 au BufNewFile,BufRead fglrxrc setf xml | |
2275 | |
14519 | 2276 " Web Services Description Language (WSDL) |
2277 au BufNewFile,BufRead *.wsdl setf xml | |
2278 | |
1648 | 2279 " XLIFF (XML Localisation Interchange File Format) is also XML |
2280 au BufNewFile,BufRead *.xlf setf xml | |
2281 au BufNewFile,BufRead *.xliff setf xml | |
2282 | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3356
diff
changeset
|
2283 " XML User Interface Language |
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3356
diff
changeset
|
2284 au BufNewFile,BufRead *.xul setf xml |
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3356
diff
changeset
|
2285 |
1648 | 2286 " X11 xmodmap (also see below) |
2287 au BufNewFile,BufRead *Xmodmap setf xmodmap | |
2288 | |
419 | 2289 " Xquery |
2290 au BufNewFile,BufRead *.xq,*.xql,*.xqm,*.xquery,*.xqy setf xquery | |
2291 | |
7 | 2292 " XSD |
2293 au BufNewFile,BufRead *.xsd setf xsd | |
2294 | |
2295 " Xslt | |
2296 au BufNewFile,BufRead *.xsl,*.xslt setf xslt | |
2297 | |
2298 " Yacc | |
5697 | 2299 au BufNewFile,BufRead *.yy,*.yxx,*.y++ setf yacc |
375 | 2300 |
2301 " Yacc or racc | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
2302 au BufNewFile,BufRead *.y call dist#ft#FTy() |
7 | 2303 |
14991
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
2304 " Yaml |
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
2305 au BufNewFile,BufRead *.yaml,*.yml setf yaml |
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
2306 |
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
2307 " Raml |
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
2308 au BufNewFile,BufRead *.raml setf raml |
7 | 2309 |
3082 | 2310 " yum conf (close enough to dosini) |
4229 | 2311 au BufNewFile,BufRead */etc/yum.conf setf dosini |
3082 | 2312 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
2313 " YANG |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
2314 au BufRead,BufNewFile *.yang setf yang |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
2315 |
3513 | 2316 " Zimbu |
4229 | 2317 au BufNewFile,BufRead *.zu setf zimbu |
6421 | 2318 " Zimbu Templates |
2319 au BufNewFile,BufRead *.zut setf zimbutempl | |
3513 | 2320 |
809 | 2321 " Zope |
2322 " dtml (zope dynamic template markup language), pt (zope page template), | |
2323 " cpt (zope form controller page template) | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
2324 au BufNewFile,BufRead *.dtml,*.pt,*.cpt call dist#ft#FThtml() |
809 | 2325 " zsql (zope sql method) |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
2326 au BufNewFile,BufRead *.zsql call dist#ft#SQL() |
809 | 2327 |
7 | 2328 " Z80 assembler asz80 |
2329 au BufNewFile,BufRead *.z8a setf z8a | |
2330 | |
2331 augroup END | |
2332 | |
2333 | |
2334 " Source the user-specified filetype file, for backwards compatibility with | |
2335 " Vim 5.x. | |
216 | 2336 if exists("myfiletypefile") && filereadable(expand(myfiletypefile)) |
7 | 2337 execute "source " . myfiletypefile |
2338 endif | |
2339 | |
2340 | |
2341 " Check for "*" after loading myfiletypefile, so that scripts.vim is only used | |
2342 " when there are no matching file name extensions. | |
2343 " Don't do this for compressed files. | |
2344 augroup filetypedetect | |
2345 au BufNewFile,BufRead * | |
2346 \ if !did_filetype() && expand("<amatch>") !~ g:ft_ignore_pat | |
2347 \ | runtime! scripts.vim | endif | |
2348 au StdinReadPost * if !did_filetype() | runtime! scripts.vim | endif | |
2349 | |
2350 | |
26390
24632928d8c5
patch 8.2.3726: README file in a config directory gets wrong filetype
Bram Moolenaar <Bram@vim.org>
parents:
26344
diff
changeset
|
2351 " Plain text files, needs to be far down to not override others. This avoids |
24632928d8c5
patch 8.2.3726: README file in a config directory gets wrong filetype
Bram Moolenaar <Bram@vim.org>
parents:
26344
diff
changeset
|
2352 " the "conf" type being used if there is a line starting with '#'. |
24632928d8c5
patch 8.2.3726: README file in a config directory gets wrong filetype
Bram Moolenaar <Bram@vim.org>
parents:
26344
diff
changeset
|
2353 " But before patterns matching everything in a directory. |
24632928d8c5
patch 8.2.3726: README file in a config directory gets wrong filetype
Bram Moolenaar <Bram@vim.org>
parents:
26344
diff
changeset
|
2354 au BufNewFile,BufRead *.text,README,LICENSE,COPYING,AUTHORS setf text |
24632928d8c5
patch 8.2.3726: README file in a config directory gets wrong filetype
Bram Moolenaar <Bram@vim.org>
parents:
26344
diff
changeset
|
2355 |
24632928d8c5
patch 8.2.3726: README file in a config directory gets wrong filetype
Bram Moolenaar <Bram@vim.org>
parents:
26344
diff
changeset
|
2356 |
7 | 2357 " Extra checks for when no filetype has been detected now. Mostly used for |
2358 " patterns that end in "*". E.g., "zsh*" matches "zsh.vim", but that's a Vim | |
2359 " script file. | |
216 | 2360 " Most of these should call s:StarSetf() to avoid names ending in .gz and the |
2361 " like are used. | |
7 | 2362 |
13051 | 2363 " More Apache style config files |
2364 au BufNewFile,BufRead */etc/proftpd/*.conf*,*/etc/proftpd/conf.*/* call s:StarSetf('apachestyle') | |
16208 | 2365 au BufNewFile,BufRead proftpd.conf* call s:StarSetf('apachestyle') |
13051 | 2366 |
2751 | 2367 " More Apache config files |
2368 au BufNewFile,BufRead access.conf*,apache.conf*,apache2.conf*,httpd.conf*,srm.conf* call s:StarSetf('apache') | |
25832
be15ebb4098c
patch 8.2.3451: not all apache files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
25773
diff
changeset
|
2369 au BufNewFile,BufRead */etc/apache2/*.conf*,*/etc/apache2/conf.*/*,*/etc/apache2/mods-*/*,*/etc/apache2/sites-*/*,*/etc/httpd/conf.*/*,*/etc/httpd/mods-*/*,*/etc/httpd/sites-*/*,*/etc/httpd/conf.d/*.conf* call s:StarSetf('apache') |
1668 | 2370 |
26390
24632928d8c5
patch 8.2.3726: README file in a config directory gets wrong filetype
Bram Moolenaar <Bram@vim.org>
parents:
26344
diff
changeset
|
2371 " APT config file |
24632928d8c5
patch 8.2.3726: README file in a config directory gets wrong filetype
Bram Moolenaar <Bram@vim.org>
parents:
26344
diff
changeset
|
2372 au BufNewFile,BufRead */etc/apt/apt.conf.d/{[-_[:alnum:]]\+,[-_.[:alnum:]]\+.conf} call s:StarSetf('aptconf') |
24632928d8c5
patch 8.2.3726: README file in a config directory gets wrong filetype
Bram Moolenaar <Bram@vim.org>
parents:
26344
diff
changeset
|
2373 |
531 | 2374 " Asterisk config file |
856 | 2375 au BufNewFile,BufRead *asterisk/*.conf* call s:StarSetf('asterisk') |
794 | 2376 au BufNewFile,BufRead *asterisk*/*voicemail.conf* call s:StarSetf('asteriskvm') |
531 | 2377 |
1125 | 2378 " Bazaar version control |
2379 au BufNewFile,BufRead bzr_log.* setf bzr | |
2380 | |
11358
a6b9cdcde548
patch 8.0.0564: cannot detect Bazel BUILD files on some systems
Christian Brabandt <cb@256bit.org>
parents:
11262
diff
changeset
|
2381 " Bazel build file |
a6b9cdcde548
patch 8.0.0564: cannot detect Bazel BUILD files on some systems
Christian Brabandt <cb@256bit.org>
parents:
11262
diff
changeset
|
2382 if !has("fname_case") |
22971
f39f960f3ea0
patch 8.2.2032: cabalconfig and cabalproject filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
22918
diff
changeset
|
2383 au BufNewFile,BufRead *.BUILD,BUILD setf bzl |
11358
a6b9cdcde548
patch 8.0.0564: cannot detect Bazel BUILD files on some systems
Christian Brabandt <cb@256bit.org>
parents:
11262
diff
changeset
|
2384 endif |
a6b9cdcde548
patch 8.0.0564: cannot detect Bazel BUILD files on some systems
Christian Brabandt <cb@256bit.org>
parents:
11262
diff
changeset
|
2385 |
7 | 2386 " BIND zone |
805 | 2387 au BufNewFile,BufRead */named/db.*,*/bind/db.* call s:StarSetf('bindzone') |
7 | 2388 |
22971
f39f960f3ea0
patch 8.2.2032: cabalconfig and cabalproject filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
22918
diff
changeset
|
2389 au BufNewFile,BufRead cabal.project.* call s:StarSetf('cabalproject') |
f39f960f3ea0
patch 8.2.2032: cabalconfig and cabalproject filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
22918
diff
changeset
|
2390 |
2788 | 2391 " Calendar |
2392 au BufNewFile,BufRead */.calendar/*, | |
2393 \*/share/calendar/*/calendar.*,*/share/calendar/calendar.* | |
2394 \ call s:StarSetf('calendar') | |
2395 | |
7 | 2396 " Changelog |
216 | 2397 au BufNewFile,BufRead [cC]hange[lL]og* |
2398 \ if getline(1) =~ '; urgency=' | |
2399 \| call s:StarSetf('debchangelog') | |
2400 \|else | |
2401 \| call s:StarSetf('changelog') | |
2402 \|endif | |
7 | 2403 |
2404 " Crontab | |
2751 | 2405 au BufNewFile,BufRead crontab,crontab.*,*/etc/cron.d/* call s:StarSetf('crontab') |
816 | 2406 |
2788 | 2407 " dnsmasq(8) configuration |
2408 au BufNewFile,BufRead */etc/dnsmasq.d/* call s:StarSetf('dnsmasq') | |
2409 | |
26753
c271b07a56f6
patch 8.2.3905: Dockerfile using prefix name not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26708
diff
changeset
|
2410 " Dockerfile |
26761
3dbb8fdcd179
patch 8.2.3909: Containerfile using prefix name not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26753
diff
changeset
|
2411 au BufNewFile,BufRead Dockerfile.*,Containerfile.* call s:StarSetf('dockerfile') |
26753
c271b07a56f6
patch 8.2.3905: Dockerfile using prefix name not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26708
diff
changeset
|
2412 |
7 | 2413 " Dracula |
216 | 2414 au BufNewFile,BufRead drac.* call s:StarSetf('dracula') |
7 | 2415 |
2416 " Fvwm | |
1125 | 2417 au BufNewFile,BufRead */.fvwm/* call s:StarSetf('fvwm') |
7 | 2418 au BufNewFile,BufRead *fvwmrc*,*fvwm95*.hook |
216 | 2419 \ let b:fvwm_version = 1 | call s:StarSetf('fvwm') |
7 | 2420 au BufNewFile,BufRead *fvwm2rc* |
216 | 2421 \ if expand("<afile>:e") == "m4" |
2422 \| call s:StarSetf('fvwm2m4') | |
2423 \|else | |
2424 \| let b:fvwm_version = 2 | call s:StarSetf('fvwm') | |
2425 \|endif | |
7 | 2426 |
2034 | 2427 " Gedcom |
2788 | 2428 au BufNewFile,BufRead */tmp/lltmp* call s:StarSetf('gedcom') |
2034 | 2429 |
16208 | 2430 " Git |
29397
7f5db9decf32
patch 9.0.0041: a couple of filetype patterns do not have "*" before "/etc"
Bram Moolenaar <Bram@vim.org>
parents:
29338
diff
changeset
|
2431 au BufNewFile,BufRead */.gitconfig.d/*,*/etc/gitconfig.d/* call s:StarSetf('gitconfig') |
16208 | 2432 |
2433 " Gitolite | |
2434 au BufNewFile,BufRead */gitolite-admin/conf/* call s:StarSetf('gitolite') | |
2435 | |
7 | 2436 " GTK RC |
216 | 2437 au BufNewFile,BufRead .gtkrc*,gtkrc* call s:StarSetf('gtkrc') |
7 | 2438 |
2439 " Jam | |
216 | 2440 au BufNewFile,BufRead Prl*.*,JAM*.* call s:StarSetf('jam') |
7 | 2441 |
2442 " Jargon | |
2443 au! BufNewFile,BufRead *jarg* | |
216 | 2444 \ if getline(1).getline(2).getline(3).getline(4).getline(5) =~? 'THIS IS THE JARGON FILE' |
2445 \| call s:StarSetf('jargon') | |
2446 \|endif | |
7 | 2447 |
16208 | 2448 " Java Properties resource file (note: doesn't catch font.properties.pl) |
2449 au BufNewFile,BufRead *.properties_??_??_* call s:StarSetf('jproperties') | |
2450 | |
837 | 2451 " Kconfig |
2452 au BufNewFile,BufRead Kconfig.* call s:StarSetf('kconfig') | |
2453 | |
2788 | 2454 " Lilo: Linux loader |
2455 au BufNewFile,BufRead lilo.conf* call s:StarSetf('lilo') | |
2456 | |
27096
d539c144aeb4
patch 8.2.4077: not all Libsensors files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
27070
diff
changeset
|
2457 " Libsensors |
d539c144aeb4
patch 8.2.4077: not all Libsensors files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
27070
diff
changeset
|
2458 au BufNewFile,BufRead */etc/sensors.d/[^.]* call s:StarSetf('sensors') |
d539c144aeb4
patch 8.2.4077: not all Libsensors files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
27070
diff
changeset
|
2459 |
2434
86532ee3ea41
Updated runtime files. Add logcheck filetype plugin. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2415
diff
changeset
|
2460 " Logcheck |
2751 | 2461 au BufNewFile,BufRead */etc/logcheck/*.d*/* call s:StarSetf('logcheck') |
2434
86532ee3ea41
Updated runtime files. Add logcheck filetype plugin. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2415
diff
changeset
|
2462 |
7 | 2463 " Makefile |
216 | 2464 au BufNewFile,BufRead [mM]akefile* call s:StarSetf('make') |
7 | 2465 |
1648 | 2466 " Ruby Makefile |
2467 au BufNewFile,BufRead [rR]akefile* call s:StarSetf('ruby') | |
2468 | |
2469 " Mail (also matches muttrc.vim, so this is below the other checks) | |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2470 au BufNewFile,BufRead {neo,}mutt[[:alnum:]._-]\\\{6\} setf mail |
1648 | 2471 |
9555
9560a5b782ee
commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8
Christian Brabandt <cb@256bit.org>
parents:
9533
diff
changeset
|
2472 au BufNewFile,BufRead reportbug-* call s:StarSetf('mail') |
9560a5b782ee
commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8
Christian Brabandt <cb@256bit.org>
parents:
9533
diff
changeset
|
2473 |
389 | 2474 " Modconf |
2788 | 2475 au BufNewFile,BufRead */etc/modutils/* |
2476 \ if executable(expand("<afile>")) != 1 | |
2477 \| call s:StarSetf('modconf') | |
2478 \|endif | |
2751 | 2479 au BufNewFile,BufRead */etc/modprobe.* call s:StarSetf('modconf') |
389 | 2480 |
26398
34548fb19e0e
patch 8.2.3730: "/etc/Muttrc.d/README" gets filetype muttrc
Bram Moolenaar <Bram@vim.org>
parents:
26396
diff
changeset
|
2481 " Mutt setup files (must be before catch *.rc) |
34548fb19e0e
patch 8.2.3730: "/etc/Muttrc.d/README" gets filetype muttrc
Bram Moolenaar <Bram@vim.org>
parents:
26396
diff
changeset
|
2482 au BufNewFile,BufRead */etc/Muttrc.d/* call s:StarSetf('muttrc') |
34548fb19e0e
patch 8.2.3730: "/etc/Muttrc.d/README" gets filetype muttrc
Bram Moolenaar <Bram@vim.org>
parents:
26396
diff
changeset
|
2483 |
7 | 2484 " Mutt setup file |
1648 | 2485 au BufNewFile,BufRead .mutt{ng,}rc*,*/.mutt{ng,}/mutt{ng,}rc* call s:StarSetf('muttrc') |
484 | 2486 au BufNewFile,BufRead mutt{ng,}rc*,Mutt{ng,}rc* call s:StarSetf('muttrc') |
7 | 2487 |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2488 " Neomutt setup file |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2489 au BufNewFile,BufRead .neomuttrc*,*/.neomutt/neomuttrc* call s:StarSetf('neomuttrc') |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2490 au BufNewFile,BufRead neomuttrc*,Neomuttrc* call s:StarSetf('neomuttrc') |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2491 |
7 | 2492 " Nroff macros |
216 | 2493 au BufNewFile,BufRead tmac.* call s:StarSetf('nroff') |
7 | 2494 |
10348
c78513465e6e
commit https://github.com/vim/vim/commit/25de4c232d580583feadae11ab34e3cc6333c350
Christian Brabandt <cb@256bit.org>
parents:
10319
diff
changeset
|
2495 " OpenBSD hostname.if |
29397
7f5db9decf32
patch 9.0.0041: a couple of filetype patterns do not have "*" before "/etc"
Bram Moolenaar <Bram@vim.org>
parents:
29338
diff
changeset
|
2496 au BufNewFile,BufRead */etc/hostname.* call s:StarSetf('config') |
10348
c78513465e6e
commit https://github.com/vim/vim/commit/25de4c232d580583feadae11ab34e3cc6333c350
Christian Brabandt <cb@256bit.org>
parents:
10319
diff
changeset
|
2497 |
375 | 2498 " Pam conf |
2751 | 2499 au BufNewFile,BufRead */etc/pam.d/* call s:StarSetf('pamconf') |
375 | 2500 |
7 | 2501 " Printcap and Termcap |
2502 au BufNewFile,BufRead *printcap* | |
216 | 2503 \ if !did_filetype() |
2504 \| let b:ptcap_type = "print" | call s:StarSetf('ptcap') | |
2505 \|endif | |
7 | 2506 au BufNewFile,BufRead *termcap* |
216 | 2507 \ if !did_filetype() |
2508 \| let b:ptcap_type = "term" | call s:StarSetf('ptcap') | |
2509 \|endif | |
7 | 2510 |
4278 | 2511 " ReDIF |
2512 " Only used when the .rdf file was not detected to be XML. | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
2513 au BufRead,BufNewFile *.rdf call dist#ft#Redif() |
4278 | 2514 |
2788 | 2515 " Remind |
2516 au BufNewFile,BufRead .reminders* call s:StarSetf('remind') | |
2517 | |
16208 | 2518 " SGML catalog file |
2519 au BufNewFile,BufRead sgml.catalog* call s:StarSetf('catalog') | |
2520 | |
24347
1df930301857
patch 8.2.2714: filetype pattern ending in star is too far up
Bram Moolenaar <Bram@vim.org>
parents:
24299
diff
changeset
|
2521 " avoid doc files being recognized a shell files |
1df930301857
patch 8.2.2714: filetype pattern ending in star is too far up
Bram Moolenaar <Bram@vim.org>
parents:
24299
diff
changeset
|
2522 au BufNewFile,BufRead */doc/{,.}bash[_-]completion{,.d,.sh}{,/*} setf text |
1df930301857
patch 8.2.2714: filetype pattern ending in star is too far up
Bram Moolenaar <Bram@vim.org>
parents:
24299
diff
changeset
|
2523 |
15527
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2524 " Shell scripts ending in a star |
24347
1df930301857
patch 8.2.2714: filetype pattern ending in star is too far up
Bram Moolenaar <Bram@vim.org>
parents:
24299
diff
changeset
|
2525 au BufNewFile,BufRead .bashrc*,.bash[_-]profile*,.bash[_-]logout*,.bash[_-]aliases*,bash-fc[-.]*,PKGBUILD*,APKBUILD*,*/{,.}bash[_-]completion{,.d,.sh}{,/*} call dist#ft#SetFileTypeSH("bash") |
15527
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2526 au BufNewFile,BufRead .kshrc* call dist#ft#SetFileTypeSH("ksh") |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2527 au BufNewFile,BufRead .profile* call dist#ft#SetFileTypeSH(getline(1)) |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2528 |
26143
741cb243a7d2
patch 8.2.3604: not all sudoers files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
26141
diff
changeset
|
2529 " Sudoers |
741cb243a7d2
patch 8.2.3604: not all sudoers files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
26141
diff
changeset
|
2530 au BufNewFile,BufRead */etc/sudoers.d/* call s:StarSetf('sudoers') |
741cb243a7d2
patch 8.2.3604: not all sudoers files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
26141
diff
changeset
|
2531 |
15527
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2532 " tcsh scripts ending in a star |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2533 au BufNewFile,BufRead .tcshrc* call dist#ft#SetFileTypeShell("tcsh") |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2534 |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2535 " csh scripts ending in a star |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2536 au BufNewFile,BufRead .login*,.cshrc* call dist#ft#CSH() |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2537 |
25935
c90b8e41b10e
patch 8.2.3501: tmux filetype dection is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
25880
diff
changeset
|
2538 " tmux configuration with arbitrary extension |
c90b8e41b10e
patch 8.2.3501: tmux filetype dection is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
25880
diff
changeset
|
2539 au BufNewFile,BufRead {.,}tmux*.conf* setf tmux |
c90b8e41b10e
patch 8.2.3501: tmux filetype dection is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
25880
diff
changeset
|
2540 |
16208 | 2541 " VHDL |
2542 au BufNewFile,BufRead *.vhdl_[0-9]* call s:StarSetf('vhdl') | |
2543 | |
7 | 2544 " Vim script |
216 | 2545 au BufNewFile,BufRead *vimrc* call s:StarSetf('vim') |
7 | 2546 |
2547 " Subversion commit file | |
45 | 2548 au BufNewFile,BufRead svn-commit*.tmp setf svn |
7 | 2549 |
2550 " X resources file | |
216 | 2551 au BufNewFile,BufRead Xresources*,*/app-defaults/*,*/Xresources/* call s:StarSetf('xdefaults') |
7 | 2552 |
2553 " XFree86 config | |
2554 au BufNewFile,BufRead XF86Config-4* | |
2751 | 2555 \ let b:xf86conf_xfree86_version = 4 | call s:StarSetf('xf86conf') |
7 | 2556 au BufNewFile,BufRead XF86Config* |
216 | 2557 \ if getline(1) =~ '\<XConfigurator\>' |
2751 | 2558 \| let b:xf86conf_xfree86_version = 3 |
216 | 2559 \|endif |
2560 \|call s:StarSetf('xf86conf') | |
7 | 2561 |
2562 " X11 xmodmap | |
216 | 2563 au BufNewFile,BufRead *xmodmap* call s:StarSetf('xmodmap') |
7 | 2564 |
375 | 2565 " Xinetd conf |
2751 | 2566 au BufNewFile,BufRead */etc/xinetd.d/* call s:StarSetf('xinetd') |
375 | 2567 |
3082 | 2568 " yum conf (close enough to dosini) |
4229 | 2569 au BufNewFile,BufRead */etc/yum.repos.d/* call s:StarSetf('dosini') |
3082 | 2570 |
15535
45a159f62dd0
patch 8.1.0775: matching too many files as zsh
Bram Moolenaar <Bram@vim.org>
parents:
15527
diff
changeset
|
2571 " Z-Shell script ending in a star |
45a159f62dd0
patch 8.1.0775: matching too many files as zsh
Bram Moolenaar <Bram@vim.org>
parents:
15527
diff
changeset
|
2572 au BufNewFile,BufRead .zsh*,.zlog*,.zcompdump* call s:StarSetf('zsh') |
216 | 2573 au BufNewFile,BufRead zsh*,zlog* call s:StarSetf('zsh') |
7 | 2574 |
2575 | |
11535
f7a0b0b1fc17
patch 8.0.0650: for extra help files the filetype is set more than once
Christian Brabandt <cb@256bit.org>
parents:
11533
diff
changeset
|
2576 " Help files match *.txt but should have a last line that is a modeline. |
14991
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
2577 au BufNewFile,BufRead *.txt |
11535
f7a0b0b1fc17
patch 8.0.0650: for extra help files the filetype is set more than once
Christian Brabandt <cb@256bit.org>
parents:
11533
diff
changeset
|
2578 \ if getline('$') !~ 'vim:.*ft=help' |
f7a0b0b1fc17
patch 8.0.0650: for extra help files the filetype is set more than once
Christian Brabandt <cb@256bit.org>
parents:
11533
diff
changeset
|
2579 \| setf text |
f7a0b0b1fc17
patch 8.0.0650: for extra help files the filetype is set more than once
Christian Brabandt <cb@256bit.org>
parents:
11533
diff
changeset
|
2580 \| endif |
3237 | 2581 |
30215
40491de2f0a6
patch 9.0.0443: blueprint files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30202
diff
changeset
|
2582 " Blueprint markup files |
40491de2f0a6
patch 9.0.0443: blueprint files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30202
diff
changeset
|
2583 au BufNewFile,BufRead *.blp setf blueprint |
2013 | 2584 |
2585 " Use the filetype detect plugins. They may overrule any of the previously | |
2586 " detected filetypes. | |
2587 runtime! ftdetect/*.vim | |
2588 | |
3326 | 2589 " NOTE: The above command could have ended the filetypedetect autocmd group |
3356 | 2590 " and started another one. Let's make sure it has ended to get to a consistent |
3326 | 2591 " state. |
2592 augroup END | |
2013 | 2593 |
11459
561b76ed9d12
patch 8.0.0613: the conf filetype is used before ftdetect from packages
Christian Brabandt <cb@256bit.org>
parents:
11442
diff
changeset
|
2594 " Generic configuration file. Use FALLBACK, it's just guessing! |
3326 | 2595 au filetypedetect BufNewFile,BufRead,StdinReadPost * |
7 | 2596 \ if !did_filetype() && expand("<amatch>") !~ g:ft_ignore_pat |
2597 \ && (getline(1) =~ '^#' || getline(2) =~ '^#' || getline(3) =~ '^#' | |
2598 \ || getline(4) =~ '^#' || getline(5) =~ '^#') | | |
11459
561b76ed9d12
patch 8.0.0613: the conf filetype is used before ftdetect from packages
Christian Brabandt <cb@256bit.org>
parents:
11442
diff
changeset
|
2599 \ setf FALLBACK conf | |
7 | 2600 \ endif |
2601 | |
2602 | |
2603 " If the GUI is already running, may still need to install the Syntax menu. | |
2604 " Don't do it when the 'M' flag is included in 'guioptions'. | |
2605 if has("menu") && has("gui_running") | |
2606 \ && !exists("did_install_syntax_menu") && &guioptions !~# "M" | |
2607 source <sfile>:p:h/menu.vim | |
2608 endif | |
2609 | |
1219 | 2610 " Function called for testing all functions defined here. These are |
2611 " script-local, thus need to be executed here. | |
2612 " Returns a string with error messages (hopefully empty). | |
27770
219471ed2fec
patch 8.2.4411: bicep files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27653
diff
changeset
|
2613 func TestFiletypeFuncs(testlist) |
1219 | 2614 let output = '' |
2615 for f in a:testlist | |
2616 try | |
2617 exe f | |
2618 catch | |
2619 let output = output . "\n" . f . ": " . v:exception | |
2620 endtry | |
2621 endfor | |
2622 return output | |
2623 endfunc | |
2624 | |
7 | 2625 " Restore 'cpoptions' |
2626 let &cpo = s:cpo_save | |
2627 unlet s:cpo_save |