Mercurial > vim
annotate runtime/filetype.vim @ 3956:7120c70c42fe
Added tag v7-3-733 for changeset 509e55bd4a3f
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 28 Nov 2012 15:55:42 +0100 |
parents | c3036f1dca68 |
children | fdb8a9c7bd91 |
rev | line source |
---|---|
7 | 1 " Vim support file to detect file types |
2 " | |
3 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
3854 | 4 " Last Change: 2012 Oct 05 |
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") |
3465 | 20 au BufNewFile,BufRead ?\+.orig,?\+.bak,?\+.old,?\+.new,?\+.dpkg-dist,?\+.dpkg-old,?\+.dpkg-new,?\+.dpkg-bak,?\+.rpmsave,?\+.rpmnew |
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. | |
1219 | 45 func! s:StarSetf(ft) |
216 | 46 if expand("<amatch>") !~ g:ft_ignore_pat |
47 exe 'setf ' . a:ft | |
48 endif | |
1219 | 49 endfunc |
216 | 50 |
7 | 51 " Abaqus or Trasys |
216 | 52 au BufNewFile,BufRead *.inp call s:Check_inp() |
7 | 53 |
1219 | 54 func! s:Check_inp() |
7 | 55 if getline(1) =~ '^\*' |
56 setf abaqus | |
57 else | |
58 let n = 1 | |
59 if line("$") > 500 | |
60 let nmax = 500 | |
61 else | |
62 let nmax = line("$") | |
63 endif | |
64 while n <= nmax | |
65 if getline(n) =~? "^header surface data" | |
66 setf trasys | |
67 break | |
68 endif | |
69 let n = n + 1 | |
70 endwhile | |
71 endif | |
1219 | 72 endfunc |
7 | 73 |
74 " A-A-P recipe | |
75 au BufNewFile,BufRead *.aap setf aap | |
76 | |
389 | 77 " A2ps printing utility |
2751 | 78 au BufNewFile,BufRead */etc/a2ps.cfg,*/etc/a2ps/*.cfg,a2psrc,.a2psrc setf a2ps |
389 | 79 |
22 | 80 " ABAB/4 |
81 au BufNewFile,BufRead *.abap setf abap | |
82 | |
7 | 83 " ABC music notation |
84 au BufNewFile,BufRead *.abc setf abc | |
85 | |
86 " ABEL | |
87 au BufNewFile,BufRead *.abl setf abel | |
88 | |
89 " AceDB | |
90 au BufNewFile,BufRead *.wrm setf acedb | |
91 | |
92 " Ada (83, 9X, 95) | |
93 au BufNewFile,BufRead *.adb,*.ads,*.ada setf ada | |
1125 | 94 if has("vms") |
1676 | 95 au BufNewFile,BufRead *.gpr,*.ada_m,*.adc setf ada |
1125 | 96 else |
1676 | 97 au BufNewFile,BufRead *.gpr setf ada |
1125 | 98 endif |
7 | 99 |
100 " AHDL | |
101 au BufNewFile,BufRead *.tdf setf ahdl | |
102 | |
103 " AMPL | |
104 au BufNewFile,BufRead *.run setf ampl | |
105 | |
106 " Ant | |
107 au BufNewFile,BufRead build.xml setf ant | |
108 | |
109 " Apache style config file | |
216 | 110 au BufNewFile,BufRead proftpd.conf* call s:StarSetf('apachestyle') |
7 | 111 |
112 " Apache config file | |
2751 | 113 au BufNewFile,BufRead .htaccess,*/etc/httpd/*.conf setf apache |
7 | 114 |
115 " XA65 MOS6510 cross assembler | |
116 au BufNewFile,BufRead *.a65 setf a65 | |
117 | |
2034 | 118 " Applescript |
119 au BufNewFile,BufRead *.scpt setf applescript | |
120 | |
7 | 121 " Applix ELF |
122 au BufNewFile,BufRead *.am | |
123 \ if expand("<afile>") !~? 'Makefile.am\>' | setf elf | endif | |
124 | |
24 | 125 " ALSA configuration |
2788 | 126 au BufNewFile,BufRead .asoundrc,*/usr/share/alsa/alsa.conf,*/etc/asound.conf setf alsaconf |
24 | 127 |
7 | 128 " Arc Macro Language |
129 au BufNewFile,BufRead *.aml setf aml | |
130 | |
3854 | 131 " APT config file |
132 au BufNewFile,BufRead apt.conf setf aptconf | |
133 au BufNewFile,BufRead */.aptitude/config setf aptconf | |
134 au BufNewFile,BufRead */etc/apt/apt.conf.d/{[-_[:alnum:]]\+,[-_.[:alnum:]]\+.conf} setf aptconf | |
135 | |
7 | 136 " Arch Inventory file |
137 au BufNewFile,BufRead .arch-inventory,=tagging-method setf arch | |
138 | |
139 " ART*Enterprise (formerly ART-IM) | |
140 au BufNewFile,BufRead *.art setf art | |
141 | |
142 " ASN.1 | |
143 au BufNewFile,BufRead *.asn,*.asn1 setf asn | |
144 | |
145 " Active Server Pages (with Visual Basic Script) | |
146 au BufNewFile,BufRead *.asa | |
147 \ if exists("g:filetype_asa") | | |
148 \ exe "setf " . g:filetype_asa | | |
149 \ else | | |
150 \ setf aspvbs | | |
151 \ endif | |
152 | |
153 " Active Server Pages (with Perl or Visual Basic Script) | |
154 au BufNewFile,BufRead *.asp | |
155 \ if exists("g:filetype_asp") | | |
156 \ exe "setf " . g:filetype_asp | | |
157 \ elseif getline(1) . getline(2) . getline(3) =~? "perlscript" | | |
158 \ setf aspperl | | |
159 \ else | | |
160 \ setf aspvbs | | |
161 \ endif | |
162 | |
163 " Grub (must be before catch *.lst) | |
2788 | 164 au BufNewFile,BufRead */boot/grub/menu.lst,*/boot/grub/grub.conf,*/etc/grub.conf setf grub |
7 | 165 |
166 " Assembly (all kinds) | |
167 " *.lst is not pure assembly, it has two extra columns (address, byte codes) | |
216 | 168 au BufNewFile,BufRead *.asm,*.[sS],*.[aA],*.mac,*.lst call s:FTasm() |
7 | 169 |
170 " This function checks for the kind of assembly that is wanted by the user, or | |
171 " can be detected from the first five lines of the file. | |
1219 | 172 func! s:FTasm() |
7 | 173 " make sure b:asmsyntax exists |
174 if !exists("b:asmsyntax") | |
175 let b:asmsyntax = "" | |
176 endif | |
177 | |
178 if b:asmsyntax == "" | |
216 | 179 call s:FTasmsyntax() |
7 | 180 endif |
181 | |
182 " if b:asmsyntax still isn't set, default to asmsyntax or GNU | |
183 if b:asmsyntax == "" | |
184 if exists("g:asmsyntax") | |
185 let b:asmsyntax = g:asmsyntax | |
186 else | |
187 let b:asmsyntax = "asm" | |
188 endif | |
189 endif | |
190 | |
1698 | 191 exe "setf " . fnameescape(b:asmsyntax) |
1219 | 192 endfunc |
193 | |
194 func! s:FTasmsyntax() | |
7 | 195 " see if file contains any asmsyntax=foo overrides. If so, change |
196 " b:asmsyntax appropriately | |
197 let head = " ".getline(1)." ".getline(2)." ".getline(3)." ".getline(4). | |
198 \" ".getline(5)." " | |
1698 | 199 let match = matchstr(head, '\sasmsyntax=\zs[a-zA-Z0-9]\+\ze\s') |
200 if match != '' | |
201 let b:asmsyntax = match | |
7 | 202 elseif ((head =~? '\.title') || (head =~? '\.ident') || (head =~? '\.macro') || (head =~? '\.subtitle') || (head =~? '\.library')) |
203 let b:asmsyntax = "vmasm" | |
204 endif | |
1219 | 205 endfunc |
7 | 206 |
207 " Macro (VAX) | |
208 au BufNewFile,BufRead *.mar setf vmasm | |
209 | |
210 " Atlas | |
211 au BufNewFile,BufRead *.atl,*.as setf atlas | |
212 | |
1125 | 213 " Autoit v3 |
214 au BufNewFile,BufRead *.au3 setf autoit | |
215 | |
1219 | 216 " Autohotkey |
217 au BufNewFile,BufRead *.ahk setf autohotkey | |
218 | |
7 | 219 " Automake |
809 | 220 au BufNewFile,BufRead [mM]akefile.am,GNUmakefile.am setf automake |
7 | 221 |
375 | 222 " Autotest .at files are actually m4 |
223 au BufNewFile,BufRead *.at setf m4 | |
224 | |
7 | 225 " Avenue |
226 au BufNewFile,BufRead *.ave setf ave | |
227 | |
228 " Awk | |
229 au BufNewFile,BufRead *.awk setf awk | |
230 | |
231 " B | |
232 au BufNewFile,BufRead *.mch,*.ref,*.imp setf b | |
233 | |
234 " BASIC or Visual Basic | |
216 | 235 au BufNewFile,BufRead *.bas call s:FTVB("basic") |
7 | 236 |
237 " Check if one of the first five lines contains "VB_Name". In that case it is | |
238 " probably a Visual Basic file. Otherwise it's assumed to be "alt" filetype. | |
1219 | 239 func! s:FTVB(alt) |
7 | 240 if getline(1).getline(2).getline(3).getline(4).getline(5) =~? 'VB_Name\|Begin VB\.\(Form\|MDIForm\|UserControl\)' |
241 setf vb | |
242 else | |
243 exe "setf " . a:alt | |
244 endif | |
1219 | 245 endfunc |
7 | 246 |
3465 | 247 " Visual Basic Script (close to Visual Basic) or Visual Basic .NET |
248 au BufNewFile,BufRead *.vb,*.vbs,*.dsm,*.ctl setf vb | |
7 | 249 |
1125 | 250 " IBasic file (similar to QBasic) |
251 au BufNewFile,BufRead *.iba,*.ibi setf ibasic | |
252 | |
253 " FreeBasic file (similar to QBasic) | |
254 au BufNewFile,BufRead *.fb,*.bi setf freebasic | |
255 | |
7 | 256 " Batch file for MSDOS. |
15 | 257 au BufNewFile,BufRead *.bat,*.sys setf dosbatch |
7 | 258 " *.cmd is close to a Batch file, but on OS/2 Rexx files also use *.cmd. |
259 au BufNewFile,BufRead *.cmd | |
260 \ if getline(1) =~ '^/\*' | setf rexx | else | setf dosbatch | endif | |
261 | |
262 " Batch file for 4DOS | |
216 | 263 au BufNewFile,BufRead *.btm call s:FTbtm() |
1219 | 264 func! s:FTbtm() |
15 | 265 if exists("g:dosbatch_syntax_for_btm") && g:dosbatch_syntax_for_btm |
266 setf dosbatch | |
267 else | |
268 setf btm | |
269 endif | |
1219 | 270 endfunc |
7 | 271 |
272 " BC calculator | |
273 au BufNewFile,BufRead *.bc setf bc | |
274 | |
275 " BDF font | |
276 au BufNewFile,BufRead *.bdf setf bdf | |
277 | |
278 " BibTeX bibliography database file | |
279 au BufNewFile,BufRead *.bib setf bib | |
280 | |
846 | 281 " BibTeX Bibliography Style |
282 au BufNewFile,BufRead *.bst setf bst | |
283 | |
7 | 284 " BIND configuration |
45 | 285 au BufNewFile,BufRead named.conf,rndc.conf setf named |
7 | 286 |
287 " BIND zone | |
288 au BufNewFile,BufRead named.root setf bindzone | |
805 | 289 au BufNewFile,BufRead *.db call s:BindzoneCheck('') |
290 | |
291 func! s:BindzoneCheck(default) | |
292 if getline(1).getline(2).getline(3).getline(4) =~ '^; <<>> DiG [0-9.]\+ <<>>\|BIND.*named\|$ORIGIN\|$TTL\|IN\s\+SOA' | |
293 setf bindzone | |
294 elseif a:default != '' | |
295 exe 'setf ' . a:default | |
296 endif | |
297 endfunc | |
7 | 298 |
299 " Blank | |
300 au BufNewFile,BufRead *.bl setf blank | |
301 | |
1676 | 302 " Blkid cache file |
2751 | 303 au BufNewFile,BufRead */etc/blkid.tab,*/etc/blkid.tab.old setf xml |
1676 | 304 |
7 | 305 " C or lpc |
216 | 306 au BufNewFile,BufRead *.c call s:FTlpc() |
7 | 307 |
1219 | 308 func! s:FTlpc() |
7 | 309 if exists("g:lpc_syntax_for_c") |
310 let lnum = 1 | |
311 while lnum <= 12 | |
312 if getline(lnum) =~# '^\(//\|inherit\|private\|protected\|nosave\|string\|object\|mapping\|mixed\)' | |
313 setf lpc | |
314 return | |
315 endif | |
316 let lnum = lnum + 1 | |
317 endwhile | |
318 endif | |
319 setf c | |
1219 | 320 endfunc |
7 | 321 |
322 " Calendar | |
216 | 323 au BufNewFile,BufRead calendar setf calendar |
7 | 324 |
325 " C# | |
326 au BufNewFile,BufRead *.cs setf cs | |
327 | |
2152 | 328 " Cabal |
2725 | 329 au BufNewFile,BufRead *.cabal setf cabal |
2152 | 330 |
1219 | 331 " Cdrdao TOC |
332 au BufNewFile,BufRead *.toc setf cdrtoc | |
333 | |
1648 | 334 " Cdrdao config |
2788 | 335 au BufNewFile,BufRead */etc/cdrdao.conf,*/etc/defaults/cdrdao,*/etc/default/cdrdao,.cdrdao setf cdrdaoconf |
1648 | 336 |
555 | 337 " Cfengine |
338 au BufNewFile,BufRead cfengine.conf setf cfengine | |
339 | |
2152 | 340 " ChaiScript |
341 au BufRead,BufNewFile *.chai setf chaiscript | |
342 | |
7 | 343 " Comshare Dimension Definition Language |
344 au BufNewFile,BufRead *.cdl setf cdl | |
345 | |
1125 | 346 " Conary Recipe |
347 au BufNewFile,BufRead *.recipe setf conaryrecipe | |
348 | |
7 | 349 " Controllable Regex Mutilator |
350 au BufNewFile,BufRead *.crm setf crm | |
351 | |
352 " Cyn++ | |
353 au BufNewFile,BufRead *.cyn setf cynpp | |
354 | |
355 " Cynlib | |
356 " .cc and .cpp files can be C++ or Cynlib. | |
357 au BufNewFile,BufRead *.cc | |
358 \ if exists("cynlib_syntax_for_cc")|setf cynlib|else|setf cpp|endif | |
359 au BufNewFile,BufRead *.cpp | |
360 \ if exists("cynlib_syntax_for_cpp")|setf cynlib|else|setf cpp|endif | |
361 | |
362 " C++ | |
2034 | 363 au BufNewFile,BufRead *.cxx,*.c++,*.hh,*.hxx,*.hpp,*.ipp,*.moc,*.tcc,*.inl setf cpp |
7 | 364 if has("fname_case") |
2034 | 365 au BufNewFile,BufRead *.C,*.H setf cpp |
7 | 366 endif |
367 | |
1648 | 368 " .h files can be C, Ch C++, ObjC or ObjC++. |
369 " Set c_syntax_for_h if you want C, ch_syntax_for_h if you want Ch. ObjC is | |
370 " detected automatically. | |
371 au BufNewFile,BufRead *.h call s:FTheader() | |
372 | |
373 func! s:FTheader() | |
374 if match(getline(1, min([line("$"), 200])), '^@\(interface\|end\|class\)') > -1 | |
3445 | 375 if exists("g:c_syntax_for_h") |
376 setf objc | |
377 else | |
378 setf objcpp | |
379 endif | |
2034 | 380 elseif exists("g:c_syntax_for_h") |
1648 | 381 setf c |
2034 | 382 elseif exists("g:ch_syntax_for_h") |
1648 | 383 setf ch |
384 else | |
385 setf cpp | |
386 endif | |
387 endfunc | |
7 | 388 |
389 " Ch (CHscript) | |
390 au BufNewFile,BufRead *.chf setf ch | |
391 | |
392 " TLH files are C++ headers generated by Visual C++'s #import from typelibs | |
393 au BufNewFile,BufRead *.tlh setf cpp | |
394 | |
395 " Cascading Style Sheets | |
396 au BufNewFile,BufRead *.css setf css | |
397 | |
398 " Century Term Command Scripts (*.cmd too) | |
399 au BufNewFile,BufRead *.con setf cterm | |
400 | |
401 " Changelog | |
809 | 402 au BufNewFile,BufRead changelog.Debian,changelog.dch,NEWS.Debian,NEWS.dch |
403 \ setf debchangelog | |
404 | |
405 au BufNewFile,BufRead [cC]hange[lL]og | |
406 \ if getline(1) =~ '; urgency=' | |
407 \| setf debchangelog | |
408 \| else | |
409 \| setf changelog | |
410 \| endif | |
411 | |
412 au BufNewFile,BufRead NEWS | |
413 \ if getline(1) =~ '; urgency=' | |
414 \| setf debchangelog | |
415 \| endif | |
7 | 416 |
417 " CHILL | |
418 au BufNewFile,BufRead *..ch setf chill | |
419 | |
420 " Changes for WEB and CWEB or CHILL | |
216 | 421 au BufNewFile,BufRead *.ch call s:FTchange() |
7 | 422 |
423 " This function checks if one of the first ten lines start with a '@'. In | |
424 " that case it is probably a change file. | |
425 " If the first line starts with # or ! it's probably a ch file. | |
426 " If a line has "main", "include", "//" ir "/*" it's probably ch. | |
427 " Otherwise CHILL is assumed. | |
1219 | 428 func! s:FTchange() |
7 | 429 let lnum = 1 |
430 while lnum <= 10 | |
431 if getline(lnum)[0] == '@' | |
432 setf change | |
433 return | |
434 endif | |
435 if lnum == 1 && (getline(1)[0] == '#' || getline(1)[0] == '!') | |
436 setf ch | |
437 return | |
438 endif | |
439 if getline(lnum) =~ "MODULE" | |
440 setf chill | |
441 return | |
442 endif | |
443 if getline(lnum) =~ 'main\s*(\|#\s*include\|//' | |
444 setf ch | |
445 return | |
446 endif | |
447 let lnum = lnum + 1 | |
448 endwhile | |
449 setf chill | |
1219 | 450 endfunc |
7 | 451 |
839 | 452 " ChordPro |
453 au BufNewFile,BufRead *.chopro,*.crd,*.cho,*.crdpro,*.chordpro setf chordpro | |
454 | |
7 | 455 " Clean |
456 au BufNewFile,BufRead *.dcl,*.icl setf clean | |
457 | |
458 " Clever | |
459 au BufNewFile,BufRead *.eni setf cl | |
460 | |
461 " Clever or dtd | |
216 | 462 au BufNewFile,BufRead *.ent call s:FTent() |
7 | 463 |
1219 | 464 func! s:FTent() |
7 | 465 " This function checks for valid cl syntax in the first five lines. |
466 " Look for either an opening comment, '#', or a block start, '{". | |
467 " If not found, assume SGML. | |
468 let lnum = 1 | |
469 while lnum < 6 | |
470 let line = getline(lnum) | |
471 if line =~ '^\s*[#{]' | |
472 setf cl | |
473 return | |
474 elseif line !~ '^\s*$' | |
475 " Not a blank line, not a comment, and not a block start, | |
476 " so doesn't look like valid cl code. | |
477 break | |
478 endif | |
479 let lnum = lnum + 1 | |
480 endw | |
481 setf dtd | |
1219 | 482 endfunc |
7 | 483 |
625 | 484 " Clipper (or FoxPro; could also be eviews) |
7 | 485 au BufNewFile,BufRead *.prg |
486 \ if exists("g:filetype_prg") | | |
487 \ exe "setf " . g:filetype_prg | | |
488 \ else | | |
489 \ setf clipper | | |
490 \ endif | |
491 | |
836 | 492 " Cmake |
493 au BufNewFile,BufRead CMakeLists.txt,*.cmake,*.cmake.in setf cmake | |
494 | |
1125 | 495 " Cmusrc |
2788 | 496 au BufNewFile,BufRead */.cmus/{autosave,rc,command-history,*.theme} setf cmusrc |
1125 | 497 au BufNewFile,BufRead */cmus/{rc,*.theme} setf cmusrc |
498 | |
7 | 499 " Cobol |
809 | 500 au BufNewFile,BufRead *.cbl,*.cob,*.lib setf cobol |
501 " cobol or zope form controller python script? (heuristic) | |
502 au BufNewFile,BufRead *.cpy | |
503 \ if getline(1) =~ '^##' | | |
504 \ setf python | | |
505 \ else | | |
506 \ setf cobol | | |
507 \ endif | |
7 | 508 |
1648 | 509 " Coco/R |
510 au BufNewFile,BufRead *.atg setf coco | |
511 | |
7 | 512 " Cold Fusion |
513 au BufNewFile,BufRead *.cfm,*.cfi,*.cfc setf cf | |
514 | |
515 " Configure scripts | |
516 au BufNewFile,BufRead configure.in,configure.ac setf config | |
517 | |
1648 | 518 " CUDA Cumpute Unified Device Architecture |
519 au BufNewFile,BufRead *.cu setf cuda | |
520 | |
7 | 521 " WildPackets EtherPeek Decoder |
522 au BufNewFile,BufRead *.dcd setf dcd | |
523 | |
524 " Enlightenment configuration files | |
525 au BufNewFile,BufRead *enlightenment/*.cfg setf c | |
526 | |
527 " Eterm | |
528 au BufNewFile,BufRead *Eterm/*.cfg setf eterm | |
529 | |
530 " Lynx config files | |
531 au BufNewFile,BufRead lynx.cfg setf lynx | |
532 | |
533 " Quake | |
534 au BufNewFile,BufRead *baseq[2-3]/*.cfg,*id1/*.cfg setf quake | |
535 au BufNewFile,BufRead *quake[1-3]/*.cfg setf quake | |
536 | |
537 " Quake C | |
538 au BufNewFile,BufRead *.qc setf c | |
539 | |
540 " Configure files | |
541 au BufNewFile,BufRead *.cfg setf cfg | |
542 | |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
543 " Cucumber |
2725 | 544 au BufNewFile,BufRead *.feature setf cucumber |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
545 |
7 | 546 " Communicating Sequential Processes |
547 au BufNewFile,BufRead *.csp,*.fdr setf csp | |
548 | |
549 " CUPL logic description and simulation | |
550 au BufNewFile,BufRead *.pld setf cupl | |
551 au BufNewFile,BufRead *.si setf cuplsim | |
552 | |
553 " Debian Control | |
554 au BufNewFile,BufRead */debian/control setf debcontrol | |
1648 | 555 au BufNewFile,BufRead control |
556 \ if getline(1) =~ '^Source:' | |
557 \| setf debcontrol | |
558 \| endif | |
7 | 559 |
816 | 560 " Debian Sources.list |
2751 | 561 au BufNewFile,BufRead */etc/apt/sources.list setf debsources |
562 au BufNewFile,BufRead */etc/apt/sources.list.d/*.list setf debsources | |
816 | 563 |
1648 | 564 " Deny hosts |
565 au BufNewFile,BufRead denyhosts.conf setf denyhosts | |
566 | |
2788 | 567 " dnsmasq(8) configuration files |
2833 | 568 au BufNewFile,BufRead */etc/dnsmasq.conf setf dnsmasq |
2788 | 569 |
7 | 570 " ROCKLinux package description |
571 au BufNewFile,BufRead *.desc setf desc | |
572 | |
1648 | 573 " the D language or dtrace |
574 au BufNewFile,BufRead *.d call s:DtraceCheck() | |
575 | |
576 func! s:DtraceCheck() | |
577 let lines = getline(1, min([line("$"), 100])) | |
3224 | 578 if match(lines, '^module\>\|^import\>') > -1 |
579 " D files often start with a module and/or import statement. | |
580 setf d | |
581 elseif match(lines, '^#!\S\+dtrace\|#pragma\s\+D\s\+option\|:\S\{-}:\S\{-}:') > -1 | |
1648 | 582 setf dtrace |
583 else | |
584 setf d | |
585 endif | |
586 endfunc | |
7 | 587 |
588 " Desktop files | |
589 au BufNewFile,BufRead *.desktop,.directory setf desktop | |
590 | |
389 | 591 " Dict config |
592 au BufNewFile,BufRead dict.conf,.dictrc setf dictconf | |
593 | |
594 " Dictd config | |
595 au BufNewFile,BufRead dictd.conf setf dictdconf | |
596 | |
7 | 597 " Diff files |
598 au BufNewFile,BufRead *.diff,*.rej,*.patch setf diff | |
599 | |
600 " Dircolors | |
2751 | 601 au BufNewFile,BufRead .dir_colors,.dircolors,*/etc/DIR_COLORS setf dircolors |
7 | 602 |
603 " Diva (with Skill) or InstallShield | |
604 au BufNewFile,BufRead *.rul | |
605 \ if getline(1).getline(2).getline(3).getline(4).getline(5).getline(6) =~? 'InstallShield' | | |
606 \ setf ishd | | |
607 \ else | | |
608 \ setf diva | | |
609 \ endif | |
610 | |
611 " DCL (Digital Command Language - vms) or DNS zone file | |
805 | 612 au BufNewFile,BufRead *.com call s:BindzoneCheck('dcl') |
7 | 613 |
614 " DOT | |
615 au BufNewFile,BufRead *.dot setf dot | |
616 | |
617 " Dylan - lid files | |
618 au BufNewFile,BufRead *.lid setf dylanlid | |
619 | |
620 " Dylan - intr files (melange) | |
621 au BufNewFile,BufRead *.intr setf dylanintr | |
622 | |
623 " Dylan | |
624 au BufNewFile,BufRead *.dylan setf dylan | |
625 | |
626 " Microsoft Module Definition | |
627 au BufNewFile,BufRead *.def setf def | |
628 | |
629 " Dracula | |
630 au BufNewFile,BufRead *.drac,*.drc,*lvs,*lpe setf dracula | |
631 | |
2467
9c8d603fd4d1
Add Datascript syntax file. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2439
diff
changeset
|
632 " Datascript |
9c8d603fd4d1
Add Datascript syntax file. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2439
diff
changeset
|
633 au BufNewFile,BufRead *.ds setf datascript |
9c8d603fd4d1
Add Datascript syntax file. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2439
diff
changeset
|
634 |
7 | 635 " dsl |
636 au BufNewFile,BufRead *.dsl setf dsl | |
637 | |
638 " DTD (Document Type Definition for XML) | |
639 au BufNewFile,BufRead *.dtd setf dtd | |
640 | |
3847 | 641 " DTS/DSTI (device tree files) |
642 au BufNewFile,BufRead *.dts,*.dtsi setf dts | |
643 | |
7 | 644 " EDIF (*.edf,*.edif,*.edn,*.edo) |
645 au BufNewFile,BufRead *.ed\(f\|if\|n\|o\) setf edif | |
646 | |
647 " Embedix Component Description | |
648 au BufNewFile,BufRead *.ecd setf ecd | |
649 | |
650 " Eiffel or Specman | |
216 | 651 au BufNewFile,BufRead *.e,*.E call s:FTe() |
7 | 652 |
653 " Elinks configuration | |
654 au BufNewFile,BufRead */etc/elinks.conf,*/.elinks/elinks.conf setf elinks | |
655 | |
1219 | 656 func! s:FTe() |
7 | 657 let n = 1 |
658 while n < 100 && n < line("$") | |
659 if getline(n) =~ "^\\s*\\(<'\\|'>\\)\\s*$" | |
660 setf specman | |
661 return | |
662 endif | |
663 let n = n + 1 | |
664 endwhile | |
665 setf eiffel | |
1219 | 666 endfunc |
7 | 667 |
1648 | 668 " ERicsson LANGuage; Yaws is erlang too |
1668 | 669 au BufNewFile,BufRead *.erl,*.hrl,*.yaws setf erlang |
7 | 670 |
671 " Elm Filter Rules file | |
672 au BufNewFile,BufRead filter-rules setf elmfilt | |
673 | |
168 | 674 " ESMTP rc file |
675 au BufNewFile,BufRead *esmtprc setf esmtprc | |
676 | |
7 | 677 " ESQL-C |
678 au BufNewFile,BufRead *.ec,*.EC setf esqlc | |
679 | |
278 | 680 " Esterel |
681 au BufNewFile,BufRead *.strl setf esterel | |
682 | |
7 | 683 " Essbase script |
684 au BufNewFile,BufRead *.csc setf csc | |
685 | |
686 " Exim | |
687 au BufNewFile,BufRead exim.conf setf exim | |
688 | |
689 " Expect | |
690 au BufNewFile,BufRead *.exp setf expect | |
691 | |
692 " Exports | |
693 au BufNewFile,BufRead exports setf exports | |
694 | |
2596 | 695 " Falcon |
2725 | 696 au BufNewFile,BufRead *.fal setf falcon |
2596 | 697 |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2202
diff
changeset
|
698 " Fantom |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2202
diff
changeset
|
699 au BufNewFile,BufRead *.fan,*.fwt setf fan |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2202
diff
changeset
|
700 |
333 | 701 " Factor |
702 au BufNewFile,BufRead *.factor setf factor | |
703 | |
7 | 704 " Fetchmail RC file |
705 au BufNewFile,BufRead .fetchmailrc setf fetchmail | |
706 | |
2034 | 707 " FlexWiki - disabled, because it has side effects when a .wiki file |
708 " is not actually FlexWiki | |
709 "au BufNewFile,BufRead *.wiki setf flexwiki | |
846 | 710 |
7 | 711 " Focus Executable |
712 au BufNewFile,BufRead *.fex,*.focexec setf focexec | |
713 | |
714 " Focus Master file (but not for auto.master) | |
715 au BufNewFile,BufRead auto.master setf conf | |
716 au BufNewFile,BufRead *.mas,*.master setf master | |
717 | |
718 " Forth | |
719 au BufNewFile,BufRead *.fs,*.ft setf forth | |
720 | |
1648 | 721 " Reva Forth |
722 au BufNewFile,BufRead *.frt setf reva | |
723 | |
7 | 724 " Fortran |
1125 | 725 if has("fname_case") |
2478
11def19fbb0e
Recognize .f03 and .f08 as Fortran files. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2467
diff
changeset
|
726 au BufNewFile,BufRead *.F,*.FOR,*.FPP,*.FTN,*.F77,*.F90,*.F95,*.F03,*.F08 setf fortran |
1125 | 727 endif |
2478
11def19fbb0e
Recognize .f03 and .f08 as Fortran files. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2467
diff
changeset
|
728 au BufNewFile,BufRead *.f,*.for,*.fortran,*.fpp,*.ftn,*.f77,*.f90,*.f95,*.f03,*.f08 setf fortran |
7 | 729 |
1698 | 730 " Framescript |
731 au BufNewFile,BufRead *.fsl setf framescript | |
732 | |
7 | 733 " FStab |
819 | 734 au BufNewFile,BufRead fstab,mtab setf fstab |
7 | 735 |
736 " GDB command files | |
737 au BufNewFile,BufRead .gdbinit setf gdb | |
738 | |
739 " GDMO | |
740 au BufNewFile,BufRead *.mo,*.gdmo setf gdmo | |
741 | |
742 " Gedcom | |
2034 | 743 au BufNewFile,BufRead *.ged,lltxxxxx.txt setf gedcom |
7 | 744 |
1648 | 745 " Git |
3465 | 746 au BufNewFile,BufRead *.git/COMMIT_EDITMSG setf gitcommit |
2788 | 747 au BufNewFile,BufRead *.git/config,.gitconfig,.gitmodules setf gitconfig |
3465 | 748 au BufNewFile,BufRead *.git/modules/**/COMMIT_EDITMSG setf gitcommit |
749 au BufNewFile,BufRead *.git/modules/**/config setf gitconfig | |
750 au BufNewFile,BufRead git-rebase-todo setf gitrebase | |
2788 | 751 au BufNewFile,BufRead .msg.[0-9]* |
1648 | 752 \ if getline(1) =~ '^From.*# This line is ignored.$' | |
753 \ setf gitsendemail | | |
754 \ endif | |
2788 | 755 au BufNewFile,BufRead *.git/** |
1648 | 756 \ if getline(1) =~ '^\x\{40\}\>\|^ref: ' | |
757 \ setf git | | |
758 \ endif | |
759 | |
7 | 760 " Gkrellmrc |
761 au BufNewFile,BufRead gkrellmrc,gkrellmrc_? setf gkrellmrc | |
762 | |
763 " GP scripts (2.0 and onward) | |
827 | 764 au BufNewFile,BufRead *.gp,.gprc setf gp |
7 | 765 |
766 " GPG | |
767 au BufNewFile,BufRead */.gnupg/options setf gpg | |
768 au BufNewFile,BufRead */.gnupg/gpg.conf setf gpg | |
2788 | 769 au BufNewFile,BufRead */usr/**/gnupg/options.skel setf gpg |
770 | |
771 " gnash(1) configuration files | |
772 au BufNewFile,BufRead gnashrc,.gnashrc,gnashpluginrc,.gnashpluginrc setf gnash | |
7 | 773 |
3153 | 774 " Gitolite |
775 au BufNewFile,BufRead gitolite.conf setf gitolite | |
776 au BufNewFile,BufRead */gitolite-admin/conf/* call s:StarSetf('gitolite') | |
777 au BufNewFile,BufRead {,.}gitolite.rc,example.gitolite.rc setf perl | |
778 | |
7 | 779 " Gnuplot scripts |
780 au BufNewFile,BufRead *.gpi setf gnuplot | |
781 | |
782 " GrADS scripts | |
783 au BufNewFile,BufRead *.gs setf grads | |
784 | |
625 | 785 " Gretl |
786 au BufNewFile,BufRead *.gretl setf gretl | |
787 | |
7 | 788 " Groovy |
789 au BufNewFile,BufRead *.groovy setf groovy | |
790 | |
791 " GNU Server Pages | |
792 au BufNewFile,BufRead *.gsp setf gsp | |
793 | |
389 | 794 " Group file |
2751 | 795 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 | 796 |
7 | 797 " GTK RC |
798 au BufNewFile,BufRead .gtkrc,gtkrc setf gtkrc | |
799 | |
1668 | 800 " Haml |
801 au BufNewFile,BufRead *.haml setf haml | |
802 | |
1125 | 803 " Hamster Classic | Playground files |
804 au BufNewFile,BufRead *.hsc,*.hsm setf hamster | |
805 | |
7 | 806 " Haskell |
2725 | 807 au BufNewFile,BufRead *.hs,*.hs-boot setf haskell |
7 | 808 au BufNewFile,BufRead *.lhs setf lhaskell |
809 au BufNewFile,BufRead *.chs setf chaskell | |
810 | |
1648 | 811 " Haste |
812 au BufNewFile,BufRead *.ht setf haste | |
1668 | 813 au BufNewFile,BufRead *.htpp setf hastepreproc |
1648 | 814 |
7 | 815 " Hercules |
816 au BufNewFile,BufRead *.vc,*.ev,*.rs,*.sum,*.errsum setf hercules | |
817 | |
818 " HEX (Intel) | |
819 au BufNewFile,BufRead *.hex,*.h32 setf hex | |
820 | |
821 " Tilde (must be before HTML) | |
822 au BufNewFile,BufRead *.t.html setf tilde | |
823 | |
497 | 824 " HTML (.shtml and .stm for server side) |
825 au BufNewFile,BufRead *.html,*.htm,*.shtml,*.stm call s:FThtml() | |
7 | 826 |
798 | 827 " Distinguish between HTML, XHTML and Django |
1219 | 828 func! s:FThtml() |
7 | 829 let n = 1 |
830 while n < 10 && n < line("$") | |
831 if getline(n) =~ '\<DTD\s\+XHTML\s' | |
832 setf xhtml | |
833 return | |
834 endif | |
798 | 835 if getline(n) =~ '{%\s*\(extends\|block\)\>' |
836 setf htmldjango | |
837 return | |
838 endif | |
7 | 839 let n = n + 1 |
840 endwhile | |
841 setf html | |
1219 | 842 endfunc |
7 | 843 |
497 | 844 " HTML with Ruby - eRuby |
1219 | 845 au BufNewFile,BufRead *.erb,*.rhtml setf eruby |
7 | 846 |
847 " HTML with M4 | |
848 au BufNewFile,BufRead *.html.m4 setf htmlm4 | |
849 | |
850 " HTML Cheetah template | |
851 au BufNewFile,BufRead *.tmpl setf htmlcheetah | |
852 | |
1648 | 853 " Host config |
2751 | 854 au BufNewFile,BufRead */etc/host.conf setf hostconf |
1648 | 855 |
1676 | 856 " Hosts access |
2751 | 857 au BufNewFile,BufRead */etc/hosts.allow,*/etc/hosts.deny setf hostsaccess |
1676 | 858 |
7 | 859 " Hyper Builder |
860 au BufNewFile,BufRead *.hb setf hb | |
861 | |
862 " Icon | |
863 au BufNewFile,BufRead *.icn setf icon | |
864 | |
865 " IDL (Interface Description Language) | |
216 | 866 au BufNewFile,BufRead *.idl call s:FTidl() |
7 | 867 |
868 " Distinguish between standard IDL and MS-IDL | |
1219 | 869 func! s:FTidl() |
7 | 870 let n = 1 |
871 while n < 50 && n < line("$") | |
872 if getline(n) =~ '^\s*import\s\+"\(unknwn\|objidl\)\.idl"' | |
873 setf msidl | |
874 return | |
875 endif | |
876 let n = n + 1 | |
877 endwhile | |
878 setf idl | |
1219 | 879 endfunc |
7 | 880 |
881 " Microsoft IDL (Interface Description Language) Also *.idl | |
882 " MOF = WMI (Windows Management Instrumentation) Managed Object Format | |
883 au BufNewFile,BufRead *.odl,*.mof setf msidl | |
884 | |
885 " Icewm menu | |
886 au BufNewFile,BufRead */.icewm/menu setf icemenu | |
887 | |
1219 | 888 " Indent profile (must come before IDL *.pro!) |
889 au BufNewFile,BufRead .indent.pro setf indent | |
890 au BufNewFile,BufRead indent.pro call s:ProtoCheck('indent') | |
891 | |
7 | 892 " IDL (Interactive Data Language) |
1219 | 893 au BufNewFile,BufRead *.pro call s:ProtoCheck('idlang') |
894 | |
895 " Distinguish between "default" and Cproto prototype file. */ | |
896 func! s:ProtoCheck(default) | |
897 " Cproto files have a comment in the first line and a function prototype in | |
898 " the second line, it always ends in ";". Indent files may also have | |
899 " comments, thus we can't match comments to see the difference. | |
2725 | 900 " IDL files can have a single ';' in the second line, require at least one |
901 " chacter before the ';'. | |
902 if getline(2) =~ '.;$' | |
1219 | 903 setf cpp |
904 else | |
905 exe 'setf ' . a:default | |
906 endif | |
907 endfunc | |
908 | |
7 | 909 |
389 | 910 " Indent RC |
1676 | 911 au BufNewFile,BufRead indentrc setf indent |
389 | 912 |
7 | 913 " Inform |
914 au BufNewFile,BufRead *.inf,*.INF setf inform | |
915 | |
1125 | 916 " Initng |
2751 | 917 au BufNewFile,BufRead */etc/initng/**/*.i,*.ii setf initng |
1125 | 918 |
148 | 919 " Ipfilter |
1125 | 920 au BufNewFile,BufRead ipf.conf,ipf6.conf,ipf.rules setf ipfilter |
148 | 921 |
7 | 922 " Informix 4GL (source - canonical, include file, I4GL+M4 preproc.) |
923 au BufNewFile,BufRead *.4gl,*.4gh,*.m4gl setf fgl | |
924 | |
925 " .INI file for MSDOS | |
926 au BufNewFile,BufRead *.ini setf dosini | |
927 | |
928 " SysV Inittab | |
929 au BufNewFile,BufRead inittab setf inittab | |
930 | |
931 " Inno Setup | |
932 au BufNewFile,BufRead *.iss setf iss | |
933 | |
934 " JAL | |
935 au BufNewFile,BufRead *.jal,*.JAL setf jal | |
936 | |
937 " Jam | |
938 au BufNewFile,BufRead *.jpl,*.jpr setf jam | |
939 | |
940 " Java | |
941 au BufNewFile,BufRead *.java,*.jav setf java | |
942 | |
943 " JavaCC | |
944 au BufNewFile,BufRead *.jj,*.jjt setf javacc | |
945 | |
1125 | 946 " JavaScript, ECMAScript |
3082 | 947 au BufNewFile,BufRead *.js,*.javascript,*.es,*.jsx,*.json setf javascript |
7 | 948 |
949 " Java Server Pages | |
950 au BufNewFile,BufRead *.jsp setf jsp | |
951 | |
952 " Java Properties resource file (note: doesn't catch font.properties.pl) | |
216 | 953 au BufNewFile,BufRead *.properties,*.properties_??,*.properties_??_?? setf jproperties |
954 au BufNewFile,BufRead *.properties_??_??_* call s:StarSetf('jproperties') | |
7 | 955 |
956 " Jess | |
957 au BufNewFile,BufRead *.clp setf jess | |
958 | |
959 " Jgraph | |
960 au BufNewFile,BufRead *.jgr setf jgraph | |
961 | |
2908 | 962 " Jovial |
963 au BufNewFile,BufRead *.jov,*.j73,*.jovial setf jovial | |
964 | |
7 | 965 " Kixtart |
966 au BufNewFile,BufRead *.kix setf kix | |
967 | |
968 " Kimwitu[++] | |
969 au BufNewFile,BufRead *.k setf kwt | |
970 | |
971 " KDE script | |
972 au BufNewFile,BufRead *.ks setf kscript | |
973 | |
826 | 974 " Kconfig |
975 au BufNewFile,BufRead Kconfig,Kconfig.debug setf kconfig | |
976 | |
7 | 977 " Lace (ISE) |
978 au BufNewFile,BufRead *.ace,*.ACE setf lace | |
979 | |
980 " Latte | |
981 au BufNewFile,BufRead *.latte,*.lte setf latte | |
982 | |
375 | 983 " Limits |
2751 | 984 au BufNewFile,BufRead */etc/limits,*/etc/*limits.conf,*/etc/*limits.d/*.conf setf limits |
375 | 985 |
7 | 986 " LambdaProlog (*.mod too, see Modsim) |
987 au BufNewFile,BufRead *.sig setf lprolog | |
988 | |
989 " LDAP LDIF | |
990 au BufNewFile,BufRead *.ldif setf ldif | |
991 | |
375 | 992 " Ld loader |
993 au BufNewFile,BufRead *.ld setf ld | |
994 | |
7 | 995 " Lex |
996 au BufNewFile,BufRead *.lex,*.l setf lex | |
997 | |
998 " Libao | |
2751 | 999 au BufNewFile,BufRead */etc/libao.conf,*/.libao setf libao |
7 | 1000 |
389 | 1001 " Libsensors |
2751 | 1002 au BufNewFile,BufRead */etc/sensors.conf,*/etc/sensors3.conf setf sensors |
389 | 1003 |
7 | 1004 " LFTP |
1005 au BufNewFile,BufRead lftp.conf,.lftprc,*lftp/rc setf lftp | |
1006 | |
1007 " Lifelines (or Lex for C++!) | |
1008 au BufNewFile,BufRead *.ll setf lifelines | |
1009 | |
1010 " Lilo: Linux loader | |
2788 | 1011 au BufNewFile,BufRead lilo.conf setf lilo |
7 | 1012 |
1013 " Lisp (*.el = ELisp, *.cl = Common Lisp, *.jl = librep Lisp) | |
1014 if has("fname_case") | |
1015 au BufNewFile,BufRead *.lsp,*.lisp,*.el,*.cl,*.jl,*.L,.emacs,.sawfishrc setf lisp | |
1016 else | |
1017 au BufNewFile,BufRead *.lsp,*.lisp,*.el,*.cl,*.jl,.emacs,.sawfishrc setf lisp | |
1018 endif | |
1019 | |
375 | 1020 " SBCL implementation of Common Lisp |
1021 au BufNewFile,BufRead sbclrc,.sbclrc setf lisp | |
1022 | |
2202 | 1023 " Liquid |
1024 au BufNewFile,BufRead *.liquid setf liquid | |
1025 | |
7 | 1026 " Lite |
1027 au BufNewFile,BufRead *.lite,*.lt setf lite | |
1028 | |
1219 | 1029 " LiteStep RC files |
1030 au BufNewFile,BufRead */LiteStep/*/*.rc setf litestep | |
1031 | |
375 | 1032 " Login access |
2751 | 1033 au BufNewFile,BufRead */etc/login.access setf loginaccess |
375 | 1034 |
1035 " Login defs | |
2751 | 1036 au BufNewFile,BufRead */etc/login.defs setf logindefs |
375 | 1037 |
7 | 1038 " Logtalk |
1039 au BufNewFile,BufRead *.lgt setf logtalk | |
1040 | |
1041 " LOTOS | |
1042 au BufNewFile,BufRead *.lot,*.lotos setf lotos | |
1043 | |
1044 " Lout (also: *.lt) | |
1045 au BufNewFile,BufRead *.lou,*.lout setf lout | |
1046 | |
1047 " Lua | |
1048 au BufNewFile,BufRead *.lua setf lua | |
1049 | |
1648 | 1050 " Linden Scripting Language (Second Life) |
1051 au BufNewFile,BufRead *.lsl setf lsl | |
1052 | |
7 | 1053 " Lynx style file (or LotusScript!) |
1054 au BufNewFile,BufRead *.lss setf lss | |
1055 | |
1056 " M4 | |
1057 au BufNewFile,BufRead *.m4 | |
1058 \ if expand("<afile>") !~? 'html.m4$\|fvwm2rc' | setf m4 | endif | |
1059 | |
1060 " MaGic Point | |
1061 au BufNewFile,BufRead *.mgp setf mgp | |
1062 | |
1125 | 1063 " Mail (for Elm, trn, mutt, muttng, rn, slrn) |
1648 | 1064 au BufNewFile,BufRead snd.\d\+,.letter,.letter.\d\+,.followup,.article,.article.\d\+,pico.\d\+,mutt{ng,}-*-\w\+,mutt[[:alnum:]_-]\{6\},ae\d\+.txt,/tmp/SLRN[0-9A-Z.]\+,*.eml setf mail |
7 | 1065 |
809 | 1066 " Mail aliases |
2751 | 1067 au BufNewFile,BufRead */etc/mail/aliases,*/etc/aliases setf mailaliases |
809 | 1068 |
7 | 1069 " Mailcap configuration file |
1070 au BufNewFile,BufRead .mailcap,mailcap setf mailcap | |
1071 | |
1072 " Makefile | |
1073 au BufNewFile,BufRead *[mM]akefile,*.mk,*.mak,*.dsp setf make | |
1074 | |
1075 " MakeIndex | |
1076 au BufNewFile,BufRead *.ist,*.mst setf ist | |
1077 | |
1078 " Manpage | |
1079 au BufNewFile,BufRead *.man setf man | |
1080 | |
389 | 1081 " Man config |
2751 | 1082 au BufNewFile,BufRead */etc/man.conf,man.config setf manconf |
389 | 1083 |
7 | 1084 " Maple V |
1085 au BufNewFile,BufRead *.mv,*.mpl,*.mws setf maple | |
1086 | |
1668 | 1087 " Map (UMN mapserver config file) |
1088 au BufNewFile,BufRead *.map setf map | |
1089 | |
2202 | 1090 " Markdown |
1091 au BufNewFile,BufRead *.markdown,*.mdown,*.mkd,*.mkdn,README.md setf markdown | |
1092 | |
7 | 1093 " Mason |
1094 au BufNewFile,BufRead *.mason,*.mhtml setf mason | |
1095 | |
1096 " Matlab or Objective C | |
216 | 1097 au BufNewFile,BufRead *.m call s:FTm() |
7 | 1098 |
1219 | 1099 func! s:FTm() |
7 | 1100 let n = 1 |
1101 while n < 10 | |
1102 let line = getline(n) | |
2034 | 1103 if line =~ '^\s*\(#\s*\(include\|import\)\>\|/\*\|//\)' |
7 | 1104 setf objc |
1105 return | |
1106 endif | |
1107 if line =~ '^\s*%' | |
1108 setf matlab | |
1109 return | |
1110 endif | |
1111 if line =~ '^\s*(\*' | |
1112 setf mma | |
1113 return | |
1114 endif | |
1115 let n = n + 1 | |
1116 endwhile | |
271 | 1117 if exists("g:filetype_m") |
1118 exe "setf " . g:filetype_m | |
1119 else | |
1120 setf matlab | |
1121 endif | |
1219 | 1122 endfunc |
7 | 1123 |
1648 | 1124 " Mathematica notebook |
1125 au BufNewFile,BufRead *.nb setf mma | |
1126 | |
7 | 1127 " Maya Extension Language |
1128 au BufNewFile,BufRead *.mel setf mel | |
1129 | |
3750 | 1130 " Mercurial (hg) commit file |
1131 au BufNewFile,BufRead hg-editor-*.txt setf hgcommit | |
1132 | |
2034 | 1133 " Mercurial config (looks like generic config file) |
1134 au BufNewFile,BufRead *.hgrc,*hgrc setf cfg | |
1135 | |
2709 | 1136 " Messages (logs mostly) |
2788 | 1137 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 | 1138 |
7 | 1139 " Metafont |
1140 au BufNewFile,BufRead *.mf setf mf | |
1141 | |
1142 " MetaPost | |
1143 au BufNewFile,BufRead *.mp setf mp | |
1144 | |
683 | 1145 " MGL |
1146 au BufNewFile,BufRead *.mgl setf mgl | |
1147 | |
7 | 1148 " MMIX or VMS makefile |
216 | 1149 au BufNewFile,BufRead *.mms call s:FTmms() |
7 | 1150 |
1648 | 1151 " Symbian meta-makefile definition (MMP) |
1152 au BufNewFile,BufRead *.mmp setf mmp | |
1153 | |
1219 | 1154 func! s:FTmms() |
7 | 1155 let n = 1 |
1156 while n < 10 | |
1157 let line = getline(n) | |
1158 if line =~ '^\s*\(%\|//\)' || line =~ '^\*' | |
1159 setf mmix | |
1160 return | |
1161 endif | |
1162 if line =~ '^\s*#' | |
1163 setf make | |
1164 return | |
1165 endif | |
1166 let n = n + 1 | |
1167 endwhile | |
1168 setf mmix | |
1219 | 1169 endfunc |
7 | 1170 |
1171 | |
1172 " Modsim III (or LambdaProlog) | |
1173 au BufNewFile,BufRead *.mod | |
1174 \ if getline(1) =~ '\<module\>' | | |
1175 \ setf lprolog | | |
1176 \ else | | |
1177 \ setf modsim3 | | |
1178 \ endif | |
1179 | |
1180 " Modula 2 | |
1181 au BufNewFile,BufRead *.m2,*.DEF,*.MOD,*.md,*.mi setf modula2 | |
1182 | |
1183 " Modula 3 (.m3, .i3, .mg, .ig) | |
1184 au BufNewFile,BufRead *.[mi][3g] setf modula3 | |
1185 | |
1186 " Monk | |
1187 au BufNewFile,BufRead *.isc,*.monk,*.ssc,*.tsc setf monk | |
1188 | |
1189 " MOO | |
1190 au BufNewFile,BufRead *.moo setf moo | |
1191 | |
1192 " Modconf | |
2788 | 1193 au BufNewFile,BufRead */etc/modules.conf,*/etc/modules,*/etc/conf.modules setf modconf |
7 | 1194 |
1195 " Mplayer config | |
1196 au BufNewFile,BufRead mplayer.conf,*/.mplayer/config setf mplayerconf | |
1197 | |
1198 " Moterola S record | |
1199 au BufNewFile,BufRead *.s19,*.s28,*.s37 setf srec | |
1200 | |
846 | 1201 " Mrxvtrc |
1202 au BufNewFile,BufRead mrxvtrc,.mrxvtrc setf mrxvtrc | |
1203 | |
7 | 1204 " Msql |
1205 au BufNewFile,BufRead *.msql setf msql | |
1206 | |
1207 " Mysql | |
1208 au BufNewFile,BufRead *.mysql setf mysql | |
1209 | |
2788 | 1210 " Mutt setup files (must be before catch *.rc) |
1211 au BufNewFile,BufRead */etc/Muttrc.d/* call s:StarSetf('muttrc') | |
1212 | |
7 | 1213 " M$ Resource files |
3682 | 1214 au BufNewFile,BufRead *.rc,*.rch setf rc |
7 | 1215 |
12 | 1216 " MuPAD source |
1217 au BufRead,BufNewFile *.mu setf mupad | |
1218 | |
7 | 1219 " Mush |
1220 au BufNewFile,BufRead *.mush setf mush | |
1221 | |
1125 | 1222 " Mutt setup file (also for Muttng) |
1648 | 1223 au BufNewFile,BufRead Mutt{ng,}rc setf muttrc |
7 | 1224 |
389 | 1225 " Nano |
2751 | 1226 au BufNewFile,BufRead */etc/nanorc,.nanorc setf nanorc |
389 | 1227 |
7 | 1228 " Nastran input/DMAP |
1229 "au BufNewFile,BufRead *.dat setf nastran | |
1230 | |
1231 " Natural | |
1232 au BufNewFile,BufRead *.NS[ACGLMNPS] setf natural | |
1233 | |
39 | 1234 " Netrc |
1235 au BufNewFile,BufRead .netrc setf netrc | |
1236 | |
3256 | 1237 " Ninja file |
1238 au BufNewFile,BufRead *.ninja setf ninja | |
1239 | |
7 | 1240 " Novell netware batch files |
1241 au BufNewFile,BufRead *.ncf setf ncf | |
1242 | |
1243 " Nroff/Troff (*.ms and *.t are checked below) | |
1244 au BufNewFile,BufRead *.me | |
1245 \ if expand("<afile>") != "read.me" && expand("<afile>") != "click.me" | | |
1246 \ setf nroff | | |
1247 \ endif | |
1248 au BufNewFile,BufRead *.tr,*.nr,*.roff,*.tmac,*.mom setf nroff | |
216 | 1249 au BufNewFile,BufRead *.[1-9] call s:FTnroff() |
7 | 1250 |
1251 " This function checks if one of the first five lines start with a dot. In | |
1252 " that case it is probably an nroff file: 'filetype' is set and 1 is returned. | |
1219 | 1253 func! s:FTnroff() |
7 | 1254 if getline(1)[0] . getline(2)[0] . getline(3)[0] . getline(4)[0] . getline(5)[0] =~ '\.' |
1255 setf nroff | |
1256 return 1 | |
1257 endif | |
1258 return 0 | |
1219 | 1259 endfunc |
7 | 1260 |
1261 " Nroff or Objective C++ | |
216 | 1262 au BufNewFile,BufRead *.mm call s:FTmm() |
7 | 1263 |
1219 | 1264 func! s:FTmm() |
7 | 1265 let n = 1 |
1266 while n < 10 | |
1267 let line = getline(n) | |
1268 if line =~ '^\s*\(#\s*\(include\|import\)\>\|/\*\)' | |
1269 setf objcpp | |
1270 return | |
1271 endif | |
1272 let n = n + 1 | |
1273 endwhile | |
1274 setf nroff | |
1219 | 1275 endfunc |
7 | 1276 |
1277 " Not Quite C | |
1278 au BufNewFile,BufRead *.nqc setf nqc | |
1279 | |
1280 " NSIS | |
3492 | 1281 au BufNewFile,BufRead *.nsi,*.nsh setf nsis |
7 | 1282 |
1283 " OCAML | |
3312 | 1284 au BufNewFile,BufRead *.ml,*.mli,*.mll,*.mly,.ocamlinit setf ocaml |
7 | 1285 |
1286 " Occam | |
1287 au BufNewFile,BufRead *.occ setf occam | |
1288 | |
1289 " Omnimark | |
1290 au BufNewFile,BufRead *.xom,*.xin setf omnimark | |
1291 | |
1292 " OpenROAD | |
1293 au BufNewFile,BufRead *.or setf openroad | |
1294 | |
1295 " OPL | |
1296 au BufNewFile,BufRead *.[Oo][Pp][Ll] setf opl | |
1297 | |
1298 " Oracle config file | |
1299 au BufNewFile,BufRead *.ora setf ora | |
1300 | |
1301 " Packet filter conf | |
1302 au BufNewFile,BufRead pf.conf setf pf | |
1303 | |
375 | 1304 " Pam conf |
2751 | 1305 au BufNewFile,BufRead */etc/pam.conf setf pamconf |
375 | 1306 |
7 | 1307 " PApp |
1308 au BufNewFile,BufRead *.papp,*.pxml,*.pxsl setf papp | |
1309 | |
389 | 1310 " Password file |
2751 | 1311 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 | 1312 |
7 | 1313 " Pascal (also *.p) |
1314 au BufNewFile,BufRead *.pas setf pascal | |
1315 | |
1316 " Delphi project file | |
1317 au BufNewFile,BufRead *.dpr setf pascal | |
1318 | |
1648 | 1319 " PDF |
1320 au BufNewFile,BufRead *.pdf setf pdf | |
1321 | |
7 | 1322 " Perl |
1323 if has("fname_case") | |
216 | 1324 au BufNewFile,BufRead *.pl,*.PL call s:FTpl() |
7 | 1325 else |
216 | 1326 au BufNewFile,BufRead *.pl call s:FTpl() |
7 | 1327 endif |
2034 | 1328 au BufNewFile,BufRead *.plx,*.al setf perl |
2439 | 1329 au BufNewFile,BufRead *.p6,*.pm6 setf perl6 |
7 | 1330 |
1219 | 1331 func! s:FTpl() |
7 | 1332 if exists("g:filetype_pl") |
1333 exe "setf " . g:filetype_pl | |
1334 else | |
1335 " recognize Prolog by specific text in the first non-empty line | |
1336 " require a blank after the '%' because Perl uses "%list" and "%translate" | |
1337 let l = getline(nextnonblank(1)) | |
1338 if l =~ '\<prolog\>' || l =~ '^\s*\(%\+\(\s\|$\)\|/\*\)' || l =~ ':-' | |
1339 setf prolog | |
1340 else | |
1341 setf perl | |
1342 endif | |
1343 endif | |
1219 | 1344 endfunc |
7 | 1345 |
1346 " Perl, XPM or XPM2 | |
1347 au BufNewFile,BufRead *.pm | |
1348 \ if getline(1) =~ "XPM2" | | |
1349 \ setf xpm2 | | |
1350 \ elseif getline(1) =~ "XPM" | | |
1351 \ setf xpm | | |
1352 \ else | | |
1353 \ setf perl | | |
1354 \ endif | |
1355 | |
1356 " Perl POD | |
1357 au BufNewFile,BufRead *.pod setf pod | |
1358 | |
850 | 1359 " Php, php3, php4, etc. |
1648 | 1360 " Also Phtml (was used for PHP 2 in the past) |
1361 " Also .ctp for Cake template file | |
1362 au BufNewFile,BufRead *.php,*.php\d,*.phtml,*.ctp setf php | |
7 | 1363 |
1364 " Pike | |
1365 au BufNewFile,BufRead *.pike,*.lpc,*.ulpc,*.pmod setf pike | |
1366 | |
1367 " Pinfo config | |
1368 au BufNewFile,BufRead */etc/pinforc,*/.pinforc setf pinfo | |
1369 | |
1370 " Palm Resource compiler | |
1371 au BufNewFile,BufRead *.rcp setf pilrc | |
1372 | |
1373 " Pine config | |
1374 au BufNewFile,BufRead .pinerc,pinerc,.pinercex,pinercex setf pine | |
1375 | |
1376 " PL/M (also: *.inp) | |
1377 au BufNewFile,BufRead *.plm,*.p36,*.pac setf plm | |
1378 | |
1379 " PL/SQL | |
1380 au BufNewFile,BufRead *.pls,*.plsql setf plsql | |
1381 | |
1382 " PLP | |
1383 au BufNewFile,BufRead *.plp setf plp | |
1384 | |
1385 " PO and PO template (GNU gettext) | |
1386 au BufNewFile,BufRead *.po,*.pot setf po | |
1387 | |
1388 " Postfix main config | |
1389 au BufNewFile,BufRead main.cf setf pfmain | |
1390 | |
1391 " PostScript (+ font files, encapsulated PostScript, Adobe Illustrator) | |
1392 au BufNewFile,BufRead *.ps,*.pfa,*.afm,*.eps,*.epsf,*.epsi,*.ai setf postscr | |
1393 | |
1394 " PostScript Printer Description | |
1395 au BufNewFile,BufRead *.ppd setf ppd | |
1396 | |
1397 " Povray | |
1398 au BufNewFile,BufRead *.pov setf pov | |
1399 | |
1400 " Povray configuration | |
1401 au BufNewFile,BufRead .povrayrc setf povini | |
1402 | |
1403 " Povray, PHP or assembly | |
216 | 1404 au BufNewFile,BufRead *.inc call s:FTinc() |
7 | 1405 |
1219 | 1406 func! s:FTinc() |
7 | 1407 if exists("g:filetype_inc") |
1408 exe "setf " . g:filetype_inc | |
1409 else | |
1410 let lines = getline(1).getline(2).getline(3) | |
1411 if lines =~? "perlscript" | |
1412 setf aspperl | |
1413 elseif lines =~ "<%" | |
1414 setf aspvbs | |
1415 elseif lines =~ "<?" | |
1416 setf php | |
1417 else | |
216 | 1418 call s:FTasmsyntax() |
7 | 1419 if exists("b:asmsyntax") |
1698 | 1420 exe "setf " . fnameescape(b:asmsyntax) |
7 | 1421 else |
1422 setf pov | |
1423 endif | |
1424 endif | |
1425 endif | |
1219 | 1426 endfunc |
7 | 1427 |
1428 " Printcap and Termcap | |
1429 au BufNewFile,BufRead *printcap | |
1430 \ let b:ptcap_type = "print" | setf ptcap | |
1431 au BufNewFile,BufRead *termcap | |
1432 \ let b:ptcap_type = "term" | setf ptcap | |
1433 | |
1434 " PCCTS / ANTRL | |
1435 "au BufNewFile,BufRead *.g setf antrl | |
1436 au BufNewFile,BufRead *.g setf pccts | |
1437 | |
1438 " PPWizard | |
1439 au BufNewFile,BufRead *.it,*.ih setf ppwiz | |
1440 | |
2152 | 1441 " Obj 3D file format |
1442 " TODO: is there a way to avoid MS-Windows Object files? | |
2725 | 1443 au BufNewFile,BufRead *.obj setf obj |
2152 | 1444 |
7 | 1445 " Oracle Pro*C/C++ |
1287 | 1446 au BufNewFile,BufRead *.pc setf proc |
7 | 1447 |
1125 | 1448 " Privoxy actions file |
1449 au BufNewFile,BufRead *.action setf privoxy | |
1450 | |
7 | 1451 " Procmail |
1452 au BufNewFile,BufRead .procmail,.procmailrc setf procmail | |
1453 | |
1454 " Progress or CWEB | |
216 | 1455 au BufNewFile,BufRead *.w call s:FTprogress_cweb() |
7 | 1456 |
1219 | 1457 func! s:FTprogress_cweb() |
7 | 1458 if exists("g:filetype_w") |
1459 exe "setf " . g:filetype_w | |
1460 return | |
1461 endif | |
1462 if getline(1) =~ '&ANALYZE' || getline(3) =~ '&GLOBAL-DEFINE' | |
1463 setf progress | |
1464 else | |
1465 setf cweb | |
1466 endif | |
1219 | 1467 endfunc |
7 | 1468 |
1469 " Progress or assembly | |
216 | 1470 au BufNewFile,BufRead *.i call s:FTprogress_asm() |
7 | 1471 |
1219 | 1472 func! s:FTprogress_asm() |
7 | 1473 if exists("g:filetype_i") |
1474 exe "setf " . g:filetype_i | |
1475 return | |
1476 endif | |
1477 " This function checks for an assembly comment the first ten lines. | |
1478 " If not found, assume Progress. | |
1479 let lnum = 1 | |
500 | 1480 while lnum <= 10 && lnum < line('$') |
7 | 1481 let line = getline(lnum) |
1482 if line =~ '^\s*;' || line =~ '^\*' | |
216 | 1483 call s:FTasm() |
7 | 1484 return |
1485 elseif line !~ '^\s*$' || line =~ '^/\*' | |
1486 " Not an empty line: Doesn't look like valid assembly code. | |
1487 " Or it looks like a Progress /* comment | |
1488 break | |
1489 endif | |
1490 let lnum = lnum + 1 | |
1491 endw | |
1492 setf progress | |
1219 | 1493 endfunc |
7 | 1494 |
1495 " Progress or Pascal | |
216 | 1496 au BufNewFile,BufRead *.p call s:FTprogress_pascal() |
7 | 1497 |
1219 | 1498 func! s:FTprogress_pascal() |
7 | 1499 if exists("g:filetype_p") |
1500 exe "setf " . g:filetype_p | |
1501 return | |
1502 endif | |
1503 " This function checks for valid Pascal syntax in the first ten lines. | |
1504 " Look for either an opening comment or a program start. | |
1505 " If not found, assume Progress. | |
1506 let lnum = 1 | |
500 | 1507 while lnum <= 10 && lnum < line('$') |
7 | 1508 let line = getline(lnum) |
500 | 1509 if line =~ '^\s*\(program\|unit\|procedure\|function\|const\|type\|var\)\>' |
7 | 1510 \ || line =~ '^\s*{' || line =~ '^\s*(\*' |
1511 setf pascal | |
1512 return | |
1513 elseif line !~ '^\s*$' || line =~ '^/\*' | |
1514 " Not an empty line: Doesn't look like valid Pascal code. | |
1515 " Or it looks like a Progress /* comment | |
1516 break | |
1517 endif | |
1518 let lnum = lnum + 1 | |
1519 endw | |
1520 setf progress | |
1219 | 1521 endfunc |
7 | 1522 |
1523 | |
1524 " Software Distributor Product Specification File (POSIX 1387.2-1995) | |
1525 au BufNewFile,BufRead *.psf setf psf | |
1526 au BufNewFile,BufRead INDEX,INFO | |
1527 \ if getline(1) =~ '^\s*\(distribution\|installed_software\|root\|bundle\|product\)\s*$' | | |
1528 \ setf psf | | |
1529 \ endif | |
1530 | |
1531 " Prolog | |
1532 au BufNewFile,BufRead *.pdb setf prolog | |
1533 | |
1648 | 1534 " Promela |
1535 au BufNewFile,BufRead *.pml setf promela | |
1536 | |
389 | 1537 " Protocols |
2751 | 1538 au BufNewFile,BufRead */etc/protocols setf protocols |
389 | 1539 |
7 | 1540 " Pyrex |
1541 au BufNewFile,BufRead *.pyx,*.pxd setf pyrex | |
1542 | |
1543 " Python | |
1544 au BufNewFile,BufRead *.py,*.pyw setf python | |
1545 | |
1676 | 1546 " Quixote (Python-based web framework) |
1547 au BufNewFile,BufRead *.ptl setf python | |
1548 | |
7 | 1549 " Radiance |
1550 au BufNewFile,BufRead *.rad,*.mat setf radiance | |
1551 | |
1552 " Ratpoison config/command files | |
1553 au BufNewFile,BufRead .ratpoisonrc,ratpoisonrc setf ratpoison | |
1554 | |
1555 " RCS file | |
1556 au BufNewFile,BufRead *\,v setf rcs | |
1557 | |
1558 " Readline | |
237 | 1559 au BufNewFile,BufRead .inputrc,inputrc setf readline |
7 | 1560 |
1561 " Registry for MS-Windows | |
1562 au BufNewFile,BufRead *.reg | |
1563 \ if getline(1) =~? '^REGEDIT[0-9]*\s*$\|^Windows Registry Editor Version \d*\.\d*\s*$' | setf registry | endif | |
1564 | |
1565 " Renderman Interface Bytestream | |
1566 au BufNewFile,BufRead *.rib setf rib | |
1567 | |
1568 " Rexx | |
3893 | 1569 au BufNewFile,BufRead *.rex,*.orx,*.rxo,*.rxj,*.jrexx,*.rexxj,*.rexx,*.testGroup,*.testUnit setf rexx |
7 | 1570 |
1571 " R (Splus) | |
836 | 1572 if has("fname_case") |
1573 au BufNewFile,BufRead *.s,*.S setf r | |
1574 else | |
1575 au BufNewFile,BufRead *.s setf r | |
1576 endif | |
7 | 1577 |
699 | 1578 " R Help file |
836 | 1579 if has("fname_case") |
1580 au BufNewFile,BufRead *.rd,*.Rd setf rhelp | |
1581 else | |
1582 au BufNewFile,BufRead *.rd setf rhelp | |
1583 endif | |
1584 | |
1585 " R noweb file | |
1586 if has("fname_case") | |
1587 au BufNewFile,BufRead *.Rnw,*.rnw,*.Snw,*.snw setf rnoweb | |
1588 else | |
1589 au BufNewFile,BufRead *.rnw,*.snw setf rnoweb | |
1590 endif | |
699 | 1591 |
7 | 1592 " Rexx, Rebol or R |
216 | 1593 au BufNewFile,BufRead *.r,*.R call s:FTr() |
7 | 1594 |
1219 | 1595 func! s:FTr() |
1125 | 1596 let max = line("$") > 50 ? 50 : line("$") |
1597 | |
1598 for n in range(1, max) | |
1599 " Rebol is easy to recognize, check for that first | |
1648 | 1600 if getline(n) =~? '\<REBOL\>' |
1125 | 1601 setf rebol |
1602 return | |
7 | 1603 endif |
1125 | 1604 endfor |
1605 | |
1606 for n in range(1, max) | |
1607 " R has # comments | |
1608 if getline(n) =~ '^\s*#' | |
1609 setf r | |
1610 return | |
1611 endif | |
1612 " Rexx has /* comments */ | |
1613 if getline(n) =~ '^\s*/\*' | |
7 | 1614 setf rexx |
1125 | 1615 return |
7 | 1616 endif |
1125 | 1617 endfor |
1618 | |
2965 | 1619 " Nothing recognized, use user default or assume Rexx |
1620 if exists("g:filetype_r") | |
1621 exe "setf " . g:filetype_r | |
1622 else | |
1623 " Rexx used to be the default, but R appears to be much more popular. | |
1624 setf r | |
1625 endif | |
1219 | 1626 endfunc |
7 | 1627 |
1628 " Remind | |
2788 | 1629 au BufNewFile,BufRead .reminders,*.remind,*.rem setf remind |
7 | 1630 |
1631 " Resolv.conf | |
1632 au BufNewFile,BufRead resolv.conf setf resolv | |
1633 | |
1634 " Relax NG Compact | |
1635 au BufNewFile,BufRead *.rnc setf rnc | |
1636 | |
1637 " RPL/2 | |
1638 au BufNewFile,BufRead *.rpl setf rpl | |
1639 | |
1640 " Robots.txt | |
1641 au BufNewFile,BufRead robots.txt setf robots | |
1642 | |
1643 " Rpcgen | |
1644 au BufNewFile,BufRead *.x setf rpcgen | |
1645 | |
1646 " reStructuredText Documentation Format | |
1647 au BufNewFile,BufRead *.rst setf rst | |
1648 | |
1649 " RTF | |
1650 au BufNewFile,BufRead *.rtf setf rtf | |
1651 | |
1676 | 1652 " Interactive Ruby shell |
1653 au BufNewFile,BufRead .irbrc,irbrc setf ruby | |
1654 | |
7 | 1655 " Ruby |
2681 | 1656 au BufNewFile,BufRead *.rb,*.rbw setf ruby |
1657 | |
1658 " RubyGems | |
1659 au BufNewFile,BufRead *.gemspec setf ruby | |
1660 | |
1661 " Rackup | |
1662 au BufNewFile,BufRead *.ru setf ruby | |
1663 | |
1664 " Bundler | |
1665 au BufNewFile,BufRead Gemfile setf ruby | |
7 | 1666 |
1219 | 1667 " Ruby on Rails |
1668 au BufNewFile,BufRead *.builder,*.rxml,*.rjs setf ruby | |
1669 | |
1670 " Rantfile and Rakefile is like Ruby | |
1671 au BufNewFile,BufRead [rR]antfile,*.rant,[rR]akefile,*.rake setf ruby | |
557 | 1672 |
2034 | 1673 " S-lang (or shader language, or SmallLisp) |
7 | 1674 au BufNewFile,BufRead *.sl setf slang |
1675 | |
1676 " Samba config | |
1677 au BufNewFile,BufRead smb.conf setf samba | |
1678 | |
1679 " SAS script | |
1680 au BufNewFile,BufRead *.sas setf sas | |
1681 | |
1668 | 1682 " Sass |
1683 au BufNewFile,BufRead *.sass setf sass | |
1684 | |
7 | 1685 " Sather |
1686 au BufNewFile,BufRead *.sa setf sather | |
1687 | |
1688 " Scilab | |
809 | 1689 au BufNewFile,BufRead *.sci,*.sce setf scilab |
7 | 1690 |
2415 | 1691 " SCSS |
2725 | 1692 au BufNewFile,BufRead *.scss setf scss |
2415 | 1693 |
1125 | 1694 " SD: Streaming Descriptors |
1695 au BufNewFile,BufRead *.sd setf sd | |
1696 | |
7 | 1697 " SDL |
1698 au BufNewFile,BufRead *.sdl,*.pr setf sdl | |
1699 | |
1700 " sed | |
1701 au BufNewFile,BufRead *.sed setf sed | |
1702 | |
36 | 1703 " Sieve (RFC 3028) |
1704 au BufNewFile,BufRead *.siv setf sieve | |
1705 | |
7 | 1706 " Sendmail |
1707 au BufNewFile,BufRead sendmail.cf setf sm | |
1708 | |
1648 | 1709 " Sendmail .mc files are actually m4. Could also be MS Message text file. |
1710 au BufNewFile,BufRead *.mc call s:McSetf() | |
1711 | |
1712 func! s:McSetf() | |
1713 " Rely on the file to start with a comment. | |
1714 " MS message text files use ';', Sendmail files use '#' or 'dnl' | |
1715 for lnum in range(1, min([line("$"), 20])) | |
1716 let line = getline(lnum) | |
1717 if line =~ '^\s*\(#\|dnl\)' | |
1718 setf m4 " Sendmail .mc file | |
1719 return | |
1720 elseif line =~ '^\s*;' | |
1721 setf msmessages " MS Message text file | |
1722 return | |
1723 endif | |
1724 endfor | |
1725 setf m4 " Default: Sendmail .mc file | |
1726 endfunc | |
7 | 1727 |
389 | 1728 " Services |
2751 | 1729 au BufNewFile,BufRead */etc/services setf services |
389 | 1730 |
1731 " Service Location config | |
2751 | 1732 au BufNewFile,BufRead */etc/slp.conf setf slpconf |
389 | 1733 |
1734 " Service Location registration | |
2751 | 1735 au BufNewFile,BufRead */etc/slp.reg setf slpreg |
389 | 1736 |
1737 " Service Location SPI | |
2751 | 1738 au BufNewFile,BufRead */etc/slp.spi setf slpspi |
389 | 1739 |
1740 " Setserial config | |
2751 | 1741 au BufNewFile,BufRead */etc/serial.conf setf setserial |
389 | 1742 |
7 | 1743 " SGML |
1744 au BufNewFile,BufRead *.sgm,*.sgml | |
1745 \ if getline(1).getline(2).getline(3).getline(4).getline(5) =~? 'linuxdoc' | | |
1746 \ setf sgmllnx | | |
1747 \ elseif getline(1) =~ '<!DOCTYPE.*DocBook' || getline(2) =~ '<!DOCTYPE.*DocBook' | | |
1748 \ let b:docbk_type="sgml" | | |
1749 \ setf docbk | | |
1750 \ else | | |
1751 \ setf sgml | | |
1752 \ endif | |
1753 | |
1754 " SGMLDECL | |
1755 au BufNewFile,BufRead *.decl,*.dcl,*.dec | |
1756 \ if getline(1).getline(2).getline(3) =~? '^<!SGML' | | |
1757 \ setf sgmldecl | | |
1758 \ endif | |
1759 | |
1760 " SGML catalog file | |
216 | 1761 au BufNewFile,BufRead catalog setf catalog |
1762 au BufNewFile,BufRead sgml.catalog* call s:StarSetf('catalog') | |
7 | 1763 |
1764 " Shell scripts (sh, ksh, bash, bash2, csh); Allow .profile_foo etc. | |
1765 " Gentoo ebuilds are actually bash scripts | |
1766 au BufNewFile,BufRead .bashrc*,bashrc,bash.bashrc,.bash_profile*,.bash_logout*,*.bash,*.ebuild call SetFileTypeSH("bash") | |
1767 au BufNewFile,BufRead .kshrc*,*.ksh call SetFileTypeSH("ksh") | |
2751 | 1768 au BufNewFile,BufRead */etc/profile,.profile*,*.sh,*.env call SetFileTypeSH(getline(1)) |
7 | 1769 |
216 | 1770 " Also called from scripts.vim. |
1219 | 1771 func! SetFileTypeSH(name) |
216 | 1772 if expand("<amatch>") =~ g:ft_ignore_pat |
1773 return | |
1774 endif | |
2034 | 1775 if a:name =~ '\<csh\>' |
1776 " Some .sh scripts contain #!/bin/csh. | |
1777 call SetFileTypeShell("csh") | |
1778 return | |
1779 elseif a:name =~ '\<tcsh\>' | |
1780 " Some .sh scripts contain #!/bin/tcsh. | |
1781 call SetFileTypeShell("tcsh") | |
1782 return | |
3830 | 1783 elseif a:name =~ '\<zsh\>' |
1784 " Some .sh scripts contain #!/bin/zsh. | |
1785 call SetFileTypeShell("zsh") | |
1786 return | |
2034 | 1787 elseif a:name =~ '\<ksh\>' |
7 | 1788 let b:is_kornshell = 1 |
1789 if exists("b:is_bash") | |
1790 unlet b:is_bash | |
1791 endif | |
1792 if exists("b:is_sh") | |
1793 unlet b:is_sh | |
1794 endif | |
1795 elseif exists("g:bash_is_sh") || a:name =~ '\<bash\>' || a:name =~ '\<bash2\>' | |
1796 let b:is_bash = 1 | |
1797 if exists("b:is_kornshell") | |
1798 unlet b:is_kornshell | |
1799 endif | |
1800 if exists("b:is_sh") | |
1801 unlet b:is_sh | |
1802 endif | |
1803 elseif a:name =~ '\<sh\>' | |
1804 let b:is_sh = 1 | |
1805 if exists("b:is_kornshell") | |
1806 unlet b:is_kornshell | |
1807 endif | |
1808 if exists("b:is_bash") | |
1809 unlet b:is_bash | |
1810 endif | |
1811 endif | |
26 | 1812 call SetFileTypeShell("sh") |
1219 | 1813 endfunc |
26 | 1814 |
1815 " For shell-like file types, check for an "exec" command hidden in a comment, | |
1816 " as used for Tcl. | |
216 | 1817 " Also called from scripts.vim, thus can't be local to this script. |
1219 | 1818 func! SetFileTypeShell(name) |
216 | 1819 if expand("<amatch>") =~ g:ft_ignore_pat |
1820 return | |
1821 endif | |
26 | 1822 let l = 2 |
1823 while l < 20 && l < line("$") && getline(l) =~ '^\s*\(#\|$\)' | |
1824 " Skip empty and comment lines. | |
1825 let l = l + 1 | |
1826 endwhile | |
1827 if l < line("$") && getline(l) =~ '\s*exec\s' && getline(l - 1) =~ '^\s*#.*\\$' | |
1828 " Found an "exec" line after a comment with continuation | |
1829 let n = substitute(getline(l),'\s*exec\s\+\([^ ]*/\)\=', '', '') | |
1830 if n =~ '\<tclsh\|\<wish' | |
1831 setf tcl | |
1832 return | |
1833 endif | |
1834 endif | |
1835 exe "setf " . a:name | |
1219 | 1836 endfunc |
7 | 1837 |
1838 " tcsh scripts | |
26 | 1839 au BufNewFile,BufRead .tcshrc*,*.tcsh,tcsh.tcshrc,tcsh.login call SetFileTypeShell("tcsh") |
7 | 1840 |
1841 " csh scripts, but might also be tcsh scripts (on some systems csh is tcsh) | |
216 | 1842 au BufNewFile,BufRead .login*,.cshrc*,csh.cshrc,csh.login,csh.logout,*.csh,.alias call s:CSH() |
7 | 1843 |
1219 | 1844 func! s:CSH() |
7 | 1845 if exists("g:filetype_csh") |
26 | 1846 call SetFileTypeShell(g:filetype_csh) |
7 | 1847 elseif &shell =~ "tcsh" |
26 | 1848 call SetFileTypeShell("tcsh") |
7 | 1849 else |
26 | 1850 call SetFileTypeShell("csh") |
7 | 1851 endif |
1219 | 1852 endfunc |
7 | 1853 |
1854 " Z-Shell script | |
2751 | 1855 au BufNewFile,BufRead .zprofile,*/etc/zprofile,.zfbfmarks setf zsh |
216 | 1856 au BufNewFile,BufRead .zsh*,.zlog*,.zcompdump* call s:StarSetf('zsh') |
2725 | 1857 au BufNewFile,BufRead *.zsh setf zsh |
7 | 1858 |
1859 " Scheme | |
3513 | 1860 au BufNewFile,BufRead *.scm,*.ss,*.rkt setf scheme |
7 | 1861 |
1862 " Screen RC | |
1863 au BufNewFile,BufRead .screenrc,screenrc setf screen | |
1864 | |
1865 " Simula | |
1866 au BufNewFile,BufRead *.sim setf simula | |
1867 | |
1868 " SINDA | |
1869 au BufNewFile,BufRead *.sin,*.s85 setf sinda | |
1870 | |
819 | 1871 " SiSU |
857 | 1872 au BufNewFile,BufRead *.sst,*.ssm,*.ssi,*.-sst,*._sst setf sisu |
819 | 1873 au BufNewFile,BufRead *.sst.meta,*.-sst.meta,*._sst.meta setf sisu |
1874 | |
7 | 1875 " SKILL |
336 | 1876 au BufNewFile,BufRead *.il,*.ils,*.cdf setf skill |
7 | 1877 |
1878 " SLRN | |
1879 au BufNewFile,BufRead .slrnrc setf slrnrc | |
1880 au BufNewFile,BufRead *.score setf slrnsc | |
1881 | |
271 | 1882 " Smalltalk (and TeX) |
1883 au BufNewFile,BufRead *.st setf st | |
1884 au BufNewFile,BufRead *.cls | |
1885 \ if getline(1) =~ '^%' | | |
1886 \ setf tex | | |
3893 | 1887 \ elseif getline(1)[0] == '#' && getline(1) =~ 'rexx' | |
1888 \ setf rexx | | |
271 | 1889 \ else | |
1890 \ setf st | | |
1891 \ endif | |
7 | 1892 |
1893 " Smarty templates | |
1894 au BufNewFile,BufRead *.tpl setf smarty | |
1895 | |
1896 " SMIL or XML | |
1897 au BufNewFile,BufRead *.smil | |
1898 \ if getline(1) =~ '<?\s*xml.*?>' | | |
1899 \ setf xml | | |
1900 \ else | | |
1901 \ setf smil | | |
1902 \ endif | |
1903 | |
1904 " SMIL or SNMP MIB file | |
1905 au BufNewFile,BufRead *.smi | |
1906 \ if getline(1) =~ '\<smil\>' | | |
1907 \ setf smil | | |
1908 \ else | | |
1909 \ setf mib | | |
1910 \ endif | |
1911 | |
1912 " SMITH | |
1913 au BufNewFile,BufRead *.smt,*.smith setf smith | |
1914 | |
857 | 1915 " Snobol4 and spitbol |
1916 au BufNewFile,BufRead *.sno,*.spt setf snobol4 | |
7 | 1917 |
1918 " SNMP MIB files | |
1919 au BufNewFile,BufRead *.mib,*.my setf mib | |
1920 | |
1921 " Snort Configuration | |
1219 | 1922 au BufNewFile,BufRead *.hog,snort.conf,vision.conf setf hog |
1923 au BufNewFile,BufRead *.rules call s:FTRules() | |
1924 | |
1925 let s:ft_rules_udev_rules_pattern = '^\s*\cudev_rules\s*=\s*"\([^"]\{-1,}\)/*".*' | |
1926 func! s:FTRules() | |
2034 | 1927 let path = expand('<amatch>:p') |
2751 | 1928 if path =~ '^/\(etc/udev/\%(rules\.d/\)\=.*\.rules\|lib/udev/\%(rules\.d/\)\=.*\.rules\)$' |
1648 | 1929 setf udevrules |
1930 return | |
1931 endif | |
2034 | 1932 if path =~ '^/etc/ufw/' |
1933 setf conf " Better than hog | |
1934 return | |
1935 endif | |
1219 | 1936 try |
1937 let config_lines = readfile('/etc/udev/udev.conf') | |
1938 catch /^Vim\%((\a\+)\)\=:E484/ | |
1939 setf hog | |
1940 return | |
1941 endtry | |
1648 | 1942 let dir = expand('<amatch>:p:h') |
1219 | 1943 for line in config_lines |
1944 if line =~ s:ft_rules_udev_rules_pattern | |
1945 let udev_rules = substitute(line, s:ft_rules_udev_rules_pattern, '\1', "") | |
1648 | 1946 if dir == udev_rules |
1219 | 1947 setf udevrules |
1948 endif | |
1949 break | |
1950 endif | |
1951 endfor | |
1952 setf hog | |
1953 endfunc | |
1954 | |
7 | 1955 |
1956 " Spec (Linux RPM) | |
1957 au BufNewFile,BufRead *.spec setf spec | |
1958 | |
1959 " Speedup (AspenTech plant simulator) | |
1960 au BufNewFile,BufRead *.speedup,*.spdata,*.spd setf spup | |
1961 | |
1962 " Slice | |
1963 au BufNewFile,BufRead *.ice setf slice | |
1964 | |
1965 " Spice | |
1966 au BufNewFile,BufRead *.sp,*.spice setf spice | |
1967 | |
1968 " Spyce | |
1969 au BufNewFile,BufRead *.spy,*.spi setf spyce | |
1970 | |
1971 " Squid | |
1972 au BufNewFile,BufRead squid.conf setf squid | |
1973 | |
22 | 1974 " SQL for Oracle Designer |
1975 au BufNewFile,BufRead *.tyb,*.typ,*.tyc,*.pkb,*.pks setf sql | |
1976 | |
1977 " SQL | |
216 | 1978 au BufNewFile,BufRead *.sql call s:SQL() |
22 | 1979 |
1219 | 1980 func! s:SQL() |
22 | 1981 if exists("g:filetype_sql") |
1982 exe "setf " . g:filetype_sql | |
1983 else | |
1984 setf sql | |
1985 endif | |
1219 | 1986 endfunc |
7 | 1987 |
1988 " SQLJ | |
1989 au BufNewFile,BufRead *.sqlj setf sqlj | |
1990 | |
1991 " SQR | |
1992 au BufNewFile,BufRead *.sqr,*.sqi setf sqr | |
1993 | |
1994 " OpenSSH configuration | |
1995 au BufNewFile,BufRead ssh_config,*/.ssh/config setf sshconfig | |
1996 | |
1997 " OpenSSH server configuration | |
1998 au BufNewFile,BufRead sshd_config setf sshdconfig | |
1999 | |
831 | 2000 " Stata |
2001 au BufNewFile,BufRead *.ado,*.class,*.do,*.imata,*.mata setf stata | |
2002 | |
2003 " SMCL | |
2004 au BufNewFile,BufRead *.hlp,*.ihlp,*.smcl setf smcl | |
2005 | |
7 | 2006 " Stored Procedures |
2007 au BufNewFile,BufRead *.stp setf stp | |
2008 | |
2009 " Standard ML | |
2010 au BufNewFile,BufRead *.sml setf sml | |
2011 | |
1648 | 2012 " Sratus VOS command macro |
2013 au BufNewFile,BufRead *.cm setf voscm | |
2014 | |
375 | 2015 " Sysctl |
2751 | 2016 au BufNewFile,BufRead */etc/sysctl.conf,*/etc/sysctl.d/*.conf setf sysctl |
375 | 2017 |
2034 | 2018 " Synopsys Design Constraints |
2019 au BufNewFile,BufRead *.sdc setf sdc | |
2020 | |
39 | 2021 " Sudoers |
2751 | 2022 au BufNewFile,BufRead */etc/sudoers,sudoers.tmp setf sudoers |
39 | 2023 |
2152 | 2024 " SVG (Scalable Vector Graphics) |
2025 au BufNewFile,BufRead *.svg setf svg | |
2026 | |
826 | 2027 " If the file has an extension of 't' and is in a directory 't' then it is |
2028 " almost certainly a Perl test file. | |
557 | 2029 " If the first line starts with '#' and contains 'perl' it's probably a Perl |
2030 " file. | |
826 | 2031 " (Slow test) If a file contains a 'use' statement then it is almost certainly |
2032 " a Perl file. | |
1219 | 2033 func! s:FTperl() |
826 | 2034 if expand("%:e") == 't' && expand("%:p:h:t") == 't' |
2035 setf perl | |
2036 return 1 | |
2037 endif | |
557 | 2038 if getline(1)[0] == '#' && getline(1) =~ 'perl' |
2039 setf perl | |
2040 return 1 | |
2041 endif | |
826 | 2042 if search('^use\s\s*\k', 'nc', 30) |
2043 setf perl | |
2044 return 1 | |
2045 endif | |
557 | 2046 return 0 |
1219 | 2047 endfunc |
557 | 2048 |
2049 " Tads (or Nroff or Perl test file) | |
7 | 2050 au BufNewFile,BufRead *.t |
557 | 2051 \ if !s:FTnroff() && !s:FTperl() | setf tads | endif |
7 | 2052 |
2053 " Tags | |
2054 au BufNewFile,BufRead tags setf tags | |
2055 | |
2056 " TAK | |
2057 au BufNewFile,BufRead *.tak setf tak | |
2058 | |
2034 | 2059 " Task |
2060 au BufRead,BufNewFile {pending,completed,undo}.data setf taskdata | |
2061 au BufRead,BufNewFile *.task setf taskedit | |
2062 | |
557 | 2063 " Tcl (JACL too) |
2064 au BufNewFile,BufRead *.tcl,*.tk,*.itcl,*.itk,*.jacl setf tcl | |
7 | 2065 |
2066 " TealInfo | |
2067 au BufNewFile,BufRead *.tli setf tli | |
2068 | |
2069 " Telix Salt | |
2070 au BufNewFile,BufRead *.slt setf tsalt | |
2071 | |
2072 " Terminfo | |
2073 au BufNewFile,BufRead *.ti setf terminfo | |
2074 | |
2075 " TeX | |
378 | 2076 au BufNewFile,BufRead *.latex,*.sty,*.dtx,*.ltx,*.bbl setf tex |
2077 au BufNewFile,BufRead *.tex call s:FTtex() | |
2078 | |
800 | 2079 " Choose context, plaintex, or tex (LaTeX) based on these rules: |
2080 " 1. Check the first line of the file for "%&<format>". | |
2081 " 2. Check the first 1000 non-comment lines for LaTeX or ConTeXt keywords. | |
2082 " 3. Default to "latex" or to g:tex_flavor, can be set in user's vimrc. | |
1219 | 2083 func! s:FTtex() |
800 | 2084 let firstline = getline(1) |
2085 if firstline =~ '^%&\s*\a\+' | |
2086 let format = tolower(matchstr(firstline, '\a\+')) | |
2087 let format = substitute(format, 'pdf', '', '') | |
2088 if format == 'tex' | |
2089 let format = 'plain' | |
378 | 2090 endif |
800 | 2091 else |
2092 " Default value, may be changed later: | |
2093 let format = exists("g:tex_flavor") ? g:tex_flavor : 'plain' | |
2094 " Save position, go to the top of the file, find first non-comment line. | |
2095 let save_cursor = getpos('.') | |
2096 call cursor(1,1) | |
2097 let firstNC = search('^\s*[^[:space:]%]', 'c', 1000) | |
2098 if firstNC " Check the next thousand lines for a LaTeX or ConTeXt keyword. | |
2099 let lpat = 'documentclass\>\|usepackage\>\|begin{\|newcommand\>\|renewcommand\>' | |
2100 let cpat = 'start\a\+\|setup\a\+\|usemodule\|enablemode\|enableregime\|setvariables\|useencoding\|usesymbols\|stelle\a\+\|verwende\a\+\|stel\a\+\|gebruik\a\+\|usa\a\+\|imposta\a\+\|regle\a\+\|utilisemodule\>' | |
2101 let kwline = search('^\s*\\\%(' . lpat . '\)\|^\s*\\\(' . cpat . '\)', | |
2102 \ 'cnp', firstNC + 1000) | |
2103 if kwline == 1 " lpat matched | |
2104 let format = 'latex' | |
2105 elseif kwline == 2 " cpat matched | |
2106 let format = 'context' | |
2107 endif " If neither matched, keep default set above. | |
2108 " let lline = search('^\s*\\\%(' . lpat . '\)', 'cn', firstNC + 1000) | |
2109 " let cline = search('^\s*\\\%(' . cpat . '\)', 'cn', firstNC + 1000) | |
2110 " if cline > 0 | |
2111 " let format = 'context' | |
2112 " endif | |
2113 " if lline > 0 && (cline == 0 || cline > lline) | |
2114 " let format = 'tex' | |
2115 " endif | |
2116 endif " firstNC | |
2117 call setpos('.', save_cursor) | |
2118 endif " firstline =~ '^%&\s*\a\+' | |
694 | 2119 |
800 | 2120 " Translation from formats to file types. TODO: add AMSTeX, RevTex, others? |
2121 if format == 'plain' | |
2122 setf plaintex | |
2123 elseif format == 'context' | |
694 | 2124 setf context |
800 | 2125 else " probably LaTeX |
694 | 2126 setf tex |
2127 endif | |
800 | 2128 return |
1219 | 2129 endfunc |
378 | 2130 |
1648 | 2131 " ConTeXt |
2132 au BufNewFile,BufRead tex/context/*/*.tex,*.mkii,*.mkiv setf context | |
7 | 2133 |
2134 " Texinfo | |
2135 au BufNewFile,BufRead *.texinfo,*.texi,*.txi setf texinfo | |
2136 | |
2137 " TeX configuration | |
2138 au BufNewFile,BufRead texmf.cnf setf texmf | |
2139 | |
2140 " Tidy config | |
2141 au BufNewFile,BufRead .tidyrc,tidyrc setf tidy | |
2142 | |
2143 " TF mud client | |
2144 au BufNewFile,BufRead *.tf,.tfrc,tfrc setf tf | |
2145 | |
33 | 2146 " TPP - Text Presentation Program |
2147 au BufNewFile,BufReadPost *.tpp setf tpp | |
2148 | |
2725 | 2149 " Treetop |
2150 au BufRead,BufNewFile *.treetop setf treetop | |
2151 | |
555 | 2152 " Trustees |
2153 au BufNewFile,BufRead trustees.conf setf trustees | |
2154 | |
7 | 2155 " TSS - Geometry |
2156 au BufNewFile,BufReadPost *.tssgm setf tssgm | |
2157 | |
2158 " TSS - Optics | |
2159 au BufNewFile,BufReadPost *.tssop setf tssop | |
2160 | |
2161 " TSS - Command Line (temporary) | |
2162 au BufNewFile,BufReadPost *.tsscl setf tsscl | |
2163 | |
3456 | 2164 " TWIG files |
2165 au BufNewFile,BufReadPost *.twig setf twig | |
2166 | |
7 | 2167 " Motif UIT/UIL files |
2168 au BufNewFile,BufRead *.uit,*.uil setf uil | |
2169 | |
389 | 2170 " Udev conf |
2751 | 2171 au BufNewFile,BufRead */etc/udev/udev.conf setf udevconf |
389 | 2172 |
2173 " Udev permissions | |
2751 | 2174 au BufNewFile,BufRead */etc/udev/permissions.d/*.permissions setf udevperm |
389 | 2175 " |
2176 " Udev symlinks config | |
2751 | 2177 au BufNewFile,BufRead */etc/udev/cdsymlinks.conf setf sh |
389 | 2178 |
7 | 2179 " UnrealScript |
2180 au BufNewFile,BufRead *.uc setf uc | |
2181 | |
375 | 2182 " Updatedb |
2751 | 2183 au BufNewFile,BufRead */etc/updatedb.conf setf updatedb |
375 | 2184 |
2725 | 2185 " Upstart (init(8)) config files |
2751 | 2186 au BufNewFile,BufRead */etc/init/*.conf,*/.init/*.conf setf upstart |
2187 au BufNewFile,BufRead */etc/init/*.override,*/.init/*.override setf upstart | |
2725 | 2188 |
836 | 2189 " Vera |
2190 au BufNewFile,BufRead *.vr,*.vri,*.vrh setf vera | |
2191 | |
7 | 2192 " Verilog HDL |
2193 au BufNewFile,BufRead *.v setf verilog | |
2194 | |
481 | 2195 " Verilog-AMS HDL |
2196 au BufNewFile,BufRead *.va,*.vams setf verilogams | |
2197 | |
7 | 2198 " VHDL |
216 | 2199 au BufNewFile,BufRead *.hdl,*.vhd,*.vhdl,*.vbe,*.vst setf vhdl |
375 | 2200 au BufNewFile,BufRead *.vhdl_[0-9]* call s:StarSetf('vhdl') |
7 | 2201 |
2202 " Vim script | |
794 | 2203 au BufNewFile,BufRead *.vim,*.vba,.exrc,_exrc setf vim |
7 | 2204 |
2205 " Viminfo file | |
2206 au BufNewFile,BufRead .viminfo,_viminfo setf viminfo | |
2207 | |
2034 | 2208 " Virata Config Script File or Drupal module |
2209 au BufRead,BufNewFile *.hw,*.module,*.pkg | |
2210 \ if getline(1) =~ '<?php' | | |
2211 \ setf php | | |
2212 \ else | | |
2213 \ setf virata | | |
2214 \ endif | |
7 | 2215 |
2216 " Visual Basic (also uses *.bas) or FORM | |
216 | 2217 au BufNewFile,BufRead *.frm call s:FTVB("form") |
7 | 2218 |
2219 " SaxBasic is close to Visual Basic | |
2220 au BufNewFile,BufRead *.sba setf vb | |
2221 | |
2222 " Vgrindefs file | |
2223 au BufNewFile,BufRead vgrindefs setf vgrindefs | |
2224 | |
2225 " VRML V1.0c | |
2226 au BufNewFile,BufRead *.wrl setf vrml | |
2227 | |
2228 " Webmacro | |
2229 au BufNewFile,BufRead *.wm setf webmacro | |
2230 | |
2231 " Wget config | |
2232 au BufNewFile,BufRead .wgetrc,wgetrc setf wget | |
2233 | |
2234 " Website MetaLanguage | |
2235 au BufNewFile,BufRead *.wml setf wml | |
2236 | |
2237 " Winbatch | |
2238 au BufNewFile,BufRead *.wbt setf winbatch | |
2239 | |
753 | 2240 " WSML |
2241 au BufNewFile,BufRead *.wsml setf wsml | |
2242 | |
7 | 2243 " WvDial |
2244 au BufNewFile,BufRead wvdial.conf,.wvdialrc setf wvdial | |
2245 | |
2246 " CVS RC file | |
2247 au BufNewFile,BufRead .cvsrc setf cvsrc | |
2248 | |
2249 " CVS commit file | |
2250 au BufNewFile,BufRead cvs\d\+ setf cvs | |
2251 | |
2252 " WEB (*.web is also used for Winbatch: Guess, based on expecting "%" comment | |
2253 " lines in a WEB file). | |
2254 au BufNewFile,BufRead *.web | |
2255 \ if getline(1)[0].getline(2)[0].getline(3)[0].getline(4)[0].getline(5)[0] =~ "%" | | |
2256 \ setf web | | |
2257 \ else | | |
2258 \ setf winbatch | | |
2259 \ endif | |
2260 | |
2261 " Windows Scripting Host and Windows Script Component | |
2262 au BufNewFile,BufRead *.ws[fc] setf wsh | |
2263 | |
1125 | 2264 " XHTML |
2265 au BufNewFile,BufRead *.xhtml,*.xht setf xhtml | |
2266 | |
7 | 2267 " X Pixmap (dynamically sets colors, use BufEnter to make it work better) |
2268 au BufEnter *.xpm | |
2269 \ if getline(1) =~ "XPM2" | | |
2270 \ setf xpm2 | | |
2271 \ else | | |
2272 \ setf xpm | | |
2273 \ endif | |
2274 au BufEnter *.xpm2 setf xpm2 | |
2275 | |
2276 " XFree86 config | |
2277 au BufNewFile,BufRead XF86Config | |
2278 \ if getline(1) =~ '\<XConfigurator\>' | | |
2788 | 2279 \ let b:xf86conf_xfree86_version = 3 | |
7 | 2280 \ endif | |
2281 \ setf xf86conf | |
2751 | 2282 au BufNewFile,BufRead */xorg.conf.d/*.conf |
2283 \ let b:xf86conf_xfree86_version = 4 | | |
2284 \ setf xf86conf | |
7 | 2285 |
2286 " Xorg config | |
2751 | 2287 au BufNewFile,BufRead xorg.conf,xorg.conf-4 let b:xf86conf_xfree86_version = 4 | setf xf86conf |
7 | 2288 |
375 | 2289 " Xinetd conf |
2751 | 2290 au BufNewFile,BufRead */etc/xinetd.conf setf xinetd |
375 | 2291 |
7 | 2292 " XS Perl extension interface language |
2293 au BufNewFile,BufRead *.xs setf xs | |
2294 | |
2295 " X resources file | |
2296 au BufNewFile,BufRead .Xdefaults,.Xpdefaults,.Xresources,xdm-config,*.ad setf xdefaults | |
2297 | |
2298 " Xmath | |
2299 au BufNewFile,BufRead *.msc,*.msf setf xmath | |
2300 au BufNewFile,BufRead *.ms | |
216 | 2301 \ if !s:FTnroff() | setf xmath | endif |
7 | 2302 |
1648 | 2303 " XML specific variants: docbk and xbl |
2304 au BufNewFile,BufRead *.xml call s:FTxml() | |
2305 | |
2306 func! s:FTxml() | |
2307 let n = 1 | |
2308 while n < 100 && n < line("$") | |
2309 let line = getline(n) | |
2310 if line =~ '<!DOCTYPE.*DocBook' | |
2311 let b:docbk_type = "xml" | |
2312 setf docbk | |
2313 return | |
2314 endif | |
2315 if line =~ 'xmlns:xbl="http://www.mozilla.org/xbl"' | |
2316 setf xbl | |
2317 return | |
2318 endif | |
2319 let n += 1 | |
2320 endwhile | |
2321 setf xml | |
2322 endfunc | |
7 | 2323 |
2324 " XMI (holding UML models) is also XML | |
2325 au BufNewFile,BufRead *.xmi setf xml | |
2326 | |
2327 " CSPROJ files are Visual Studio.NET's XML-based project config files | |
2328 au BufNewFile,BufRead *.csproj,*.csproj.user setf xml | |
2329 | |
2330 " Qt Linguist translation source and Qt User Interface Files are XML | |
2331 au BufNewFile,BufRead *.ts,*.ui setf xml | |
2332 | |
1125 | 2333 " TPM's are RDF-based descriptions of TeX packages (Nikolai Weibull) |
2334 au BufNewFile,BufRead *.tpm setf xml | |
2335 | |
389 | 2336 " Xdg menus |
2751 | 2337 au BufNewFile,BufRead */etc/xdg/menus/*.menu setf xml |
389 | 2338 |
1648 | 2339 " ATI graphics driver configuration |
2340 au BufNewFile,BufRead fglrxrc setf xml | |
2341 | |
2342 " XLIFF (XML Localisation Interchange File Format) is also XML | |
2343 au BufNewFile,BufRead *.xlf setf xml | |
2344 au BufNewFile,BufRead *.xliff setf xml | |
2345 | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3356
diff
changeset
|
2346 " XML User Interface Language |
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3356
diff
changeset
|
2347 au BufNewFile,BufRead *.xul setf xml |
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3356
diff
changeset
|
2348 |
1648 | 2349 " X11 xmodmap (also see below) |
2350 au BufNewFile,BufRead *Xmodmap setf xmodmap | |
2351 | |
419 | 2352 " Xquery |
2353 au BufNewFile,BufRead *.xq,*.xql,*.xqm,*.xquery,*.xqy setf xquery | |
2354 | |
7 | 2355 " XSD |
2356 au BufNewFile,BufRead *.xsd setf xsd | |
2357 | |
2358 " Xslt | |
2359 au BufNewFile,BufRead *.xsl,*.xslt setf xslt | |
2360 | |
2361 " Yacc | |
375 | 2362 au BufNewFile,BufRead *.yy setf yacc |
2363 | |
2364 " Yacc or racc | |
2365 au BufNewFile,BufRead *.y call s:FTy() | |
2366 | |
1219 | 2367 func! s:FTy() |
375 | 2368 let n = 1 |
484 | 2369 while n < 100 && n < line("$") |
2370 let line = getline(n) | |
2371 if line =~ '^\s*%' | |
2372 setf yacc | |
2373 return | |
2374 endif | |
482 | 2375 if getline(n) =~ '^\s*\(#\|class\>\)' && getline(n) !~ '^\s*#\s*include' |
375 | 2376 setf racc |
2377 return | |
2378 endif | |
2379 let n = n + 1 | |
2380 endwhile | |
2381 setf yacc | |
1219 | 2382 endfunc |
375 | 2383 |
7 | 2384 |
2385 " Yaml | |
2386 au BufNewFile,BufRead *.yaml,*.yml setf yaml | |
2387 | |
3082 | 2388 " yum conf (close enough to dosini) |
2389 au BufNewFile,BufRead */etc/yum.conf setf dosini | |
2390 | |
3513 | 2391 " Zimbu |
2392 au BufNewFile,BufRead *.zu setf zimbu | |
2393 | |
809 | 2394 " Zope |
2395 " dtml (zope dynamic template markup language), pt (zope page template), | |
2396 " cpt (zope form controller page template) | |
826 | 2397 au BufNewFile,BufRead *.dtml,*.pt,*.cpt call s:FThtml() |
809 | 2398 " zsql (zope sql method) |
2399 au BufNewFile,BufRead *.zsql call s:SQL() | |
2400 | |
7 | 2401 " Z80 assembler asz80 |
2402 au BufNewFile,BufRead *.z8a setf z8a | |
2403 | |
2404 augroup END | |
2405 | |
2406 | |
2407 " Source the user-specified filetype file, for backwards compatibility with | |
2408 " Vim 5.x. | |
216 | 2409 if exists("myfiletypefile") && filereadable(expand(myfiletypefile)) |
7 | 2410 execute "source " . myfiletypefile |
2411 endif | |
2412 | |
2413 | |
2414 " Check for "*" after loading myfiletypefile, so that scripts.vim is only used | |
2415 " when there are no matching file name extensions. | |
2416 " Don't do this for compressed files. | |
2417 augroup filetypedetect | |
2418 au BufNewFile,BufRead * | |
2419 \ if !did_filetype() && expand("<amatch>") !~ g:ft_ignore_pat | |
2420 \ | runtime! scripts.vim | endif | |
2421 au StdinReadPost * if !did_filetype() | runtime! scripts.vim | endif | |
2422 | |
2423 | |
2424 " Extra checks for when no filetype has been detected now. Mostly used for | |
2425 " patterns that end in "*". E.g., "zsh*" matches "zsh.vim", but that's a Vim | |
2426 " script file. | |
216 | 2427 " Most of these should call s:StarSetf() to avoid names ending in .gz and the |
2428 " like are used. | |
7 | 2429 |
2751 | 2430 " More Apache config files |
2431 au BufNewFile,BufRead access.conf*,apache.conf*,apache2.conf*,httpd.conf*,srm.conf* call s:StarSetf('apache') | |
2432 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 | 2433 |
531 | 2434 " Asterisk config file |
856 | 2435 au BufNewFile,BufRead *asterisk/*.conf* call s:StarSetf('asterisk') |
794 | 2436 au BufNewFile,BufRead *asterisk*/*voicemail.conf* call s:StarSetf('asteriskvm') |
531 | 2437 |
1125 | 2438 " Bazaar version control |
2439 au BufNewFile,BufRead bzr_log.* setf bzr | |
2440 | |
7 | 2441 " BIND zone |
805 | 2442 au BufNewFile,BufRead */named/db.*,*/bind/db.* call s:StarSetf('bindzone') |
7 | 2443 |
2788 | 2444 " Calendar |
2445 au BufNewFile,BufRead */.calendar/*, | |
2446 \*/share/calendar/*/calendar.*,*/share/calendar/calendar.* | |
2447 \ call s:StarSetf('calendar') | |
2448 | |
7 | 2449 " Changelog |
216 | 2450 au BufNewFile,BufRead [cC]hange[lL]og* |
2451 \ if getline(1) =~ '; urgency=' | |
2452 \| call s:StarSetf('debchangelog') | |
2453 \|else | |
2454 \| call s:StarSetf('changelog') | |
2455 \|endif | |
7 | 2456 |
2457 " Crontab | |
2751 | 2458 au BufNewFile,BufRead crontab,crontab.*,*/etc/cron.d/* call s:StarSetf('crontab') |
816 | 2459 |
2788 | 2460 " dnsmasq(8) configuration |
2461 au BufNewFile,BufRead */etc/dnsmasq.d/* call s:StarSetf('dnsmasq') | |
2462 | |
7 | 2463 " Dracula |
216 | 2464 au BufNewFile,BufRead drac.* call s:StarSetf('dracula') |
7 | 2465 |
2466 " Fvwm | |
1125 | 2467 au BufNewFile,BufRead */.fvwm/* call s:StarSetf('fvwm') |
7 | 2468 au BufNewFile,BufRead *fvwmrc*,*fvwm95*.hook |
216 | 2469 \ let b:fvwm_version = 1 | call s:StarSetf('fvwm') |
7 | 2470 au BufNewFile,BufRead *fvwm2rc* |
216 | 2471 \ if expand("<afile>:e") == "m4" |
2472 \| call s:StarSetf('fvwm2m4') | |
2473 \|else | |
2474 \| let b:fvwm_version = 2 | call s:StarSetf('fvwm') | |
2475 \|endif | |
7 | 2476 |
2034 | 2477 " Gedcom |
2788 | 2478 au BufNewFile,BufRead */tmp/lltmp* call s:StarSetf('gedcom') |
2034 | 2479 |
7 | 2480 " GTK RC |
216 | 2481 au BufNewFile,BufRead .gtkrc*,gtkrc* call s:StarSetf('gtkrc') |
7 | 2482 |
2483 " Jam | |
216 | 2484 au BufNewFile,BufRead Prl*.*,JAM*.* call s:StarSetf('jam') |
7 | 2485 |
2486 " Jargon | |
2487 au! BufNewFile,BufRead *jarg* | |
216 | 2488 \ if getline(1).getline(2).getline(3).getline(4).getline(5) =~? 'THIS IS THE JARGON FILE' |
2489 \| call s:StarSetf('jargon') | |
2490 \|endif | |
7 | 2491 |
837 | 2492 " Kconfig |
2493 au BufNewFile,BufRead Kconfig.* call s:StarSetf('kconfig') | |
2494 | |
2788 | 2495 " Lilo: Linux loader |
2496 au BufNewFile,BufRead lilo.conf* call s:StarSetf('lilo') | |
2497 | |
2434
86532ee3ea41
Updated runtime files. Add logcheck filetype plugin. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2415
diff
changeset
|
2498 " Logcheck |
2751 | 2499 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
|
2500 |
7 | 2501 " Makefile |
216 | 2502 au BufNewFile,BufRead [mM]akefile* call s:StarSetf('make') |
7 | 2503 |
1648 | 2504 " Ruby Makefile |
2505 au BufNewFile,BufRead [rR]akefile* call s:StarSetf('ruby') | |
2506 | |
2507 " Mail (also matches muttrc.vim, so this is below the other checks) | |
2508 au BufNewFile,BufRead mutt[[:alnum:]._-]\{6\} setf mail | |
2509 | |
389 | 2510 " Modconf |
2788 | 2511 au BufNewFile,BufRead */etc/modutils/* |
2512 \ if executable(expand("<afile>")) != 1 | |
2513 \| call s:StarSetf('modconf') | |
2514 \|endif | |
2751 | 2515 au BufNewFile,BufRead */etc/modprobe.* call s:StarSetf('modconf') |
389 | 2516 |
7 | 2517 " Mutt setup file |
1648 | 2518 au BufNewFile,BufRead .mutt{ng,}rc*,*/.mutt{ng,}/mutt{ng,}rc* call s:StarSetf('muttrc') |
484 | 2519 au BufNewFile,BufRead mutt{ng,}rc*,Mutt{ng,}rc* call s:StarSetf('muttrc') |
7 | 2520 |
2521 " Nroff macros | |
216 | 2522 au BufNewFile,BufRead tmac.* call s:StarSetf('nroff') |
7 | 2523 |
375 | 2524 " Pam conf |
2751 | 2525 au BufNewFile,BufRead */etc/pam.d/* call s:StarSetf('pamconf') |
375 | 2526 |
7 | 2527 " Printcap and Termcap |
2528 au BufNewFile,BufRead *printcap* | |
216 | 2529 \ if !did_filetype() |
2530 \| let b:ptcap_type = "print" | call s:StarSetf('ptcap') | |
2531 \|endif | |
7 | 2532 au BufNewFile,BufRead *termcap* |
216 | 2533 \ if !did_filetype() |
2534 \| let b:ptcap_type = "term" | call s:StarSetf('ptcap') | |
2535 \|endif | |
7 | 2536 |
2788 | 2537 " Remind |
2538 au BufNewFile,BufRead .reminders* call s:StarSetf('remind') | |
2539 | |
7 | 2540 " Vim script |
216 | 2541 au BufNewFile,BufRead *vimrc* call s:StarSetf('vim') |
7 | 2542 |
2543 " Subversion commit file | |
45 | 2544 au BufNewFile,BufRead svn-commit*.tmp setf svn |
7 | 2545 |
2546 " X resources file | |
216 | 2547 au BufNewFile,BufRead Xresources*,*/app-defaults/*,*/Xresources/* call s:StarSetf('xdefaults') |
7 | 2548 |
2549 " XFree86 config | |
2550 au BufNewFile,BufRead XF86Config-4* | |
2751 | 2551 \ let b:xf86conf_xfree86_version = 4 | call s:StarSetf('xf86conf') |
7 | 2552 au BufNewFile,BufRead XF86Config* |
216 | 2553 \ if getline(1) =~ '\<XConfigurator\>' |
2751 | 2554 \| let b:xf86conf_xfree86_version = 3 |
216 | 2555 \|endif |
2556 \|call s:StarSetf('xf86conf') | |
7 | 2557 |
2558 " X11 xmodmap | |
216 | 2559 au BufNewFile,BufRead *xmodmap* call s:StarSetf('xmodmap') |
7 | 2560 |
375 | 2561 " Xinetd conf |
2751 | 2562 au BufNewFile,BufRead */etc/xinetd.d/* call s:StarSetf('xinetd') |
375 | 2563 |
3082 | 2564 " yum conf (close enough to dosini) |
2565 au BufNewFile,BufRead */etc/yum.repos.d/* call s:StarSetf('dosini') | |
2566 | |
7 | 2567 " Z-Shell script |
216 | 2568 au BufNewFile,BufRead zsh*,zlog* call s:StarSetf('zsh') |
7 | 2569 |
2570 | |
3237 | 2571 " Plain text files, needs to be far down to not override others. This avoids |
2572 " the "conf" type being used if there is a line starting with '#'. | |
2573 au BufNewFile,BufRead *.txt,*.text setf text | |
2574 | |
2013 | 2575 |
2576 " Use the filetype detect plugins. They may overrule any of the previously | |
2577 " detected filetypes. | |
2578 runtime! ftdetect/*.vim | |
2579 | |
3326 | 2580 " NOTE: The above command could have ended the filetypedetect autocmd group |
3356 | 2581 " and started another one. Let's make sure it has ended to get to a consistent |
3326 | 2582 " state. |
2583 augroup END | |
2013 | 2584 |
7 | 2585 " Generic configuration file (check this last, it's just guessing!) |
3326 | 2586 au filetypedetect BufNewFile,BufRead,StdinReadPost * |
7 | 2587 \ if !did_filetype() && expand("<amatch>") !~ g:ft_ignore_pat |
2588 \ && (getline(1) =~ '^#' || getline(2) =~ '^#' || getline(3) =~ '^#' | |
2589 \ || getline(4) =~ '^#' || getline(5) =~ '^#') | | |
2590 \ setf conf | | |
2591 \ endif | |
2592 | |
2593 | |
2594 " If the GUI is already running, may still need to install the Syntax menu. | |
2595 " Don't do it when the 'M' flag is included in 'guioptions'. | |
2596 if has("menu") && has("gui_running") | |
2597 \ && !exists("did_install_syntax_menu") && &guioptions !~# "M" | |
2598 source <sfile>:p:h/menu.vim | |
2599 endif | |
2600 | |
1219 | 2601 " Function called for testing all functions defined here. These are |
2602 " script-local, thus need to be executed here. | |
2603 " Returns a string with error messages (hopefully empty). | |
2604 func! TestFiletypeFuncs(testlist) | |
2605 let output = '' | |
2606 for f in a:testlist | |
2607 try | |
2608 exe f | |
2609 catch | |
2610 let output = output . "\n" . f . ": " . v:exception | |
2611 endtry | |
2612 endfor | |
2613 return output | |
2614 endfunc | |
2615 | |
7 | 2616 " Restore 'cpoptions' |
2617 let &cpo = s:cpo_save | |
2618 unlet s:cpo_save |