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