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