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