Mercurial > vim
annotate runtime/filetype.vim @ 20232:426745ecefee
Added tag v8.2.0671 for changeset 993d820196b936bdaacaa88feeb23ccfa7d0d92b
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 30 Apr 2020 23:00:06 +0200 |
parents | ca9c2be2334a |
children | 190ffc6453d4 |
rev | line source |
---|---|
7 | 1 " Vim support file to detect file types |
2 " | |
3 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
20215
ca9c2be2334a
patch 8.2.0663: not all systemd temp files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
20115
diff
changeset
|
4 " Last Change: 2020 Apr 29 |
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. | |
1219 | 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 | |
91 " AMPL | |
92 au BufNewFile,BufRead *.run setf ampl | |
93 | |
94 " Ant | |
95 au BufNewFile,BufRead build.xml setf ant | |
96 | |
5577 | 97 " Arduino |
98 au BufNewFile,BufRead *.ino,*.pde setf arduino | |
99 | |
7 | 100 " Apache config file |
2751 | 101 au BufNewFile,BufRead .htaccess,*/etc/httpd/*.conf setf apache |
15729 | 102 au BufNewFile,BufRead */etc/apache2/sites-*/*.com setf apache |
7 | 103 |
104 " XA65 MOS6510 cross assembler | |
105 au BufNewFile,BufRead *.a65 setf a65 | |
106 | |
2034 | 107 " Applescript |
108 au BufNewFile,BufRead *.scpt setf applescript | |
109 | |
7 | 110 " Applix ELF |
111 au BufNewFile,BufRead *.am | |
112 \ if expand("<afile>") !~? 'Makefile.am\>' | setf elf | endif | |
113 | |
24 | 114 " ALSA configuration |
2788 | 115 au BufNewFile,BufRead .asoundrc,*/usr/share/alsa/alsa.conf,*/etc/asound.conf setf alsaconf |
24 | 116 |
7 | 117 " Arc Macro Language |
118 au BufNewFile,BufRead *.aml setf aml | |
119 | |
3854 | 120 " APT config file |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
121 au BufNewFile,BufRead apt.conf setf aptconf |
3854 | 122 au BufNewFile,BufRead */.aptitude/config setf aptconf |
123 au BufNewFile,BufRead */etc/apt/apt.conf.d/{[-_[:alnum:]]\+,[-_.[:alnum:]]\+.conf} setf aptconf | |
124 | |
7 | 125 " Arch Inventory file |
126 au BufNewFile,BufRead .arch-inventory,=tagging-method setf arch | |
127 | |
128 " ART*Enterprise (formerly ART-IM) | |
129 au BufNewFile,BufRead *.art setf art | |
130 | |
4229 | 131 " AsciiDoc |
7147
c590de398af9
commit https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
132 au BufNewFile,BufRead *.asciidoc,*.adoc setf asciidoc |
4229 | 133 |
7 | 134 " ASN.1 |
135 au BufNewFile,BufRead *.asn,*.asn1 setf asn | |
136 | |
137 " Active Server Pages (with Visual Basic Script) | |
138 au BufNewFile,BufRead *.asa | |
139 \ if exists("g:filetype_asa") | | |
140 \ exe "setf " . g:filetype_asa | | |
141 \ else | | |
142 \ setf aspvbs | | |
143 \ endif | |
144 | |
145 " Active Server Pages (with Perl or Visual Basic Script) | |
146 au BufNewFile,BufRead *.asp | |
147 \ if exists("g:filetype_asp") | | |
148 \ exe "setf " . g:filetype_asp | | |
149 \ elseif getline(1) . getline(2) . getline(3) =~? "perlscript" | | |
150 \ setf aspperl | | |
151 \ else | | |
152 \ setf aspvbs | | |
153 \ endif | |
154 | |
155 " Grub (must be before catch *.lst) | |
2788 | 156 au BufNewFile,BufRead */boot/grub/menu.lst,*/boot/grub/grub.conf,*/etc/grub.conf setf grub |
7 | 157 |
158 " Assembly (all kinds) | |
159 " *.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
|
160 au BufNewFile,BufRead *.asm,*.[sS],*.[aA],*.mac,*.lst call dist#ft#FTasm() |
7 | 161 |
162 " Macro (VAX) | |
163 au BufNewFile,BufRead *.mar setf vmasm | |
164 | |
165 " Atlas | |
166 au BufNewFile,BufRead *.atl,*.as setf atlas | |
167 | |
1125 | 168 " Autoit v3 |
169 au BufNewFile,BufRead *.au3 setf autoit | |
170 | |
1219 | 171 " Autohotkey |
172 au BufNewFile,BufRead *.ahk setf autohotkey | |
173 | |
7 | 174 " Automake |
809 | 175 au BufNewFile,BufRead [mM]akefile.am,GNUmakefile.am setf automake |
7 | 176 |
375 | 177 " Autotest .at files are actually m4 |
178 au BufNewFile,BufRead *.at setf m4 | |
179 | |
7 | 180 " Avenue |
181 au BufNewFile,BufRead *.ave setf ave | |
182 | |
183 " Awk | |
184 au BufNewFile,BufRead *.awk setf awk | |
185 | |
186 " B | |
187 au BufNewFile,BufRead *.mch,*.ref,*.imp setf b | |
188 | |
189 " BASIC or Visual Basic | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
190 au BufNewFile,BufRead *.bas call dist#ft#FTVB("basic") |
7 | 191 |
3465 | 192 " Visual Basic Script (close to Visual Basic) or Visual Basic .NET |
193 au BufNewFile,BufRead *.vb,*.vbs,*.dsm,*.ctl setf vb | |
7 | 194 |
1125 | 195 " IBasic file (similar to QBasic) |
196 au BufNewFile,BufRead *.iba,*.ibi setf ibasic | |
197 | |
198 " FreeBasic file (similar to QBasic) | |
199 au BufNewFile,BufRead *.fb,*.bi setf freebasic | |
200 | |
7 | 201 " Batch file for MSDOS. |
15 | 202 au BufNewFile,BufRead *.bat,*.sys setf dosbatch |
7 | 203 " *.cmd is close to a Batch file, but on OS/2 Rexx files also use *.cmd. |
204 au BufNewFile,BufRead *.cmd | |
205 \ if getline(1) =~ '^/\*' | setf rexx | else | setf dosbatch | endif | |
206 | |
207 " 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
|
208 au BufNewFile,BufRead *.btm call dist#ft#FTbtm() |
7 | 209 |
210 " BC calculator | |
211 au BufNewFile,BufRead *.bc setf bc | |
212 | |
213 " BDF font | |
214 au BufNewFile,BufRead *.bdf setf bdf | |
215 | |
216 " BibTeX bibliography database file | |
217 au BufNewFile,BufRead *.bib setf bib | |
218 | |
846 | 219 " BibTeX Bibliography Style |
220 au BufNewFile,BufRead *.bst setf bst | |
221 | |
7 | 222 " BIND configuration |
11262 | 223 " sudoedit uses namedXXXX.conf |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
224 au BufNewFile,BufRead named*.conf,rndc*.conf,rndc*.key setf named |
7 | 225 |
226 " BIND zone | |
227 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
|
228 au BufNewFile,BufRead *.db call dist#ft#BindzoneCheck('') |
7 | 229 |
230 " Blank | |
231 au BufNewFile,BufRead *.bl setf blank | |
232 | |
1676 | 233 " Blkid cache file |
2751 | 234 au BufNewFile,BufRead */etc/blkid.tab,*/etc/blkid.tab.old setf xml |
1676 | 235 |
19717
de7c724bf803
patch 8.2.0415: bsdl filetype is not detected
Bram Moolenaar <Bram@vim.org>
parents:
19404
diff
changeset
|
236 " BSDL |
20067
ec40053dd3b5
patch 8.2.0589: .bsd file type not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19987
diff
changeset
|
237 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
|
238 |
7176
30042ddff503
commit https://github.com/vim/vim/commit/60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d
Christian Brabandt <cb@256bit.org>
parents:
7147
diff
changeset
|
239 " Bazel (http://bazel.io) |
12909 | 240 autocmd BufRead,BufNewFile *.bzl,WORKSPACE,BUILD.bazel setf bzl |
10548
74effdaa369e
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10348
diff
changeset
|
241 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
|
242 " There is another check for BUILD further below. |
20067
ec40053dd3b5
patch 8.2.0589: .bsd file type not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19987
diff
changeset
|
243 autocmd BufRead,BufNewFile BUILD setf bzl |
10548
74effdaa369e
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10348
diff
changeset
|
244 endif |
7176
30042ddff503
commit https://github.com/vim/vim/commit/60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d
Christian Brabandt <cb@256bit.org>
parents:
7147
diff
changeset
|
245 |
7 | 246 " C or lpc |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
247 au BufNewFile,BufRead *.c call dist#ft#FTlpc() |
13125 | 248 au BufNewFile,BufRead *.lpc,*.ulpc setf lpc |
7 | 249 |
250 " Calendar | |
216 | 251 au BufNewFile,BufRead calendar setf calendar |
7 | 252 |
253 " C# | |
254 au BufNewFile,BufRead *.cs setf cs | |
255 | |
4186 | 256 " CSDL |
257 au BufNewFile,BufRead *.csdl setf csdl | |
258 | |
2152 | 259 " Cabal |
2725 | 260 au BufNewFile,BufRead *.cabal setf cabal |
2152 | 261 |
1219 | 262 " Cdrdao TOC |
263 au BufNewFile,BufRead *.toc setf cdrtoc | |
264 | |
1648 | 265 " Cdrdao config |
2788 | 266 au BufNewFile,BufRead */etc/cdrdao.conf,*/etc/defaults/cdrdao,*/etc/default/cdrdao,.cdrdao setf cdrdaoconf |
1648 | 267 |
555 | 268 " Cfengine |
269 au BufNewFile,BufRead cfengine.conf setf cfengine | |
270 | |
2152 | 271 " ChaiScript |
272 au BufRead,BufNewFile *.chai setf chaiscript | |
273 | |
7 | 274 " Comshare Dimension Definition Language |
275 au BufNewFile,BufRead *.cdl setf cdl | |
276 | |
1125 | 277 " Conary Recipe |
278 au BufNewFile,BufRead *.recipe setf conaryrecipe | |
279 | |
7 | 280 " Controllable Regex Mutilator |
281 au BufNewFile,BufRead *.crm setf crm | |
282 | |
283 " Cyn++ | |
284 au BufNewFile,BufRead *.cyn setf cynpp | |
285 | |
286 " Cynlib | |
287 " .cc and .cpp files can be C++ or Cynlib. | |
288 au BufNewFile,BufRead *.cc | |
289 \ if exists("cynlib_syntax_for_cc")|setf cynlib|else|setf cpp|endif | |
290 au BufNewFile,BufRead *.cpp | |
291 \ if exists("cynlib_syntax_for_cpp")|setf cynlib|else|setf cpp|endif | |
292 | |
293 " C++ | |
2034 | 294 au BufNewFile,BufRead *.cxx,*.c++,*.hh,*.hxx,*.hpp,*.ipp,*.moc,*.tcc,*.inl setf cpp |
7 | 295 if has("fname_case") |
2034 | 296 au BufNewFile,BufRead *.C,*.H setf cpp |
7 | 297 endif |
298 | |
1648 | 299 " .h files can be C, Ch C++, ObjC or ObjC++. |
300 " Set c_syntax_for_h if you want C, ch_syntax_for_h if you want Ch. ObjC is | |
301 " detected automatically. | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
302 au BufNewFile,BufRead *.h call dist#ft#FTheader() |
7 | 303 |
304 " Ch (CHscript) | |
305 au BufNewFile,BufRead *.chf setf ch | |
306 | |
307 " TLH files are C++ headers generated by Visual C++'s #import from typelibs | |
308 au BufNewFile,BufRead *.tlh setf cpp | |
309 | |
310 " Cascading Style Sheets | |
311 au BufNewFile,BufRead *.css setf css | |
312 | |
313 " Century Term Command Scripts (*.cmd too) | |
314 au BufNewFile,BufRead *.con setf cterm | |
315 | |
316 " Changelog | |
809 | 317 au BufNewFile,BufRead changelog.Debian,changelog.dch,NEWS.Debian,NEWS.dch |
318 \ setf debchangelog | |
319 | |
320 au BufNewFile,BufRead [cC]hange[lL]og | |
321 \ if getline(1) =~ '; urgency=' | |
322 \| setf debchangelog | |
323 \| else | |
324 \| setf changelog | |
325 \| endif | |
326 | |
327 au BufNewFile,BufRead NEWS | |
328 \ if getline(1) =~ '; urgency=' | |
329 \| setf debchangelog | |
330 \| endif | |
7 | 331 |
332 " CHILL | |
333 au BufNewFile,BufRead *..ch setf chill | |
334 | |
335 " 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
|
336 au BufNewFile,BufRead *.ch call dist#ft#FTchange() |
7 | 337 |
839 | 338 " ChordPro |
339 au BufNewFile,BufRead *.chopro,*.crd,*.cho,*.crdpro,*.chordpro setf chordpro | |
340 | |
7 | 341 " Clean |
342 au BufNewFile,BufRead *.dcl,*.icl setf clean | |
343 | |
344 " Clever | |
345 au BufNewFile,BufRead *.eni setf cl | |
346 | |
347 " Clever or dtd | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
348 au BufNewFile,BufRead *.ent call dist#ft#FTent() |
7 | 349 |
625 | 350 " Clipper (or FoxPro; could also be eviews) |
7 | 351 au BufNewFile,BufRead *.prg |
352 \ if exists("g:filetype_prg") | | |
353 \ exe "setf " . g:filetype_prg | | |
354 \ else | | |
355 \ setf clipper | | |
356 \ endif | |
357 | |
4098 | 358 " Clojure |
6823 | 359 au BufNewFile,BufRead *.clj,*.cljs,*.cljx,*.cljc setf clojure |
4098 | 360 |
836 | 361 " Cmake |
362 au BufNewFile,BufRead CMakeLists.txt,*.cmake,*.cmake.in setf cmake | |
363 | |
1125 | 364 " Cmusrc |
2788 | 365 au BufNewFile,BufRead */.cmus/{autosave,rc,command-history,*.theme} setf cmusrc |
1125 | 366 au BufNewFile,BufRead */cmus/{rc,*.theme} setf cmusrc |
367 | |
7 | 368 " Cobol |
809 | 369 au BufNewFile,BufRead *.cbl,*.cob,*.lib setf cobol |
370 " cobol or zope form controller python script? (heuristic) | |
371 au BufNewFile,BufRead *.cpy | |
372 \ if getline(1) =~ '^##' | | |
373 \ setf python | | |
374 \ else | | |
375 \ setf cobol | | |
376 \ endif | |
7 | 377 |
1648 | 378 " Coco/R |
379 au BufNewFile,BufRead *.atg setf coco | |
380 | |
7 | 381 " Cold Fusion |
382 au BufNewFile,BufRead *.cfm,*.cfi,*.cfc setf cf | |
383 | |
384 " Configure scripts | |
385 au BufNewFile,BufRead configure.in,configure.ac setf config | |
386 | |
1648 | 387 " CUDA Cumpute Unified Device Architecture |
13125 | 388 au BufNewFile,BufRead *.cu,*.cuh setf cuda |
1648 | 389 |
19263
06d9be5c0107
patch 8.2.0190: Kotlin files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19205
diff
changeset
|
390 " Dockerfile; Podman uses the same syntax with name Containerfile |
18489 | 391 au BufNewFile,BufRead Containerfile,Dockerfile,*.Dockerfile setf dockerfile |
6180 | 392 |
7 | 393 " WildPackets EtherPeek Decoder |
394 au BufNewFile,BufRead *.dcd setf dcd | |
395 | |
396 " Enlightenment configuration files | |
397 au BufNewFile,BufRead *enlightenment/*.cfg setf c | |
398 | |
399 " Eterm | |
400 au BufNewFile,BufRead *Eterm/*.cfg setf eterm | |
401 | |
5692
80e5f9584b02
Update runtime files. Add Euphoria syntax files.
Bram Moolenaar <bram@vim.org>
parents:
5663
diff
changeset
|
402 " Euphoria 3 or 4 |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
403 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
|
404 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
|
405 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
|
406 endif |
80e5f9584b02
Update runtime files. Add Euphoria syntax files.
Bram Moolenaar <bram@vim.org>
parents:
5663
diff
changeset
|
407 |
7 | 408 " Lynx config files |
409 au BufNewFile,BufRead lynx.cfg setf lynx | |
410 | |
411 " Quake | |
412 au BufNewFile,BufRead *baseq[2-3]/*.cfg,*id1/*.cfg setf quake | |
413 au BufNewFile,BufRead *quake[1-3]/*.cfg setf quake | |
414 | |
415 " Quake C | |
416 au BufNewFile,BufRead *.qc setf c | |
417 | |
418 " Configure files | |
419 au BufNewFile,BufRead *.cfg setf cfg | |
420 | |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
421 " Cucumber |
2725 | 422 au BufNewFile,BufRead *.feature setf cucumber |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
423 |
7 | 424 " Communicating Sequential Processes |
425 au BufNewFile,BufRead *.csp,*.fdr setf csp | |
426 | |
427 " CUPL logic description and simulation | |
428 au BufNewFile,BufRead *.pld setf cupl | |
429 au BufNewFile,BufRead *.si setf cuplsim | |
430 | |
18366
c6826a74ad9b
patch 8.1.2177: Dart files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18362
diff
changeset
|
431 " Dart |
c6826a74ad9b
patch 8.1.2177: Dart files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18362
diff
changeset
|
432 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
|
433 |
7 | 434 " Debian Control |
435 au BufNewFile,BufRead */debian/control setf debcontrol | |
1648 | 436 au BufNewFile,BufRead control |
437 \ if getline(1) =~ '^Source:' | |
438 \| setf debcontrol | |
439 \| endif | |
7 | 440 |
13857 | 441 " Debian Copyright |
442 au BufNewFile,BufRead */debian/copyright setf debcopyright | |
443 au BufNewFile,BufRead copyright | |
444 \ if getline(1) =~ '^Format:' | |
445 \| setf debcopyright | |
446 \| endif | |
447 | |
816 | 448 " Debian Sources.list |
2751 | 449 au BufNewFile,BufRead */etc/apt/sources.list setf debsources |
450 au BufNewFile,BufRead */etc/apt/sources.list.d/*.list setf debsources | |
816 | 451 |
1648 | 452 " Deny hosts |
453 au BufNewFile,BufRead denyhosts.conf setf denyhosts | |
454 | |
2788 | 455 " dnsmasq(8) configuration files |
2833 | 456 au BufNewFile,BufRead */etc/dnsmasq.conf setf dnsmasq |
2788 | 457 |
7 | 458 " ROCKLinux package description |
459 au BufNewFile,BufRead *.desc setf desc | |
460 | |
1648 | 461 " the D language or dtrace |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
462 au BufNewFile,BufRead *.d call dist#ft#DtraceCheck() |
7 | 463 |
464 " Desktop files | |
465 au BufNewFile,BufRead *.desktop,.directory setf desktop | |
466 | |
389 | 467 " Dict config |
468 au BufNewFile,BufRead dict.conf,.dictrc setf dictconf | |
469 | |
470 " Dictd config | |
471 au BufNewFile,BufRead dictd.conf setf dictdconf | |
472 | |
7 | 473 " Diff files |
11659
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
474 au BufNewFile,BufRead *.diff,*.rej setf diff |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
475 au BufNewFile,BufRead *.patch |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
476 \ if getline(1) =~ '^From [0-9a-f]\{40\} Mon Sep 17 00:00:00 2001$' | |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
477 \ setf gitsendemail | |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
478 \ else | |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
479 \ setf diff | |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
480 \ endif |
7 | 481 |
482 " Dircolors | |
2751 | 483 au BufNewFile,BufRead .dir_colors,.dircolors,*/etc/DIR_COLORS setf dircolors |
7 | 484 |
485 " Diva (with Skill) or InstallShield | |
486 au BufNewFile,BufRead *.rul | |
487 \ if getline(1).getline(2).getline(3).getline(4).getline(5).getline(6) =~? 'InstallShield' | | |
488 \ setf ishd | | |
489 \ else | | |
490 \ setf diva | | |
491 \ endif | |
492 | |
493 " 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
|
494 au BufNewFile,BufRead *.com call dist#ft#BindzoneCheck('dcl') |
7 | 495 |
496 " DOT | |
19205
861b1cc1a8a2
patch 8.2.0161: not recognizing .gv file as dot filetype
Bram Moolenaar <Bram@vim.org>
parents:
19180
diff
changeset
|
497 au BufNewFile,BufRead *.dot,*.gv setf dot |
7 | 498 |
499 " Dylan - lid files | |
500 au BufNewFile,BufRead *.lid setf dylanlid | |
501 | |
502 " Dylan - intr files (melange) | |
503 au BufNewFile,BufRead *.intr setf dylanintr | |
504 | |
505 " Dylan | |
506 au BufNewFile,BufRead *.dylan setf dylan | |
507 | |
508 " Microsoft Module Definition | |
509 au BufNewFile,BufRead *.def setf def | |
510 | |
511 " Dracula | |
512 au BufNewFile,BufRead *.drac,*.drc,*lvs,*lpe setf dracula | |
513 | |
2467
9c8d603fd4d1
Add Datascript syntax file. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2439
diff
changeset
|
514 " Datascript |
9c8d603fd4d1
Add Datascript syntax file. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2439
diff
changeset
|
515 au BufNewFile,BufRead *.ds setf datascript |
9c8d603fd4d1
Add Datascript syntax file. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2439
diff
changeset
|
516 |
7 | 517 " dsl |
518 au BufNewFile,BufRead *.dsl setf dsl | |
519 | |
520 " DTD (Document Type Definition for XML) | |
521 au BufNewFile,BufRead *.dtd setf dtd | |
522 | |
3847 | 523 " DTS/DSTI (device tree files) |
524 au BufNewFile,BufRead *.dts,*.dtsi setf dts | |
525 | |
10617 | 526 " EDIF (*.edf,*.edif,*.edn,*.edo) or edn |
527 au BufNewFile,BufRead *.ed\(f\|if\|o\) setf edif | |
528 au BufNewFile,BufRead *.edn | |
529 \ if getline(1) =~ '^\s*(\s*edif\>' | | |
530 \ setf edif | | |
531 \ else | | |
532 \ setf clojure | | |
533 \ endif | |
7 | 534 |
10211
b7da8d4c594c
commit https://github.com/vim/vim/commit/d07969093a9b3051511c478d71c36de6fc33c0d6
Christian Brabandt <cb@256bit.org>
parents:
9975
diff
changeset
|
535 " EditorConfig (close enough to dosini) |
b7da8d4c594c
commit https://github.com/vim/vim/commit/d07969093a9b3051511c478d71c36de6fc33c0d6
Christian Brabandt <cb@256bit.org>
parents:
9975
diff
changeset
|
536 au BufNewFile,BufRead .editorconfig setf dosini |
b7da8d4c594c
commit https://github.com/vim/vim/commit/d07969093a9b3051511c478d71c36de6fc33c0d6
Christian Brabandt <cb@256bit.org>
parents:
9975
diff
changeset
|
537 |
7 | 538 " Embedix Component Description |
539 au BufNewFile,BufRead *.ecd setf ecd | |
540 | |
5697 | 541 " 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
|
542 au BufNewFile,BufRead *.e,*.E call dist#ft#FTe() |
7 | 543 |
544 " Elinks configuration | |
545 au BufNewFile,BufRead */etc/elinks.conf,*/.elinks/elinks.conf setf elinks | |
546 | |
1648 | 547 " ERicsson LANGuage; Yaws is erlang too |
1668 | 548 au BufNewFile,BufRead *.erl,*.hrl,*.yaws setf erlang |
7 | 549 |
550 " Elm Filter Rules file | |
551 au BufNewFile,BufRead filter-rules setf elmfilt | |
552 | |
168 | 553 " ESMTP rc file |
554 au BufNewFile,BufRead *esmtprc setf esmtprc | |
555 | |
7 | 556 " ESQL-C |
557 au BufNewFile,BufRead *.ec,*.EC setf esqlc | |
558 | |
278 | 559 " Esterel |
560 au BufNewFile,BufRead *.strl setf esterel | |
561 | |
7 | 562 " Essbase script |
563 au BufNewFile,BufRead *.csc setf csc | |
564 | |
565 " Exim | |
566 au BufNewFile,BufRead exim.conf setf exim | |
567 | |
568 " Expect | |
569 au BufNewFile,BufRead *.exp setf expect | |
570 | |
571 " Exports | |
572 au BufNewFile,BufRead exports setf exports | |
573 | |
2596 | 574 " Falcon |
2725 | 575 au BufNewFile,BufRead *.fal setf falcon |
2596 | 576 |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2202
diff
changeset
|
577 " Fantom |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2202
diff
changeset
|
578 au BufNewFile,BufRead *.fan,*.fwt setf fan |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2202
diff
changeset
|
579 |
333 | 580 " Factor |
581 au BufNewFile,BufRead *.factor setf factor | |
582 | |
7 | 583 " Fetchmail RC file |
584 au BufNewFile,BufRead .fetchmailrc setf fetchmail | |
585 | |
2034 | 586 " FlexWiki - disabled, because it has side effects when a .wiki file |
587 " is not actually FlexWiki | |
588 "au BufNewFile,BufRead *.wiki setf flexwiki | |
846 | 589 |
7 | 590 " Focus Executable |
591 au BufNewFile,BufRead *.fex,*.focexec setf focexec | |
592 | |
593 " Focus Master file (but not for auto.master) | |
594 au BufNewFile,BufRead auto.master setf conf | |
595 au BufNewFile,BufRead *.mas,*.master setf master | |
596 | |
597 " Forth | |
14519 | 598 au BufNewFile,BufRead *.fs,*.ft,*.fth setf forth |
7 | 599 |
1648 | 600 " Reva Forth |
601 au BufNewFile,BufRead *.frt setf reva | |
602 | |
7 | 603 " Fortran |
1125 | 604 if has("fname_case") |
2478
11def19fbb0e
Recognize .f03 and .f08 as Fortran files. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2467
diff
changeset
|
605 au BufNewFile,BufRead *.F,*.FOR,*.FPP,*.FTN,*.F77,*.F90,*.F95,*.F03,*.F08 setf fortran |
1125 | 606 endif |
2478
11def19fbb0e
Recognize .f03 and .f08 as Fortran files. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2467
diff
changeset
|
607 au BufNewFile,BufRead *.f,*.for,*.fortran,*.fpp,*.ftn,*.f77,*.f90,*.f95,*.f03,*.f08 setf fortran |
7 | 608 |
1698 | 609 " Framescript |
610 au BufNewFile,BufRead *.fsl setf framescript | |
611 | |
7 | 612 " FStab |
819 | 613 au BufNewFile,BufRead fstab,mtab setf fstab |
7 | 614 |
615 " GDB command files | |
616 au BufNewFile,BufRead .gdbinit setf gdb | |
617 | |
618 " GDMO | |
619 au BufNewFile,BufRead *.mo,*.gdmo setf gdmo | |
620 | |
621 " Gedcom | |
2034 | 622 au BufNewFile,BufRead *.ged,lltxxxxx.txt setf gedcom |
7 | 623 |
1648 | 624 " Git |
14974
f8e6b4f82086
patch 8.1.0498: /etc/gitconfig not recognized at a gitconfig file
Bram Moolenaar <Bram@vim.org>
parents:
14946
diff
changeset
|
625 au BufNewFile,BufRead COMMIT_EDITMSG,MERGE_MSG,TAG_EDITMSG setf gitcommit |
f8e6b4f82086
patch 8.1.0498: /etc/gitconfig not recognized at a gitconfig file
Bram Moolenaar <Bram@vim.org>
parents:
14946
diff
changeset
|
626 au BufNewFile,BufRead *.git/config,.gitconfig,/etc/gitconfig setf gitconfig |
f8e6b4f82086
patch 8.1.0498: /etc/gitconfig not recognized at a gitconfig file
Bram Moolenaar <Bram@vim.org>
parents:
14946
diff
changeset
|
627 au BufNewFile,BufRead */.config/git/config setf gitconfig |
f8e6b4f82086
patch 8.1.0498: /etc/gitconfig not recognized at a gitconfig file
Bram Moolenaar <Bram@vim.org>
parents:
14946
diff
changeset
|
628 au BufNewFile,BufRead .gitmodules,*.git/modules/*/config setf gitconfig |
6336 | 629 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
|
630 au BufNewFile,BufRead $XDG_CONFIG_HOME/git/config setf gitconfig |
6336 | 631 endif |
4229 | 632 au BufNewFile,BufRead git-rebase-todo setf gitrebase |
11659
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
633 au BufRead,BufNewFile .gitsendemail.msg.?????? setf gitsendemail |
2788 | 634 au BufNewFile,BufRead .msg.[0-9]* |
1648 | 635 \ if getline(1) =~ '^From.*# This line is ignored.$' | |
636 \ setf gitsendemail | | |
637 \ endif | |
5277 | 638 au BufNewFile,BufRead *.git/* |
1648 | 639 \ if getline(1) =~ '^\x\{40\}\>\|^ref: ' | |
640 \ setf git | | |
641 \ endif | |
642 | |
7 | 643 " Gkrellmrc |
644 au BufNewFile,BufRead gkrellmrc,gkrellmrc_? setf gkrellmrc | |
645 | |
646 " GP scripts (2.0 and onward) | |
827 | 647 au BufNewFile,BufRead *.gp,.gprc setf gp |
7 | 648 |
649 " GPG | |
650 au BufNewFile,BufRead */.gnupg/options setf gpg | |
651 au BufNewFile,BufRead */.gnupg/gpg.conf setf gpg | |
5277 | 652 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
|
653 if !empty($GNUPGHOME) |
584c835a2de1
commit https://github.com/vim/vim/commit/50ba526fbf3e9e5e0e6b0b3086a4d5df581ebc7e
Christian Brabandt <cb@256bit.org>
parents:
10211
diff
changeset
|
654 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
|
655 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
|
656 endif |
2788 | 657 |
658 " gnash(1) configuration files | |
659 au BufNewFile,BufRead gnashrc,.gnashrc,gnashpluginrc,.gnashpluginrc setf gnash | |
7 | 660 |
3153 | 661 " Gitolite |
662 au BufNewFile,BufRead gitolite.conf setf gitolite | |
4229 | 663 au BufNewFile,BufRead {,.}gitolite.rc,example.gitolite.rc setf perl |
3153 | 664 |
7 | 665 " Gnuplot scripts |
666 au BufNewFile,BufRead *.gpi setf gnuplot | |
667 | |
6153 | 668 " Go (Google) |
669 au BufNewFile,BufRead *.go setf go | |
670 | |
7 | 671 " GrADS scripts |
672 au BufNewFile,BufRead *.gs setf grads | |
673 | |
625 | 674 " Gretl |
675 au BufNewFile,BufRead *.gretl setf gretl | |
676 | |
7 | 677 " Groovy |
7147
c590de398af9
commit https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
678 au BufNewFile,BufRead *.gradle,*.groovy setf groovy |
7 | 679 |
680 " GNU Server Pages | |
681 au BufNewFile,BufRead *.gsp setf gsp | |
682 | |
389 | 683 " Group file |
2751 | 684 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 | 685 |
7 | 686 " GTK RC |
687 au BufNewFile,BufRead .gtkrc,gtkrc setf gtkrc | |
688 | |
1668 | 689 " Haml |
690 au BufNewFile,BufRead *.haml setf haml | |
691 | |
1125 | 692 " Hamster Classic | Playground files |
693 au BufNewFile,BufRead *.hsc,*.hsm setf hamster | |
694 | |
7 | 695 " Haskell |
2725 | 696 au BufNewFile,BufRead *.hs,*.hs-boot setf haskell |
7 | 697 au BufNewFile,BufRead *.lhs setf lhaskell |
698 au BufNewFile,BufRead *.chs setf chaskell | |
699 | |
1648 | 700 " Haste |
701 au BufNewFile,BufRead *.ht setf haste | |
1668 | 702 au BufNewFile,BufRead *.htpp setf hastepreproc |
1648 | 703 |
7 | 704 " Hercules |
10319
169a62d5bcb9
commit https://github.com/vim/vim/commit/b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59
Christian Brabandt <cb@256bit.org>
parents:
10301
diff
changeset
|
705 au BufNewFile,BufRead *.vc,*.ev,*.sum,*.errsum setf hercules |
7 | 706 |
707 " HEX (Intel) | |
708 au BufNewFile,BufRead *.hex,*.h32 setf hex | |
709 | |
17758 | 710 " Hollywood |
711 au BufRead,BufNewFile *.hws setf hollywood | |
712 | |
7 | 713 " Tilde (must be before HTML) |
714 au BufNewFile,BufRead *.t.html setf tilde | |
715 | |
497 | 716 " 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
|
717 au BufNewFile,BufRead *.html,*.htm,*.shtml,*.stm call dist#ft#FThtml() |
7 | 718 |
497 | 719 " HTML with Ruby - eRuby |
1219 | 720 au BufNewFile,BufRead *.erb,*.rhtml setf eruby |
7 | 721 |
722 " HTML with M4 | |
723 au BufNewFile,BufRead *.html.m4 setf htmlm4 | |
724 | |
16562
a6c073fa99e1
patch 8.1.1284: detecting *.tmpl as htmlcheetah is outdated
Bram Moolenaar <Bram@vim.org>
parents:
16364
diff
changeset
|
725 " 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
|
726 au BufNewFile,BufRead *.tmpl setf template |
7 | 727 |
1648 | 728 " Host config |
2751 | 729 au BufNewFile,BufRead */etc/host.conf setf hostconf |
1648 | 730 |
1676 | 731 " Hosts access |
2751 | 732 au BufNewFile,BufRead */etc/hosts.allow,*/etc/hosts.deny setf hostsaccess |
1676 | 733 |
7 | 734 " Hyper Builder |
735 au BufNewFile,BufRead *.hb setf hb | |
736 | |
4869 | 737 " Httest |
738 au BufNewFile,BufRead *.htt,*.htb setf httest | |
739 | |
7 | 740 " Icon |
741 au BufNewFile,BufRead *.icn setf icon | |
742 | |
743 " 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
|
744 au BufNewFile,BufRead *.idl call dist#ft#FTidl() |
7 | 745 |
746 " Microsoft IDL (Interface Description Language) Also *.idl | |
747 " MOF = WMI (Windows Management Instrumentation) Managed Object Format | |
748 au BufNewFile,BufRead *.odl,*.mof setf msidl | |
749 | |
750 " Icewm menu | |
751 au BufNewFile,BufRead */.icewm/menu setf icemenu | |
752 | |
1219 | 753 " Indent profile (must come before IDL *.pro!) |
754 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
|
755 au BufNewFile,BufRead indent.pro call dist#ft#ProtoCheck('indent') |
1219 | 756 |
7 | 757 " 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
|
758 au BufNewFile,BufRead *.pro call dist#ft#ProtoCheck('idlang') |
7 | 759 |
389 | 760 " Indent RC |
1676 | 761 au BufNewFile,BufRead indentrc setf indent |
389 | 762 |
7 | 763 " Inform |
764 au BufNewFile,BufRead *.inf,*.INF setf inform | |
765 | |
1125 | 766 " Initng |
5277 | 767 au BufNewFile,BufRead */etc/initng/*/*.i,*.ii setf initng |
1125 | 768 |
4992 | 769 " Innovation Data Processing |
5277 | 770 au BufRead,BufNewFile upstream.dat\c,upstream.*.dat\c,*.upstream.dat\c setf upstreamdat |
11442 | 771 au BufRead,BufNewFile fdrupstream.log,upstream.log\c,upstream.*.log\c,*.upstream.log\c,UPSTREAM-*.log\c setf upstreamlog |
5277 | 772 au BufRead,BufNewFile upstreaminstall.log\c,upstreaminstall.*.log\c,*.upstreaminstall.log\c setf upstreaminstalllog |
773 au BufRead,BufNewFile usserver.log\c,usserver.*.log\c,*.usserver.log\c setf usserverlog | |
774 au BufRead,BufNewFile usw2kagt.log\c,usw2kagt.*.log\c,*.usw2kagt.log\c setf usw2kagtlog | |
4992 | 775 |
148 | 776 " Ipfilter |
1125 | 777 au BufNewFile,BufRead ipf.conf,ipf6.conf,ipf.rules setf ipfilter |
148 | 778 |
7 | 779 " Informix 4GL (source - canonical, include file, I4GL+M4 preproc.) |
780 au BufNewFile,BufRead *.4gl,*.4gh,*.m4gl setf fgl | |
781 | |
782 " .INI file for MSDOS | |
783 au BufNewFile,BufRead *.ini setf dosini | |
784 | |
785 " SysV Inittab | |
786 au BufNewFile,BufRead inittab setf inittab | |
787 | |
788 " Inno Setup | |
789 au BufNewFile,BufRead *.iss setf iss | |
790 | |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
791 " J |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
792 au BufNewFile,BufRead *.ijs setf j |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
793 |
7 | 794 " JAL |
795 au BufNewFile,BufRead *.jal,*.JAL setf jal | |
796 | |
797 " Jam | |
798 au BufNewFile,BufRead *.jpl,*.jpr setf jam | |
799 | |
800 " Java | |
801 au BufNewFile,BufRead *.java,*.jav setf java | |
802 | |
803 " JavaCC | |
804 au BufNewFile,BufRead *.jj,*.jjt setf javacc | |
805 | |
18707
e190e64d253b
patch 8.1.2345: .cjs files are not recognized as Javascript
Bram Moolenaar <Bram@vim.org>
parents:
18489
diff
changeset
|
806 " JavaScript, ECMAScript, ES module script, CommonJS script |
e190e64d253b
patch 8.1.2345: .cjs files are not recognized as Javascript
Bram Moolenaar <Bram@vim.org>
parents:
18489
diff
changeset
|
807 au BufNewFile,BufRead *.js,*.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
|
808 |
180fb9981255
patch 8.1.1930: cannot recognize .jsx and .tsx files
Bram Moolenaar <Bram@vim.org>
parents:
17758
diff
changeset
|
809 " JavaScript with React |
180fb9981255
patch 8.1.1930: cannot recognize .jsx and .tsx files
Bram Moolenaar <Bram@vim.org>
parents:
17758
diff
changeset
|
810 au BufNewFile,BufRead *.jsx setf javascriptreact |
7 | 811 |
812 " Java Server Pages | |
813 au BufNewFile,BufRead *.jsp setf jsp | |
814 | |
815 " Java Properties resource file (note: doesn't catch font.properties.pl) | |
216 | 816 au BufNewFile,BufRead *.properties,*.properties_??,*.properties_??_?? setf jproperties |
7 | 817 |
818 " Jess | |
819 au BufNewFile,BufRead *.clp setf jess | |
820 | |
821 " Jgraph | |
822 au BufNewFile,BufRead *.jgr setf jgraph | |
823 | |
2908 | 824 " Jovial |
825 au BufNewFile,BufRead *.jov,*.j73,*.jovial setf jovial | |
826 | |
6070
32a77cc160d9
Update runtime files. Make matchparen plugin backwards compatible.
Bram Moolenaar <bram@vim.org>
parents:
6051
diff
changeset
|
827 " JSON |
9407
619a98a67f67
commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents:
9041
diff
changeset
|
828 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
|
829 |
7 | 830 " Kixtart |
831 au BufNewFile,BufRead *.kix setf kix | |
832 | |
833 " Kimwitu[++] | |
834 au BufNewFile,BufRead *.k setf kwt | |
835 | |
5968 | 836 " Kivy |
837 au BufNewFile,BufRead *.kv setf kivy | |
838 | |
19263
06d9be5c0107
patch 8.2.0190: Kotlin files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19205
diff
changeset
|
839 " Kotlin |
06d9be5c0107
patch 8.2.0190: Kotlin files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19205
diff
changeset
|
840 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
|
841 |
7 | 842 " KDE script |
843 au BufNewFile,BufRead *.ks setf kscript | |
844 | |
826 | 845 " Kconfig |
846 au BufNewFile,BufRead Kconfig,Kconfig.debug setf kconfig | |
847 | |
7 | 848 " Lace (ISE) |
849 au BufNewFile,BufRead *.ace,*.ACE setf lace | |
850 | |
851 " Latte | |
852 au BufNewFile,BufRead *.latte,*.lte setf latte | |
853 | |
375 | 854 " Limits |
2751 | 855 au BufNewFile,BufRead */etc/limits,*/etc/*limits.conf,*/etc/*limits.d/*.conf setf limits |
375 | 856 |
7 | 857 " LambdaProlog (*.mod too, see Modsim) |
858 au BufNewFile,BufRead *.sig setf lprolog | |
859 | |
860 " LDAP LDIF | |
861 au BufNewFile,BufRead *.ldif setf ldif | |
862 | |
375 | 863 " Ld loader |
864 au BufNewFile,BufRead *.ld setf ld | |
865 | |
6476 | 866 " Less |
867 au BufNewFile,BufRead *.less setf less | |
868 | |
7 | 869 " Lex |
5697 | 870 au BufNewFile,BufRead *.lex,*.l,*.lxx,*.l++ setf lex |
7 | 871 |
872 " Libao | |
2751 | 873 au BufNewFile,BufRead */etc/libao.conf,*/.libao setf libao |
7 | 874 |
389 | 875 " Libsensors |
2751 | 876 au BufNewFile,BufRead */etc/sensors.conf,*/etc/sensors3.conf setf sensors |
389 | 877 |
7 | 878 " LFTP |
879 au BufNewFile,BufRead lftp.conf,.lftprc,*lftp/rc setf lftp | |
880 | |
881 " Lifelines (or Lex for C++!) | |
882 au BufNewFile,BufRead *.ll setf lifelines | |
883 | |
884 " Lilo: Linux loader | |
2788 | 885 au BufNewFile,BufRead lilo.conf setf lilo |
7 | 886 |
887 " Lisp (*.el = ELisp, *.cl = Common Lisp, *.jl = librep Lisp) | |
888 if has("fname_case") | |
889 au BufNewFile,BufRead *.lsp,*.lisp,*.el,*.cl,*.jl,*.L,.emacs,.sawfishrc setf lisp | |
890 else | |
891 au BufNewFile,BufRead *.lsp,*.lisp,*.el,*.cl,*.jl,.emacs,.sawfishrc setf lisp | |
892 endif | |
893 | |
375 | 894 " SBCL implementation of Common Lisp |
895 au BufNewFile,BufRead sbclrc,.sbclrc setf lisp | |
896 | |
2202 | 897 " Liquid |
898 au BufNewFile,BufRead *.liquid setf liquid | |
899 | |
7 | 900 " Lite |
901 au BufNewFile,BufRead *.lite,*.lt setf lite | |
902 | |
1219 | 903 " LiteStep RC files |
904 au BufNewFile,BufRead */LiteStep/*/*.rc setf litestep | |
905 | |
375 | 906 " Login access |
2751 | 907 au BufNewFile,BufRead */etc/login.access setf loginaccess |
375 | 908 |
909 " Login defs | |
2751 | 910 au BufNewFile,BufRead */etc/login.defs setf logindefs |
375 | 911 |
7 | 912 " Logtalk |
913 au BufNewFile,BufRead *.lgt setf logtalk | |
914 | |
915 " LOTOS | |
916 au BufNewFile,BufRead *.lot,*.lotos setf lotos | |
917 | |
918 " Lout (also: *.lt) | |
919 au BufNewFile,BufRead *.lou,*.lout setf lout | |
920 | |
921 " Lua | |
922 au BufNewFile,BufRead *.lua setf lua | |
923 | |
6213 | 924 " Luarocks |
925 au BufNewFile,BufRead *.rockspec setf lua | |
926 | |
1648 | 927 " Linden Scripting Language (Second Life) |
928 au BufNewFile,BufRead *.lsl setf lsl | |
929 | |
7 | 930 " Lynx style file (or LotusScript!) |
931 au BufNewFile,BufRead *.lss setf lss | |
932 | |
933 " M4 | |
934 au BufNewFile,BufRead *.m4 | |
935 \ if expand("<afile>") !~? 'html.m4$\|fvwm2rc' | setf m4 | endif | |
936 | |
937 " MaGic Point | |
938 au BufNewFile,BufRead *.mgp setf mgp | |
939 | |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
940 " Mail (for Elm, trn, mutt, muttng, rn, slrn, neomutt) |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
941 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 | 942 |
809 | 943 " Mail aliases |
2751 | 944 au BufNewFile,BufRead */etc/mail/aliases,*/etc/aliases setf mailaliases |
809 | 945 |
7 | 946 " Mailcap configuration file |
947 au BufNewFile,BufRead .mailcap,mailcap setf mailcap | |
948 | |
949 " Makefile | |
950 au BufNewFile,BufRead *[mM]akefile,*.mk,*.mak,*.dsp setf make | |
951 | |
952 " MakeIndex | |
953 au BufNewFile,BufRead *.ist,*.mst setf ist | |
954 | |
4119 | 955 " Mallard |
956 au BufNewFile,BufRead *.page setf mallard | |
957 | |
7 | 958 " Manpage |
959 au BufNewFile,BufRead *.man setf man | |
960 | |
389 | 961 " Man config |
2751 | 962 au BufNewFile,BufRead */etc/man.conf,man.config setf manconf |
389 | 963 |
7 | 964 " Maple V |
965 au BufNewFile,BufRead *.mv,*.mpl,*.mws setf maple | |
966 | |
1668 | 967 " Map (UMN mapserver config file) |
968 au BufNewFile,BufRead *.map setf map | |
969 | |
2202 | 970 " Markdown |
6292
31f7581068a9
Update runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
6213
diff
changeset
|
971 au BufNewFile,BufRead *.markdown,*.mdown,*.mkd,*.mkdn,*.mdwn,*.md setf markdown |
2202 | 972 |
7 | 973 " Mason |
6153 | 974 au BufNewFile,BufRead *.mason,*.mhtml,*.comp setf mason |
7 | 975 |
11459
561b76ed9d12
patch 8.0.0613: the conf filetype is used before ftdetect from packages
Christian Brabandt <cb@256bit.org>
parents:
11442
diff
changeset
|
976 " Mathematica, Matlab, Murphi or Objective C |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
977 au BufNewFile,BufRead *.m call dist#ft#FTm() |
7 | 978 |
1648 | 979 " Mathematica notebook |
980 au BufNewFile,BufRead *.nb setf mma | |
981 | |
7 | 982 " Maya Extension Language |
983 au BufNewFile,BufRead *.mel setf mel | |
984 | |
3750 | 985 " Mercurial (hg) commit file |
986 au BufNewFile,BufRead hg-editor-*.txt setf hgcommit | |
987 | |
2034 | 988 " Mercurial config (looks like generic config file) |
989 au BufNewFile,BufRead *.hgrc,*hgrc setf cfg | |
990 | |
18362
8144f89e6f28
patch 8.1.2175: meson files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18343
diff
changeset
|
991 " Meson Build system config |
8144f89e6f28
patch 8.1.2175: meson files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18343
diff
changeset
|
992 au BufNewFile,BufRead meson.build,meson_options.txt setf meson |
8144f89e6f28
patch 8.1.2175: meson files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18343
diff
changeset
|
993 |
2709 | 994 " Messages (logs mostly) |
2788 | 995 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 | 996 |
7 | 997 " Metafont |
998 au BufNewFile,BufRead *.mf setf mf | |
999 | |
1000 " MetaPost | |
1001 au BufNewFile,BufRead *.mp setf mp | |
1002 | |
683 | 1003 " MGL |
1004 au BufNewFile,BufRead *.mgl setf mgl | |
1005 | |
5487 | 1006 " MIX - Knuth assembly |
1007 au BufNewFile,BufRead *.mix,*.mixal setf mix | |
1008 | |
7 | 1009 " 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
|
1010 au BufNewFile,BufRead *.mms call dist#ft#FTmms() |
7 | 1011 |
1648 | 1012 " Symbian meta-makefile definition (MMP) |
1013 au BufNewFile,BufRead *.mmp setf mmp | |
1014 | |
7 | 1015 " Modsim III (or LambdaProlog) |
1016 au BufNewFile,BufRead *.mod | |
1017 \ if getline(1) =~ '\<module\>' | | |
1018 \ setf lprolog | | |
1019 \ else | | |
1020 \ setf modsim3 | | |
1021 \ endif | |
1022 | |
6292
31f7581068a9
Update runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
6213
diff
changeset
|
1023 " Modula 2 (.md removed in favor of Markdown) |
31f7581068a9
Update runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
6213
diff
changeset
|
1024 au BufNewFile,BufRead *.m2,*.DEF,*.MOD,*.mi setf modula2 |
7 | 1025 |
1026 " Modula 3 (.m3, .i3, .mg, .ig) | |
1027 au BufNewFile,BufRead *.[mi][3g] setf modula3 | |
1028 | |
1029 " Monk | |
1030 au BufNewFile,BufRead *.isc,*.monk,*.ssc,*.tsc setf monk | |
1031 | |
1032 " MOO | |
1033 au BufNewFile,BufRead *.moo setf moo | |
1034 | |
1035 " Modconf | |
2788 | 1036 au BufNewFile,BufRead */etc/modules.conf,*/etc/modules,*/etc/conf.modules setf modconf |
7 | 1037 |
1038 " Mplayer config | |
1039 au BufNewFile,BufRead mplayer.conf,*/.mplayer/config setf mplayerconf | |
1040 | |
6697 | 1041 " Motorola S record |
1042 au BufNewFile,BufRead *.s19,*.s28,*.s37,*.mot,*.srec setf srec | |
7 | 1043 |
846 | 1044 " Mrxvtrc |
1045 au BufNewFile,BufRead mrxvtrc,.mrxvtrc setf mrxvtrc | |
1046 | |
7 | 1047 " Msql |
1048 au BufNewFile,BufRead *.msql setf msql | |
1049 | |
1050 " Mysql | |
1051 au BufNewFile,BufRead *.mysql setf mysql | |
1052 | |
2788 | 1053 " Mutt setup files (must be before catch *.rc) |
1054 au BufNewFile,BufRead */etc/Muttrc.d/* call s:StarSetf('muttrc') | |
1055 | |
7 | 1056 " M$ Resource files |
3682 | 1057 au BufNewFile,BufRead *.rc,*.rch setf rc |
7 | 1058 |
12 | 1059 " MuPAD source |
1060 au BufRead,BufNewFile *.mu setf mupad | |
1061 | |
7 | 1062 " Mush |
1063 au BufNewFile,BufRead *.mush setf mush | |
1064 | |
1125 | 1065 " Mutt setup file (also for Muttng) |
1648 | 1066 au BufNewFile,BufRead Mutt{ng,}rc setf muttrc |
7 | 1067 |
12052
7eb512f2a896
patch 8.0.0906: don't recognize Couchbase files
Christian Brabandt <cb@256bit.org>
parents:
12027
diff
changeset
|
1068 " N1QL |
7eb512f2a896
patch 8.0.0906: don't recognize Couchbase files
Christian Brabandt <cb@256bit.org>
parents:
12027
diff
changeset
|
1069 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
|
1070 |
389 | 1071 " Nano |
6741 | 1072 au BufNewFile,BufRead */etc/nanorc,*.nanorc setf nanorc |
389 | 1073 |
7 | 1074 " Nastran input/DMAP |
1075 "au BufNewFile,BufRead *.dat setf nastran | |
1076 | |
1077 " Natural | |
1078 au BufNewFile,BufRead *.NS[ACGLMNPS] setf natural | |
1079 | |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1080 " Noemutt setup file |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1081 au BufNewFile,BufRead Neomuttrc setf neomuttrc |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1082 |
39 | 1083 " Netrc |
1084 au BufNewFile,BufRead .netrc setf netrc | |
1085 | |
3256 | 1086 " Ninja file |
1087 au BufNewFile,BufRead *.ninja setf ninja | |
1088 | |
7 | 1089 " Novell netware batch files |
1090 au BufNewFile,BufRead *.ncf setf ncf | |
1091 | |
1092 " Nroff/Troff (*.ms and *.t are checked below) | |
1093 au BufNewFile,BufRead *.me | |
1094 \ if expand("<afile>") != "read.me" && expand("<afile>") != "click.me" | | |
1095 \ setf nroff | | |
1096 \ endif | |
1097 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
|
1098 au BufNewFile,BufRead *.[1-9] call dist#ft#FTnroff() |
7 | 1099 |
1100 " 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
|
1101 au BufNewFile,BufRead *.mm call dist#ft#FTmm() |
7 | 1102 |
1103 " Not Quite C | |
1104 au BufNewFile,BufRead *.nqc setf nqc | |
1105 | |
11160 | 1106 " NSE - Nmap Script Engine - uses Lua syntax |
1107 au BufNewFile,BufRead *.nse setf lua | |
1108 | |
7 | 1109 " NSIS |
3492 | 1110 au BufNewFile,BufRead *.nsi,*.nsh setf nsis |
7 | 1111 |
1112 " OCAML | |
3312 | 1113 au BufNewFile,BufRead *.ml,*.mli,*.mll,*.mly,.ocamlinit setf ocaml |
7 | 1114 |
1115 " Occam | |
1116 au BufNewFile,BufRead *.occ setf occam | |
1117 | |
1118 " Omnimark | |
1119 au BufNewFile,BufRead *.xom,*.xin setf omnimark | |
1120 | |
1121 " OpenROAD | |
1122 au BufNewFile,BufRead *.or setf openroad | |
1123 | |
1124 " OPL | |
1125 au BufNewFile,BufRead *.[Oo][Pp][Ll] setf opl | |
1126 | |
1127 " Oracle config file | |
1128 au BufNewFile,BufRead *.ora setf ora | |
1129 | |
1130 " Packet filter conf | |
1131 au BufNewFile,BufRead pf.conf setf pf | |
1132 | |
375 | 1133 " Pam conf |
2751 | 1134 au BufNewFile,BufRead */etc/pam.conf setf pamconf |
375 | 1135 |
7 | 1136 " PApp |
1137 au BufNewFile,BufRead *.papp,*.pxml,*.pxsl setf papp | |
1138 | |
389 | 1139 " Password file |
2751 | 1140 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 | 1141 |
7 | 1142 " Pascal (also *.p) |
1143 au BufNewFile,BufRead *.pas setf pascal | |
1144 | |
1145 " Delphi project file | |
1146 au BufNewFile,BufRead *.dpr setf pascal | |
1147 | |
1648 | 1148 " PDF |
1149 au BufNewFile,BufRead *.pdf setf pdf | |
1150 | |
14991
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
1151 " PCMK - HAE - crm configure edit |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1152 au BufNewFile,BufRead *.pcmk setf pcmk |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1153 |
7 | 1154 " Perl |
1155 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
|
1156 au BufNewFile,BufRead *.pl,*.PL call dist#ft#FTpl() |
7 | 1157 else |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1158 au BufNewFile,BufRead *.pl call dist#ft#FTpl() |
7 | 1159 endif |
11442 | 1160 au BufNewFile,BufRead *.plx,*.al,*.psgi setf perl |
7299
e31e803a2910
commit https://github.com/vim/vim/commit/3b8fcd945c5f0ee104eaabcf969fb6f973e79c77
Christian Brabandt <cb@256bit.org>
parents:
7176
diff
changeset
|
1161 au BufNewFile,BufRead *.p6,*.pm6,*.pl6 setf perl6 |
7 | 1162 |
1163 " Perl, XPM or XPM2 | |
1164 au BufNewFile,BufRead *.pm | |
1165 \ if getline(1) =~ "XPM2" | | |
1166 \ setf xpm2 | | |
1167 \ elseif getline(1) =~ "XPM" | | |
1168 \ setf xpm | | |
1169 \ else | | |
1170 \ setf perl | | |
1171 \ endif | |
1172 | |
1173 " Perl POD | |
1174 au BufNewFile,BufRead *.pod setf pod | |
7299
e31e803a2910
commit https://github.com/vim/vim/commit/3b8fcd945c5f0ee104eaabcf969fb6f973e79c77
Christian Brabandt <cb@256bit.org>
parents:
7176
diff
changeset
|
1175 au BufNewFile,BufRead *.pod6 setf pod6 |
7 | 1176 |
850 | 1177 " Php, php3, php4, etc. |
1648 | 1178 " Also Phtml (was used for PHP 2 in the past) |
1179 " Also .ctp for Cake template file | |
1180 au BufNewFile,BufRead *.php,*.php\d,*.phtml,*.ctp setf php | |
7 | 1181 |
13125 | 1182 " Pike and Cmod |
1183 au BufNewFile,BufRead *.pike,*.pmod setf pike | |
1184 au BufNewFile,BufRead *.cmod setf cmod | |
7 | 1185 |
1186 " Pinfo config | |
1187 au BufNewFile,BufRead */etc/pinforc,*/.pinforc setf pinfo | |
1188 | |
1189 " Palm Resource compiler | |
1190 au BufNewFile,BufRead *.rcp setf pilrc | |
1191 | |
1192 " Pine config | |
1193 au BufNewFile,BufRead .pinerc,pinerc,.pinercex,pinercex setf pine | |
1194 | |
16364
db8f57e3e9f5
patch 8.1.1187: cannot recognize Pipfile
Bram Moolenaar <Bram@vim.org>
parents:
16344
diff
changeset
|
1195 " Pipenv Pipfiles |
db8f57e3e9f5
patch 8.1.1187: cannot recognize Pipfile
Bram Moolenaar <Bram@vim.org>
parents:
16344
diff
changeset
|
1196 au BufNewFile,BufRead Pipfile setf config |
db8f57e3e9f5
patch 8.1.1187: cannot recognize Pipfile
Bram Moolenaar <Bram@vim.org>
parents:
16344
diff
changeset
|
1197 au BufNewFile,BufRead Pipfile.lock setf json |
db8f57e3e9f5
patch 8.1.1187: cannot recognize Pipfile
Bram Moolenaar <Bram@vim.org>
parents:
16344
diff
changeset
|
1198 |
5239 | 1199 " PL/1, PL/I |
1200 au BufNewFile,BufRead *.pli,*.pl1 setf pli | |
1201 | |
7 | 1202 " PL/M (also: *.inp) |
1203 au BufNewFile,BufRead *.plm,*.p36,*.pac setf plm | |
1204 | |
1205 " PL/SQL | |
1206 au BufNewFile,BufRead *.pls,*.plsql setf plsql | |
1207 | |
1208 " PLP | |
1209 au BufNewFile,BufRead *.plp setf plp | |
1210 | |
1211 " PO and PO template (GNU gettext) | |
1212 au BufNewFile,BufRead *.po,*.pot setf po | |
1213 | |
1214 " Postfix main config | |
1215 au BufNewFile,BufRead main.cf setf pfmain | |
1216 | |
1217 " PostScript (+ font files, encapsulated PostScript, Adobe Illustrator) | |
1218 au BufNewFile,BufRead *.ps,*.pfa,*.afm,*.eps,*.epsf,*.epsi,*.ai setf postscr | |
1219 | |
1220 " PostScript Printer Description | |
1221 au BufNewFile,BufRead *.ppd setf ppd | |
1222 | |
1223 " Povray | |
1224 au BufNewFile,BufRead *.pov setf pov | |
1225 | |
1226 " Povray configuration | |
1227 au BufNewFile,BufRead .povrayrc setf povini | |
1228 | |
1229 " Povray, PHP or assembly | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1230 au BufNewFile,BufRead *.inc call dist#ft#FTinc() |
7 | 1231 |
1232 " Printcap and Termcap | |
1233 au BufNewFile,BufRead *printcap | |
1234 \ let b:ptcap_type = "print" | setf ptcap | |
1235 au BufNewFile,BufRead *termcap | |
1236 \ let b:ptcap_type = "term" | setf ptcap | |
1237 | |
1238 " PCCTS / ANTRL | |
1239 "au BufNewFile,BufRead *.g setf antrl | |
1240 au BufNewFile,BufRead *.g setf pccts | |
1241 | |
1242 " PPWizard | |
1243 au BufNewFile,BufRead *.it,*.ih setf ppwiz | |
1244 | |
2152 | 1245 " Obj 3D file format |
1246 " TODO: is there a way to avoid MS-Windows Object files? | |
2725 | 1247 au BufNewFile,BufRead *.obj setf obj |
2152 | 1248 |
7 | 1249 " Oracle Pro*C/C++ |
1287 | 1250 au BufNewFile,BufRead *.pc setf proc |
7 | 1251 |
1125 | 1252 " Privoxy actions file |
1253 au BufNewFile,BufRead *.action setf privoxy | |
1254 | |
7 | 1255 " Procmail |
1256 au BufNewFile,BufRead .procmail,.procmailrc setf procmail | |
1257 | |
1258 " Progress or CWEB | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1259 au BufNewFile,BufRead *.w call dist#ft#FTprogress_cweb() |
7 | 1260 |
1261 " Progress or assembly | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1262 au BufNewFile,BufRead *.i call dist#ft#FTprogress_asm() |
7 | 1263 |
1264 " Progress or Pascal | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1265 au BufNewFile,BufRead *.p call dist#ft#FTprogress_pascal() |
7 | 1266 |
1267 " Software Distributor Product Specification File (POSIX 1387.2-1995) | |
1268 au BufNewFile,BufRead *.psf setf psf | |
1269 au BufNewFile,BufRead INDEX,INFO | |
1270 \ if getline(1) =~ '^\s*\(distribution\|installed_software\|root\|bundle\|product\)\s*$' | | |
1271 \ setf psf | | |
1272 \ endif | |
1273 | |
1274 " Prolog | |
1275 au BufNewFile,BufRead *.pdb setf prolog | |
1276 | |
1648 | 1277 " Promela |
1278 au BufNewFile,BufRead *.pml setf promela | |
1279 | |
4869 | 1280 " Google protocol buffers |
1281 au BufNewFile,BufRead *.proto setf proto | |
1282 | |
389 | 1283 " Protocols |
2751 | 1284 au BufNewFile,BufRead */etc/protocols setf protocols |
389 | 1285 |
7 | 1286 " Pyrex |
1287 au BufNewFile,BufRead *.pyx,*.pxd setf pyrex | |
1288 | |
14946
8ca1dc213836
patch 8.1.0484: some file types are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
14519
diff
changeset
|
1289 " Python, Python Shell Startup and Python Stub Files |
1676 | 1290 " Quixote (Python-based web framework) |
14946
8ca1dc213836
patch 8.1.0484: some file types are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
14519
diff
changeset
|
1291 au BufNewFile,BufRead *.py,*.pyw,.pythonstartup,.pythonrc,*.ptl,*.pyi setf python |
1676 | 1292 |
7 | 1293 " Radiance |
1294 au BufNewFile,BufRead *.rad,*.mat setf radiance | |
1295 | |
1296 " Ratpoison config/command files | |
1297 au BufNewFile,BufRead .ratpoisonrc,ratpoisonrc setf ratpoison | |
1298 | |
1299 " RCS file | |
1300 au BufNewFile,BufRead *\,v setf rcs | |
1301 | |
1302 " Readline | |
237 | 1303 au BufNewFile,BufRead .inputrc,inputrc setf readline |
7 | 1304 |
1305 " Registry for MS-Windows | |
1306 au BufNewFile,BufRead *.reg | |
1307 \ if getline(1) =~? '^REGEDIT[0-9]*\s*$\|^Windows Registry Editor Version \d*\.\d*\s*$' | setf registry | endif | |
1308 | |
1309 " Renderman Interface Bytestream | |
1310 au BufNewFile,BufRead *.rib setf rib | |
1311 | |
18926
50355c55519f
patch 8.2.0024: filetype Rego not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18707
diff
changeset
|
1312 " Rego Policy Language |
50355c55519f
patch 8.2.0024: filetype Rego not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18707
diff
changeset
|
1313 au BufNewFile,BufRead *.rego setf rego |
50355c55519f
patch 8.2.0024: filetype Rego not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18707
diff
changeset
|
1314 |
7 | 1315 " Rexx |
3893 | 1316 au BufNewFile,BufRead *.rex,*.orx,*.rxo,*.rxj,*.jrexx,*.rexxj,*.rexx,*.testGroup,*.testUnit setf rexx |
7 | 1317 |
1318 " R (Splus) | |
836 | 1319 if has("fname_case") |
1320 au BufNewFile,BufRead *.s,*.S setf r | |
1321 else | |
1322 au BufNewFile,BufRead *.s setf r | |
1323 endif | |
7 | 1324 |
699 | 1325 " R Help file |
836 | 1326 if has("fname_case") |
1327 au BufNewFile,BufRead *.rd,*.Rd setf rhelp | |
1328 else | |
1329 au BufNewFile,BufRead *.rd setf rhelp | |
1330 endif | |
1331 | |
1332 " R noweb file | |
1333 if has("fname_case") | |
1334 au BufNewFile,BufRead *.Rnw,*.rnw,*.Snw,*.snw setf rnoweb | |
1335 else | |
1336 au BufNewFile,BufRead *.rnw,*.snw setf rnoweb | |
1337 endif | |
699 | 1338 |
6051 | 1339 " R Markdown file |
1340 if has("fname_case") | |
1341 au BufNewFile,BufRead *.Rmd,*.rmd,*.Smd,*.smd setf rmd | |
1342 else | |
1343 au BufNewFile,BufRead *.rmd,*.smd setf rmd | |
1344 endif | |
1345 | |
1346 " R reStructuredText file | |
1347 if has("fname_case") | |
1348 au BufNewFile,BufRead *.Rrst,*.rrst,*.Srst,*.srst setf rrst | |
1349 else | |
1350 au BufNewFile,BufRead *.rrst,*.srst setf rrst | |
1351 endif | |
1352 | |
7 | 1353 " 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
|
1354 au BufNewFile,BufRead *.r,*.R call dist#ft#FTr() |
7 | 1355 |
1356 " Remind | |
2788 | 1357 au BufNewFile,BufRead .reminders,*.remind,*.rem setf remind |
7 | 1358 |
1359 " Resolv.conf | |
1360 au BufNewFile,BufRead resolv.conf setf resolv | |
1361 | |
1362 " Relax NG Compact | |
1363 au BufNewFile,BufRead *.rnc setf rnc | |
1364 | |
4264 | 1365 " Relax NG XML |
1366 au BufNewFile,BufRead *.rng setf rng | |
1367 | |
7 | 1368 " RPL/2 |
1369 au BufNewFile,BufRead *.rpl setf rpl | |
1370 | |
1371 " Robots.txt | |
1372 au BufNewFile,BufRead robots.txt setf robots | |
1373 | |
1374 " Rpcgen | |
1375 au BufNewFile,BufRead *.x setf rpcgen | |
1376 | |
1377 " reStructuredText Documentation Format | |
1378 au BufNewFile,BufRead *.rst setf rst | |
1379 | |
1380 " RTF | |
1381 au BufNewFile,BufRead *.rtf setf rtf | |
1382 | |
1676 | 1383 " Interactive Ruby shell |
1384 au BufNewFile,BufRead .irbrc,irbrc setf ruby | |
1385 | |
7 | 1386 " Ruby |
2681 | 1387 au BufNewFile,BufRead *.rb,*.rbw setf ruby |
1388 | |
1389 " RubyGems | |
1390 au BufNewFile,BufRead *.gemspec setf ruby | |
1391 | |
10319
169a62d5bcb9
commit https://github.com/vim/vim/commit/b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59
Christian Brabandt <cb@256bit.org>
parents:
10301
diff
changeset
|
1392 " Rust |
169a62d5bcb9
commit https://github.com/vim/vim/commit/b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59
Christian Brabandt <cb@256bit.org>
parents:
10301
diff
changeset
|
1393 au BufNewFile,BufRead *.rs setf rust |
169a62d5bcb9
commit https://github.com/vim/vim/commit/b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59
Christian Brabandt <cb@256bit.org>
parents:
10301
diff
changeset
|
1394 |
2681 | 1395 " Rackup |
1396 au BufNewFile,BufRead *.ru setf ruby | |
1397 | |
1398 " Bundler | |
1399 au BufNewFile,BufRead Gemfile setf ruby | |
7 | 1400 |
1219 | 1401 " Ruby on Rails |
1402 au BufNewFile,BufRead *.builder,*.rxml,*.rjs setf ruby | |
1403 | |
1404 " Rantfile and Rakefile is like Ruby | |
1405 au BufNewFile,BufRead [rR]antfile,*.rant,[rR]akefile,*.rake setf ruby | |
557 | 1406 |
2034 | 1407 " S-lang (or shader language, or SmallLisp) |
7 | 1408 au BufNewFile,BufRead *.sl setf slang |
1409 | |
1410 " Samba config | |
1411 au BufNewFile,BufRead smb.conf setf samba | |
1412 | |
1413 " SAS script | |
1414 au BufNewFile,BufRead *.sas setf sas | |
1415 | |
1668 | 1416 " Sass |
1417 au BufNewFile,BufRead *.sass setf sass | |
1418 | |
7 | 1419 " Sather |
1420 au BufNewFile,BufRead *.sa setf sather | |
1421 | |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
9908
diff
changeset
|
1422 " Scala |
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
9908
diff
changeset
|
1423 au BufNewFile,BufRead *.scala setf scala |
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
9908
diff
changeset
|
1424 |
11442 | 1425 " SBT - Scala Build Tool |
1426 au BufNewFile,BufRead *.sbt setf sbt | |
1427 | |
7 | 1428 " Scilab |
809 | 1429 au BufNewFile,BufRead *.sci,*.sce setf scilab |
7 | 1430 |
2415 | 1431 " SCSS |
2725 | 1432 au BufNewFile,BufRead *.scss setf scss |
2415 | 1433 |
1125 | 1434 " SD: Streaming Descriptors |
1435 au BufNewFile,BufRead *.sd setf sd | |
1436 | |
7 | 1437 " SDL |
1438 au BufNewFile,BufRead *.sdl,*.pr setf sdl | |
1439 | |
1440 " sed | |
1441 au BufNewFile,BufRead *.sed setf sed | |
1442 | |
14946
8ca1dc213836
patch 8.1.0484: some file types are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
14519
diff
changeset
|
1443 " Sieve (RFC 3028, 5228) |
8ca1dc213836
patch 8.1.0484: some file types are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
14519
diff
changeset
|
1444 au BufNewFile,BufRead *.siv,*.sieve setf sieve |
36 | 1445 |
7 | 1446 " Sendmail |
1447 au BufNewFile,BufRead sendmail.cf setf sm | |
1448 | |
1648 | 1449 " Sendmail .mc files are actually m4. Could also be MS Message text file. |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1450 au BufNewFile,BufRead *.mc call dist#ft#McSetf() |
7 | 1451 |
389 | 1452 " Services |
2751 | 1453 au BufNewFile,BufRead */etc/services setf services |
389 | 1454 |
1455 " Service Location config | |
2751 | 1456 au BufNewFile,BufRead */etc/slp.conf setf slpconf |
389 | 1457 |
1458 " Service Location registration | |
2751 | 1459 au BufNewFile,BufRead */etc/slp.reg setf slpreg |
389 | 1460 |
1461 " Service Location SPI | |
2751 | 1462 au BufNewFile,BufRead */etc/slp.spi setf slpspi |
389 | 1463 |
1464 " Setserial config | |
2751 | 1465 au BufNewFile,BufRead */etc/serial.conf setf setserial |
389 | 1466 |
7 | 1467 " SGML |
1468 au BufNewFile,BufRead *.sgm,*.sgml | |
1469 \ if getline(1).getline(2).getline(3).getline(4).getline(5) =~? 'linuxdoc' | | |
1470 \ setf sgmllnx | | |
1471 \ elseif getline(1) =~ '<!DOCTYPE.*DocBook' || getline(2) =~ '<!DOCTYPE.*DocBook' | | |
3967 | 1472 \ let b:docbk_type = "sgml" | |
1473 \ let b:docbk_ver = 4 | | |
7 | 1474 \ setf docbk | |
1475 \ else | | |
1476 \ setf sgml | | |
1477 \ endif | |
1478 | |
1479 " SGMLDECL | |
1480 au BufNewFile,BufRead *.decl,*.dcl,*.dec | |
1481 \ if getline(1).getline(2).getline(3) =~? '^<!SGML' | | |
1482 \ setf sgmldecl | | |
1483 \ endif | |
1484 | |
1485 " SGML catalog file | |
216 | 1486 au BufNewFile,BufRead catalog setf catalog |
7 | 1487 |
1488 " Shell scripts (sh, ksh, bash, bash2, csh); Allow .profile_foo etc. | |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1489 " Gentoo ebuilds and Arch Linux PKGBUILDs are actually 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
|
1490 " NOTE: Patterns ending in a star are further down, these have lower priority. |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
1491 au BufNewFile,BufRead .bashrc,bashrc,bash.bashrc,.bash[_-]profile,.bash[_-]logout,.bash[_-]aliases,bash-fc[-.],*.bash,*/{,.}bash[_-]completion{,.d,.sh}{,/*},*.ebuild,*.eclass,PKGBUILD call dist#ft#SetFileTypeSH("bash") |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
1492 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
|
1493 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
|
1494 |
7 | 1495 |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1496 " 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
|
1497 au BufNewFile,BufRead *.install |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1498 \ if getline(1) =~ '<?php' | |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1499 \ setf php | |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1500 \ else | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1501 \ call dist#ft#SetFileTypeSH("bash") | |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1502 \ endif |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1503 |
15535
45a159f62dd0
patch 8.1.0775: matching too many files as zsh
Bram Moolenaar <Bram@vim.org>
parents:
15527
diff
changeset
|
1504 " 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
|
1505 au BufNewFile,BufRead .tcshrc,*.tcsh,tcsh.tcshrc,tcsh.login call dist#ft#SetFileTypeShell("tcsh") |
7 | 1506 |
1507 " 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
|
1508 " (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
|
1509 au BufNewFile,BufRead .login,.cshrc,csh.cshrc,csh.login,csh.logout,*.csh,.alias call dist#ft#CSH() |
7 | 1510 |
15535
45a159f62dd0
patch 8.1.0775: matching too many files as zsh
Bram Moolenaar <Bram@vim.org>
parents:
15527
diff
changeset
|
1511 " Z-Shell script (patterns ending in a star further below) |
2751 | 1512 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
|
1513 au BufNewFile,BufRead .zshrc,.zshenv,.zlogin,.zlogout,.zcompdump setf zsh |
2725 | 1514 au BufNewFile,BufRead *.zsh setf zsh |
7 | 1515 |
1516 " Scheme | |
3513 | 1517 au BufNewFile,BufRead *.scm,*.ss,*.rkt setf scheme |
7 | 1518 |
1519 " Screen RC | |
1520 au BufNewFile,BufRead .screenrc,screenrc setf screen | |
1521 | |
1522 " Simula | |
1523 au BufNewFile,BufRead *.sim setf simula | |
1524 | |
1525 " SINDA | |
1526 au BufNewFile,BufRead *.sin,*.s85 setf sinda | |
1527 | |
819 | 1528 " SiSU |
857 | 1529 au BufNewFile,BufRead *.sst,*.ssm,*.ssi,*.-sst,*._sst setf sisu |
819 | 1530 au BufNewFile,BufRead *.sst.meta,*.-sst.meta,*._sst.meta setf sisu |
1531 | |
7 | 1532 " SKILL |
336 | 1533 au BufNewFile,BufRead *.il,*.ils,*.cdf setf skill |
7 | 1534 |
1535 " SLRN | |
1536 au BufNewFile,BufRead .slrnrc setf slrnrc | |
1537 au BufNewFile,BufRead *.score setf slrnsc | |
1538 | |
271 | 1539 " Smalltalk (and TeX) |
1540 au BufNewFile,BufRead *.st setf st | |
1541 au BufNewFile,BufRead *.cls | |
1542 \ if getline(1) =~ '^%' | | |
1543 \ setf tex | | |
3893 | 1544 \ elseif getline(1)[0] == '#' && getline(1) =~ 'rexx' | |
1545 \ setf rexx | | |
271 | 1546 \ else | |
1547 \ setf st | | |
1548 \ endif | |
7 | 1549 |
1550 " Smarty templates | |
1551 au BufNewFile,BufRead *.tpl setf smarty | |
1552 | |
1553 " SMIL or XML | |
1554 au BufNewFile,BufRead *.smil | |
1555 \ if getline(1) =~ '<?\s*xml.*?>' | | |
1556 \ setf xml | | |
1557 \ else | | |
1558 \ setf smil | | |
1559 \ endif | |
1560 | |
1561 " SMIL or SNMP MIB file | |
1562 au BufNewFile,BufRead *.smi | |
1563 \ if getline(1) =~ '\<smil\>' | | |
1564 \ setf smil | | |
1565 \ else | | |
1566 \ setf mib | | |
1567 \ endif | |
1568 | |
1569 " SMITH | |
1570 au BufNewFile,BufRead *.smt,*.smith setf smith | |
1571 | |
857 | 1572 " Snobol4 and spitbol |
1573 au BufNewFile,BufRead *.sno,*.spt setf snobol4 | |
7 | 1574 |
1575 " SNMP MIB files | |
1576 au BufNewFile,BufRead *.mib,*.my setf mib | |
1577 | |
1578 " Snort Configuration | |
1219 | 1579 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
|
1580 au BufNewFile,BufRead *.rules call dist#ft#FTRules() |
1219 | 1581 |
7 | 1582 " Spec (Linux RPM) |
1583 au BufNewFile,BufRead *.spec setf spec | |
1584 | |
1585 " Speedup (AspenTech plant simulator) | |
1586 au BufNewFile,BufRead *.speedup,*.spdata,*.spd setf spup | |
1587 | |
1588 " Slice | |
1589 au BufNewFile,BufRead *.ice setf slice | |
1590 | |
1591 " Spice | |
1592 au BufNewFile,BufRead *.sp,*.spice setf spice | |
1593 | |
1594 " Spyce | |
1595 au BufNewFile,BufRead *.spy,*.spi setf spyce | |
1596 | |
1597 " Squid | |
1598 au BufNewFile,BufRead squid.conf setf squid | |
1599 | |
22 | 1600 " SQL for Oracle Designer |
1601 au BufNewFile,BufRead *.tyb,*.typ,*.tyc,*.pkb,*.pks setf sql | |
1602 | |
1603 " SQL | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1604 au BufNewFile,BufRead *.sql call dist#ft#SQL() |
7 | 1605 |
1606 " SQLJ | |
1607 au BufNewFile,BufRead *.sqlj setf sqlj | |
1608 | |
1609 " SQR | |
1610 au BufNewFile,BufRead *.sqr,*.sqi setf sqr | |
1611 | |
1612 " OpenSSH configuration | |
1613 au BufNewFile,BufRead ssh_config,*/.ssh/config setf sshconfig | |
1614 | |
1615 " OpenSSH server configuration | |
1616 au BufNewFile,BufRead sshd_config setf sshdconfig | |
1617 | |
831 | 1618 " Stata |
11400
0f8713fe20dc
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
11358
diff
changeset
|
1619 au BufNewFile,BufRead *.ado,*.do,*.imata,*.mata setf stata |
0f8713fe20dc
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
11358
diff
changeset
|
1620 " Also *.class, but not when it's a Java bytecode file |
0f8713fe20dc
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
11358
diff
changeset
|
1621 au BufNewFile,BufRead *.class |
0f8713fe20dc
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
11358
diff
changeset
|
1622 \ if getline(1) !~ "^\xca\xfe\xba\xbe" | setf stata | endif |
831 | 1623 |
1624 " SMCL | |
1625 au BufNewFile,BufRead *.hlp,*.ihlp,*.smcl setf smcl | |
1626 | |
7 | 1627 " Stored Procedures |
1628 au BufNewFile,BufRead *.stp setf stp | |
1629 | |
1630 " Standard ML | |
1631 au BufNewFile,BufRead *.sml setf sml | |
1632 | |
1648 | 1633 " Sratus VOS command macro |
1634 au BufNewFile,BufRead *.cm setf voscm | |
1635 | |
19164
bfe90421e223
patch 8.2.0141: no swift filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
18926
diff
changeset
|
1636 " Swift |
bfe90421e223
patch 8.2.0141: no swift filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
18926
diff
changeset
|
1637 au BufNewFile,BufRead *.swift setf swift |
bfe90421e223
patch 8.2.0141: no swift filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
18926
diff
changeset
|
1638 au BufNewFile,BufRead *.swift.gyb setf swiftgyb |
bfe90421e223
patch 8.2.0141: no swift filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
18926
diff
changeset
|
1639 |
bfe90421e223
patch 8.2.0141: no swift filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
18926
diff
changeset
|
1640 " Swift Intermediate Language |
bfe90421e223
patch 8.2.0141: no swift filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
18926
diff
changeset
|
1641 au BufNewFile,BufRead *.sil setf sil |
bfe90421e223
patch 8.2.0141: no swift filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
18926
diff
changeset
|
1642 |
375 | 1643 " Sysctl |
2751 | 1644 au BufNewFile,BufRead */etc/sysctl.conf,*/etc/sysctl.d/*.conf setf sysctl |
375 | 1645 |
7176
30042ddff503
commit https://github.com/vim/vim/commit/60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d
Christian Brabandt <cb@256bit.org>
parents:
7147
diff
changeset
|
1646 " Systemd unit files |
30042ddff503
commit https://github.com/vim/vim/commit/60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d
Christian Brabandt <cb@256bit.org>
parents:
7147
diff
changeset
|
1647 au BufNewFile,BufRead */systemd/*.{automount,mount,path,service,socket,swap,target,timer} setf systemd |
16086 | 1648 " Systemd overrides |
19987
9cbe7ba51ce5
patch 8.2.0549: user systemd files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19721
diff
changeset
|
1649 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
|
1650 au BufNewFile,BufRead */.config/systemd/user/*.d/*.conf setf systemd |
16086 | 1651 " Systemd temp files |
19987
9cbe7ba51ce5
patch 8.2.0549: user systemd files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19721
diff
changeset
|
1652 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
|
1653 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
|
1654 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
|
1655 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
|
1656 |
2034 | 1657 " Synopsys Design Constraints |
1658 au BufNewFile,BufRead *.sdc setf sdc | |
1659 | |
39 | 1660 " Sudoers |
2751 | 1661 au BufNewFile,BufRead */etc/sudoers,sudoers.tmp setf sudoers |
39 | 1662 |
2152 | 1663 " SVG (Scalable Vector Graphics) |
1664 au BufNewFile,BufRead *.svg setf svg | |
1665 | |
557 | 1666 " Tads (or Nroff or Perl test file) |
7 | 1667 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
|
1668 \ if !dist#ft#FTnroff() && !dist#ft#FTperl() | setf tads | endif |
7 | 1669 |
1670 " Tags | |
1671 au BufNewFile,BufRead tags setf tags | |
1672 | |
1673 " TAK | |
1674 au BufNewFile,BufRead *.tak setf tak | |
1675 | |
2034 | 1676 " Task |
1677 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
|
1678 au BufRead,BufNewFile *.task setf taskedit |
2034 | 1679 |
557 | 1680 " Tcl (JACL too) |
1681 au BufNewFile,BufRead *.tcl,*.tk,*.itcl,*.itk,*.jacl setf tcl | |
7 | 1682 |
1683 " TealInfo | |
1684 au BufNewFile,BufRead *.tli setf tli | |
1685 | |
1686 " Telix Salt | |
1687 au BufNewFile,BufRead *.slt setf tsalt | |
1688 | |
6951
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6823
diff
changeset
|
1689 " Tera Term Language |
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6823
diff
changeset
|
1690 au BufRead,BufNewFile *.ttl setf teraterm |
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6823
diff
changeset
|
1691 |
7 | 1692 " Terminfo |
1693 au BufNewFile,BufRead *.ti setf terminfo | |
1694 | |
1695 " TeX | |
378 | 1696 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
|
1697 au BufNewFile,BufRead *.tex call dist#ft#FTtex() |
378 | 1698 |
1648 | 1699 " ConTeXt |
12027
c2aa4af29251
patch 8.0.0894: there is no test for runtime filetype detection
Christian Brabandt <cb@256bit.org>
parents:
11659
diff
changeset
|
1700 au BufNewFile,BufRead *.mkii,*.mkiv,*.mkvi setf context |
7 | 1701 |
1702 " Texinfo | |
1703 au BufNewFile,BufRead *.texinfo,*.texi,*.txi setf texinfo | |
1704 | |
1705 " TeX configuration | |
1706 au BufNewFile,BufRead texmf.cnf setf texmf | |
1707 | |
1708 " Tidy config | |
1709 au BufNewFile,BufRead .tidyrc,tidyrc setf tidy | |
1710 | |
1711 " TF mud client | |
1712 au BufNewFile,BufRead *.tf,.tfrc,tfrc setf tf | |
1713 | |
11062 | 1714 " tmux configuration |
11160 | 1715 au BufNewFile,BufRead {.,}tmux*.conf setf tmux |
11062 | 1716 |
33 | 1717 " TPP - Text Presentation Program |
1718 au BufNewFile,BufReadPost *.tpp setf tpp | |
1719 | |
2725 | 1720 " Treetop |
1721 au BufRead,BufNewFile *.treetop setf treetop | |
1722 | |
555 | 1723 " Trustees |
1724 au BufNewFile,BufRead trustees.conf setf trustees | |
1725 | |
7 | 1726 " TSS - Geometry |
1727 au BufNewFile,BufReadPost *.tssgm setf tssgm | |
1728 | |
1729 " TSS - Optics | |
1730 au BufNewFile,BufReadPost *.tssop setf tssop | |
1731 | |
1732 " TSS - Command Line (temporary) | |
1733 au BufNewFile,BufReadPost *.tsscl setf tsscl | |
1734 | |
3456 | 1735 " TWIG files |
1736 au BufNewFile,BufReadPost *.twig setf twig | |
1737 | |
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
|
1738 " Typescript |
d24e5d848a09
patch 8.1.1177: .ts files are recognized as xml, typescript is more common
Bram Moolenaar <Bram@vim.org>
parents:
16208
diff
changeset
|
1739 au BufNewFile,BufReadPost *.ts setf typescript |
d24e5d848a09
patch 8.1.1177: .ts files are recognized as xml, typescript is more common
Bram Moolenaar <Bram@vim.org>
parents:
16208
diff
changeset
|
1740 |
17867
180fb9981255
patch 8.1.1930: cannot recognize .jsx and .tsx files
Bram Moolenaar <Bram@vim.org>
parents:
17758
diff
changeset
|
1741 " TypeScript with React |
180fb9981255
patch 8.1.1930: cannot recognize .jsx and .tsx files
Bram Moolenaar <Bram@vim.org>
parents:
17758
diff
changeset
|
1742 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
|
1743 |
7 | 1744 " Motif UIT/UIL files |
1745 au BufNewFile,BufRead *.uit,*.uil setf uil | |
1746 | |
389 | 1747 " Udev conf |
2751 | 1748 au BufNewFile,BufRead */etc/udev/udev.conf setf udevconf |
389 | 1749 |
1750 " Udev permissions | |
2751 | 1751 au BufNewFile,BufRead */etc/udev/permissions.d/*.permissions setf udevperm |
389 | 1752 " |
1753 " Udev symlinks config | |
2751 | 1754 au BufNewFile,BufRead */etc/udev/cdsymlinks.conf setf sh |
389 | 1755 |
7 | 1756 " UnrealScript |
1757 au BufNewFile,BufRead *.uc setf uc | |
1758 | |
375 | 1759 " Updatedb |
2751 | 1760 au BufNewFile,BufRead */etc/updatedb.conf setf updatedb |
375 | 1761 |
2725 | 1762 " Upstart (init(8)) config files |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
1763 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
|
1764 au BufNewFile,BufRead */usr/share/upstart/*.override setf upstart |
4186 | 1765 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
|
1766 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
|
1767 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
|
1768 au BufNewFile,BufRead */.config/upstart/*.override setf upstart |
2725 | 1769 |
836 | 1770 " Vera |
1771 au BufNewFile,BufRead *.vr,*.vri,*.vrh setf vera | |
1772 | |
7 | 1773 " Verilog HDL |
1774 au BufNewFile,BufRead *.v setf verilog | |
1775 | |
481 | 1776 " Verilog-AMS HDL |
1777 au BufNewFile,BufRead *.va,*.vams setf verilogams | |
1778 | |
5663
1dea14d4c738
Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents:
5577
diff
changeset
|
1779 " SystemVerilog |
5692
80e5f9584b02
Update runtime files. Add Euphoria syntax files.
Bram Moolenaar <bram@vim.org>
parents:
5663
diff
changeset
|
1780 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
|
1781 |
7 | 1782 " VHDL |
19717
de7c724bf803
patch 8.2.0415: bsdl filetype is not detected
Bram Moolenaar <Bram@vim.org>
parents:
19404
diff
changeset
|
1783 au BufNewFile,BufRead *.hdl,*.vhd,*.vhdl,*.vbe,*.vst,*.vho setf vhdl |
7 | 1784 |
1785 " Vim script | |
794 | 1786 au BufNewFile,BufRead *.vim,*.vba,.exrc,_exrc setf vim |
7 | 1787 |
1788 " Viminfo file | |
1789 au BufNewFile,BufRead .viminfo,_viminfo setf viminfo | |
1790 | |
2034 | 1791 " Virata Config Script File or Drupal module |
1792 au BufRead,BufNewFile *.hw,*.module,*.pkg | |
1793 \ if getline(1) =~ '<?php' | | |
1794 \ setf php | | |
1795 \ else | | |
1796 \ setf virata | | |
1797 \ endif | |
7 | 1798 |
1799 " Visual Basic (also uses *.bas) or FORM | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1800 au BufNewFile,BufRead *.frm call dist#ft#FTVB("form") |
7 | 1801 |
1802 " SaxBasic is close to Visual Basic | |
1803 au BufNewFile,BufRead *.sba setf vb | |
1804 | |
1805 " Vgrindefs file | |
1806 au BufNewFile,BufRead vgrindefs setf vgrindefs | |
1807 | |
1808 " VRML V1.0c | |
1809 au BufNewFile,BufRead *.wrl setf vrml | |
1810 | |
6091
7090d7f160f7
Update runtime files. Add vroom file support.
Bram Moolenaar <bram@vim.org>
parents:
6070
diff
changeset
|
1811 " Vroom (vim testing and executable documentation) |
7090d7f160f7
Update runtime files. Add vroom file support.
Bram Moolenaar <bram@vim.org>
parents:
6070
diff
changeset
|
1812 au BufNewFile,BufRead *.vroom setf vroom |
7090d7f160f7
Update runtime files. Add vroom file support.
Bram Moolenaar <bram@vim.org>
parents:
6070
diff
changeset
|
1813 |
17528
62a6d99082f7
patch 8.1.1762: some filetype rules are in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
17526
diff
changeset
|
1814 " 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
|
1815 au BufNewFile,BufRead *.vue setf vue |
7 | 1816 |
14432 | 1817 " WebAssembly |
1818 au BufNewFile,BufRead *.wast,*.wat setf wast | |
1819 | |
17528
62a6d99082f7
patch 8.1.1762: some filetype rules are in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
17526
diff
changeset
|
1820 " Webmacro |
62a6d99082f7
patch 8.1.1762: some filetype rules are in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
17526
diff
changeset
|
1821 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
|
1822 |
7 | 1823 " Wget config |
1824 au BufNewFile,BufRead .wgetrc,wgetrc setf wget | |
1825 | |
1826 " Website MetaLanguage | |
1827 au BufNewFile,BufRead *.wml setf wml | |
1828 | |
1829 " Winbatch | |
1830 au BufNewFile,BufRead *.wbt setf winbatch | |
1831 | |
753 | 1832 " WSML |
1833 au BufNewFile,BufRead *.wsml setf wsml | |
1834 | |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1835 " WPL |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1836 au BufNewFile,BufRead *.wpl setf xml |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1837 |
7 | 1838 " WvDial |
1839 au BufNewFile,BufRead wvdial.conf,.wvdialrc setf wvdial | |
1840 | |
1841 " CVS RC file | |
1842 au BufNewFile,BufRead .cvsrc setf cvsrc | |
1843 | |
1844 " CVS commit file | |
1845 au BufNewFile,BufRead cvs\d\+ setf cvs | |
1846 | |
1847 " WEB (*.web is also used for Winbatch: Guess, based on expecting "%" comment | |
1848 " lines in a WEB file). | |
1849 au BufNewFile,BufRead *.web | |
1850 \ if getline(1)[0].getline(2)[0].getline(3)[0].getline(4)[0].getline(5)[0] =~ "%" | | |
1851 \ setf web | | |
1852 \ else | | |
1853 \ setf winbatch | | |
1854 \ endif | |
1855 | |
1856 " Windows Scripting Host and Windows Script Component | |
1857 au BufNewFile,BufRead *.ws[fc] setf wsh | |
1858 | |
1125 | 1859 " XHTML |
1860 au BufNewFile,BufRead *.xhtml,*.xht setf xhtml | |
1861 | |
7 | 1862 " X Pixmap (dynamically sets colors, use BufEnter to make it work better) |
1863 au BufEnter *.xpm | |
1864 \ if getline(1) =~ "XPM2" | | |
1865 \ setf xpm2 | | |
1866 \ else | | |
1867 \ setf xpm | | |
1868 \ endif | |
1869 au BufEnter *.xpm2 setf xpm2 | |
1870 | |
1871 " XFree86 config | |
1872 au BufNewFile,BufRead XF86Config | |
1873 \ if getline(1) =~ '\<XConfigurator\>' | | |
2788 | 1874 \ let b:xf86conf_xfree86_version = 3 | |
7 | 1875 \ endif | |
1876 \ setf xf86conf | |
2751 | 1877 au BufNewFile,BufRead */xorg.conf.d/*.conf |
1878 \ let b:xf86conf_xfree86_version = 4 | | |
1879 \ setf xf86conf | |
7 | 1880 |
1881 " Xorg config | |
2751 | 1882 au BufNewFile,BufRead xorg.conf,xorg.conf-4 let b:xf86conf_xfree86_version = 4 | setf xf86conf |
7 | 1883 |
375 | 1884 " Xinetd conf |
2751 | 1885 au BufNewFile,BufRead */etc/xinetd.conf setf xinetd |
375 | 1886 |
7 | 1887 " XS Perl extension interface language |
1888 au BufNewFile,BufRead *.xs setf xs | |
1889 | |
1890 " X resources file | |
1891 au BufNewFile,BufRead .Xdefaults,.Xpdefaults,.Xresources,xdm-config,*.ad setf xdefaults | |
1892 | |
1893 " Xmath | |
1894 au BufNewFile,BufRead *.msc,*.msf setf xmath | |
1895 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
|
1896 \ if !dist#ft#FTnroff() | setf xmath | endif |
7 | 1897 |
1648 | 1898 " 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
|
1899 au BufNewFile,BufRead *.xml call dist#ft#FTxml() |
7 | 1900 |
1901 " XMI (holding UML models) is also XML | |
1902 au BufNewFile,BufRead *.xmi setf xml | |
1903 | |
1904 " CSPROJ files are Visual Studio.NET's XML-based project config files | |
1905 au BufNewFile,BufRead *.csproj,*.csproj.user setf xml | |
1906 | |
1907 " 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
|
1908 " However, for .ts Typescript is more common. |
db8f57e3e9f5
patch 8.1.1187: cannot recognize Pipfile
Bram Moolenaar <Bram@vim.org>
parents:
16344
diff
changeset
|
1909 au BufNewFile,BufRead *.ui setf xml |
7 | 1910 |
1125 | 1911 " TPM's are RDF-based descriptions of TeX packages (Nikolai Weibull) |
1912 au BufNewFile,BufRead *.tpm setf xml | |
1913 | |
389 | 1914 " Xdg menus |
2751 | 1915 au BufNewFile,BufRead */etc/xdg/menus/*.menu setf xml |
389 | 1916 |
1648 | 1917 " ATI graphics driver configuration |
1918 au BufNewFile,BufRead fglrxrc setf xml | |
1919 | |
14519 | 1920 " Web Services Description Language (WSDL) |
1921 au BufNewFile,BufRead *.wsdl setf xml | |
1922 | |
1648 | 1923 " XLIFF (XML Localisation Interchange File Format) is also XML |
1924 au BufNewFile,BufRead *.xlf setf xml | |
1925 au BufNewFile,BufRead *.xliff setf xml | |
1926 | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3356
diff
changeset
|
1927 " XML User Interface Language |
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3356
diff
changeset
|
1928 au BufNewFile,BufRead *.xul setf xml |
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3356
diff
changeset
|
1929 |
1648 | 1930 " X11 xmodmap (also see below) |
1931 au BufNewFile,BufRead *Xmodmap setf xmodmap | |
1932 | |
419 | 1933 " Xquery |
1934 au BufNewFile,BufRead *.xq,*.xql,*.xqm,*.xquery,*.xqy setf xquery | |
1935 | |
7 | 1936 " XSD |
1937 au BufNewFile,BufRead *.xsd setf xsd | |
1938 | |
1939 " Xslt | |
1940 au BufNewFile,BufRead *.xsl,*.xslt setf xslt | |
1941 | |
1942 " Yacc | |
5697 | 1943 au BufNewFile,BufRead *.yy,*.yxx,*.y++ setf yacc |
375 | 1944 |
1945 " Yacc or racc | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1946 au BufNewFile,BufRead *.y call dist#ft#FTy() |
7 | 1947 |
14991
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
1948 " Yaml |
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
1949 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
|
1950 |
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
1951 " Raml |
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
1952 au BufNewFile,BufRead *.raml setf raml |
7 | 1953 |
3082 | 1954 " yum conf (close enough to dosini) |
4229 | 1955 au BufNewFile,BufRead */etc/yum.conf setf dosini |
3082 | 1956 |
3513 | 1957 " Zimbu |
4229 | 1958 au BufNewFile,BufRead *.zu setf zimbu |
6421 | 1959 " Zimbu Templates |
1960 au BufNewFile,BufRead *.zut setf zimbutempl | |
3513 | 1961 |
809 | 1962 " Zope |
1963 " dtml (zope dynamic template markup language), pt (zope page template), | |
1964 " 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
|
1965 au BufNewFile,BufRead *.dtml,*.pt,*.cpt call dist#ft#FThtml() |
809 | 1966 " 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
|
1967 au BufNewFile,BufRead *.zsql call dist#ft#SQL() |
809 | 1968 |
7 | 1969 " Z80 assembler asz80 |
1970 au BufNewFile,BufRead *.z8a setf z8a | |
1971 | |
1972 augroup END | |
1973 | |
1974 | |
1975 " Source the user-specified filetype file, for backwards compatibility with | |
1976 " Vim 5.x. | |
216 | 1977 if exists("myfiletypefile") && filereadable(expand(myfiletypefile)) |
7 | 1978 execute "source " . myfiletypefile |
1979 endif | |
1980 | |
1981 | |
1982 " Check for "*" after loading myfiletypefile, so that scripts.vim is only used | |
1983 " when there are no matching file name extensions. | |
1984 " Don't do this for compressed files. | |
1985 augroup filetypedetect | |
1986 au BufNewFile,BufRead * | |
1987 \ if !did_filetype() && expand("<amatch>") !~ g:ft_ignore_pat | |
1988 \ | runtime! scripts.vim | endif | |
1989 au StdinReadPost * if !did_filetype() | runtime! scripts.vim | endif | |
1990 | |
1991 | |
1992 " Extra checks for when no filetype has been detected now. Mostly used for | |
1993 " patterns that end in "*". E.g., "zsh*" matches "zsh.vim", but that's a Vim | |
1994 " script file. | |
216 | 1995 " Most of these should call s:StarSetf() to avoid names ending in .gz and the |
1996 " like are used. | |
7 | 1997 |
13051 | 1998 " More Apache style config files |
1999 au BufNewFile,BufRead */etc/proftpd/*.conf*,*/etc/proftpd/conf.*/* call s:StarSetf('apachestyle') | |
16208 | 2000 au BufNewFile,BufRead proftpd.conf* call s:StarSetf('apachestyle') |
13051 | 2001 |
2751 | 2002 " More Apache config files |
2003 au BufNewFile,BufRead access.conf*,apache.conf*,apache2.conf*,httpd.conf*,srm.conf* call s:StarSetf('apache') | |
2004 au BufNewFile,BufRead */etc/apache2/*.conf*,*/etc/apache2/conf.*/*,*/etc/apache2/mods-*/*,*/etc/apache2/sites-*/*,*/etc/httpd/conf.d/*.conf* call s:StarSetf('apache') | |
1668 | 2005 |
531 | 2006 " Asterisk config file |
856 | 2007 au BufNewFile,BufRead *asterisk/*.conf* call s:StarSetf('asterisk') |
794 | 2008 au BufNewFile,BufRead *asterisk*/*voicemail.conf* call s:StarSetf('asteriskvm') |
531 | 2009 |
1125 | 2010 " Bazaar version control |
2011 au BufNewFile,BufRead bzr_log.* setf bzr | |
2012 | |
11358
a6b9cdcde548
patch 8.0.0564: cannot detect Bazel BUILD files on some systems
Christian Brabandt <cb@256bit.org>
parents:
11262
diff
changeset
|
2013 " 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
|
2014 if !has("fname_case") |
a6b9cdcde548
patch 8.0.0564: cannot detect Bazel BUILD files on some systems
Christian Brabandt <cb@256bit.org>
parents:
11262
diff
changeset
|
2015 au BufNewFile,BufRead BUILD setf bzl |
a6b9cdcde548
patch 8.0.0564: cannot detect Bazel BUILD files on some systems
Christian Brabandt <cb@256bit.org>
parents:
11262
diff
changeset
|
2016 endif |
a6b9cdcde548
patch 8.0.0564: cannot detect Bazel BUILD files on some systems
Christian Brabandt <cb@256bit.org>
parents:
11262
diff
changeset
|
2017 |
7 | 2018 " BIND zone |
805 | 2019 au BufNewFile,BufRead */named/db.*,*/bind/db.* call s:StarSetf('bindzone') |
7 | 2020 |
2788 | 2021 " Calendar |
2022 au BufNewFile,BufRead */.calendar/*, | |
2023 \*/share/calendar/*/calendar.*,*/share/calendar/calendar.* | |
2024 \ call s:StarSetf('calendar') | |
2025 | |
7 | 2026 " Changelog |
216 | 2027 au BufNewFile,BufRead [cC]hange[lL]og* |
2028 \ if getline(1) =~ '; urgency=' | |
2029 \| call s:StarSetf('debchangelog') | |
2030 \|else | |
2031 \| call s:StarSetf('changelog') | |
2032 \|endif | |
7 | 2033 |
2034 " Crontab | |
2751 | 2035 au BufNewFile,BufRead crontab,crontab.*,*/etc/cron.d/* call s:StarSetf('crontab') |
816 | 2036 |
2788 | 2037 " dnsmasq(8) configuration |
2038 au BufNewFile,BufRead */etc/dnsmasq.d/* call s:StarSetf('dnsmasq') | |
2039 | |
7 | 2040 " Dracula |
216 | 2041 au BufNewFile,BufRead drac.* call s:StarSetf('dracula') |
7 | 2042 |
2043 " Fvwm | |
1125 | 2044 au BufNewFile,BufRead */.fvwm/* call s:StarSetf('fvwm') |
7 | 2045 au BufNewFile,BufRead *fvwmrc*,*fvwm95*.hook |
216 | 2046 \ let b:fvwm_version = 1 | call s:StarSetf('fvwm') |
7 | 2047 au BufNewFile,BufRead *fvwm2rc* |
216 | 2048 \ if expand("<afile>:e") == "m4" |
2049 \| call s:StarSetf('fvwm2m4') | |
2050 \|else | |
2051 \| let b:fvwm_version = 2 | call s:StarSetf('fvwm') | |
2052 \|endif | |
7 | 2053 |
2034 | 2054 " Gedcom |
2788 | 2055 au BufNewFile,BufRead */tmp/lltmp* call s:StarSetf('gedcom') |
2034 | 2056 |
16208 | 2057 " Git |
2058 au BufNewFile,BufRead */.gitconfig.d/*,/etc/gitconfig.d/* call s:StarSetf('gitconfig') | |
2059 | |
2060 " Gitolite | |
2061 au BufNewFile,BufRead */gitolite-admin/conf/* call s:StarSetf('gitolite') | |
2062 | |
7 | 2063 " GTK RC |
216 | 2064 au BufNewFile,BufRead .gtkrc*,gtkrc* call s:StarSetf('gtkrc') |
7 | 2065 |
2066 " Jam | |
216 | 2067 au BufNewFile,BufRead Prl*.*,JAM*.* call s:StarSetf('jam') |
7 | 2068 |
2069 " Jargon | |
2070 au! BufNewFile,BufRead *jarg* | |
216 | 2071 \ if getline(1).getline(2).getline(3).getline(4).getline(5) =~? 'THIS IS THE JARGON FILE' |
2072 \| call s:StarSetf('jargon') | |
2073 \|endif | |
7 | 2074 |
16208 | 2075 " Java Properties resource file (note: doesn't catch font.properties.pl) |
2076 au BufNewFile,BufRead *.properties_??_??_* call s:StarSetf('jproperties') | |
2077 | |
837 | 2078 " Kconfig |
2079 au BufNewFile,BufRead Kconfig.* call s:StarSetf('kconfig') | |
2080 | |
2788 | 2081 " Lilo: Linux loader |
2082 au BufNewFile,BufRead lilo.conf* call s:StarSetf('lilo') | |
2083 | |
2434
86532ee3ea41
Updated runtime files. Add logcheck filetype plugin. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2415
diff
changeset
|
2084 " Logcheck |
2751 | 2085 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
|
2086 |
7 | 2087 " Makefile |
216 | 2088 au BufNewFile,BufRead [mM]akefile* call s:StarSetf('make') |
7 | 2089 |
1648 | 2090 " Ruby Makefile |
2091 au BufNewFile,BufRead [rR]akefile* call s:StarSetf('ruby') | |
2092 | |
2093 " 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
|
2094 au BufNewFile,BufRead {neo,}mutt[[:alnum:]._-]\\\{6\} setf mail |
1648 | 2095 |
9555
9560a5b782ee
commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8
Christian Brabandt <cb@256bit.org>
parents:
9533
diff
changeset
|
2096 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
|
2097 |
389 | 2098 " Modconf |
2788 | 2099 au BufNewFile,BufRead */etc/modutils/* |
2100 \ if executable(expand("<afile>")) != 1 | |
2101 \| call s:StarSetf('modconf') | |
2102 \|endif | |
2751 | 2103 au BufNewFile,BufRead */etc/modprobe.* call s:StarSetf('modconf') |
389 | 2104 |
7 | 2105 " Mutt setup file |
1648 | 2106 au BufNewFile,BufRead .mutt{ng,}rc*,*/.mutt{ng,}/mutt{ng,}rc* call s:StarSetf('muttrc') |
484 | 2107 au BufNewFile,BufRead mutt{ng,}rc*,Mutt{ng,}rc* call s:StarSetf('muttrc') |
7 | 2108 |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2109 " Neomutt setup file |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2110 au BufNewFile,BufRead .neomuttrc*,*/.neomutt/neomuttrc* call s:StarSetf('neomuttrc') |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2111 au BufNewFile,BufRead neomuttrc*,Neomuttrc* call s:StarSetf('neomuttrc') |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2112 |
7 | 2113 " Nroff macros |
216 | 2114 au BufNewFile,BufRead tmac.* call s:StarSetf('nroff') |
7 | 2115 |
10348
c78513465e6e
commit https://github.com/vim/vim/commit/25de4c232d580583feadae11ab34e3cc6333c350
Christian Brabandt <cb@256bit.org>
parents:
10319
diff
changeset
|
2116 " OpenBSD hostname.if |
c78513465e6e
commit https://github.com/vim/vim/commit/25de4c232d580583feadae11ab34e3cc6333c350
Christian Brabandt <cb@256bit.org>
parents:
10319
diff
changeset
|
2117 au BufNewFile,BufRead /etc/hostname.* call s:StarSetf('config') |
c78513465e6e
commit https://github.com/vim/vim/commit/25de4c232d580583feadae11ab34e3cc6333c350
Christian Brabandt <cb@256bit.org>
parents:
10319
diff
changeset
|
2118 |
375 | 2119 " Pam conf |
2751 | 2120 au BufNewFile,BufRead */etc/pam.d/* call s:StarSetf('pamconf') |
375 | 2121 |
7 | 2122 " Printcap and Termcap |
2123 au BufNewFile,BufRead *printcap* | |
216 | 2124 \ if !did_filetype() |
2125 \| let b:ptcap_type = "print" | call s:StarSetf('ptcap') | |
2126 \|endif | |
7 | 2127 au BufNewFile,BufRead *termcap* |
216 | 2128 \ if !did_filetype() |
2129 \| let b:ptcap_type = "term" | call s:StarSetf('ptcap') | |
2130 \|endif | |
7 | 2131 |
4278 | 2132 " ReDIF |
2133 " 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
|
2134 au BufRead,BufNewFile *.rdf call dist#ft#Redif() |
4278 | 2135 |
2788 | 2136 " Remind |
2137 au BufNewFile,BufRead .reminders* call s:StarSetf('remind') | |
2138 | |
16208 | 2139 " SGML catalog file |
2140 au BufNewFile,BufRead sgml.catalog* call s:StarSetf('catalog') | |
2141 | |
15527
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2142 " Shell 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
|
2143 au BufNewFile,BufRead .bashrc*,.bash[_-]profile*,.bash[_-]logout*,.bash[_-]aliases*,bash-fc[-.]*,,PKGBUILD* call dist#ft#SetFileTypeSH("bash") |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2144 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
|
2145 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
|
2146 |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2147 " 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
|
2148 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
|
2149 |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2150 " 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
|
2151 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
|
2152 |
16208 | 2153 " VHDL |
2154 au BufNewFile,BufRead *.vhdl_[0-9]* call s:StarSetf('vhdl') | |
2155 | |
7 | 2156 " Vim script |
216 | 2157 au BufNewFile,BufRead *vimrc* call s:StarSetf('vim') |
7 | 2158 |
2159 " Subversion commit file | |
45 | 2160 au BufNewFile,BufRead svn-commit*.tmp setf svn |
7 | 2161 |
2162 " X resources file | |
216 | 2163 au BufNewFile,BufRead Xresources*,*/app-defaults/*,*/Xresources/* call s:StarSetf('xdefaults') |
7 | 2164 |
2165 " XFree86 config | |
2166 au BufNewFile,BufRead XF86Config-4* | |
2751 | 2167 \ let b:xf86conf_xfree86_version = 4 | call s:StarSetf('xf86conf') |
7 | 2168 au BufNewFile,BufRead XF86Config* |
216 | 2169 \ if getline(1) =~ '\<XConfigurator\>' |
2751 | 2170 \| let b:xf86conf_xfree86_version = 3 |
216 | 2171 \|endif |
2172 \|call s:StarSetf('xf86conf') | |
7 | 2173 |
2174 " X11 xmodmap | |
216 | 2175 au BufNewFile,BufRead *xmodmap* call s:StarSetf('xmodmap') |
7 | 2176 |
375 | 2177 " Xinetd conf |
2751 | 2178 au BufNewFile,BufRead */etc/xinetd.d/* call s:StarSetf('xinetd') |
375 | 2179 |
3082 | 2180 " yum conf (close enough to dosini) |
4229 | 2181 au BufNewFile,BufRead */etc/yum.repos.d/* call s:StarSetf('dosini') |
3082 | 2182 |
15535
45a159f62dd0
patch 8.1.0775: matching too many files as zsh
Bram Moolenaar <Bram@vim.org>
parents:
15527
diff
changeset
|
2183 " 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
|
2184 au BufNewFile,BufRead .zsh*,.zlog*,.zcompdump* call s:StarSetf('zsh') |
216 | 2185 au BufNewFile,BufRead zsh*,zlog* call s:StarSetf('zsh') |
7 | 2186 |
2187 | |
3237 | 2188 " Plain text files, needs to be far down to not override others. This avoids |
2189 " the "conf" type being used if there is a line starting with '#'. | |
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
|
2190 au BufNewFile,BufRead *.text,README 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
|
2191 |
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
|
2192 " 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
|
2193 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
|
2194 \ 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
|
2195 \| 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
|
2196 \| endif |
3237 | 2197 |
2013 | 2198 |
2199 " Use the filetype detect plugins. They may overrule any of the previously | |
2200 " detected filetypes. | |
2201 runtime! ftdetect/*.vim | |
2202 | |
3326 | 2203 " NOTE: The above command could have ended the filetypedetect autocmd group |
3356 | 2204 " and started another one. Let's make sure it has ended to get to a consistent |
3326 | 2205 " state. |
2206 augroup END | |
2013 | 2207 |
11459
561b76ed9d12
patch 8.0.0613: the conf filetype is used before ftdetect from packages
Christian Brabandt <cb@256bit.org>
parents:
11442
diff
changeset
|
2208 " Generic configuration file. Use FALLBACK, it's just guessing! |
3326 | 2209 au filetypedetect BufNewFile,BufRead,StdinReadPost * |
7 | 2210 \ if !did_filetype() && expand("<amatch>") !~ g:ft_ignore_pat |
2211 \ && (getline(1) =~ '^#' || getline(2) =~ '^#' || getline(3) =~ '^#' | |
2212 \ || 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
|
2213 \ setf FALLBACK conf | |
7 | 2214 \ endif |
2215 | |
2216 | |
2217 " If the GUI is already running, may still need to install the Syntax menu. | |
2218 " Don't do it when the 'M' flag is included in 'guioptions'. | |
2219 if has("menu") && has("gui_running") | |
2220 \ && !exists("did_install_syntax_menu") && &guioptions !~# "M" | |
2221 source <sfile>:p:h/menu.vim | |
2222 endif | |
2223 | |
1219 | 2224 " Function called for testing all functions defined here. These are |
2225 " script-local, thus need to be executed here. | |
2226 " Returns a string with error messages (hopefully empty). | |
2227 func! TestFiletypeFuncs(testlist) | |
2228 let output = '' | |
2229 for f in a:testlist | |
2230 try | |
2231 exe f | |
2232 catch | |
2233 let output = output . "\n" . f . ": " . v:exception | |
2234 endtry | |
2235 endfor | |
2236 return output | |
2237 endfunc | |
2238 | |
7 | 2239 " Restore 'cpoptions' |
2240 let &cpo = s:cpo_save | |
2241 unlet s:cpo_save |