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