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