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