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