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