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