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