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