Mercurial > vim
annotate runtime/filetype.vim @ 32208:73c5881c1793 v9.0.1435
patch 9.0.1435: scrolling too many lines when 'wrap' and 'diff' are set
Commit: https://github.com/vim/vim/commit/38d867f041349e1400c2cce9cac06f59ae6ccbb1
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Apr 1 19:54:40 2023 +0100
patch 9.0.1435: scrolling too many lines when 'wrap' and 'diff' are set
Problem: Scrolling too many lines when 'wrap' and 'diff' are set.
Solution: Only scroll by screenlines for 'diff' when 'wrap' is not set.
(closes #12211)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 01 Apr 2023 21:00:04 +0200 |
parents | 8643e060bcb8 |
children | 8e2ecfebd136 |
rev | line source |
---|---|
7 | 1 " Vim support file to detect file types |
2 " | |
3 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
32061 | 4 " Last Change: 2023 Feb 25 |
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. | |
27770
219471ed2fec
patch 8.2.4411: bicep files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27653
diff
changeset
|
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 | |
31688
ead5a3f43a4c
patch 9.0.1176: smithy files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31684
diff
changeset
|
113 " Automake (must be before the *.am pattern) |
ead5a3f43a4c
patch 9.0.1176: smithy files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31684
diff
changeset
|
114 au BufNewFile,BufRead [mM]akefile.am,GNUmakefile.am setf automake |
ead5a3f43a4c
patch 9.0.1176: smithy files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31684
diff
changeset
|
115 |
7 | 116 " Applix ELF |
31688
ead5a3f43a4c
patch 9.0.1176: smithy files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31684
diff
changeset
|
117 au BufNewFile,BufRead *.am setf elf |
7 | 118 |
24 | 119 " ALSA configuration |
2788 | 120 au BufNewFile,BufRead .asoundrc,*/usr/share/alsa/alsa.conf,*/etc/asound.conf setf alsaconf |
24 | 121 |
7 | 122 " Arc Macro Language |
123 au BufNewFile,BufRead *.aml setf aml | |
124 | |
3854 | 125 " APT config file |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
126 au BufNewFile,BufRead apt.conf setf aptconf |
3854 | 127 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
|
128 " more generic pattern far down |
3854 | 129 |
7 | 130 " Arch Inventory file |
131 au BufNewFile,BufRead .arch-inventory,=tagging-method setf arch | |
132 | |
133 " ART*Enterprise (formerly ART-IM) | |
134 au BufNewFile,BufRead *.art setf art | |
135 | |
4229 | 136 " AsciiDoc |
7147
c590de398af9
commit https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
137 au BufNewFile,BufRead *.asciidoc,*.adoc setf asciidoc |
4229 | 138 |
7 | 139 " ASN.1 |
140 au BufNewFile,BufRead *.asn,*.asn1 setf asn | |
141 | |
142 " Active Server Pages (with Visual Basic Script) | |
143 au BufNewFile,BufRead *.asa | |
144 \ if exists("g:filetype_asa") | | |
145 \ exe "setf " . g:filetype_asa | | |
146 \ else | | |
147 \ setf aspvbs | | |
148 \ endif | |
149 | |
150 " Active Server Pages (with Perl or Visual Basic Script) | |
151 au BufNewFile,BufRead *.asp | |
152 \ if exists("g:filetype_asp") | | |
153 \ exe "setf " . g:filetype_asp | | |
154 \ elseif getline(1) . getline(2) . getline(3) =~? "perlscript" | | |
155 \ setf aspperl | | |
156 \ else | | |
157 \ setf aspvbs | | |
158 \ endif | |
159 | |
28538
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
160 " Grub (must be before pattern *.lst) |
2788 | 161 au BufNewFile,BufRead */boot/grub/menu.lst,*/boot/grub/grub.conf,*/etc/grub.conf setf grub |
7 | 162 |
28513
6a1e5b188374
patch 8.2.4781: Maxima files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28507
diff
changeset
|
163 " Maxima, see: |
6a1e5b188374
patch 8.2.4781: Maxima files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28507
diff
changeset
|
164 " https://maxima.sourceforge.io/docs/manual/maxima_71.html#file_005ftype_005fmaxima |
28538
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
165 " Must be before the pattern *.mac. |
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
166 " *.dem omitted - also used by gnuplot demos |
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
167 " *.mc omitted - used by dist#ft#McSetf() |
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
168 au BufNewFile,BufRead *.demo,*.dm{1,2,3,t},*.wxm,maxima-init.mac setf maxima |
28513
6a1e5b188374
patch 8.2.4781: Maxima files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28507
diff
changeset
|
169 |
7 | 170 " Assembly (all kinds) |
171 " *.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
|
172 au BufNewFile,BufRead *.asm,*.[sS],*.[aA],*.mac,*.lst call dist#ft#FTasm() |
7 | 173 |
28538
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
174 " Assembly - Macro (VAX) |
7 | 175 au BufNewFile,BufRead *.mar setf vmasm |
176 | |
29714
1317743de840
patch 9.0.0197: astro files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
29710
diff
changeset
|
177 " Astro |
1317743de840
patch 9.0.0197: astro files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
29710
diff
changeset
|
178 au BufNewFile,BufRead *.astro setf astro |
1317743de840
patch 9.0.0197: astro files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
29710
diff
changeset
|
179 |
7 | 180 " Atlas |
181 au BufNewFile,BufRead *.atl,*.as setf atlas | |
182 | |
24166
13618b8fb0dc
patch 8.2.2624: atom files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24103
diff
changeset
|
183 " Atom is based on XML |
13618b8fb0dc
patch 8.2.2624: atom files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24103
diff
changeset
|
184 au BufNewFile,BufRead *.atom setf xml |
13618b8fb0dc
patch 8.2.2624: atom files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24103
diff
changeset
|
185 |
1125 | 186 " Autoit v3 |
187 au BufNewFile,BufRead *.au3 setf autoit | |
188 | |
1219 | 189 " Autohotkey |
190 au BufNewFile,BufRead *.ahk setf autohotkey | |
191 | |
375 | 192 " Autotest .at files are actually m4 |
193 au BufNewFile,BufRead *.at setf m4 | |
194 | |
7 | 195 " Avenue |
196 au BufNewFile,BufRead *.ave setf ave | |
197 | |
198 " Awk | |
21817
c2c2e57562ee
patch 8.2.1458: .gawk files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
21719
diff
changeset
|
199 au BufNewFile,BufRead *.awk,*.gawk setf awk |
7 | 200 |
201 " B | |
202 au BufNewFile,BufRead *.mch,*.ref,*.imp setf b | |
203 | |
204 " 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
|
205 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
|
206 au BufNewFile,BufRead *.bi,*.bm call dist#ft#FTbas() |
7 | 207 |
32074
070940cc32b5
patch 9.0.1368: Bass files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32061
diff
changeset
|
208 " Bass |
070940cc32b5
patch 9.0.1368: Bass files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32061
diff
changeset
|
209 au BufNewFile,BufRead *.bass setf bass |
070940cc32b5
patch 9.0.1368: Bass files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32061
diff
changeset
|
210 |
3465 | 211 " Visual Basic Script (close to Visual Basic) or Visual Basic .NET |
212 au BufNewFile,BufRead *.vb,*.vbs,*.dsm,*.ctl setf vb | |
7 | 213 |
1125 | 214 " IBasic file (similar to QBasic) |
215 au BufNewFile,BufRead *.iba,*.ibi setf ibasic | |
216 | |
217 " 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
|
218 au BufNewFile,BufRead *.fb setf freebasic |
1125 | 219 |
28390
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
220 " Batch file for MSDOS. See dist#ft#FTsys for *.sys |
28443
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
221 au BufNewFile,BufRead *.bat setf dosbatch |
7 | 222 " *.cmd is close to a Batch file, but on OS/2 Rexx files also use *.cmd. |
223 au BufNewFile,BufRead *.cmd | |
224 \ if getline(1) =~ '^/\*' | setf rexx | else | setf dosbatch | endif | |
28390
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
225 " ABB RAPID or Batch file for MSDOS. |
28443
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
226 au BufNewFile,BufRead *.sys\c call dist#ft#FTsys() |
7 | 227 |
228 " 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
|
229 au BufNewFile,BufRead *.btm call dist#ft#FTbtm() |
7 | 230 |
231 " BC calculator | |
232 au BufNewFile,BufRead *.bc setf bc | |
233 | |
234 " BDF font | |
235 au BufNewFile,BufRead *.bdf setf bdf | |
236 | |
23960
dbc6c893a67a
patch 8.2.2522: Beancount filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23737
diff
changeset
|
237 " Beancount |
dbc6c893a67a
patch 8.2.2522: Beancount filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23737
diff
changeset
|
238 au BufNewFile,BufRead *.beancount setf beancount |
dbc6c893a67a
patch 8.2.2522: Beancount filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23737
diff
changeset
|
239 |
7 | 240 " BibTeX bibliography database file |
241 au BufNewFile,BufRead *.bib setf bib | |
242 | |
846 | 243 " BibTeX Bibliography Style |
244 au BufNewFile,BufRead *.bst setf bst | |
245 | |
27770
219471ed2fec
patch 8.2.4411: bicep files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27653
diff
changeset
|
246 " Bicep |
219471ed2fec
patch 8.2.4411: bicep files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27653
diff
changeset
|
247 au BufNewFile,BufRead *.bicep setf bicep |
219471ed2fec
patch 8.2.4411: bicep files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27653
diff
changeset
|
248 |
7 | 249 " BIND configuration |
11262 | 250 " sudoedit uses namedXXXX.conf |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
251 au BufNewFile,BufRead named*.conf,rndc*.conf,rndc*.key setf named |
7 | 252 |
253 " BIND zone | |
254 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
|
255 au BufNewFile,BufRead *.db call dist#ft#BindzoneCheck('') |
7 | 256 |
257 " Blank | |
258 au BufNewFile,BufRead *.bl setf blank | |
259 | |
29427
2830faa3e100
patch 9.0.0055: bitbake files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
29415
diff
changeset
|
260 " Bitbake |
2830faa3e100
patch 9.0.0055: bitbake files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
29415
diff
changeset
|
261 au BufNewFile,BufRead *.bb,*.bbappend,*.bbclass,*/build/conf/*.conf,*/meta{-*,}/conf/*.conf setf bitbake |
2830faa3e100
patch 9.0.0055: bitbake files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
29415
diff
changeset
|
262 |
1676 | 263 " Blkid cache file |
2751 | 264 au BufNewFile,BufRead */etc/blkid.tab,*/etc/blkid.tab.old setf xml |
1676 | 265 |
19717
de7c724bf803
patch 8.2.0415: bsdl filetype is not detected
Bram Moolenaar <Bram@vim.org>
parents:
19404
diff
changeset
|
266 " BSDL |
29463
27ebab59172e
patch 9.0.0073: too many files recognized as bsdl
Bram Moolenaar <Bram@vim.org>
parents:
29427
diff
changeset
|
267 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
|
268 |
7176
30042ddff503
commit https://github.com/vim/vim/commit/60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d
Christian Brabandt <cb@256bit.org>
parents:
7147
diff
changeset
|
269 " Bazel (http://bazel.io) |
31718
bcedaa2fcb7b
patch 9.0.1191: some Bazel files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31700
diff
changeset
|
270 autocmd BufRead,BufNewFile *.bzl,*.bazel,WORKSPACE,WORKSPACE.bzlmod setf bzl |
10548
74effdaa369e
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10348
diff
changeset
|
271 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
|
272 " 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
|
273 autocmd BufRead,BufNewFile *.BUILD,BUILD setf bzl |
10548
74effdaa369e
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10348
diff
changeset
|
274 endif |
7176
30042ddff503
commit https://github.com/vim/vim/commit/60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d
Christian Brabandt <cb@256bit.org>
parents:
7147
diff
changeset
|
275 |
7 | 276 " C or lpc |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
277 au BufNewFile,BufRead *.c call dist#ft#FTlpc() |
13125 | 278 au BufNewFile,BufRead *.lpc,*.ulpc setf lpc |
7 | 279 |
32124
a71e0e099950
patch 9.0.1393: Cairo files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32074
diff
changeset
|
280 " Cairo |
a71e0e099950
patch 9.0.1393: Cairo files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32074
diff
changeset
|
281 au BufNewFile,BufRead *.cairo setf cairo |
a71e0e099950
patch 9.0.1393: Cairo files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32074
diff
changeset
|
282 |
7 | 283 " Calendar |
216 | 284 au BufNewFile,BufRead calendar setf calendar |
7 | 285 |
31794
745772308c81
patch 9.0.1229: Cap'n Proto files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31718
diff
changeset
|
286 " Cap'n Proto |
745772308c81
patch 9.0.1229: Cap'n Proto files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31718
diff
changeset
|
287 au BufNewFile,BufRead *.capnp setf capnp |
745772308c81
patch 9.0.1229: Cap'n Proto files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31718
diff
changeset
|
288 |
7 | 289 " C# |
26570
b1f4052d6c51
patch 8.2.3814: .csx files and .sln files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26552
diff
changeset
|
290 au BufNewFile,BufRead *.cs,*.csx setf cs |
7 | 291 |
4186 | 292 " CSDL |
293 au BufNewFile,BufRead *.csdl setf csdl | |
294 | |
2152 | 295 " Cabal |
2725 | 296 au BufNewFile,BufRead *.cabal setf cabal |
2152 | 297 |
1219 | 298 " Cdrdao TOC |
299 au BufNewFile,BufRead *.toc setf cdrtoc | |
300 | |
1648 | 301 " Cdrdao config |
2788 | 302 au BufNewFile,BufRead */etc/cdrdao.conf,*/etc/defaults/cdrdao,*/etc/default/cdrdao,.cdrdao setf cdrdaoconf |
1648 | 303 |
555 | 304 " Cfengine |
305 au BufNewFile,BufRead cfengine.conf setf cfengine | |
306 | |
2152 | 307 " ChaiScript |
308 au BufRead,BufNewFile *.chai setf chaiscript | |
309 | |
30349
37a251ba4cf4
patch 9.0.0510: Chatito files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30324
diff
changeset
|
310 " Chatito |
37a251ba4cf4
patch 9.0.0510: Chatito files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30324
diff
changeset
|
311 au BufNewFile,BufRead *.chatito setf chatito |
37a251ba4cf4
patch 9.0.0510: Chatito files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30324
diff
changeset
|
312 |
7 | 313 " Comshare Dimension Definition Language |
314 au BufNewFile,BufRead *.cdl setf cdl | |
315 | |
1125 | 316 " Conary Recipe |
317 au BufNewFile,BufRead *.recipe setf conaryrecipe | |
318 | |
32037
1171d97f415d
patch 9.0.1350: CPON files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32033
diff
changeset
|
319 " ChainPack Object Notation (CPON) |
1171d97f415d
patch 9.0.1350: CPON files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32033
diff
changeset
|
320 au BufNewFile,BufRead *.cpon setf cpon |
1171d97f415d
patch 9.0.1350: CPON files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32033
diff
changeset
|
321 |
7 | 322 " Controllable Regex Mutilator |
323 au BufNewFile,BufRead *.crm setf crm | |
324 | |
325 " Cyn++ | |
326 au BufNewFile,BufRead *.cyn setf cynpp | |
327 | |
328 " Cynlib | |
329 " .cc and .cpp files can be C++ or Cynlib. | |
330 au BufNewFile,BufRead *.cc | |
331 \ if exists("cynlib_syntax_for_cc")|setf cynlib|else|setf cpp|endif | |
332 au BufNewFile,BufRead *.cpp | |
333 \ if exists("cynlib_syntax_for_cpp")|setf cynlib|else|setf cpp|endif | |
334 | |
335 " C++ | |
2034 | 336 au BufNewFile,BufRead *.cxx,*.c++,*.hh,*.hxx,*.hpp,*.ipp,*.moc,*.tcc,*.inl setf cpp |
7 | 337 if has("fname_case") |
2034 | 338 au BufNewFile,BufRead *.C,*.H setf cpp |
7 | 339 endif |
340 | |
1648 | 341 " .h files can be C, Ch C++, ObjC or ObjC++. |
342 " Set c_syntax_for_h if you want C, ch_syntax_for_h if you want Ch. ObjC is | |
343 " detected automatically. | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
344 au BufNewFile,BufRead *.h call dist#ft#FTheader() |
7 | 345 |
346 " Ch (CHscript) | |
347 au BufNewFile,BufRead *.chf setf ch | |
348 | |
349 " TLH files are C++ headers generated by Visual C++'s #import from typelibs | |
350 au BufNewFile,BufRead *.tlh setf cpp | |
351 | |
352 " Cascading Style Sheets | |
353 au BufNewFile,BufRead *.css setf css | |
354 | |
355 " Century Term Command Scripts (*.cmd too) | |
356 au BufNewFile,BufRead *.con setf cterm | |
357 | |
358 " Changelog | |
22462
89566aaebfb2
patch 8.2.1779: some debian changelog files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
22441
diff
changeset
|
359 au BufNewFile,BufRead changelog.Debian,changelog.dch,NEWS.Debian,NEWS.dch,*/debian/changelog |
809 | 360 \ setf debchangelog |
361 | |
362 au BufNewFile,BufRead [cC]hange[lL]og | |
363 \ if getline(1) =~ '; urgency=' | |
364 \| setf debchangelog | |
365 \| else | |
366 \| setf changelog | |
367 \| endif | |
368 | |
369 au BufNewFile,BufRead NEWS | |
370 \ if getline(1) =~ '; urgency=' | |
371 \| setf debchangelog | |
372 \| endif | |
7 | 373 |
374 " CHILL | |
375 au BufNewFile,BufRead *..ch setf chill | |
376 | |
377 " 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
|
378 au BufNewFile,BufRead *.ch call dist#ft#FTchange() |
7 | 379 |
839 | 380 " ChordPro |
381 au BufNewFile,BufRead *.chopro,*.crd,*.cho,*.crdpro,*.chordpro setf chordpro | |
382 | |
31871
e46f41a1b7c5
patch 9.0.1268: .clangd and .stylelintrc files don't get a filetype
Bram Moolenaar <Bram@vim.org>
parents:
31861
diff
changeset
|
383 " Clangd |
e46f41a1b7c5
patch 9.0.1268: .clangd and .stylelintrc files don't get a filetype
Bram Moolenaar <Bram@vim.org>
parents:
31861
diff
changeset
|
384 au BufNewFile,BufRead .clangd setf yaml |
e46f41a1b7c5
patch 9.0.1268: .clangd and .stylelintrc files don't get a filetype
Bram Moolenaar <Bram@vim.org>
parents:
31861
diff
changeset
|
385 |
30928
fa68adeca7c1
patch 9.0.0798: clang format configuration files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30896
diff
changeset
|
386 " Clang-format |
fa68adeca7c1
patch 9.0.0798: clang format configuration files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30896
diff
changeset
|
387 au BufNewFile,BufRead .clang-format setf yaml |
fa68adeca7c1
patch 9.0.0798: clang format configuration files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30896
diff
changeset
|
388 |
30793
79a6c53a7539
patch 9.0.0731: clang-tidy configuration files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30753
diff
changeset
|
389 " Clang-tidy |
79a6c53a7539
patch 9.0.0731: clang-tidy configuration files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30753
diff
changeset
|
390 au BufNewFile,BufRead .clang-tidy setf yaml |
79a6c53a7539
patch 9.0.0731: clang-tidy configuration files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30753
diff
changeset
|
391 |
7 | 392 " Clean |
393 au BufNewFile,BufRead *.dcl,*.icl setf clean | |
394 | |
395 " Clever | |
396 au BufNewFile,BufRead *.eni setf cl | |
397 | |
398 " Clever or dtd | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
399 au BufNewFile,BufRead *.ent call dist#ft#FTent() |
7 | 400 |
28390
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
401 " Clipper, FoxPro, ABB RAPID or eviews |
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
402 au BufNewFile,BufRead *.prg\c call dist#ft#FTprg() |
7 | 403 |
4098 | 404 " Clojure |
6823 | 405 au BufNewFile,BufRead *.clj,*.cljs,*.cljx,*.cljc setf clojure |
4098 | 406 |
836 | 407 " Cmake |
408 au BufNewFile,BufRead CMakeLists.txt,*.cmake,*.cmake.in setf cmake | |
409 | |
1125 | 410 " Cmusrc |
2788 | 411 au BufNewFile,BufRead */.cmus/{autosave,rc,command-history,*.theme} setf cmusrc |
1125 | 412 au BufNewFile,BufRead */cmus/{rc,*.theme} setf cmusrc |
413 | |
7 | 414 " Cobol |
809 | 415 au BufNewFile,BufRead *.cbl,*.cob,*.lib setf cobol |
416 " cobol or zope form controller python script? (heuristic) | |
417 au BufNewFile,BufRead *.cpy | |
418 \ if getline(1) =~ '^##' | | |
419 \ setf python | | |
420 \ else | | |
421 \ setf cobol | | |
422 \ endif | |
7 | 423 |
1648 | 424 " Coco/R |
425 au BufNewFile,BufRead *.atg setf coco | |
426 | |
7 | 427 " Cold Fusion |
428 au BufNewFile,BufRead *.cfm,*.cfi,*.cfc setf cf | |
429 | |
430 " Configure scripts | |
431 au BufNewFile,BufRead configure.in,configure.ac setf config | |
432 | |
28393
860c2c6bcdfd
patch 8.2.4721: cooklang files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28390
diff
changeset
|
433 " Cooklang |
860c2c6bcdfd
patch 8.2.4721: cooklang files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28390
diff
changeset
|
434 au BufNewFile,BufRead *.cook setf cook |
860c2c6bcdfd
patch 8.2.4721: cooklang files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28390
diff
changeset
|
435 |
31125
0100be942b82
patch 9.0.0897: Clinical Quality Language files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31028
diff
changeset
|
436 " Clinical Quality Language (CQL) |
0100be942b82
patch 9.0.0897: Clinical Quality Language files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31028
diff
changeset
|
437 " .cql is also mentioned as the 'XDCC Catcher queue list' file extension. |
0100be942b82
patch 9.0.0897: Clinical Quality Language files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31028
diff
changeset
|
438 " If support for XDCC Catcher is needed in the future, the contents of the file |
0100be942b82
patch 9.0.0897: Clinical Quality Language files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31028
diff
changeset
|
439 " needs to be inspected. |
0100be942b82
patch 9.0.0897: Clinical Quality Language files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31028
diff
changeset
|
440 au BufNewFile,BufRead *.cql setf cqlang |
0100be942b82
patch 9.0.0897: Clinical Quality Language files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31028
diff
changeset
|
441 |
32168
6bdf843c3023
patch 9.0.1415: Crystal files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32162
diff
changeset
|
442 " Crystal |
6bdf843c3023
patch 9.0.1415: Crystal files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32162
diff
changeset
|
443 au BufNewFile,BufRead *.cr setf crystal |
6bdf843c3023
patch 9.0.1415: Crystal files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32162
diff
changeset
|
444 |
29415
87174e9f7529
patch 9.0.0049: csv and tsv files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29403
diff
changeset
|
445 " CSV Files |
87174e9f7529
patch 9.0.0049: csv and tsv files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29403
diff
changeset
|
446 au BufNewFile,BufRead *.csv setf csv |
87174e9f7529
patch 9.0.0049: csv and tsv files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29403
diff
changeset
|
447 |
25026
fda44c0b4b7b
patch 8.2.3050: cannot recognize elixir files
Bram Moolenaar <Bram@vim.org>
parents:
25024
diff
changeset
|
448 " CUDA Compute Unified Device Architecture |
13125 | 449 au BufNewFile,BufRead *.cu,*.cuh setf cuda |
1648 | 450 |
32057
aa66dedd891c
patch 9.0.1360: Cue files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32039
diff
changeset
|
451 " Cue |
aa66dedd891c
patch 9.0.1360: Cue files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32039
diff
changeset
|
452 au BufNewFile,BufRead *.cue setf cue |
aa66dedd891c
patch 9.0.1360: Cue files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32039
diff
changeset
|
453 |
19263
06d9be5c0107
patch 8.2.0190: Kotlin files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19205
diff
changeset
|
454 " 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
|
455 " Also see Dockerfile.* below. |
28986
560793de4032
patch 8.2.5015: Hoon and Moonscript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28670
diff
changeset
|
456 au BufNewFile,BufRead Containerfile,Dockerfile,dockerfile,*.[dD]ockerfile setf dockerfile |
6180 | 457 |
7 | 458 " WildPackets EtherPeek Decoder |
459 au BufNewFile,BufRead *.dcd setf dcd | |
460 | |
461 " Enlightenment configuration files | |
462 au BufNewFile,BufRead *enlightenment/*.cfg setf c | |
463 | |
464 " Eterm | |
465 au BufNewFile,BufRead *Eterm/*.cfg setf eterm | |
466 | |
25026
fda44c0b4b7b
patch 8.2.3050: cannot recognize elixir files
Bram Moolenaar <Bram@vim.org>
parents:
25024
diff
changeset
|
467 " Elixir or Euphoria |
fda44c0b4b7b
patch 8.2.3050: cannot recognize elixir files
Bram Moolenaar <Bram@vim.org>
parents:
25024
diff
changeset
|
468 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
|
469 |
28417
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
470 " Elixir |
25026
fda44c0b4b7b
patch 8.2.3050: cannot recognize elixir files
Bram Moolenaar <Bram@vim.org>
parents:
25024
diff
changeset
|
471 au BufRead,BufNewFile mix.lock,*.exs setf elixir |
28417
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
472 au BufRead,BufNewFile *.eex,*.leex setf eelixir |
25026
fda44c0b4b7b
patch 8.2.3050: cannot recognize elixir files
Bram Moolenaar <Bram@vim.org>
parents:
25024
diff
changeset
|
473 |
28277
4e2753f7ec65
patch 8.2.4664: Elvish files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28265
diff
changeset
|
474 " Elvish |
4e2753f7ec65
patch 8.2.4664: Elvish files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28265
diff
changeset
|
475 au BufRead,BufNewFile *.elv setf elvish |
4e2753f7ec65
patch 8.2.4664: Elvish files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28265
diff
changeset
|
476 |
5692
80e5f9584b02
Update runtime files. Add Euphoria syntax files.
Bram Moolenaar <bram@vim.org>
parents:
5663
diff
changeset
|
477 " Euphoria 3 or 4 |
25026
fda44c0b4b7b
patch 8.2.3050: cannot recognize elixir files
Bram Moolenaar <Bram@vim.org>
parents:
25024
diff
changeset
|
478 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
|
479 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
|
480 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
|
481 endif |
80e5f9584b02
Update runtime files. Add Euphoria syntax files.
Bram Moolenaar <bram@vim.org>
parents:
5663
diff
changeset
|
482 |
7 | 483 " Lynx config files |
484 au BufNewFile,BufRead lynx.cfg setf lynx | |
485 | |
30322
2f79b10e82d1
patch 9.0.0497: LyRiCs files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30287
diff
changeset
|
486 " LyRiCs |
2f79b10e82d1
patch 9.0.0497: LyRiCs files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30287
diff
changeset
|
487 au BufNewFile,BufRead *.lrc setf lyrics |
2f79b10e82d1
patch 9.0.0497: LyRiCs files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30287
diff
changeset
|
488 |
24458
1d126cb683c1
patch 8.2.2769: Modula-3 config files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24347
diff
changeset
|
489 " 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
|
490 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
|
491 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
|
492 |
7 | 493 " Quake |
494 au BufNewFile,BufRead *baseq[2-3]/*.cfg,*id1/*.cfg setf quake | |
495 au BufNewFile,BufRead *quake[1-3]/*.cfg setf quake | |
496 | |
497 " Quake C | |
498 au BufNewFile,BufRead *.qc setf c | |
499 | |
500 " Configure files | |
28390
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
501 au BufNewFile,BufRead *.cfg\c call dist#ft#FTcfg() |
7 | 502 |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
503 " Cucumber |
2725 | 504 au BufNewFile,BufRead *.feature setf cucumber |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
505 |
7 | 506 " Communicating Sequential Processes |
507 au BufNewFile,BufRead *.csp,*.fdr setf csp | |
508 | |
509 " CUPL logic description and simulation | |
510 au BufNewFile,BufRead *.pld setf cupl | |
511 au BufNewFile,BufRead *.si setf cuplsim | |
512 | |
18366
c6826a74ad9b
patch 8.1.2177: Dart files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18362
diff
changeset
|
513 " Dart |
c6826a74ad9b
patch 8.1.2177: Dart files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18362
diff
changeset
|
514 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
|
515 |
7 | 516 " Debian Control |
517 au BufNewFile,BufRead */debian/control setf debcontrol | |
1648 | 518 au BufNewFile,BufRead control |
519 \ if getline(1) =~ '^Source:' | |
520 \| setf debcontrol | |
521 \| endif | |
7 | 522 |
13857 | 523 " Debian Copyright |
524 au BufNewFile,BufRead */debian/copyright setf debcopyright | |
525 au BufNewFile,BufRead copyright | |
526 \ if getline(1) =~ '^Format:' | |
527 \| setf debcopyright | |
528 \| endif | |
529 | |
816 | 530 " Debian Sources.list |
2751 | 531 au BufNewFile,BufRead */etc/apt/sources.list setf debsources |
532 au BufNewFile,BufRead */etc/apt/sources.list.d/*.list setf debsources | |
816 | 533 |
1648 | 534 " Deny hosts |
535 au BufNewFile,BufRead denyhosts.conf setf denyhosts | |
536 | |
32039
f08ee1b65dbf
patch 9.0.1351: Dhall files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32037
diff
changeset
|
537 " Dhall |
f08ee1b65dbf
patch 9.0.1351: Dhall files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32037
diff
changeset
|
538 au BufNewFile,BufRead *.dhall setf dhall |
f08ee1b65dbf
patch 9.0.1351: Dhall files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32037
diff
changeset
|
539 |
2788 | 540 " dnsmasq(8) configuration files |
2833 | 541 au BufNewFile,BufRead */etc/dnsmasq.conf setf dnsmasq |
2788 | 542 |
7 | 543 " ROCKLinux package description |
544 au BufNewFile,BufRead *.desc setf desc | |
545 | |
1648 | 546 " the D language or dtrace |
27877
834d3fba1e7c
patch 8.2.4464: Dtrace files are recognized as filetype D
Bram Moolenaar <Bram@vim.org>
parents:
27804
diff
changeset
|
547 au BufNewFile,BufRead */dtrace/*.d setf dtrace |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
548 au BufNewFile,BufRead *.d call dist#ft#DtraceCheck() |
7 | 549 |
550 " Desktop files | |
20804
ad15725594f8
patch 8.2.0954: not all desktop files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
20753
diff
changeset
|
551 au BufNewFile,BufRead *.desktop,*.directory setf desktop |
7 | 552 |
389 | 553 " Dict config |
554 au BufNewFile,BufRead dict.conf,.dictrc setf dictconf | |
555 | |
556 " Dictd config | |
25848
86c3af1be1db
patch 8.2.3458: not all dictdconf files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
25836
diff
changeset
|
557 au BufNewFile,BufRead dictd*.conf setf dictdconf |
389 | 558 |
26628
7efd8f561d04
patch 8.2.3843: dep3patch files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26591
diff
changeset
|
559 " DEP3 formatted patch files |
7efd8f561d04
patch 8.2.3843: dep3patch files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26591
diff
changeset
|
560 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
|
561 |
7 | 562 " Diff files |
11659
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
563 au BufNewFile,BufRead *.diff,*.rej setf diff |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
564 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
|
565 \ 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
|
566 \ setf gitsendemail | |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
567 \ else | |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
568 \ setf diff | |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11535
diff
changeset
|
569 \ endif |
7 | 570 |
571 " Dircolors | |
2751 | 572 au BufNewFile,BufRead .dir_colors,.dircolors,*/etc/DIR_COLORS setf dircolors |
7 | 573 |
574 " Diva (with Skill) or InstallShield | |
575 au BufNewFile,BufRead *.rul | |
576 \ if getline(1).getline(2).getline(3).getline(4).getline(5).getline(6) =~? 'InstallShield' | | |
577 \ setf ishd | | |
578 \ else | | |
579 \ setf diva | | |
580 \ endif | |
581 | |
582 " 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
|
583 au BufNewFile,BufRead *.com call dist#ft#BindzoneCheck('dcl') |
7 | 584 |
585 " DOT | |
19205
861b1cc1a8a2
patch 8.2.0161: not recognizing .gv file as dot filetype
Bram Moolenaar <Bram@vim.org>
parents:
19180
diff
changeset
|
586 au BufNewFile,BufRead *.dot,*.gv setf dot |
7 | 587 |
23430
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
588 " Dune |
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
589 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
|
590 |
7 | 591 " Dylan - lid files |
592 au BufNewFile,BufRead *.lid setf dylanlid | |
593 | |
594 " Dylan - intr files (melange) | |
595 au BufNewFile,BufRead *.intr setf dylanintr | |
596 | |
597 " Dylan | |
598 au BufNewFile,BufRead *.dylan setf dylan | |
599 | |
600 " Microsoft Module Definition | |
601 au BufNewFile,BufRead *.def setf def | |
602 | |
603 " Dracula | |
604 au BufNewFile,BufRead *.drac,*.drc,*lvs,*lpe setf dracula | |
605 | |
2467
9c8d603fd4d1
Add Datascript syntax file. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2439
diff
changeset
|
606 " Datascript |
9c8d603fd4d1
Add Datascript syntax file. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2439
diff
changeset
|
607 au BufNewFile,BufRead *.ds setf datascript |
9c8d603fd4d1
Add Datascript syntax file. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2439
diff
changeset
|
608 |
25644
59a1c9a2ca2e
patch 8.2.3358: structurizr files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25497
diff
changeset
|
609 " dsl: DSSSL or Structurizr |
59a1c9a2ca2e
patch 8.2.3358: structurizr files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25497
diff
changeset
|
610 au BufNewFile,BufRead *.dsl |
59a1c9a2ca2e
patch 8.2.3358: structurizr files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25497
diff
changeset
|
611 \ if getline(1) =~ '^\s*<\!' | |
59a1c9a2ca2e
patch 8.2.3358: structurizr files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25497
diff
changeset
|
612 \ setf dsl | |
59a1c9a2ca2e
patch 8.2.3358: structurizr files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25497
diff
changeset
|
613 \ else | |
59a1c9a2ca2e
patch 8.2.3358: structurizr files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25497
diff
changeset
|
614 \ setf structurizr | |
59a1c9a2ca2e
patch 8.2.3358: structurizr files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25497
diff
changeset
|
615 \ endif |
7 | 616 |
617 " DTD (Document Type Definition for XML) | |
618 au BufNewFile,BufRead *.dtd setf dtd | |
619 | |
3847 | 620 " DTS/DSTI (device tree files) |
621 au BufNewFile,BufRead *.dts,*.dtsi setf dts | |
622 | |
10617 | 623 " EDIF (*.edf,*.edif,*.edn,*.edo) or edn |
624 au BufNewFile,BufRead *.ed\(f\|if\|o\) setf edif | |
625 au BufNewFile,BufRead *.edn | |
626 \ if getline(1) =~ '^\s*(\s*edif\>' | | |
627 \ setf edif | | |
628 \ else | | |
629 \ setf clojure | | |
630 \ endif | |
7 | 631 |
31669
4372b50e0a1d
patch 9.0.1167: EditorConfig files do not have their own filetype
Bram Moolenaar <Bram@vim.org>
parents:
31579
diff
changeset
|
632 " EditorConfig |
4372b50e0a1d
patch 9.0.1167: EditorConfig files do not have their own filetype
Bram Moolenaar <Bram@vim.org>
parents:
31579
diff
changeset
|
633 au BufNewFile,BufRead .editorconfig setf editorconfig |
10211
b7da8d4c594c
commit https://github.com/vim/vim/commit/d07969093a9b3051511c478d71c36de6fc33c0d6
Christian Brabandt <cb@256bit.org>
parents:
9975
diff
changeset
|
634 |
7 | 635 " Embedix Component Description |
636 au BufNewFile,BufRead *.ecd setf ecd | |
637 | |
5697 | 638 " 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
|
639 au BufNewFile,BufRead *.e,*.E call dist#ft#FTe() |
7 | 640 |
641 " Elinks configuration | |
21018
2b07e2e7d95b
patch 8.2.1060: not all elinks files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
21008
diff
changeset
|
642 au BufNewFile,BufRead elinks.conf setf elinks |
7 | 643 |
1648 | 644 " ERicsson LANGuage; Yaws is erlang too |
1668 | 645 au BufNewFile,BufRead *.erl,*.hrl,*.yaws setf erlang |
7 | 646 |
20579
6e6c98dc5732
patch 8.2.0843: filetype elm not detected
Bram Moolenaar <Bram@vim.org>
parents:
20361
diff
changeset
|
647 " Elm |
6e6c98dc5732
patch 8.2.0843: filetype elm not detected
Bram Moolenaar <Bram@vim.org>
parents:
20361
diff
changeset
|
648 au BufNewFile,BufRead *.elm setf elm |
6e6c98dc5732
patch 8.2.0843: filetype elm not detected
Bram Moolenaar <Bram@vim.org>
parents:
20361
diff
changeset
|
649 |
7 | 650 " Elm Filter Rules file |
651 au BufNewFile,BufRead filter-rules setf elmfilt | |
652 | |
31857
a9d97517ac27
patch 9.0.1261: Elsa files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31847
diff
changeset
|
653 " Elsa - https://github.com/ucsd-progsys/elsa |
a9d97517ac27
patch 9.0.1261: Elsa files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31847
diff
changeset
|
654 au BufNewFile,BufRead *.lc setf elsa |
a9d97517ac27
patch 9.0.1261: Elsa files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31847
diff
changeset
|
655 |
32172
7c131fe0b473
patch 9.0.1417: ESDL files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32168
diff
changeset
|
656 " EdgeDB Schema Definition Language |
7c131fe0b473
patch 9.0.1417: ESDL files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32168
diff
changeset
|
657 au BufNewFile,BufRead *.esdl setf esdl |
7c131fe0b473
patch 9.0.1417: ESDL files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32168
diff
changeset
|
658 |
168 | 659 " ESMTP rc file |
660 au BufNewFile,BufRead *esmtprc setf esmtprc | |
661 | |
7 | 662 " ESQL-C |
663 au BufNewFile,BufRead *.ec,*.EC setf esqlc | |
664 | |
278 | 665 " Esterel |
666 au BufNewFile,BufRead *.strl setf esterel | |
667 | |
7 | 668 " Essbase script |
669 au BufNewFile,BufRead *.csc setf csc | |
670 | |
671 " Exim | |
672 au BufNewFile,BufRead exim.conf setf exim | |
673 | |
674 " Expect | |
675 au BufNewFile,BufRead *.exp setf expect | |
676 | |
677 " Exports | |
678 au BufNewFile,BufRead exports setf exports | |
679 | |
2596 | 680 " Falcon |
2725 | 681 au BufNewFile,BufRead *.fal setf falcon |
2596 | 682 |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2202
diff
changeset
|
683 " Fantom |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2202
diff
changeset
|
684 au BufNewFile,BufRead *.fan,*.fwt setf fan |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2202
diff
changeset
|
685 |
333 | 686 " Factor |
687 au BufNewFile,BufRead *.factor setf factor | |
688 | |
23701
c5b5e7520fe2
patch 8.2.2392: fennel filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23685
diff
changeset
|
689 " Fennel |
24466
f5a6a6e98ec4
patch 8.2.2773: PSL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24458
diff
changeset
|
690 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
|
691 |
7 | 692 " Fetchmail RC file |
693 au BufNewFile,BufRead .fetchmailrc setf fetchmail | |
694 | |
31883
f9dbb07cad5a
patch 9.0.1274: FIRRTL files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31879
diff
changeset
|
695 " FIRRTL - Flexible Internal Representation for RTL |
f9dbb07cad5a
patch 9.0.1274: FIRRTL files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31879
diff
changeset
|
696 au BufNewFile,BufRead *.fir setf firrtl |
f9dbb07cad5a
patch 9.0.1274: FIRRTL files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31879
diff
changeset
|
697 |
26141
77ad8ea01c00
patch 8.2.3603: fish filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26133
diff
changeset
|
698 " Fish shell |
77ad8ea01c00
patch 8.2.3603: fish filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26133
diff
changeset
|
699 au BufNewFile,BufRead *.fish setf fish |
77ad8ea01c00
patch 8.2.3603: fish filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26133
diff
changeset
|
700 |
2034 | 701 " FlexWiki - disabled, because it has side effects when a .wiki file |
702 " is not actually FlexWiki | |
703 "au BufNewFile,BufRead *.wiki setf flexwiki | |
846 | 704 |
7 | 705 " Focus Executable |
706 au BufNewFile,BufRead *.fex,*.focexec setf focexec | |
707 | |
708 " Focus Master file (but not for auto.master) | |
709 au BufNewFile,BufRead auto.master setf conf | |
710 au BufNewFile,BufRead *.mas,*.master setf master | |
711 | |
712 " Forth | |
26311
ce3678583211
patch 8.2.3686: filetype detection often mixes up Forth and F#
Bram Moolenaar <Bram@vim.org>
parents:
26309
diff
changeset
|
713 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
|
714 |
1648 | 715 " Reva Forth |
716 au BufNewFile,BufRead *.frt setf reva | |
717 | |
7 | 718 " Fortran |
1125 | 719 if has("fname_case") |
2478
11def19fbb0e
Recognize .f03 and .f08 as Fortran files. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2467
diff
changeset
|
720 au BufNewFile,BufRead *.F,*.FOR,*.FPP,*.FTN,*.F77,*.F90,*.F95,*.F03,*.F08 setf fortran |
1125 | 721 endif |
2478
11def19fbb0e
Recognize .f03 and .f08 as Fortran files. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2467
diff
changeset
|
722 au BufNewFile,BufRead *.f,*.for,*.fortran,*.fpp,*.ftn,*.f77,*.f90,*.f95,*.f03,*.f08 setf fortran |
7 | 723 |
1698 | 724 " Framescript |
725 au BufNewFile,BufRead *.fsl setf framescript | |
726 | |
7 | 727 " FStab |
819 | 728 au BufNewFile,BufRead fstab,mtab setf fstab |
7 | 729 |
31912
91d21a5ee588
patch 9.0.1288: FunC files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31900
diff
changeset
|
730 " Func |
91d21a5ee588
patch 9.0.1288: FunC files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31900
diff
changeset
|
731 au BufNewFile,BufRead *.fc setf func |
91d21a5ee588
patch 9.0.1288: FunC files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31900
diff
changeset
|
732 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
733 " Fusion |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
734 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
|
735 |
26344
36f3a77e4b8c
patch 8.2.3703: most people call F# "fsharp" and not "fs"
Bram Moolenaar <Bram@vim.org>
parents:
26311
diff
changeset
|
736 " 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
|
737 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
|
738 |
31515
7f3f8543611e
patch 9.0.1090: FHIR Shorthand files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31499
diff
changeset
|
739 " FHIR Shorthand (FSH) |
7f3f8543611e
patch 9.0.1090: FHIR Shorthand files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31499
diff
changeset
|
740 au BufNewFile,BufRead *.fsh setf fsh |
7f3f8543611e
patch 9.0.1090: FHIR Shorthand files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31499
diff
changeset
|
741 |
26344
36f3a77e4b8c
patch 8.2.3703: most people call F# "fsharp" and not "fs"
Bram Moolenaar <Bram@vim.org>
parents:
26311
diff
changeset
|
742 " F# |
36f3a77e4b8c
patch 8.2.3703: most people call F# "fsharp" and not "fs"
Bram Moolenaar <Bram@vim.org>
parents:
26311
diff
changeset
|
743 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
|
744 |
7 | 745 " GDB command files |
28093
3fd6b3ebe0b7
patch 8.2.4571: not all gdb files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
27877
diff
changeset
|
746 au BufNewFile,BufRead .gdbinit,gdbinit,.gdbearlyinit,gdbearlyinit,*.gdb setf gdb |
7 | 747 |
748 " GDMO | |
749 au BufNewFile,BufRead *.mo,*.gdmo setf gdmo | |
750 | |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
751 " GDscript |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
752 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
|
753 |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
754 " Godot resource |
29962
32e35a6d4292
patch 9.0.0319: Godot shader files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29952
diff
changeset
|
755 au BufRead,BufNewFile *.tscn,*.tres setf gdresource |
32e35a6d4292
patch 9.0.0319: Godot shader files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29952
diff
changeset
|
756 |
32e35a6d4292
patch 9.0.0319: Godot shader files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29952
diff
changeset
|
757 " Godot shader |
32e35a6d4292
patch 9.0.0319: Godot shader files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29952
diff
changeset
|
758 au BufRead,BufNewFile *.gdshader,*.shader setf gdshader |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
759 |
7 | 760 " Gedcom |
2034 | 761 au BufNewFile,BufRead *.ged,lltxxxxx.txt setf gedcom |
7 | 762 |
25100
d5f856033f6b
patch 8.2.3087: Gemtext files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25096
diff
changeset
|
763 " Gemtext |
d5f856033f6b
patch 8.2.3087: Gemtext files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25096
diff
changeset
|
764 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
|
765 |
23316
32cc5e9875bb
patch 8.2.2203: Moodle gift files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23164
diff
changeset
|
766 " Gift (Moodle) |
24466
f5a6a6e98ec4
patch 8.2.2773: PSL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24458
diff
changeset
|
767 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
|
768 |
1648 | 769 " Git |
20965 | 770 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
|
771 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
|
772 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
|
773 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
|
774 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
|
775 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
|
776 au BufNewFile,BufRead .gitmodules,*.git/modules/*/config setf gitconfig |
6336 | 777 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
|
778 au BufNewFile,BufRead $XDG_CONFIG_HOME/git/config setf gitconfig |
30176
042513ec99d7
patch 9.0.0424: gitattributes files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30162
diff
changeset
|
779 au BufNewFile,BufRead $XDG_CONFIG_HOME/git/attributes setf gitattributes |
30196
381462ee23fd
patch 9.0.0434: gitignore files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30182
diff
changeset
|
780 au BufNewFile,BufRead $XDG_CONFIG_HOME/git/ignore setf gitignore |
6336 | 781 endif |
30176
042513ec99d7
patch 9.0.0424: gitattributes files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30162
diff
changeset
|
782 au BufNewFile,BufRead .gitattributes,*.git/info/attributes setf gitattributes |
30196
381462ee23fd
patch 9.0.0434: gitignore files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30182
diff
changeset
|
783 au BufNewFile,BufRead */.config/git/attributes setf gitattributes |
381462ee23fd
patch 9.0.0434: gitignore files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30182
diff
changeset
|
784 au BufNewFile,BufRead */etc/gitattributes setf gitattributes |
381462ee23fd
patch 9.0.0434: gitignore files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30182
diff
changeset
|
785 au BufNewFile,BufRead .gitignore,*.git/info/exclude setf gitignore |
381462ee23fd
patch 9.0.0434: gitignore files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30182
diff
changeset
|
786 au BufNewFile,BufRead */.config/git/ignore setf gitignore |
381462ee23fd
patch 9.0.0434: gitignore files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30182
diff
changeset
|
787 au BufNewFile,BufRead git-rebase-todo setf gitrebase |
381462ee23fd
patch 9.0.0434: gitignore files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30182
diff
changeset
|
788 au BufRead,BufNewFile .gitsendemail.msg.?????? setf gitsendemail |
5277 | 789 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
|
790 \ if getline(1) =~# '^\x\{40,\}\>\|^ref: ' | |
1648 | 791 \ setf git | |
792 \ endif | |
793 | |
7 | 794 " Gkrellmrc |
795 au BufNewFile,BufRead gkrellmrc,gkrellmrc_? setf gkrellmrc | |
796 | |
28650
be4410fa2bac
patch 8.2.4849: Gleam filetype not detected
Bram Moolenaar <Bram@vim.org>
parents:
28620
diff
changeset
|
797 " Gleam |
be4410fa2bac
patch 8.2.4849: Gleam filetype not detected
Bram Moolenaar <Bram@vim.org>
parents:
28620
diff
changeset
|
798 au BufNewFile,BufRead *.gleam setf gleam |
be4410fa2bac
patch 8.2.4849: Gleam filetype not detected
Bram Moolenaar <Bram@vim.org>
parents:
28620
diff
changeset
|
799 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
800 " GLSL |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
801 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
|
802 |
7 | 803 " GP scripts (2.0 and onward) |
827 | 804 au BufNewFile,BufRead *.gp,.gprc setf gp |
7 | 805 |
806 " GPG | |
807 au BufNewFile,BufRead */.gnupg/options setf gpg | |
808 au BufNewFile,BufRead */.gnupg/gpg.conf setf gpg | |
5277 | 809 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
|
810 if !empty($GNUPGHOME) |
584c835a2de1
commit https://github.com/vim/vim/commit/50ba526fbf3e9e5e0e6b0b3086a4d5df581ebc7e
Christian Brabandt <cb@256bit.org>
parents:
10211
diff
changeset
|
811 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
|
812 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
|
813 endif |
2788 | 814 |
815 " gnash(1) configuration files | |
816 au BufNewFile,BufRead gnashrc,.gnashrc,gnashpluginrc,.gnashpluginrc setf gnash | |
7 | 817 |
3153 | 818 " Gitolite |
819 au BufNewFile,BufRead gitolite.conf setf gitolite | |
4229 | 820 au BufNewFile,BufRead {,.}gitolite.rc,example.gitolite.rc setf perl |
3153 | 821 |
27796
8fdc92bdcff1
patch 8.2.4424: ".gts" and ".gjs" files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27776
diff
changeset
|
822 " Glimmer-flavored TypeScript and JavaScript |
30533
4f6c0ca7530b
patch 9.0.0602: new TypeScript extensions are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30529
diff
changeset
|
823 au BufNewFile,BufRead *.gts setf typescript.glimmer |
4f6c0ca7530b
patch 9.0.0602: new TypeScript extensions are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30529
diff
changeset
|
824 au BufNewFile,BufRead *.gjs setf javascript.glimmer |
27796
8fdc92bdcff1
patch 8.2.4424: ".gts" and ".gjs" files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27776
diff
changeset
|
825 |
7 | 826 " Gnuplot scripts |
27317
839be955609f
patch 8.2.4187: gnuplot file not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27287
diff
changeset
|
827 au BufNewFile,BufRead *.gpi,.gnuplot setf gnuplot |
7 | 828 |
6153 | 829 " Go (Google) |
830 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
|
831 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
|
832 au BufRead,BufNewFile go.work setf gowork |
6153 | 833 |
7 | 834 " GrADS scripts |
835 au BufNewFile,BufRead *.gs setf grads | |
836 | |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
837 " GraphQL |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
838 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
|
839 |
625 | 840 " Gretl |
841 au BufNewFile,BufRead *.gretl setf gretl | |
842 | |
7 | 843 " Groovy |
7147
c590de398af9
commit https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
844 au BufNewFile,BufRead *.gradle,*.groovy setf groovy |
7 | 845 |
846 " GNU Server Pages | |
847 au BufNewFile,BufRead *.gsp setf gsp | |
848 | |
389 | 849 " Group file |
2751 | 850 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 | 851 |
7 | 852 " GTK RC |
853 au BufNewFile,BufRead .gtkrc,gtkrc setf gtkrc | |
854 | |
30529
09b3221423e9
patch 9.0.0600: GYP files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30527
diff
changeset
|
855 " GYP |
09b3221423e9
patch 9.0.0600: GYP files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30527
diff
changeset
|
856 au BufNewFile,BufRead *.gyp,*.gypi setf gyp |
09b3221423e9
patch 9.0.0600: GYP files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30527
diff
changeset
|
857 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
858 " Hack |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
859 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
|
860 |
1668 | 861 " Haml |
862 au BufNewFile,BufRead *.haml setf haml | |
863 | |
1125 | 864 " Hamster Classic | Playground files |
24466
f5a6a6e98ec4
patch 8.2.2773: PSL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24458
diff
changeset
|
865 au BufNewFile,BufRead *.hsm setf hamster |
1125 | 866 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
867 " Handlebars |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
868 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
|
869 |
29324
71f2af5d8447
patch 9.0.0005: hare files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29066
diff
changeset
|
870 " Hare |
71f2af5d8447
patch 9.0.0005: hare files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29066
diff
changeset
|
871 au BufNewFile,BufRead *.ha setf hare |
71f2af5d8447
patch 9.0.0005: hare files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29066
diff
changeset
|
872 |
7 | 873 " Haskell |
24681
1077a2762d06
patch 8.2.2879: file extension .hsig not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24598
diff
changeset
|
874 au BufNewFile,BufRead *.hs,*.hsc,*.hs-boot,*.hsig setf haskell |
7 | 875 au BufNewFile,BufRead *.lhs setf lhaskell |
876 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
|
877 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
|
878 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
|
879 au BufNewFile,BufRead cabal.config setf cabalconfig |
7 | 880 |
1648 | 881 " Haste |
882 au BufNewFile,BufRead *.ht setf haste | |
1668 | 883 au BufNewFile,BufRead *.htpp setf hastepreproc |
1648 | 884 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
885 " HCL |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
886 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
|
887 |
31700
9c496513d57c
patch 9.0.1182: go checksum files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31688
diff
changeset
|
888 " Go checksum file (must be before *.sum Hercules) |
31892
99d634091eec
patch 9.0.1278: go.work.sum files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31885
diff
changeset
|
889 au BufNewFile,BufRead go.sum,go.work.sum setf gosum |
31700
9c496513d57c
patch 9.0.1182: go checksum files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31688
diff
changeset
|
890 |
7 | 891 " Hercules |
10319
169a62d5bcb9
commit https://github.com/vim/vim/commit/b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59
Christian Brabandt <cb@256bit.org>
parents:
10301
diff
changeset
|
892 au BufNewFile,BufRead *.vc,*.ev,*.sum,*.errsum setf hercules |
7 | 893 |
28417
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
894 " HEEx |
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
895 au BufRead,BufNewFile *.heex setf heex |
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
896 |
7 | 897 " HEX (Intel) |
898 au BufNewFile,BufRead *.hex,*.h32 setf hex | |
899 | |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
900 " Hjson |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
901 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
|
902 |
30495
94d484e60434
patch 9.0.0583: only recognizing .m3u8 files is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
30461
diff
changeset
|
903 " HLS Playlist (or another form of playlist) |
94d484e60434
patch 9.0.0583: only recognizing .m3u8 files is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
30461
diff
changeset
|
904 au BufNewFile,BufRead *.m3u,*.m3u8 setf hlsplaylist |
30453
6ae54a2f1fa1
patch 9.0.0562: HSL playlist files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30349
diff
changeset
|
905 |
17758 | 906 " Hollywood |
907 au BufRead,BufNewFile *.hws setf hollywood | |
908 | |
28986
560793de4032
patch 8.2.5015: Hoon and Moonscript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28670
diff
changeset
|
909 " Hoon |
560793de4032
patch 8.2.5015: Hoon and Moonscript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28670
diff
changeset
|
910 au BufRead,BufNewFile *.hoon setf hoon |
560793de4032
patch 8.2.5015: Hoon and Moonscript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28670
diff
changeset
|
911 |
7 | 912 " Tilde (must be before HTML) |
913 au BufNewFile,BufRead *.t.html setf tilde | |
914 | |
497 | 915 " 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
|
916 au BufNewFile,BufRead *.html,*.htm,*.shtml,*.stm call dist#ft#FThtml() |
28604
9c70f7df6d61
patch 8.2.4826: .cshtml files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28538
diff
changeset
|
917 au BufNewFile,BufRead *.cshtml setf html |
7 | 918 |
497 | 919 " HTML with Ruby - eRuby |
1219 | 920 au BufNewFile,BufRead *.erb,*.rhtml setf eruby |
7 | 921 |
922 " HTML with M4 | |
923 au BufNewFile,BufRead *.html.m4 setf htmlm4 | |
924 | |
16562
a6c073fa99e1
patch 8.1.1284: detecting *.tmpl as htmlcheetah is outdated
Bram Moolenaar <Bram@vim.org>
parents:
16364
diff
changeset
|
925 " 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
|
926 au BufNewFile,BufRead *.tmpl setf template |
7 | 927 |
1648 | 928 " Host config |
2751 | 929 au BufNewFile,BufRead */etc/host.conf setf hostconf |
1648 | 930 |
1676 | 931 " Hosts access |
2751 | 932 au BufNewFile,BufRead */etc/hosts.allow,*/etc/hosts.deny setf hostsaccess |
1676 | 933 |
7 | 934 " Hyper Builder |
935 au BufNewFile,BufRead *.hb setf hb | |
936 | |
4869 | 937 " Httest |
938 au BufNewFile,BufRead *.htt,*.htb setf httest | |
939 | |
29503
e6e18c0a1694
patch 9.0.0093: sway config files are recognized as i3config
Bram Moolenaar <Bram@vim.org>
parents:
29485
diff
changeset
|
940 " i3 |
e6e18c0a1694
patch 9.0.0093: sway config files are recognized as i3config
Bram Moolenaar <Bram@vim.org>
parents:
29485
diff
changeset
|
941 au BufNewFile,BufRead */i3/config setf i3config |
30215
40491de2f0a6
patch 9.0.0443: blueprint files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30202
diff
changeset
|
942 au BufNewFile,BufRead */.i3/config setf i3config |
29503
e6e18c0a1694
patch 9.0.0093: sway config files are recognized as i3config
Bram Moolenaar <Bram@vim.org>
parents:
29485
diff
changeset
|
943 |
e6e18c0a1694
patch 9.0.0093: sway config files are recognized as i3config
Bram Moolenaar <Bram@vim.org>
parents:
29485
diff
changeset
|
944 " sway |
e6e18c0a1694
patch 9.0.0093: sway config files are recognized as i3config
Bram Moolenaar <Bram@vim.org>
parents:
29485
diff
changeset
|
945 au BufNewFile,BufRead */sway/config setf swayconfig |
30215
40491de2f0a6
patch 9.0.0443: blueprint files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30202
diff
changeset
|
946 au BufNewFile,BufRead */.sway/config setf swayconfig |
26552
297984d49331
patch 8.2.3805: i3config files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26478
diff
changeset
|
947 |
7 | 948 " Icon |
949 au BufNewFile,BufRead *.icn setf icon | |
950 | |
951 " 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
|
952 au BufNewFile,BufRead *.idl call dist#ft#FTidl() |
7 | 953 |
954 " Microsoft IDL (Interface Description Language) Also *.idl | |
955 " MOF = WMI (Windows Management Instrumentation) Managed Object Format | |
956 au BufNewFile,BufRead *.odl,*.mof setf msidl | |
957 | |
958 " Icewm menu | |
959 au BufNewFile,BufRead */.icewm/menu setf icemenu | |
960 | |
1219 | 961 " Indent profile (must come before IDL *.pro!) |
962 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
|
963 au BufNewFile,BufRead indent.pro call dist#ft#ProtoCheck('indent') |
1219 | 964 |
7 | 965 " 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
|
966 au BufNewFile,BufRead *.pro call dist#ft#ProtoCheck('idlang') |
7 | 967 |
389 | 968 " Indent RC |
1676 | 969 au BufNewFile,BufRead indentrc setf indent |
389 | 970 |
7 | 971 " Inform |
972 au BufNewFile,BufRead *.inf,*.INF setf inform | |
973 | |
1125 | 974 " Initng |
5277 | 975 au BufNewFile,BufRead */etc/initng/*/*.i,*.ii setf initng |
1125 | 976 |
4992 | 977 " Innovation Data Processing |
20965 | 978 au BufRead,BufNewFile upstream.dat\c,upstream.*.dat\c,*.upstream.dat\c setf upstreamdat |
979 au BufRead,BufNewFile fdrupstream.log,upstream.log\c,upstream.*.log\c,*.upstream.log\c,UPSTREAM-*.log\c setf upstreamlog | |
5277 | 980 au BufRead,BufNewFile upstreaminstall.log\c,upstreaminstall.*.log\c,*.upstreaminstall.log\c setf upstreaminstalllog |
20965 | 981 au BufRead,BufNewFile usserver.log\c,usserver.*.log\c,*.usserver.log\c setf usserverlog |
982 au BufRead,BufNewFile usw2kagt.log\c,usw2kagt.*.log\c,*.usw2kagt.log\c setf usw2kagtlog | |
4992 | 983 |
148 | 984 " Ipfilter |
1125 | 985 au BufNewFile,BufRead ipf.conf,ipf6.conf,ipf.rules setf ipfilter |
148 | 986 |
7 | 987 " Informix 4GL (source - canonical, include file, I4GL+M4 preproc.) |
988 au BufNewFile,BufRead *.4gl,*.4gh,*.m4gl setf fgl | |
989 | |
990 " .INI file for MSDOS | |
991 au BufNewFile,BufRead *.ini setf dosini | |
992 | |
993 " SysV Inittab | |
994 au BufNewFile,BufRead inittab setf inittab | |
995 | |
996 " Inno Setup | |
997 au BufNewFile,BufRead *.iss setf iss | |
998 | |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
999 " J |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
1000 au BufNewFile,BufRead *.ijs setf j |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
1001 |
7 | 1002 " JAL |
1003 au BufNewFile,BufRead *.jal,*.JAL setf jal | |
1004 | |
1005 " Jam | |
1006 au BufNewFile,BufRead *.jpl,*.jpr setf jam | |
1007 | |
1008 " Java | |
1009 au BufNewFile,BufRead *.java,*.jav setf java | |
1010 | |
1011 " JavaCC | |
1012 au BufNewFile,BufRead *.jj,*.jjt setf javacc | |
1013 | |
18707
e190e64d253b
patch 8.1.2345: .cjs files are not recognized as Javascript
Bram Moolenaar <Bram@vim.org>
parents:
18489
diff
changeset
|
1014 " JavaScript, ECMAScript, ES module script, CommonJS script |
30132
01919e5a070c
patch 9.0.0402: javascript module files are not recoginzed
Bram Moolenaar <Bram@vim.org>
parents:
30023
diff
changeset
|
1015 au BufNewFile,BufRead *.js,*.jsm,*.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
|
1016 |
180fb9981255
patch 8.1.1930: cannot recognize .jsx and .tsx files
Bram Moolenaar <Bram@vim.org>
parents:
17758
diff
changeset
|
1017 " JavaScript with React |
180fb9981255
patch 8.1.1930: cannot recognize .jsx and .tsx files
Bram Moolenaar <Bram@vim.org>
parents:
17758
diff
changeset
|
1018 au BufNewFile,BufRead *.jsx setf javascriptreact |
7 | 1019 |
1020 " Java Server Pages | |
1021 au BufNewFile,BufRead *.jsp setf jsp | |
1022 | |
1023 " Java Properties resource file (note: doesn't catch font.properties.pl) | |
216 | 1024 au BufNewFile,BufRead *.properties,*.properties_??,*.properties_??_?? setf jproperties |
31237
5bdf73161e65
patch 9.0.0952: Eclipse preference files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31217
diff
changeset
|
1025 " Eclipse preference files use Java Properties syntax |
5bdf73161e65
patch 9.0.0952: Eclipse preference files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31217
diff
changeset
|
1026 au BufNewFile,BufRead org.eclipse.*.prefs setf jproperties |
7 | 1027 |
1028 " Jess | |
1029 au BufNewFile,BufRead *.clp setf jess | |
1030 | |
1031 " Jgraph | |
1032 au BufNewFile,BufRead *.jgr setf jgraph | |
1033 | |
2908 | 1034 " Jovial |
1035 au BufNewFile,BufRead *.jov,*.j73,*.jovial setf jovial | |
1036 | |
31541
f2da18e495aa
patch 9.0.1103: jq files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31515
diff
changeset
|
1037 " Jq |
f2da18e495aa
patch 9.0.1103: jq files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31515
diff
changeset
|
1038 au BufNewFile,BufRead *.jq setf jq |
f2da18e495aa
patch 9.0.1103: jq files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31515
diff
changeset
|
1039 |
27326
234516a43f33
patch 8.2.4191: json5 files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27321
diff
changeset
|
1040 " JSON5 |
234516a43f33
patch 8.2.4191: json5 files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27321
diff
changeset
|
1041 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
|
1042 |
25024
a1b0fe1c7cd5
patch 8.2.3049: JSON patch file not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
1043 " JSON Patch (RFC 6902) |
31499
16174b7435a0
patch 9.0.1082: some jsonc files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31383
diff
changeset
|
1044 au BufNewFile,BufRead *.json-patch setf json |
25024
a1b0fe1c7cd5
patch 8.2.3049: JSON patch file not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
1045 |
24905
50cdd1e6f152
patch 8.2.2990: Jupyter Notebook files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24832
diff
changeset
|
1046 " Jupyter Notebook is also json |
31499
16174b7435a0
patch 9.0.1082: some jsonc files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31383
diff
changeset
|
1047 au BufNewFile,BufRead *.ipynb setf json |
24905
50cdd1e6f152
patch 8.2.2990: Jupyter Notebook files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24832
diff
changeset
|
1048 |
25870
3c797fa8206d
patch 8.2.3469: some files with json syntax are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25860
diff
changeset
|
1049 " Other files that look like json |
31871
e46f41a1b7c5
patch 9.0.1268: .clangd and .stylelintrc files don't get a filetype
Bram Moolenaar <Bram@vim.org>
parents:
31861
diff
changeset
|
1050 au BufNewFile,BufRead .prettierrc,.firebaserc,.stylelintrc setf json |
31499
16174b7435a0
patch 9.0.1082: some jsonc files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31383
diff
changeset
|
1051 |
16174b7435a0
patch 9.0.1082: some jsonc files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31383
diff
changeset
|
1052 " JSONC (JSON with comments) |
32057
aa66dedd891c
patch 9.0.1360: Cue files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32039
diff
changeset
|
1053 au BufNewFile,BufRead *.jsonc,.babelrc,.eslintrc,.jsfmtrc setf jsonc |
31879
f13d7423396c
patch 9.0.1272: typo in pattern for filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
31871
diff
changeset
|
1054 au BufNewFile,BufRead .jshintrc,.hintrc,.swrc,[jt]sconfig*.json setf jsonc |
31499
16174b7435a0
patch 9.0.1082: some jsonc files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31383
diff
changeset
|
1055 |
16174b7435a0
patch 9.0.1082: some jsonc files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31383
diff
changeset
|
1056 " JSON |
16174b7435a0
patch 9.0.1082: some jsonc files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31383
diff
changeset
|
1057 au BufNewFile,BufRead *.json,*.jsonp,*.webmanifest setf json |
25096
d0625ed91013
patch 8.2.3085: JSONC files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25026
diff
changeset
|
1058 |
30162
d12d9d724d27
patch 9.0.0417: Jsonnet files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30132
diff
changeset
|
1059 " Jsonnet |
30948
cdb345a925d0
patch 9.0.0808: jsonnet filetype detection has a typo
Bram Moolenaar <Bram@vim.org>
parents:
30928
diff
changeset
|
1060 au BufNewFile,BufRead *.jsonnet,*.libsonnet setf jsonnet |
30162
d12d9d724d27
patch 9.0.0417: Jsonnet files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30132
diff
changeset
|
1061 |
25493
224c96c497d3
patch 8.2.3283: Julia filetype is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25161
diff
changeset
|
1062 " Julia |
224c96c497d3
patch 8.2.3283: Julia filetype is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25161
diff
changeset
|
1063 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
|
1064 |
31861
c46ad2a51854
patch 9.0.1263: KDL files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31857
diff
changeset
|
1065 " KDL |
c46ad2a51854
patch 9.0.1263: KDL files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31857
diff
changeset
|
1066 au BufNewFile,BufRead *.kdl setf kdl |
c46ad2a51854
patch 9.0.1263: KDL files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31857
diff
changeset
|
1067 |
7 | 1068 " Kixtart |
1069 au BufNewFile,BufRead *.kix setf kix | |
1070 | |
28351
1aa3460f799d
patch 8.2.4701: Kuka Robot Language files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28277
diff
changeset
|
1071 " Kuka Robot Language |
1aa3460f799d
patch 8.2.4701: Kuka Robot Language files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28277
diff
changeset
|
1072 au BufNewFile,BufRead *.src\c call dist#ft#FTsrc() |
1aa3460f799d
patch 8.2.4701: Kuka Robot Language files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28277
diff
changeset
|
1073 au BufNewFile,BufRead *.dat\c call dist#ft#FTdat() |
1aa3460f799d
patch 8.2.4701: Kuka Robot Language files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28277
diff
changeset
|
1074 au BufNewFile,BufRead *.sub\c setf krl |
1aa3460f799d
patch 8.2.4701: Kuka Robot Language files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28277
diff
changeset
|
1075 |
7 | 1076 " Kimwitu[++] |
1077 au BufNewFile,BufRead *.k setf kwt | |
1078 | |
5968 | 1079 " Kivy |
1080 au BufNewFile,BufRead *.kv setf kivy | |
1081 | |
19263
06d9be5c0107
patch 8.2.0190: Kotlin files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19205
diff
changeset
|
1082 " Kotlin |
06d9be5c0107
patch 8.2.0190: Kotlin files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19205
diff
changeset
|
1083 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
|
1084 |
7 | 1085 " KDE script |
1086 au BufNewFile,BufRead *.ks setf kscript | |
1087 | |
826 | 1088 " Kconfig |
1089 au BufNewFile,BufRead Kconfig,Kconfig.debug setf kconfig | |
1090 | |
7 | 1091 " Lace (ISE) |
1092 au BufNewFile,BufRead *.ace,*.ACE setf lace | |
1093 | |
30890
ebcaf6bbb410
patch 9.0.0779: lsl and lm3 file extensions are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30875
diff
changeset
|
1094 " Larch Shared Language |
ebcaf6bbb410
patch 9.0.0779: lsl and lm3 file extensions are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30875
diff
changeset
|
1095 au BufNewFile,BufRead .lsl call dist#ft#FTlsl() |
ebcaf6bbb410
patch 9.0.0779: lsl and lm3 file extensions are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30875
diff
changeset
|
1096 |
30527
5b7e094fddd7
patch 9.0.0599: latexmkrc files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30495
diff
changeset
|
1097 " Latexmkrc |
5b7e094fddd7
patch 9.0.0599: latexmkrc files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30495
diff
changeset
|
1098 au BufNewFile,BufRead .latexmkrc,latexmkrc setf perl |
5b7e094fddd7
patch 9.0.0599: latexmkrc files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30495
diff
changeset
|
1099 |
7 | 1100 " Latte |
1101 au BufNewFile,BufRead *.latte,*.lte setf latte | |
1102 | |
375 | 1103 " Limits |
2751 | 1104 au BufNewFile,BufRead */etc/limits,*/etc/*limits.conf,*/etc/*limits.d/*.conf setf limits |
375 | 1105 |
29338
f4f531986753
patch 9.0.0012: signature files not detected properly
Bram Moolenaar <Bram@vim.org>
parents:
29326
diff
changeset
|
1106 " LambdaProlog or SML (see dist#ft#FTmod for *.mod) |
f4f531986753
patch 9.0.0012: signature files not detected properly
Bram Moolenaar <Bram@vim.org>
parents:
29326
diff
changeset
|
1107 au BufNewFile,BufRead *.sig call dist#ft#FTsig() |
7 | 1108 |
1109 " LDAP LDIF | |
1110 au BufNewFile,BufRead *.ldif setf ldif | |
1111 | |
375 | 1112 " Ld loader |
1113 au BufNewFile,BufRead *.ld setf ld | |
1114 | |
32176
50f887578908
patch 9.0.1419: Lean files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32172
diff
changeset
|
1115 " Lean |
50f887578908
patch 9.0.1419: Lean files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32172
diff
changeset
|
1116 au BufNewFile,BufRead *.lean setf lean |
50f887578908
patch 9.0.1419: Lean files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32172
diff
changeset
|
1117 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1118 " Ledger |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1119 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
|
1120 |
6476 | 1121 " Less |
1122 au BufNewFile,BufRead *.less setf less | |
1123 | |
7 | 1124 " Lex |
5697 | 1125 au BufNewFile,BufRead *.lex,*.l,*.lxx,*.l++ setf lex |
7 | 1126 |
1127 " Libao | |
2751 | 1128 au BufNewFile,BufRead */etc/libao.conf,*/.libao setf libao |
7 | 1129 |
389 | 1130 " Libsensors |
2751 | 1131 au BufNewFile,BufRead */etc/sensors.conf,*/etc/sensors3.conf setf sensors |
389 | 1132 |
7 | 1133 " LFTP |
1134 au BufNewFile,BufRead lftp.conf,.lftprc,*lftp/rc setf lftp | |
1135 | |
1136 " Lifelines (or Lex for C++!) | |
1137 au BufNewFile,BufRead *.ll setf lifelines | |
1138 | |
1139 " Lilo: Linux loader | |
2788 | 1140 au BufNewFile,BufRead lilo.conf setf lilo |
7 | 1141 |
28532
11387538e7c4
patch 8.2.4790: lilypond filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28517
diff
changeset
|
1142 " Lilypond |
11387538e7c4
patch 8.2.4790: lilypond filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28517
diff
changeset
|
1143 au BufNewFile,BufRead *.ly,*.ily setf lilypond |
11387538e7c4
patch 8.2.4790: lilypond filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28517
diff
changeset
|
1144 |
20639
3dab6fbe133c
patch 8.2.0873: a .jl file can be sawfish (lisp) or Julia
Bram Moolenaar <Bram@vim.org>
parents:
20579
diff
changeset
|
1145 " 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
|
1146 " *.jl was removed, it's also used for Julia, better skip than guess wrong. |
7 | 1147 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
|
1148 au BufNewFile,BufRead *.lsp,*.lisp,*.asd,*.el,*.cl,*.L,.emacs,.sawfishrc setf lisp |
7 | 1149 else |
26871
c8d32e12c934
patch 8.2.3964: some common lisp and scheme files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26779
diff
changeset
|
1150 au BufNewFile,BufRead *.lsp,*.lisp,*.asd,*.el,*.cl,.emacs,.sawfishrc setf lisp |
7 | 1151 endif |
1152 | |
375 | 1153 " SBCL implementation of Common Lisp |
1154 au BufNewFile,BufRead sbclrc,.sbclrc setf lisp | |
1155 | |
2202 | 1156 " Liquid |
1157 au BufNewFile,BufRead *.liquid setf liquid | |
1158 | |
7 | 1159 " Lite |
1160 au BufNewFile,BufRead *.lite,*.lt setf lite | |
1161 | |
1219 | 1162 " LiteStep RC files |
1163 au BufNewFile,BufRead */LiteStep/*/*.rc setf litestep | |
1164 | |
32198
8643e060bcb8
patch 9.0.1430: Livebook files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32188
diff
changeset
|
1165 " Livebook |
8643e060bcb8
patch 9.0.1430: Livebook files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32188
diff
changeset
|
1166 au BufNewFile,BufRead *.livemd setf livebook |
8643e060bcb8
patch 9.0.1430: Livebook files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32188
diff
changeset
|
1167 |
375 | 1168 " Login access |
2751 | 1169 au BufNewFile,BufRead */etc/login.access setf loginaccess |
375 | 1170 |
1171 " Login defs | |
2751 | 1172 au BufNewFile,BufRead */etc/login.defs setf logindefs |
375 | 1173 |
7 | 1174 " Logtalk |
1175 au BufNewFile,BufRead *.lgt setf logtalk | |
1176 | |
1177 " LOTOS | |
1178 au BufNewFile,BufRead *.lot,*.lotos setf lotos | |
1179 | |
1180 " Lout (also: *.lt) | |
1181 au BufNewFile,BufRead *.lou,*.lout setf lout | |
1182 | |
1183 " Lua | |
1184 au BufNewFile,BufRead *.lua setf lua | |
1185 | |
30537
720ac162fbd6
patch 9.0.0604: luacheckrc file is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30533
diff
changeset
|
1186 " Luacheck |
720ac162fbd6
patch 9.0.0604: luacheckrc file is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30533
diff
changeset
|
1187 au BufNewFile,BufRead .luacheckrc setf lua |
720ac162fbd6
patch 9.0.0604: luacheckrc file is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30533
diff
changeset
|
1188 |
6213 | 1189 " Luarocks |
1190 au BufNewFile,BufRead *.rockspec setf lua | |
1191 | |
1648 | 1192 " Linden Scripting Language (Second Life) |
30890
ebcaf6bbb410
patch 9.0.0779: lsl and lm3 file extensions are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30875
diff
changeset
|
1193 au BufNewFile,BufRead *.lsl call dist#ft#FTlsl() |
1648 | 1194 |
7 | 1195 " Lynx style file (or LotusScript!) |
1196 au BufNewFile,BufRead *.lss setf lss | |
1197 | |
1198 " M4 | |
1199 au BufNewFile,BufRead *.m4 | |
1200 \ if expand("<afile>") !~? 'html.m4$\|fvwm2rc' | setf m4 | endif | |
1201 | |
1202 " MaGic Point | |
1203 au BufNewFile,BufRead *.mgp setf mgp | |
1204 | |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1205 " Mail (for Elm, trn, mutt, muttng, rn, slrn, neomutt) |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1206 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 | 1207 |
809 | 1208 " Mail aliases |
2751 | 1209 au BufNewFile,BufRead */etc/mail/aliases,*/etc/aliases setf mailaliases |
809 | 1210 |
7 | 1211 " Mailcap configuration file |
1212 au BufNewFile,BufRead .mailcap,mailcap setf mailcap | |
1213 | |
1214 " Makefile | |
1215 au BufNewFile,BufRead *[mM]akefile,*.mk,*.mak,*.dsp setf make | |
1216 | |
1217 " MakeIndex | |
1218 au BufNewFile,BufRead *.ist,*.mst setf ist | |
1219 | |
4119 | 1220 " Mallard |
1221 au BufNewFile,BufRead *.page setf mallard | |
1222 | |
7 | 1223 " Manpage |
1224 au BufNewFile,BufRead *.man setf man | |
1225 | |
389 | 1226 " Man config |
2751 | 1227 au BufNewFile,BufRead */etc/man.conf,man.config setf manconf |
389 | 1228 |
7 | 1229 " Maple V |
1230 au BufNewFile,BufRead *.mv,*.mpl,*.mws setf maple | |
1231 | |
1668 | 1232 " Map (UMN mapserver config file) |
1233 au BufNewFile,BufRead *.map setf map | |
1234 | |
2202 | 1235 " Markdown |
6292
31f7581068a9
Update runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
6213
diff
changeset
|
1236 au BufNewFile,BufRead *.markdown,*.mdown,*.mkd,*.mkdn,*.mdwn,*.md setf markdown |
2202 | 1237 |
7 | 1238 " Mason |
6153 | 1239 au BufNewFile,BufRead *.mason,*.mhtml,*.comp setf mason |
7 | 1240 |
25727
71d3ebfb00b6
patch 8.2.3399: Octave files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25700
diff
changeset
|
1241 " 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
|
1242 au BufNewFile,BufRead *.m call dist#ft#FTm() |
7 | 1243 |
1648 | 1244 " Mathematica notebook |
1245 au BufNewFile,BufRead *.nb setf mma | |
1246 | |
7 | 1247 " Maya Extension Language |
1248 au BufNewFile,BufRead *.mel setf mel | |
1249 | |
3750 | 1250 " Mercurial (hg) commit file |
1251 au BufNewFile,BufRead hg-editor-*.txt setf hgcommit | |
1252 | |
2034 | 1253 " Mercurial config (looks like generic config file) |
1254 au BufNewFile,BufRead *.hgrc,*hgrc setf cfg | |
1255 | |
31176
0795700291ae
patch 9.0.0922: Mermaid files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31139
diff
changeset
|
1256 " Mermaid |
0795700291ae
patch 9.0.0922: Mermaid files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31139
diff
changeset
|
1257 au BufNewFile,BufRead *.mmd,*.mmdc,*.mermaid setf mermaid |
0795700291ae
patch 9.0.0922: Mermaid files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31139
diff
changeset
|
1258 |
18362
8144f89e6f28
patch 8.1.2175: meson files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18343
diff
changeset
|
1259 " Meson Build system config |
8144f89e6f28
patch 8.1.2175: meson files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18343
diff
changeset
|
1260 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
|
1261 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
|
1262 |
2709 | 1263 " Messages (logs mostly) |
2788 | 1264 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 | 1265 |
7 | 1266 " Metafont |
1267 au BufNewFile,BufRead *.mf setf mf | |
1268 | |
1269 " MetaPost | |
1270 au BufNewFile,BufRead *.mp setf mp | |
29710
0edbf9b01c42
patch 9.0.0195: metafun files are not recogized
Bram Moolenaar <Bram@vim.org>
parents:
29684
diff
changeset
|
1271 au BufNewFile,BufRead *.mpxl,*.mpiv,*.mpvi let b:mp_metafun = 1 | setf mp |
7 | 1272 |
683 | 1273 " MGL |
1274 au BufNewFile,BufRead *.mgl setf mgl | |
1275 | |
5487 | 1276 " MIX - Knuth assembly |
1277 au BufNewFile,BufRead *.mix,*.mixal setf mix | |
1278 | |
7 | 1279 " 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
|
1280 au BufNewFile,BufRead *.mms call dist#ft#FTmms() |
7 | 1281 |
1648 | 1282 " Symbian meta-makefile definition (MMP) |
1283 au BufNewFile,BufRead *.mmp setf mmp | |
1284 | |
28390
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
1285 " ABB Rapid, Modula-2, Modsim III or LambdaProlog |
28443
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1286 au BufNewFile,BufRead *.mod\c call dist#ft#FTmod() |
28390
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
1287 |
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
1288 " Modula-2 (.md removed in favor of Markdown, see dist#ft#FTmod for *.MOD) |
cc4d3ded4004
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
28380
diff
changeset
|
1289 au BufNewFile,BufRead *.m2,*.DEF,*.mi setf modula2 |
7 | 1290 |
24458
1d126cb683c1
patch 8.2.2769: Modula-3 config files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24347
diff
changeset
|
1291 " Modula-3 (.m3, .i3, .mg, .ig) |
7 | 1292 au BufNewFile,BufRead *.[mi][3g] setf modula3 |
1293 | |
30890
ebcaf6bbb410
patch 9.0.0779: lsl and lm3 file extensions are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30875
diff
changeset
|
1294 " Larch/Modula-3 |
ebcaf6bbb410
patch 9.0.0779: lsl and lm3 file extensions are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30875
diff
changeset
|
1295 au BufNewFile,BufRead *.lm3 setf modula3 |
ebcaf6bbb410
patch 9.0.0779: lsl and lm3 file extensions are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30875
diff
changeset
|
1296 |
31918
6ca26985ccb3
patch 9.0.1291: Move language files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31912
diff
changeset
|
1297 " Modconf |
6ca26985ccb3
patch 9.0.1291: Move language files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31912
diff
changeset
|
1298 au BufNewFile,BufRead */etc/modules.conf,*/etc/modules,*/etc/conf.modules setf modconf |
6ca26985ccb3
patch 9.0.1291: Move language files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31912
diff
changeset
|
1299 |
7 | 1300 " Monk |
1301 au BufNewFile,BufRead *.isc,*.monk,*.ssc,*.tsc setf monk | |
1302 | |
1303 " MOO | |
1304 au BufNewFile,BufRead *.moo setf moo | |
1305 | |
28986
560793de4032
patch 8.2.5015: Hoon and Moonscript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28670
diff
changeset
|
1306 " Moonscript |
560793de4032
patch 8.2.5015: Hoon and Moonscript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28670
diff
changeset
|
1307 au BufNewFile,BufRead *.moon setf moonscript |
560793de4032
patch 8.2.5015: Hoon and Moonscript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28670
diff
changeset
|
1308 |
31918
6ca26985ccb3
patch 9.0.1291: Move language files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31912
diff
changeset
|
1309 " Move language |
6ca26985ccb3
patch 9.0.1291: Move language files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31912
diff
changeset
|
1310 au BufNewFile,BufRead *.move setf move |
7 | 1311 |
25834
a89664a64d62
patch 8.2.3452: MPD files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25832
diff
changeset
|
1312 " MPD is based on XML |
a89664a64d62
patch 8.2.3452: MPD files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25832
diff
changeset
|
1313 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
|
1314 |
7 | 1315 " Mplayer config |
1316 au BufNewFile,BufRead mplayer.conf,*/.mplayer/config setf mplayerconf | |
1317 | |
6697 | 1318 " Motorola S record |
1319 au BufNewFile,BufRead *.s19,*.s28,*.s37,*.mot,*.srec setf srec | |
7 | 1320 |
846 | 1321 " Mrxvtrc |
1322 au BufNewFile,BufRead mrxvtrc,.mrxvtrc setf mrxvtrc | |
1323 | |
7 | 1324 " Msql |
1325 au BufNewFile,BufRead *.msql setf msql | |
1326 | |
1327 " Mysql | |
1328 au BufNewFile,BufRead *.mysql setf mysql | |
1329 | |
25878
f88641e6996c
patch 8.2.3473: some files with tcl syntax are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25870
diff
changeset
|
1330 " 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
|
1331 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
|
1332 |
7 | 1333 " 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
|
1334 " /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
|
1335 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
|
1336 \ 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
|
1337 \ setf rc | |
34548fb19e0e
patch 8.2.3730: "/etc/Muttrc.d/README" gets filetype muttrc
Bram Moolenaar <Bram@vim.org>
parents:
26396
diff
changeset
|
1338 \ endif |
7 | 1339 |
12 | 1340 " MuPAD source |
1341 au BufRead,BufNewFile *.mu setf mupad | |
1342 | |
7 | 1343 " Mush |
1344 au BufNewFile,BufRead *.mush setf mush | |
1345 | |
1125 | 1346 " Mutt setup file (also for Muttng) |
1648 | 1347 au BufNewFile,BufRead Mutt{ng,}rc setf muttrc |
7 | 1348 |
12052
7eb512f2a896
patch 8.0.0906: don't recognize Couchbase files
Christian Brabandt <cb@256bit.org>
parents:
12027
diff
changeset
|
1349 " N1QL |
7eb512f2a896
patch 8.0.0906: don't recognize Couchbase files
Christian Brabandt <cb@256bit.org>
parents:
12027
diff
changeset
|
1350 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
|
1351 |
389 | 1352 " Nano |
20965 | 1353 au BufNewFile,BufRead */etc/nanorc,*.nanorc setf nanorc |
389 | 1354 |
7 | 1355 " Nastran input/DMAP |
1356 "au BufNewFile,BufRead *.dat setf nastran | |
1357 | |
1358 " Natural | |
1359 au BufNewFile,BufRead *.NS[ACGLMNPS] setf natural | |
1360 | |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1361 " Noemutt setup file |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1362 au BufNewFile,BufRead Neomuttrc setf neomuttrc |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1363 |
39 | 1364 " Netrc |
1365 au BufNewFile,BufRead .netrc setf netrc | |
1366 | |
25860
a7305a9b32ba
patch 8.2.3464: nginx files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25848
diff
changeset
|
1367 " Nginx |
a7305a9b32ba
patch 8.2.3464: nginx files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25848
diff
changeset
|
1368 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
|
1369 |
30461
0b8d532e124d
patch 9.0.0566: Nim files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30453
diff
changeset
|
1370 " Nim file |
0b8d532e124d
patch 9.0.0566: Nim files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30453
diff
changeset
|
1371 au BufNewFile,BufRead *.nim,*.nims,*.nimble setf nim |
0b8d532e124d
patch 9.0.0566: Nim files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30453
diff
changeset
|
1372 |
3256 | 1373 " Ninja file |
1374 au BufNewFile,BufRead *.ninja setf ninja | |
1375 | |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1376 " Nix |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1377 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
|
1378 |
21719
40dca24258ff
patch 8.2.1409: nmpmrc and php.ini filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
21676
diff
changeset
|
1379 " NPM RC file |
40dca24258ff
patch 8.2.1409: nmpmrc and php.ini filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
21676
diff
changeset
|
1380 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
|
1381 |
7 | 1382 " Novell netware batch files |
1383 au BufNewFile,BufRead *.ncf setf ncf | |
1384 | |
1385 " Nroff/Troff (*.ms and *.t are checked below) | |
1386 au BufNewFile,BufRead *.me | |
1387 \ if expand("<afile>") != "read.me" && expand("<afile>") != "click.me" | | |
1388 \ setf nroff | | |
1389 \ endif | |
1390 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
|
1391 au BufNewFile,BufRead *.[1-9] call dist#ft#FTnroff() |
7 | 1392 |
1393 " 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
|
1394 au BufNewFile,BufRead *.mm call dist#ft#FTmm() |
7 | 1395 |
1396 " Not Quite C | |
1397 au BufNewFile,BufRead *.nqc setf nqc | |
1398 | |
11160 | 1399 " NSE - Nmap Script Engine - uses Lua syntax |
1400 au BufNewFile,BufRead *.nse setf lua | |
1401 | |
7 | 1402 " NSIS |
3492 | 1403 au BufNewFile,BufRead *.nsi,*.nsh setf nsis |
7 | 1404 |
32180
79ab211a3676
patch 9.0.1421: Nu files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32176
diff
changeset
|
1405 " Nu |
79ab211a3676
patch 9.0.1421: Nu files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32176
diff
changeset
|
1406 au BufNewFile,BufRead {env,config}.nu setf nu |
79ab211a3676
patch 9.0.1421: Nu files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32176
diff
changeset
|
1407 |
31196
48e44371a9ff
patch 9.0.0932: Oblivion files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31176
diff
changeset
|
1408 " Oblivion Language and Oblivion Script Extender |
48e44371a9ff
patch 9.0.0932: Oblivion files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31176
diff
changeset
|
1409 au BufNewFile,BufRead *.obl,*.obse,*.oblivion,*.obscript setf obse |
48e44371a9ff
patch 9.0.0932: Oblivion files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31176
diff
changeset
|
1410 |
23430
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
1411 " OCaml |
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
1412 au BufNewFile,BufRead *.ml,*.mli,*.mll,*.mly,.ocamlinit,*.mlt,*.mlp,*.mlip,*.mli.cppo,*.ml.cppo setf ocaml |
7 | 1413 |
1414 " Occam | |
1415 au BufNewFile,BufRead *.occ setf occam | |
1416 | |
25727
71d3ebfb00b6
patch 8.2.3399: Octave files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25700
diff
changeset
|
1417 " Octave |
71d3ebfb00b6
patch 8.2.3399: Octave files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25700
diff
changeset
|
1418 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
|
1419 |
32128
9730da870503
patch 9.0.1395: Odin files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32126
diff
changeset
|
1420 " Odin |
9730da870503
patch 9.0.1395: Odin files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32126
diff
changeset
|
1421 au BufNewFile,BufRead *.odin setf odin |
9730da870503
patch 9.0.1395: Odin files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32126
diff
changeset
|
1422 |
7 | 1423 " Omnimark |
1424 au BufNewFile,BufRead *.xom,*.xin setf omnimark | |
1425 | |
23430
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
1426 " OPAM |
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
1427 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
|
1428 |
27070
b353bd9faec8
patch 8.2.4064: foam files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
27036
diff
changeset
|
1429 " OpenFOAM |
b353bd9faec8
patch 8.2.4064: foam files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
27036
diff
changeset
|
1430 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
|
1431 |
7 | 1432 " OpenROAD |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1433 au BufNewFile,BufRead *.or setf openroad |
7 | 1434 |
1435 " OPL | |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1436 au BufNewFile,BufRead *.[Oo][Pp][Ll] setf opl |
7 | 1437 |
28485
75f181bef230
patch 8.2.4767: openscad files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28443
diff
changeset
|
1438 " OpenSCAD |
30182
4d3c7b4927f2
patch 9.0.0427: Drupal theme files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30176
diff
changeset
|
1439 au BufNewFile,BufRead *.scad setf openscad |
28485
75f181bef230
patch 8.2.4767: openscad files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28443
diff
changeset
|
1440 |
7 | 1441 " Oracle config file |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1442 au BufNewFile,BufRead *.ora setf ora |
7 | 1443 |
28265
67ef250562e5
patch 8.2.4658: org-mode files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28093
diff
changeset
|
1444 " Org |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1445 au BufNewFile,BufRead *.org,*.org_archive setf org |
28265
67ef250562e5
patch 8.2.4658: org-mode files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28093
diff
changeset
|
1446 |
7 | 1447 " Packet filter conf |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1448 au BufNewFile,BufRead pf.conf setf pf |
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1449 |
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1450 " ini style config files, using # comments |
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1451 au BufNewFile,BufRead */etc/pacman.conf,mpv.conf setf confini |
30960
6b03468f9cf7
patch 9.0.0814: aws config files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30948
diff
changeset
|
1452 au BufNewFile,BufRead */.aws/config,*/.aws/credentials setf confini |
31847
a89903efd329
patch 9.0.1256: NetworkManager connection files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31796
diff
changeset
|
1453 au BufNewFile,BufRead *.nmconnection setf confini |
21008
2cf49849e933
patch 8.2.1055: no filetype set for pacman config files
Bram Moolenaar <Bram@vim.org>
parents:
20986
diff
changeset
|
1454 |
2cf49849e933
patch 8.2.1055: no filetype set for pacman config files
Bram Moolenaar <Bram@vim.org>
parents:
20986
diff
changeset
|
1455 " Pacman hooks |
2cf49849e933
patch 8.2.1055: no filetype set for pacman config files
Bram Moolenaar <Bram@vim.org>
parents:
20986
diff
changeset
|
1456 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
|
1457 \ if getline(1) == '[Trigger]' | |
28507
73f235d0b6c8
patch 8.2.4778: pacman files use dosini filetype
Bram Moolenaar <Bram@vim.org>
parents:
28485
diff
changeset
|
1458 \ setf conf | |
21008
2cf49849e933
patch 8.2.1055: no filetype set for pacman config files
Bram Moolenaar <Bram@vim.org>
parents:
20986
diff
changeset
|
1459 \ endif |
2cf49849e933
patch 8.2.1055: no filetype set for pacman config files
Bram Moolenaar <Bram@vim.org>
parents:
20986
diff
changeset
|
1460 |
375 | 1461 " Pam conf |
21008
2cf49849e933
patch 8.2.1055: no filetype set for pacman config files
Bram Moolenaar <Bram@vim.org>
parents:
20986
diff
changeset
|
1462 au BufNewFile,BufRead */etc/pam.conf setf pamconf |
375 | 1463 |
20315
190ffc6453d4
patch 8.2.0713: the pam_environment file is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
20215
diff
changeset
|
1464 " Pam environment |
20361
4bb526ae0989
patch 8.2.0736: some files not recognized as pamenv
Bram Moolenaar <Bram@vim.org>
parents:
20317
diff
changeset
|
1465 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
|
1466 |
7 | 1467 " PApp |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1468 au BufNewFile,BufRead *.papp,*.pxml,*.pxsl setf papp |
7 | 1469 |
389 | 1470 " Password file |
2751 | 1471 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 | 1472 |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1473 " Pascal (also *.p, *.pp, *.inc) |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1474 au BufNewFile,BufRead *.pas setf pascal |
23584
397f95f103e8
patch 8.2.2334: Pascal-like filetypes not always detected
Bram Moolenaar <Bram@vim.org>
parents:
23466
diff
changeset
|
1475 |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1476 " Pascal or Puppet manifest |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1477 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
|
1478 |
889143dbe2cd
patch 8.2.1725: not all Pascal files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
22033
diff
changeset
|
1479 " Delphi or Lazarus program file |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1480 au BufNewFile,BufRead *.dpr,*.lpr setf pascal |
7 | 1481 |
24523
71bd205c72f5
patch 8.2.2801: free Pascal makefile not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24496
diff
changeset
|
1482 " Free Pascal makefile definition file |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1483 au BufNewFile,BufRead *.fpc setf fpcmake |
24523
71bd205c72f5
patch 8.2.2801: free Pascal makefile not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24496
diff
changeset
|
1484 |
30715
316844a05a8b
patch 9.0.0692: PoE filter files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30547
diff
changeset
|
1485 " Path of Exile item filter |
316844a05a8b
patch 9.0.0692: PoE filter files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30547
diff
changeset
|
1486 au BufNewFile,BufRead *.filter setf poefilter |
316844a05a8b
patch 9.0.0692: PoE filter files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30547
diff
changeset
|
1487 |
1648 | 1488 " PDF |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1489 au BufNewFile,BufRead *.pdf setf pdf |
1648 | 1490 |
14991
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
1491 " PCMK - HAE - crm configure edit |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1492 au BufNewFile,BufRead *.pcmk setf pcmk |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
1493 |
7 | 1494 " Perl |
1495 if has("fname_case") | |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1496 au BufNewFile,BufRead *.pl,*.PL call dist#ft#FTpl() |
7 | 1497 else |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1498 au BufNewFile,BufRead *.pl call dist#ft#FTpl() |
7 | 1499 endif |
29064
3fbc7462de59
patch 8.2.5054: no good filetype for conf files similar to dosini
Bram Moolenaar <Bram@vim.org>
parents:
28986
diff
changeset
|
1500 au BufNewFile,BufRead *.plx,*.al,*.psgi setf perl |
7 | 1501 |
1502 " Perl, XPM or XPM2 | |
1503 au BufNewFile,BufRead *.pm | |
1504 \ if getline(1) =~ "XPM2" | | |
1505 \ setf xpm2 | | |
1506 \ elseif getline(1) =~ "XPM" | | |
1507 \ setf xpm | | |
1508 \ else | | |
1509 \ setf perl | | |
1510 \ endif | |
1511 | |
1512 " Perl POD | |
1513 au BufNewFile,BufRead *.pod setf pod | |
1514 | |
850 | 1515 " Php, php3, php4, etc. |
28365
da2f2f8fd66e
patch 8.2.4708: PHP test files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28351
diff
changeset
|
1516 " Also Phtml (was used for PHP 2 in the past). |
da2f2f8fd66e
patch 8.2.4708: PHP test files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28351
diff
changeset
|
1517 " Also .ctp for Cake template file. |
da2f2f8fd66e
patch 8.2.4708: PHP test files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28351
diff
changeset
|
1518 " Also .phpt for php tests. |
30182
4d3c7b4927f2
patch 9.0.0427: Drupal theme files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30176
diff
changeset
|
1519 " Also .theme for Drupal theme files. |
4d3c7b4927f2
patch 9.0.0427: Drupal theme files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30176
diff
changeset
|
1520 au BufNewFile,BufRead *.php,*.php\d,*.phtml,*.ctp,*.phpt,*.theme setf php |
7 | 1521 |
21719
40dca24258ff
patch 8.2.1409: nmpmrc and php.ini filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
21676
diff
changeset
|
1522 " PHP config |
22441 | 1523 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
|
1524 |
13125 | 1525 " Pike and Cmod |
1526 au BufNewFile,BufRead *.pike,*.pmod setf pike | |
1527 au BufNewFile,BufRead *.cmod setf cmod | |
7 | 1528 |
1529 " Pinfo config | |
1530 au BufNewFile,BufRead */etc/pinforc,*/.pinforc setf pinfo | |
1531 | |
1532 " Palm Resource compiler | |
1533 au BufNewFile,BufRead *.rcp setf pilrc | |
1534 | |
1535 " Pine config | |
1536 au BufNewFile,BufRead .pinerc,pinerc,.pinercex,pinercex setf pine | |
1537 | |
16364
db8f57e3e9f5
patch 8.1.1187: cannot recognize Pipfile
Bram Moolenaar <Bram@vim.org>
parents:
16344
diff
changeset
|
1538 " Pipenv Pipfiles |
25971
217cd7833e8b
patch 8.2.3519: TOML files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25935
diff
changeset
|
1539 au BufNewFile,BufRead Pipfile setf toml |
16364
db8f57e3e9f5
patch 8.1.1187: cannot recognize Pipfile
Bram Moolenaar <Bram@vim.org>
parents:
16344
diff
changeset
|
1540 au BufNewFile,BufRead Pipfile.lock setf json |
db8f57e3e9f5
patch 8.1.1187: cannot recognize Pipfile
Bram Moolenaar <Bram@vim.org>
parents:
16344
diff
changeset
|
1541 |
5239 | 1542 " PL/1, PL/I |
1543 au BufNewFile,BufRead *.pli,*.pl1 setf pli | |
1544 | |
7 | 1545 " PL/M (also: *.inp) |
1546 au BufNewFile,BufRead *.plm,*.p36,*.pac setf plm | |
1547 | |
1548 " PL/SQL | |
1549 au BufNewFile,BufRead *.pls,*.plsql setf plsql | |
1550 | |
1551 " PLP | |
1552 au BufNewFile,BufRead *.plp setf plp | |
1553 | |
1554 " PO and PO template (GNU gettext) | |
1555 au BufNewFile,BufRead *.po,*.pot setf po | |
1556 | |
32162
c1bf74e139c3
patch 9.0.1412: Pony files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32156
diff
changeset
|
1557 " Pony |
c1bf74e139c3
patch 9.0.1412: Pony files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32156
diff
changeset
|
1558 au BufNewFile,BufRead *.pony setf pony |
c1bf74e139c3
patch 9.0.1412: Pony files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32156
diff
changeset
|
1559 |
7 | 1560 " Postfix main config |
31547
a48b559cdfc4
patch 9.0.1106: not all postfix files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
31541
diff
changeset
|
1561 au BufNewFile,BufRead main.cf,main.cf.proto setf pfmain |
7 | 1562 |
1563 " PostScript (+ font files, encapsulated PostScript, Adobe Illustrator) | |
1564 au BufNewFile,BufRead *.ps,*.pfa,*.afm,*.eps,*.epsf,*.epsi,*.ai setf postscr | |
1565 | |
1566 " PostScript Printer Description | |
1567 au BufNewFile,BufRead *.ppd setf ppd | |
1568 | |
1569 " Povray | |
1570 au BufNewFile,BufRead *.pov setf pov | |
1571 | |
1572 " Povray configuration | |
1573 au BufNewFile,BufRead .povrayrc setf povini | |
1574 | |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1575 " 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
|
1576 au BufNewFile,BufRead *.inc call dist#ft#FTinc() |
7 | 1577 |
24299
201239ff51d7
patch 8.2.2690: PowerShell files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24278
diff
changeset
|
1578 " PowerShell |
201239ff51d7
patch 8.2.2690: PowerShell files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24278
diff
changeset
|
1579 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
|
1580 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
|
1581 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
|
1582 |
7 | 1583 " Printcap and Termcap |
1584 au BufNewFile,BufRead *printcap | |
1585 \ let b:ptcap_type = "print" | setf ptcap | |
1586 au BufNewFile,BufRead *termcap | |
1587 \ let b:ptcap_type = "term" | setf ptcap | |
1588 | |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1589 " Prisma |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1590 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
|
1591 |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1592 " PCCTS / ANTLR |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1593 "au BufNewFile,BufRead *.g setf antlr |
7 | 1594 au BufNewFile,BufRead *.g setf pccts |
1595 | |
1596 " PPWizard | |
1597 au BufNewFile,BufRead *.it,*.ih setf ppwiz | |
1598 | |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1599 " Pug |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1600 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
|
1601 |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1602 " Puppet |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1603 au BufNewFile,BufRead Puppetfile setf ruby |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1604 |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1605 " Embedded Puppet |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1606 au BufNewFile,BufRead *.epp setf epuppet |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1607 |
2152 | 1608 " Obj 3D file format |
1609 " TODO: is there a way to avoid MS-Windows Object files? | |
2725 | 1610 au BufNewFile,BufRead *.obj setf obj |
2152 | 1611 |
7 | 1612 " Oracle Pro*C/C++ |
1287 | 1613 au BufNewFile,BufRead *.pc setf proc |
7 | 1614 |
1125 | 1615 " Privoxy actions file |
1616 au BufNewFile,BufRead *.action setf privoxy | |
1617 | |
7 | 1618 " Procmail |
1619 au BufNewFile,BufRead .procmail,.procmailrc setf procmail | |
1620 | |
1621 " Progress or CWEB | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1622 au BufNewFile,BufRead *.w call dist#ft#FTprogress_cweb() |
7 | 1623 |
1624 " Progress or assembly | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1625 au BufNewFile,BufRead *.i call dist#ft#FTprogress_asm() |
7 | 1626 |
1627 " Progress or Pascal | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1628 au BufNewFile,BufRead *.p call dist#ft#FTprogress_pascal() |
7 | 1629 |
1630 " Software Distributor Product Specification File (POSIX 1387.2-1995) | |
1631 au BufNewFile,BufRead *.psf setf psf | |
1632 au BufNewFile,BufRead INDEX,INFO | |
1633 \ if getline(1) =~ '^\s*\(distribution\|installed_software\|root\|bundle\|product\)\s*$' | | |
1634 \ setf psf | | |
1635 \ endif | |
1636 | |
1637 " Prolog | |
1638 au BufNewFile,BufRead *.pdb setf prolog | |
1639 | |
1648 | 1640 " Promela |
1641 au BufNewFile,BufRead *.pml setf promela | |
1642 | |
24466
f5a6a6e98ec4
patch 8.2.2773: PSL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24458
diff
changeset
|
1643 " Property Specification Language (PSL) |
f5a6a6e98ec4
patch 8.2.2773: PSL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24458
diff
changeset
|
1644 au BufNewFile,BufRead *.psl setf psl |
f5a6a6e98ec4
patch 8.2.2773: PSL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24458
diff
changeset
|
1645 |
4869 | 1646 " Google protocol buffers |
1647 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
|
1648 au BufNewFile,BufRead *.pbtxt setf pbtxt |
4869 | 1649 |
24099
209caadb403f
patch 8.2.2591: Poke files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23962
diff
changeset
|
1650 " Poke |
24466
f5a6a6e98ec4
patch 8.2.2773: PSL filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24458
diff
changeset
|
1651 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
|
1652 |
389 | 1653 " Protocols |
2751 | 1654 au BufNewFile,BufRead */etc/protocols setf protocols |
389 | 1655 |
25676
0385bd4411b7
patch 8.2.3374: Pyret files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25664
diff
changeset
|
1656 " Pyret |
0385bd4411b7
patch 8.2.3374: Pyret files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25664
diff
changeset
|
1657 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
|
1658 |
7 | 1659 " Pyrex |
1660 au BufNewFile,BufRead *.pyx,*.pxd setf pyrex | |
1661 | |
14946
8ca1dc213836
patch 8.1.0484: some file types are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
14519
diff
changeset
|
1662 " Python, Python Shell Startup and Python Stub Files |
1676 | 1663 " 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
|
1664 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
|
1665 au BufNewFile,BufRead *.ptl,*.pyi,SConstruct setf python |
1676 | 1666 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1667 " QL |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
1668 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
|
1669 |
32154
8be608cee6e3
patch 9.0.1408: QMLdir files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32152
diff
changeset
|
1670 " QMLdir |
8be608cee6e3
patch 9.0.1408: QMLdir files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32152
diff
changeset
|
1671 au BufRead,BufNewFile qmldir setf qmldir |
8be608cee6e3
patch 9.0.1408: QMLdir files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32152
diff
changeset
|
1672 |
29684
d6c90b936159
patch 9.0.0182: quarto files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29503
diff
changeset
|
1673 " Quarto |
32057
aa66dedd891c
patch 9.0.1360: Cue files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32039
diff
changeset
|
1674 au BufRead,BufNewFile *.qmd setf quarto |
29684
d6c90b936159
patch 9.0.0182: quarto files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29503
diff
changeset
|
1675 |
32156
70242ce3ec3d
patch 9.0.1409: racket files are recognized as scheme
Bram Moolenaar <Bram@vim.org>
parents:
32154
diff
changeset
|
1676 " Racket (formerly detected as "scheme") |
70242ce3ec3d
patch 9.0.1409: racket files are recognized as scheme
Bram Moolenaar <Bram@vim.org>
parents:
32154
diff
changeset
|
1677 au BufNewFile,BufRead *.rkt,*.rktd,*.rktl setf racket |
70242ce3ec3d
patch 9.0.1409: racket files are recognized as scheme
Bram Moolenaar <Bram@vim.org>
parents:
32154
diff
changeset
|
1678 |
7 | 1679 " Radiance |
1680 au BufNewFile,BufRead *.rad,*.mat setf radiance | |
1681 | |
25773 | 1682 " 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
|
1683 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
|
1684 |
7 | 1685 " Ratpoison config/command files |
1686 au BufNewFile,BufRead .ratpoisonrc,ratpoisonrc setf ratpoison | |
1687 | |
1688 " RCS file | |
1689 au BufNewFile,BufRead *\,v setf rcs | |
1690 | |
1691 " Readline | |
237 | 1692 au BufNewFile,BufRead .inputrc,inputrc setf readline |
7 | 1693 |
1694 " Registry for MS-Windows | |
1695 au BufNewFile,BufRead *.reg | |
1696 \ if getline(1) =~? '^REGEDIT[0-9]*\s*$\|^Windows Registry Editor Version \d*\.\d*\s*$' | setf registry | endif | |
1697 | |
1698 " Renderman Interface Bytestream | |
1699 au BufNewFile,BufRead *.rib setf rib | |
1700 | |
18926
50355c55519f
patch 8.2.0024: filetype Rego not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18707
diff
changeset
|
1701 " Rego Policy Language |
50355c55519f
patch 8.2.0024: filetype Rego not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18707
diff
changeset
|
1702 au BufNewFile,BufRead *.rego setf rego |
50355c55519f
patch 8.2.0024: filetype Rego not recognized
Bram Moolenaar <Bram@vim.org>
parents:
18707
diff
changeset
|
1703 |
7 | 1704 " Rexx |
3893 | 1705 au BufNewFile,BufRead *.rex,*.orx,*.rxo,*.rxj,*.jrexx,*.rexxj,*.rexx,*.testGroup,*.testUnit setf rexx |
7 | 1706 |
699 | 1707 " R Help file |
836 | 1708 if has("fname_case") |
1709 au BufNewFile,BufRead *.rd,*.Rd setf rhelp | |
1710 else | |
1711 au BufNewFile,BufRead *.rd setf rhelp | |
1712 endif | |
1713 | |
1714 " R noweb file | |
1715 if has("fname_case") | |
1716 au BufNewFile,BufRead *.Rnw,*.rnw,*.Snw,*.snw setf rnoweb | |
1717 else | |
1718 au BufNewFile,BufRead *.rnw,*.snw setf rnoweb | |
1719 endif | |
699 | 1720 |
6051 | 1721 " R Markdown file |
1722 if has("fname_case") | |
1723 au BufNewFile,BufRead *.Rmd,*.rmd,*.Smd,*.smd setf rmd | |
1724 else | |
1725 au BufNewFile,BufRead *.rmd,*.smd setf rmd | |
1726 endif | |
1727 | |
30835
93d8f81b8610
patch 9.0.0752: Rprofile files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30793
diff
changeset
|
1728 " R profile file |
93d8f81b8610
patch 9.0.0752: Rprofile files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30793
diff
changeset
|
1729 au BufNewFile,BufRead .Rprofile,Rprofile,Rprofile.site setf r |
93d8f81b8610
patch 9.0.0752: Rprofile files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30793
diff
changeset
|
1730 |
24168
4cd112203e16
patch 8.2.2625: rss files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24166
diff
changeset
|
1731 " RSS looks like XML |
4cd112203e16
patch 8.2.2625: rss files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24166
diff
changeset
|
1732 au BufNewFile,BufRead *.rss setf xml |
4cd112203e16
patch 8.2.2625: rss files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
24166
diff
changeset
|
1733 |
6051 | 1734 " R reStructuredText file |
1735 if has("fname_case") | |
1736 au BufNewFile,BufRead *.Rrst,*.rrst,*.Srst,*.srst setf rrst | |
1737 else | |
1738 au BufNewFile,BufRead *.rrst,*.srst setf rrst | |
1739 endif | |
1740 | |
7 | 1741 " 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
|
1742 au BufNewFile,BufRead *.r,*.R call dist#ft#FTr() |
7 | 1743 |
1744 " Remind | |
2788 | 1745 au BufNewFile,BufRead .reminders,*.remind,*.rem setf remind |
7 | 1746 |
27653
52bbe3590f50
patch 8.2.4352: ReScript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27493
diff
changeset
|
1747 " ReScript |
52bbe3590f50
patch 8.2.4352: ReScript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27493
diff
changeset
|
1748 au BufNewFile,BufRead *.res,*.resi setf rescript |
52bbe3590f50
patch 8.2.4352: ReScript files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27493
diff
changeset
|
1749 |
7 | 1750 " Resolv.conf |
1751 au BufNewFile,BufRead resolv.conf setf resolv | |
1752 | |
1753 " Relax NG Compact | |
1754 au BufNewFile,BufRead *.rnc setf rnc | |
1755 | |
4264 | 1756 " Relax NG XML |
1757 au BufNewFile,BufRead *.rng setf rng | |
1758 | |
32150
3923c5051b87
patch 9.0.1406: ILE RPG files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32128
diff
changeset
|
1759 " ILE RPG |
3923c5051b87
patch 9.0.1406: ILE RPG files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32128
diff
changeset
|
1760 au BufNewFile,BufRead *.rpgle,*.rpgleinc setf rpgle |
3923c5051b87
patch 9.0.1406: ILE RPG files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32128
diff
changeset
|
1761 |
7 | 1762 " RPL/2 |
1763 au BufNewFile,BufRead *.rpl setf rpl | |
1764 | |
28662
dfe200e3d315
patch 8.2.4855: robot files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28650
diff
changeset
|
1765 " Robot Framework |
dfe200e3d315
patch 8.2.4855: robot files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28650
diff
changeset
|
1766 au BufNewFile,BufRead *.robot,*.resource setf robot |
dfe200e3d315
patch 8.2.4855: robot files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28650
diff
changeset
|
1767 |
7 | 1768 " Robots.txt |
1769 au BufNewFile,BufRead robots.txt setf robots | |
1770 | |
31900
e120f9c227e5
patch 9.0.1282: Ron files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31898
diff
changeset
|
1771 " RON (Rusty Object Notation) |
e120f9c227e5
patch 9.0.1282: Ron files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31898
diff
changeset
|
1772 au BufNewFile,BufRead *.ron setf ron |
7 | 1773 |
26131
87d8f52d3821
patch 8.2.3598: RouterOS filetype is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25971
diff
changeset
|
1774 " MikroTik RouterOS script |
87d8f52d3821
patch 8.2.3598: RouterOS filetype is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25971
diff
changeset
|
1775 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
|
1776 |
31900
e120f9c227e5
patch 9.0.1282: Ron files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31898
diff
changeset
|
1777 " Rpcgen |
e120f9c227e5
patch 9.0.1282: Ron files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31898
diff
changeset
|
1778 au BufNewFile,BufRead *.x setf rpcgen |
e120f9c227e5
patch 9.0.1282: Ron files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31898
diff
changeset
|
1779 |
7 | 1780 " reStructuredText Documentation Format |
1781 au BufNewFile,BufRead *.rst setf rst | |
1782 | |
1783 " RTF | |
1784 au BufNewFile,BufRead *.rtf setf rtf | |
1785 | |
1676 | 1786 " Interactive Ruby shell |
1787 au BufNewFile,BufRead .irbrc,irbrc setf ruby | |
1788 | |
7 | 1789 " Ruby |
2681 | 1790 au BufNewFile,BufRead *.rb,*.rbw setf ruby |
1791 | |
1792 " RubyGems | |
1793 au BufNewFile,BufRead *.gemspec setf ruby | |
1794 | |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1795 " RBS (Ruby Signature) |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1796 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
|
1797 |
2681 | 1798 " Rackup |
1799 au BufNewFile,BufRead *.ru setf ruby | |
1800 | |
1801 " Bundler | |
1802 au BufNewFile,BufRead Gemfile setf ruby | |
7 | 1803 |
1219 | 1804 " Ruby on Rails |
1805 au BufNewFile,BufRead *.builder,*.rxml,*.rjs setf ruby | |
1806 | |
1807 " Rantfile and Rakefile is like Ruby | |
1808 au BufNewFile,BufRead [rR]antfile,*.rant,[rR]akefile,*.rake setf ruby | |
557 | 1809 |
23721
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1810 " Rust |
002fd1de0968
patch 8.2.2402: some filetypes not detected
Bram Moolenaar <Bram@vim.org>
parents:
23701
diff
changeset
|
1811 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
|
1812 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
|
1813 |
2034 | 1814 " S-lang (or shader language, or SmallLisp) |
7 | 1815 au BufNewFile,BufRead *.sl setf slang |
1816 | |
32182
d53f7be86b38
patch 9.0.1422: Sage files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32180
diff
changeset
|
1817 " Sage |
d53f7be86b38
patch 9.0.1422: Sage files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32180
diff
changeset
|
1818 au BufNewFile,BufRead *.sage setf sage |
d53f7be86b38
patch 9.0.1422: Sage files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32180
diff
changeset
|
1819 |
7 | 1820 " Samba config |
1821 au BufNewFile,BufRead smb.conf setf samba | |
1822 | |
1823 " SAS script | |
1824 au BufNewFile,BufRead *.sas setf sas | |
1825 | |
1668 | 1826 " Sass |
1827 au BufNewFile,BufRead *.sass setf sass | |
1828 | |
7 | 1829 " Sather |
1830 au BufNewFile,BufRead *.sa setf sather | |
1831 | |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
9908
diff
changeset
|
1832 " Scala |
28443
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1833 au BufNewFile,BufRead *.scala setf scala |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
9908
diff
changeset
|
1834 |
11442 | 1835 " SBT - Scala Build Tool |
1836 au BufNewFile,BufRead *.sbt setf sbt | |
1837 | |
28443
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1838 " SuperCollider |
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1839 au BufNewFile,BufRead *.sc call dist#ft#FTsc() |
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1840 |
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1841 au BufNewFile,BufRead *.quark setf supercollider |
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1842 |
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1843 " scdoc |
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1844 au BufNewFile,BufRead *.scd call dist#ft#FTscd() |
5896c0f6cdd7
patch 8.2.4746: supercollider filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28417
diff
changeset
|
1845 |
7 | 1846 " Scilab |
809 | 1847 au BufNewFile,BufRead *.sci,*.sce setf scilab |
7 | 1848 |
25497
2246bcbeff89
patch 8.2.3285: scdoc filetype is not recognized
Bram Moolenaar <Bram@vim.org>
parents:
25493
diff
changeset
|
1849 |
2415 | 1850 " SCSS |
2725 | 1851 au BufNewFile,BufRead *.scss setf scss |
2415 | 1852 |
1125 | 1853 " SD: Streaming Descriptors |
1854 au BufNewFile,BufRead *.sd setf sd | |
1855 | |
7 | 1856 " SDL |
1857 au BufNewFile,BufRead *.sdl,*.pr setf sdl | |
1858 | |
1859 " sed | |
1860 au BufNewFile,BufRead *.sed setf sed | |
1861 | |
30224
1fbc86e18258
patch 9.0.0448: SubRip files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30215
diff
changeset
|
1862 " SubRip |
1fbc86e18258
patch 9.0.0448: SubRip files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30215
diff
changeset
|
1863 au BufNewFile,BufRead *.srt setf srt |
1fbc86e18258
patch 9.0.0448: SubRip files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30215
diff
changeset
|
1864 |
30753
b6b326671396
patch 9.0.0711: SubStation Alpha files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30715
diff
changeset
|
1865 " SubStation Alpha |
b6b326671396
patch 9.0.0711: SubStation Alpha files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30715
diff
changeset
|
1866 au BufNewFile,BufRead *.ass,*.ssa setf ssa |
b6b326671396
patch 9.0.0711: SubStation Alpha files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30715
diff
changeset
|
1867 |
23962
436e702af70c
patch 8.2.2523: Svelte filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23960
diff
changeset
|
1868 " svelte |
436e702af70c
patch 8.2.2523: Svelte filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23960
diff
changeset
|
1869 au BufNewFile,BufRead *.svelte setf svelte |
436e702af70c
patch 8.2.2523: Svelte filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23960
diff
changeset
|
1870 |
14946
8ca1dc213836
patch 8.1.0484: some file types are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
14519
diff
changeset
|
1871 " Sieve (RFC 3028, 5228) |
8ca1dc213836
patch 8.1.0484: some file types are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
14519
diff
changeset
|
1872 au BufNewFile,BufRead *.siv,*.sieve setf sieve |
36 | 1873 |
7 | 1874 " Sendmail |
1875 au BufNewFile,BufRead sendmail.cf setf sm | |
1876 | |
28538
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
1877 " Sendmail .mc files are actually m4. Could also be MS Message text file or |
48712267f57b
patch 8.2.4793: recognizing Maxima filetype even though it might be another
Bram Moolenaar <Bram@vim.org>
parents:
28532
diff
changeset
|
1878 " Maxima. |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1879 au BufNewFile,BufRead *.mc call dist#ft#McSetf() |
7 | 1880 |
389 | 1881 " Services |
2751 | 1882 au BufNewFile,BufRead */etc/services setf services |
389 | 1883 |
1884 " Service Location config | |
2751 | 1885 au BufNewFile,BufRead */etc/slp.conf setf slpconf |
389 | 1886 |
1887 " Service Location registration | |
2751 | 1888 au BufNewFile,BufRead */etc/slp.reg setf slpreg |
389 | 1889 |
1890 " Service Location SPI | |
2751 | 1891 au BufNewFile,BufRead */etc/slp.spi setf slpspi |
389 | 1892 |
1893 " Setserial config | |
2751 | 1894 au BufNewFile,BufRead */etc/serial.conf setf setserial |
389 | 1895 |
7 | 1896 " SGML |
1897 au BufNewFile,BufRead *.sgm,*.sgml | |
1898 \ if getline(1).getline(2).getline(3).getline(4).getline(5) =~? 'linuxdoc' | | |
1899 \ setf sgmllnx | | |
1900 \ elseif getline(1) =~ '<!DOCTYPE.*DocBook' || getline(2) =~ '<!DOCTYPE.*DocBook' | | |
3967 | 1901 \ let b:docbk_type = "sgml" | |
1902 \ let b:docbk_ver = 4 | | |
7 | 1903 \ setf docbk | |
1904 \ else | | |
1905 \ setf sgml | | |
1906 \ endif | |
1907 | |
1908 " SGMLDECL | |
1909 au BufNewFile,BufRead *.decl,*.dcl,*.dec | |
1910 \ if getline(1).getline(2).getline(3) =~? '^<!SGML' | | |
1911 \ setf sgmldecl | | |
1912 \ endif | |
1913 | |
1914 " SGML catalog file | |
216 | 1915 au BufNewFile,BufRead catalog setf catalog |
7 | 1916 |
1917 " Shell scripts (sh, ksh, bash, bash2, csh); Allow .profile_foo etc. | |
22723 | 1918 " Gentoo ebuilds, Arch Linux PKGBUILDs and Alpine Linux APKBUILDs are actually |
1919 " 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
|
1920 " 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
|
1921 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
|
1922 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
|
1923 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
|
1924 |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1925 " 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
|
1926 au BufNewFile,BufRead *.install |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1927 \ if getline(1) =~ '<?php' | |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1928 \ setf php | |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1929 \ else | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
1930 \ call dist#ft#SetFileTypeSH("bash") | |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1931 \ endif |
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1932 |
15535
45a159f62dd0
patch 8.1.0775: matching too many files as zsh
Bram Moolenaar <Bram@vim.org>
parents:
15527
diff
changeset
|
1933 " 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
|
1934 au BufNewFile,BufRead .tcshrc,*.tcsh,tcsh.tcshrc,tcsh.login call dist#ft#SetFileTypeShell("tcsh") |
7 | 1935 |
1936 " 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
|
1937 " (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
|
1938 au BufNewFile,BufRead .login,.cshrc,csh.cshrc,csh.login,csh.logout,*.csh,.alias call dist#ft#CSH() |
7 | 1939 |
31361
abb9d25924d8
patch 9.0.1014: zir files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31237
diff
changeset
|
1940 " Zig and Zir (Zig Intermediate Representation) |
26478
dd09291cf1ac
patch 8.2.3769: zig files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26438
diff
changeset
|
1941 au BufNewFile,BufRead *.zig setf zig |
31361
abb9d25924d8
patch 9.0.1014: zir files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31237
diff
changeset
|
1942 au BufNewFile,BufRead *.zir setf zir |
26478
dd09291cf1ac
patch 8.2.3769: zig files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26438
diff
changeset
|
1943 |
15535
45a159f62dd0
patch 8.1.0775: matching too many files as zsh
Bram Moolenaar <Bram@vim.org>
parents:
15527
diff
changeset
|
1944 " Z-Shell script (patterns ending in a star further below) |
2751 | 1945 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
|
1946 au BufNewFile,BufRead .zshrc,.zshenv,.zlogin,.zlogout,.zcompdump setf zsh |
2725 | 1947 au BufNewFile,BufRead *.zsh setf zsh |
7 | 1948 |
32156
70242ce3ec3d
patch 9.0.1409: racket files are recognized as scheme
Bram Moolenaar <Bram@vim.org>
parents:
32154
diff
changeset
|
1949 " Scheme ("racket" patterns are now separate, see above) |
70242ce3ec3d
patch 9.0.1409: racket files are recognized as scheme
Bram Moolenaar <Bram@vim.org>
parents:
32154
diff
changeset
|
1950 au BufNewFile,BufRead *.scm,*.ss,*.sld setf scheme |
7 | 1951 |
1952 " Screen RC | |
1953 au BufNewFile,BufRead .screenrc,screenrc setf screen | |
1954 | |
23430
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
1955 " Sexplib |
9e60204aea6e
patch 8.2.2258: not all OCaml related files are detected
Bram Moolenaar <Bram@vim.org>
parents:
23316
diff
changeset
|
1956 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
|
1957 |
7 | 1958 " Simula |
1959 au BufNewFile,BufRead *.sim setf simula | |
1960 | |
1961 " SINDA | |
1962 au BufNewFile,BufRead *.sin,*.s85 setf sinda | |
1963 | |
819 | 1964 " SiSU |
857 | 1965 au BufNewFile,BufRead *.sst,*.ssm,*.ssi,*.-sst,*._sst setf sisu |
819 | 1966 au BufNewFile,BufRead *.sst.meta,*.-sst.meta,*._sst.meta setf sisu |
1967 | |
7 | 1968 " SKILL |
336 | 1969 au BufNewFile,BufRead *.il,*.ils,*.cdf setf skill |
7 | 1970 |
31898
31d269fb880e
patch 9.0.1281: Cadence files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31892
diff
changeset
|
1971 " Cadence |
31d269fb880e
patch 9.0.1281: Cadence files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31892
diff
changeset
|
1972 au BufNewFile,BufRead *.cdc setf cdc |
31d269fb880e
patch 9.0.1281: Cadence files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31892
diff
changeset
|
1973 |
7 | 1974 " SLRN |
1975 au BufNewFile,BufRead .slrnrc setf slrnrc | |
1976 au BufNewFile,BufRead *.score setf slrnsc | |
1977 | |
31684
8153d73088f2
patch 9.0.1174: smali files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31669
diff
changeset
|
1978 " Smali |
8153d73088f2
patch 9.0.1174: smali files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31669
diff
changeset
|
1979 au BufNewFile,BufRead *.smali setf smali |
8153d73088f2
patch 9.0.1174: smali files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31669
diff
changeset
|
1980 |
29326
1f1d99bba06c
patch 9.0.0006: not all Visual Basic files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
29324
diff
changeset
|
1981 " Smalltalk |
271 | 1982 au BufNewFile,BufRead *.st setf st |
29326
1f1d99bba06c
patch 9.0.0006: not all Visual Basic files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
29324
diff
changeset
|
1983 |
1f1d99bba06c
patch 9.0.0006: not all Visual Basic files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
29324
diff
changeset
|
1984 " Smalltalk (and Rexx, TeX, and Visual Basic) |
30023
87063bfe81cd
patch 9.0.0349: filetype of *.sil files not well detected
Bram Moolenaar <Bram@vim.org>
parents:
29962
diff
changeset
|
1985 au BufNewFile,BufRead *.cls call dist#ft#FTcls() |
7 | 1986 |
1987 " Smarty templates | |
1988 au BufNewFile,BufRead *.tpl setf smarty | |
1989 | |
1990 " SMIL or XML | |
1991 au BufNewFile,BufRead *.smil | |
1992 \ if getline(1) =~ '<?\s*xml.*?>' | | |
1993 \ setf xml | | |
1994 \ else | | |
1995 \ setf smil | | |
1996 \ endif | |
1997 | |
1998 " SMIL or SNMP MIB file | |
1999 au BufNewFile,BufRead *.smi | |
2000 \ if getline(1) =~ '\<smil\>' | | |
2001 \ setf smil | | |
2002 \ else | | |
2003 \ setf mib | | |
2004 \ endif | |
2005 | |
2006 " SMITH | |
2007 au BufNewFile,BufRead *.smt,*.smith setf smith | |
2008 | |
31688
ead5a3f43a4c
patch 9.0.1176: smithy files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31684
diff
changeset
|
2009 " Smithy |
ead5a3f43a4c
patch 9.0.1176: smithy files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31684
diff
changeset
|
2010 au BufNewFile,BufRead *.smithy setf smithy |
ead5a3f43a4c
patch 9.0.1176: smithy files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31684
diff
changeset
|
2011 |
857 | 2012 " Snobol4 and spitbol |
2013 au BufNewFile,BufRead *.sno,*.spt setf snobol4 | |
7 | 2014 |
2015 " SNMP MIB files | |
2016 au BufNewFile,BufRead *.mib,*.my setf mib | |
2017 | |
2018 " Snort Configuration | |
1219 | 2019 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
|
2020 au BufNewFile,BufRead *.rules call dist#ft#FTRules() |
1219 | 2021 |
27776
addcf70c8346
patch 8.2.4414: solidity files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27770
diff
changeset
|
2022 " Solidity |
addcf70c8346
patch 8.2.4414: solidity files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27770
diff
changeset
|
2023 au BufRead,BufNewFile *.sol setf solidity |
addcf70c8346
patch 8.2.4414: solidity files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27770
diff
changeset
|
2024 |
23622
53cbcc2d2234
patch 8.2.2353: spartql files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
23584
diff
changeset
|
2025 " SPARQL queries |
53cbcc2d2234
patch 8.2.2353: spartql files are not detected
Bram Moolenaar <Bram@vim.org>
parents:
23584
diff
changeset
|
2026 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
|
2027 |
7 | 2028 " Spec (Linux RPM) |
2029 au BufNewFile,BufRead *.spec setf spec | |
2030 | |
2031 " Speedup (AspenTech plant simulator) | |
2032 au BufNewFile,BufRead *.speedup,*.spdata,*.spd setf spup | |
2033 | |
2034 " Slice | |
2035 au BufNewFile,BufRead *.ice setf slice | |
2036 | |
26570
b1f4052d6c51
patch 8.2.3814: .csx files and .sln files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26552
diff
changeset
|
2037 " 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
|
2038 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
|
2039 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
|
2040 |
7 | 2041 " Spice |
2042 au BufNewFile,BufRead *.sp,*.spice setf spice | |
2043 | |
2044 " Spyce | |
2045 au BufNewFile,BufRead *.spy,*.spi setf spyce | |
2046 | |
2047 " Squid | |
2048 au BufNewFile,BufRead squid.conf setf squid | |
2049 | |
22 | 2050 " SQL for Oracle Designer |
2051 au BufNewFile,BufRead *.tyb,*.typ,*.tyc,*.pkb,*.pks setf sql | |
2052 | |
2053 " SQL | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
2054 au BufNewFile,BufRead *.sql call dist#ft#SQL() |
7 | 2055 |
2056 " SQLJ | |
2057 au BufNewFile,BufRead *.sqlj setf sqlj | |
2058 | |
31974
938ad9626b84
patch 9.0.1319: PRQL files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31918
diff
changeset
|
2059 " PRQL |
938ad9626b84
patch 9.0.1319: PRQL files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31918
diff
changeset
|
2060 au BufNewFile,BufRead *.prql setf prql |
938ad9626b84
patch 9.0.1319: PRQL files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31918
diff
changeset
|
2061 |
7 | 2062 " SQR |
2063 au BufNewFile,BufRead *.sqr,*.sqi setf sqr | |
2064 | |
26396
f4e6431ca146
patch 8.2.3729: no support for squirrels
Bram Moolenaar <Bram@vim.org>
parents:
26390
diff
changeset
|
2065 " Squirrel |
f4e6431ca146
patch 8.2.3729: no support for squirrels
Bram Moolenaar <Bram@vim.org>
parents:
26390
diff
changeset
|
2066 au BufNewFile,BufRead *.nut setf squirrel |
f4e6431ca146
patch 8.2.3729: no support for squirrels
Bram Moolenaar <Bram@vim.org>
parents:
26390
diff
changeset
|
2067 |
7 | 2068 " 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
|
2069 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
|
2070 au BufNewFile,BufRead */etc/ssh/ssh_config.d/*.conf setf sshconfig |
7 | 2071 |
2072 " 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
|
2073 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
|
2074 au BufNewFile,BufRead */etc/ssh/sshd_config.d/*.conf setf sshdconfig |
7 | 2075 |
32029
23e8d0371e35
patch 9.0.1346: Starlark files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32011
diff
changeset
|
2076 " Starlark |
23e8d0371e35
patch 9.0.1346: Starlark files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32011
diff
changeset
|
2077 au BufNewFile,BufRead *.ipd,*.star,*.starlark setf starlark |
23e8d0371e35
patch 9.0.1346: Starlark files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32011
diff
changeset
|
2078 |
30896
87d9843b59db
patch 9.0.0782: OpenVPN files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30890
diff
changeset
|
2079 " OpenVPN configuration |
87d9843b59db
patch 9.0.0782: OpenVPN files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30890
diff
changeset
|
2080 au BufNewFile,BufRead *.ovpn setf openvpn |
87d9843b59db
patch 9.0.0782: OpenVPN files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30890
diff
changeset
|
2081 au BufNewFile,BufRead */openvpn/*/*.conf setf openvpn |
87d9843b59db
patch 9.0.0782: OpenVPN files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30890
diff
changeset
|
2082 |
831 | 2083 " Stata |
11400
0f8713fe20dc
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
11358
diff
changeset
|
2084 au BufNewFile,BufRead *.ado,*.do,*.imata,*.mata setf stata |
0f8713fe20dc
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
11358
diff
changeset
|
2085 " Also *.class, but not when it's a Java bytecode file |
0f8713fe20dc
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
11358
diff
changeset
|
2086 au BufNewFile,BufRead *.class |
0f8713fe20dc
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
11358
diff
changeset
|
2087 \ if getline(1) !~ "^\xca\xfe\xba\xbe" | setf stata | endif |
831 | 2088 |
2089 " SMCL | |
2090 au BufNewFile,BufRead *.hlp,*.ihlp,*.smcl setf smcl | |
2091 | |
7 | 2092 " Stored Procedures |
2093 au BufNewFile,BufRead *.stp setf stp | |
2094 | |
2095 " Standard ML | |
2096 au BufNewFile,BufRead *.sml setf sml | |
2097 | |
1648 | 2098 " Sratus VOS command macro |
2099 au BufNewFile,BufRead *.cm setf voscm | |
2100 | |
19164
bfe90421e223
patch 8.2.0141: no swift filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
18926
diff
changeset
|
2101 " Swift |
bfe90421e223
patch 8.2.0141: no swift filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
18926
diff
changeset
|
2102 au BufNewFile,BufRead *.swift setf swift |
20965 | 2103 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
|
2104 |
30023
87063bfe81cd
patch 9.0.0349: filetype of *.sil files not well detected
Bram Moolenaar <Bram@vim.org>
parents:
29962
diff
changeset
|
2105 " Swift Intermediate Language or SILE |
87063bfe81cd
patch 9.0.0349: filetype of *.sil files not well detected
Bram Moolenaar <Bram@vim.org>
parents:
29962
diff
changeset
|
2106 au BufNewFile,BufRead *.sil call dist#ft#FTsil() |
19164
bfe90421e223
patch 8.2.0141: no swift filetype detection
Bram Moolenaar <Bram@vim.org>
parents:
18926
diff
changeset
|
2107 |
375 | 2108 " Sysctl |
2751 | 2109 au BufNewFile,BufRead */etc/sysctl.conf,*/etc/sysctl.d/*.conf setf sysctl |
375 | 2110 |
7176
30042ddff503
commit https://github.com/vim/vim/commit/60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d
Christian Brabandt <cb@256bit.org>
parents:
7147
diff
changeset
|
2111 " 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
|
2112 au BufNewFile,BufRead */systemd/*.{automount,dnssd,link,mount,netdev,network,nspawn,path,service,slice,socket,swap,target,timer} setf systemd |
16086 | 2113 " Systemd overrides |
20986
9dccf57e918a
patch 8.2.1044: not all systemd file types are recognized
Bram Moolenaar <Bram@vim.org>
parents:
20965
diff
changeset
|
2114 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
|
2115 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
|
2116 au BufNewFile,BufRead */.config/systemd/user/*.d/*.conf setf systemd |
16086 | 2117 " Systemd temp files |
19987
9cbe7ba51ce5
patch 8.2.0549: user systemd files not recognized
Bram Moolenaar <Bram@vim.org>
parents:
19721
diff
changeset
|
2118 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
|
2119 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
|
2120 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
|
2121 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
|
2122 |
2034 | 2123 " Synopsys Design Constraints |
2124 au BufNewFile,BufRead *.sdc setf sdc | |
2125 | |
39 | 2126 " Sudoers |
2751 | 2127 au BufNewFile,BufRead */etc/sudoers,sudoers.tmp setf sudoers |
39 | 2128 |
2152 | 2129 " SVG (Scalable Vector Graphics) |
2130 au BufNewFile,BufRead *.svg setf svg | |
2131 | |
28417
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
2132 " Surface |
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
2133 au BufRead,BufNewFile *.sface setf surface |
bca485676073
patch 8.2.4733: HEEx and Surface do need a separate filetype
Bram Moolenaar <Bram@vim.org>
parents:
28409
diff
changeset
|
2134 |
32152
affa1f55a761
patch 9.0.1407: TableGen files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32150
diff
changeset
|
2135 " LLVM TableGen |
affa1f55a761
patch 9.0.1407: TableGen files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32150
diff
changeset
|
2136 au BufNewFile,BufRead *.td setf tablegen |
affa1f55a761
patch 9.0.1407: TableGen files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32150
diff
changeset
|
2137 |
557 | 2138 " Tads (or Nroff or Perl test file) |
7 | 2139 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
|
2140 \ if !dist#ft#FTnroff() && !dist#ft#FTperl() | setf tads | endif |
7 | 2141 |
2142 " Tags | |
2143 au BufNewFile,BufRead tags setf tags | |
2144 | |
2145 " TAK | |
2146 au BufNewFile,BufRead *.tak setf tak | |
2147 | |
32126
fb13656998a5
patch 9.0.1394: Unx Tal files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32124
diff
changeset
|
2148 " Unx Tal |
fb13656998a5
patch 9.0.1394: Unx Tal files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32124
diff
changeset
|
2149 au BufNewFile,BufRead *.tal setf tal |
fb13656998a5
patch 9.0.1394: Unx Tal files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32124
diff
changeset
|
2150 |
2034 | 2151 " Task |
2152 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
|
2153 au BufRead,BufNewFile *.task setf taskedit |
2034 | 2154 |
557 | 2155 " 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
|
2156 au BufNewFile,BufRead *.tcl,*.tm,*.tk,*.itcl,*.itk,*.jacl,.tclshrc,.wishrc setf tcl |
7 | 2157 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
2158 " Teal |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
2159 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
|
2160 |
7 | 2161 " TealInfo |
2162 au BufNewFile,BufRead *.tli setf tli | |
2163 | |
2164 " Telix Salt | |
2165 au BufNewFile,BufRead *.slt setf tsalt | |
2166 | |
23685
eb30aed2059f
patch 8.2.2384: turtle filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23622
diff
changeset
|
2167 " Tera Term Language or Turtle |
eb30aed2059f
patch 8.2.2384: turtle filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23622
diff
changeset
|
2168 au BufRead,BufNewFile *.ttl |
eb30aed2059f
patch 8.2.2384: turtle filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23622
diff
changeset
|
2169 \ if getline(1) =~ '^@\?\(prefix\|base\)' | |
eb30aed2059f
patch 8.2.2384: turtle filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23622
diff
changeset
|
2170 \ setf turtle | |
eb30aed2059f
patch 8.2.2384: turtle filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23622
diff
changeset
|
2171 \ else | |
eb30aed2059f
patch 8.2.2384: turtle filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23622
diff
changeset
|
2172 \ setf teraterm | |
eb30aed2059f
patch 8.2.2384: turtle filetype not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23622
diff
changeset
|
2173 \ endif |
6951
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6823
diff
changeset
|
2174 |
7 | 2175 " Terminfo |
2176 au BufNewFile,BufRead *.ti setf terminfo | |
2177 | |
29485
7355529ee87f
patch 9.0.0084: using "terraform" filetype for .tfvars file is bad
Bram Moolenaar <Bram@vim.org>
parents:
29463
diff
changeset
|
2178 " Terraform variables |
7355529ee87f
patch 9.0.0084: using "terraform" filetype for .tfvars file is bad
Bram Moolenaar <Bram@vim.org>
parents:
29463
diff
changeset
|
2179 au BufRead,BufNewFile *.tfvars setf terraform-vars |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
2180 |
7 | 2181 " TeX |
378 | 2182 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
|
2183 au BufNewFile,BufRead *.tex call dist#ft#FTtex() |
378 | 2184 |
1648 | 2185 " ConTeXt |
22834
fcbded1e3602
patch 8.2.1964: not all ConTeXt files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
22723
diff
changeset
|
2186 au BufNewFile,BufRead *.mkii,*.mkiv,*.mkvi,*.mkxl,*.mklx setf context |
7 | 2187 |
2188 " Texinfo | |
2189 au BufNewFile,BufRead *.texinfo,*.texi,*.txi setf texinfo | |
2190 | |
2191 " TeX configuration | |
2192 au BufNewFile,BufRead texmf.cnf setf texmf | |
2193 | |
31796
e2fa5867a7bd
patch 9.0.1230: Apache thrift files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31794
diff
changeset
|
2194 " Thrift (Apache) |
e2fa5867a7bd
patch 9.0.1230: Apache thrift files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31794
diff
changeset
|
2195 au BufNewFile,BufRead *.thrift setf thrift |
e2fa5867a7bd
patch 9.0.1230: Apache thrift files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31794
diff
changeset
|
2196 |
7 | 2197 " Tidy config |
22353
889143dbe2cd
patch 8.2.1725: not all Pascal files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
22033
diff
changeset
|
2198 au BufNewFile,BufRead .tidyrc,tidyrc,tidy.conf setf tidy |
7 | 2199 |
2200 " 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
|
2201 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
|
2202 |
978890380129
patch 8.2.4238: *.tf file could be fileytpe "tf" or "terraform"
Bram Moolenaar <Bram@vim.org>
parents:
27336
diff
changeset
|
2203 " 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
|
2204 au BufNewFile,BufRead *.tf call dist#ft#FTtf() |
7 | 2205 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
2206 " TLA+ |
27420
978890380129
patch 8.2.4238: *.tf file could be fileytpe "tf" or "terraform"
Bram Moolenaar <Bram@vim.org>
parents:
27336
diff
changeset
|
2207 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
|
2208 |
11062 | 2209 " tmux configuration |
11160 | 2210 au BufNewFile,BufRead {.,}tmux*.conf setf tmux |
11062 | 2211 |
23120
640ec41661b1
patch 8.2.2106: TOML files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23078
diff
changeset
|
2212 " TOML |
640ec41661b1
patch 8.2.2106: TOML files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
23078
diff
changeset
|
2213 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
|
2214 |
33 | 2215 " 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
|
2216 au BufNewFile,BufRead *.tpp setf tpp |
33 | 2217 |
2725 | 2218 " Treetop |
2219 au BufRead,BufNewFile *.treetop setf treetop | |
2220 | |
555 | 2221 " Trustees |
2222 au BufNewFile,BufRead trustees.conf setf trustees | |
2223 | |
7 | 2224 " TSS - Geometry |
2225 au BufNewFile,BufReadPost *.tssgm setf tssgm | |
2226 | |
2227 " TSS - Optics | |
2228 au BufNewFile,BufReadPost *.tssop setf tssop | |
2229 | |
2230 " TSS - Command Line (temporary) | |
2231 au BufNewFile,BufReadPost *.tsscl setf tsscl | |
2232 | |
29415
87174e9f7529
patch 9.0.0049: csv and tsv files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29403
diff
changeset
|
2233 " TSV Files |
87174e9f7529
patch 9.0.0049: csv and tsv files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29403
diff
changeset
|
2234 au BufNewFile,BufRead *.tsv setf tsv |
87174e9f7529
patch 9.0.0049: csv and tsv files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29403
diff
changeset
|
2235 |
3456 | 2236 " TWIG files |
2237 au BufNewFile,BufReadPost *.twig setf twig | |
2238 | |
30533
4f6c0ca7530b
patch 9.0.0602: new TypeScript extensions are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30529
diff
changeset
|
2239 " TypeScript or Qt translation file (which is XML) |
23078
d01b011f91b9
patch 8.2.2085: Qt translation file is recognized as typescript
Bram Moolenaar <Bram@vim.org>
parents:
23047
diff
changeset
|
2240 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
|
2241 \ 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
|
2242 \ setf xml | |
d01b011f91b9
patch 8.2.2085: Qt translation file is recognized as typescript
Bram Moolenaar <Bram@vim.org>
parents:
23047
diff
changeset
|
2243 \ else | |
d01b011f91b9
patch 8.2.2085: Qt translation file is recognized as typescript
Bram Moolenaar <Bram@vim.org>
parents:
23047
diff
changeset
|
2244 \ setf typescript | |
d01b011f91b9
patch 8.2.2085: Qt translation file is recognized as typescript
Bram Moolenaar <Bram@vim.org>
parents:
23047
diff
changeset
|
2245 \ 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
|
2246 |
30533
4f6c0ca7530b
patch 9.0.0602: new TypeScript extensions are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30529
diff
changeset
|
2247 " TypeScript module and common |
4f6c0ca7530b
patch 9.0.0602: new TypeScript extensions are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30529
diff
changeset
|
2248 au BufNewFile,BufRead *.mts,*.cts setf typescript |
4f6c0ca7530b
patch 9.0.0602: new TypeScript extensions are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30529
diff
changeset
|
2249 |
17867
180fb9981255
patch 8.1.1930: cannot recognize .jsx and .tsx files
Bram Moolenaar <Bram@vim.org>
parents:
17758
diff
changeset
|
2250 " TypeScript with React |
180fb9981255
patch 8.1.1930: cannot recognize .jsx and .tsx files
Bram Moolenaar <Bram@vim.org>
parents:
17758
diff
changeset
|
2251 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
|
2252 |
7 | 2253 " Motif UIT/UIL files |
2254 au BufNewFile,BufRead *.uit,*.uil setf uil | |
2255 | |
389 | 2256 " Udev conf |
2751 | 2257 au BufNewFile,BufRead */etc/udev/udev.conf setf udevconf |
389 | 2258 |
2259 " Udev permissions | |
2751 | 2260 au BufNewFile,BufRead */etc/udev/permissions.d/*.permissions setf udevperm |
389 | 2261 " |
2262 " Udev symlinks config | |
2751 | 2263 au BufNewFile,BufRead */etc/udev/cdsymlinks.conf setf sh |
389 | 2264 |
32033
5bf9832d3e00
patch 9.0.1348: Un-grammar files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32029
diff
changeset
|
2265 " Ungrammar, AKA Un-grammar |
5bf9832d3e00
patch 9.0.1348: Un-grammar files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32029
diff
changeset
|
2266 au BufNewFile,BufRead *.ungram setf ungrammar |
5bf9832d3e00
patch 9.0.1348: Un-grammar files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32029
diff
changeset
|
2267 |
7 | 2268 " UnrealScript |
2269 au BufNewFile,BufRead *.uc setf uc | |
2270 | |
375 | 2271 " Updatedb |
2751 | 2272 au BufNewFile,BufRead */etc/updatedb.conf setf updatedb |
375 | 2273 |
2725 | 2274 " Upstart (init(8)) config files |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
5277
diff
changeset
|
2275 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
|
2276 au BufNewFile,BufRead */usr/share/upstart/*.override setf upstart |
4186 | 2277 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
|
2278 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
|
2279 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
|
2280 au BufNewFile,BufRead */.config/upstart/*.override setf upstart |
2725 | 2281 |
27445
31b0d8898489
patch 8.2.4251: vala files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27420
diff
changeset
|
2282 " Vala |
31b0d8898489
patch 8.2.4251: vala files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27420
diff
changeset
|
2283 au BufNewFile,BufRead *.vala setf vala |
31b0d8898489
patch 8.2.4251: vala files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27420
diff
changeset
|
2284 |
30287
8730f0f77e00
patch 9.0.0479: in :def function all closures in loop get the same variables
Bram Moolenaar <Bram@vim.org>
parents:
30224
diff
changeset
|
2285 " VDF |
8730f0f77e00
patch 9.0.0479: in :def function all closures in loop get the same variables
Bram Moolenaar <Bram@vim.org>
parents:
30224
diff
changeset
|
2286 au BufNewFile,BufRead *.vdf setf vdf |
8730f0f77e00
patch 9.0.0479: in :def function all closures in loop get the same variables
Bram Moolenaar <Bram@vim.org>
parents:
30224
diff
changeset
|
2287 |
29952
eba6020b286a
patch 9.0.0314: VDM files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29714
diff
changeset
|
2288 " VDM |
eba6020b286a
patch 9.0.0314: VDM files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29714
diff
changeset
|
2289 au BufRead,BufNewFile *.vdmpp,*.vpp setf vdmpp |
eba6020b286a
patch 9.0.0314: VDM files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29714
diff
changeset
|
2290 au BufRead,BufNewFile *.vdmrt setf vdmrt |
eba6020b286a
patch 9.0.0314: VDM files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29714
diff
changeset
|
2291 au BufRead,BufNewFile *.vdmsl,*.vdm setf vdmsl |
eba6020b286a
patch 9.0.0314: VDM files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
29714
diff
changeset
|
2292 |
836 | 2293 " Vera |
2294 au BufNewFile,BufRead *.vr,*.vri,*.vrh setf vera | |
2295 | |
28380
90d43a367955
patch 8.2.4715: Vagrantfile not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28379
diff
changeset
|
2296 " Vagrant (uses Ruby syntax) |
90d43a367955
patch 8.2.4715: Vagrantfile not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28379
diff
changeset
|
2297 au BufNewFile,BufRead Vagrantfile setf ruby |
90d43a367955
patch 8.2.4715: Vagrantfile not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28379
diff
changeset
|
2298 |
7 | 2299 " Verilog HDL |
2300 au BufNewFile,BufRead *.v setf verilog | |
2301 | |
481 | 2302 " Verilog-AMS HDL |
2303 au BufNewFile,BufRead *.va,*.vams setf verilogams | |
2304 | |
5663
1dea14d4c738
Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents:
5577
diff
changeset
|
2305 " SystemVerilog |
5692
80e5f9584b02
Update runtime files. Add Euphoria syntax files.
Bram Moolenaar <bram@vim.org>
parents:
5663
diff
changeset
|
2306 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
|
2307 |
31016
f825a2646cc0
patch 9.0.0843: VHS tape files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30960
diff
changeset
|
2308 " VHS tape |
f825a2646cc0
patch 9.0.0843: VHS tape files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30960
diff
changeset
|
2309 " .tape is also used by TapeCalc, which we do not support ATM. If TapeCalc |
f825a2646cc0
patch 9.0.0843: VHS tape files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30960
diff
changeset
|
2310 " support is needed the contents of the file needs to be inspected. |
f825a2646cc0
patch 9.0.0843: VHS tape files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30960
diff
changeset
|
2311 au BufNewFile,BufRead *.tape setf vhs |
f825a2646cc0
patch 9.0.0843: VHS tape files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30960
diff
changeset
|
2312 |
7 | 2313 " VHDL |
19717
de7c724bf803
patch 8.2.0415: bsdl filetype is not detected
Bram Moolenaar <Bram@vim.org>
parents:
19404
diff
changeset
|
2314 au BufNewFile,BufRead *.hdl,*.vhd,*.vhdl,*.vbe,*.vst,*.vho setf vhdl |
7 | 2315 |
2316 " Vim script | |
794 | 2317 au BufNewFile,BufRead *.vim,*.vba,.exrc,_exrc setf vim |
7 | 2318 |
2319 " Viminfo file | |
2320 au BufNewFile,BufRead .viminfo,_viminfo setf viminfo | |
2321 | |
2034 | 2322 " Virata Config Script File or Drupal module |
2323 au BufRead,BufNewFile *.hw,*.module,*.pkg | |
2324 \ if getline(1) =~ '<?php' | | |
2325 \ setf php | | |
2326 \ else | | |
2327 \ setf virata | | |
2328 \ endif | |
7 | 2329 |
2330 " Visual Basic (also uses *.bas) or FORM | |
27493
3af3dee7e5d9
patch 8.2.4274: Basic and form filetype detection is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
27492
diff
changeset
|
2331 au BufNewFile,BufRead *.frm call dist#ft#FTfrm() |
7 | 2332 |
2333 " SaxBasic is close to Visual Basic | |
2334 au BufNewFile,BufRead *.sba setf vb | |
2335 | |
2336 " Vgrindefs file | |
2337 au BufNewFile,BufRead vgrindefs setf vgrindefs | |
2338 | |
2339 " VRML V1.0c | |
2340 au BufNewFile,BufRead *.wrl setf vrml | |
2341 | |
6091
7090d7f160f7
Update runtime files. Add vroom file support.
Bram Moolenaar <bram@vim.org>
parents:
6070
diff
changeset
|
2342 " Vroom (vim testing and executable documentation) |
7090d7f160f7
Update runtime files. Add vroom file support.
Bram Moolenaar <bram@vim.org>
parents:
6070
diff
changeset
|
2343 au BufNewFile,BufRead *.vroom setf vroom |
7090d7f160f7
Update runtime files. Add vroom file support.
Bram Moolenaar <bram@vim.org>
parents:
6070
diff
changeset
|
2344 |
17528
62a6d99082f7
patch 8.1.1762: some filetype rules are in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
17526
diff
changeset
|
2345 " 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
|
2346 au BufNewFile,BufRead *.vue setf vue |
7 | 2347 |
14432 | 2348 " WebAssembly |
32188
70d078793ad2
patch 9.0.1425: "wat" and "wast" files are one filetype
Bram Moolenaar <Bram@vim.org>
parents:
32184
diff
changeset
|
2349 au BufNewFile,BufRead *.wat setf wat |
70d078793ad2
patch 9.0.1425: "wat" and "wast" files are one filetype
Bram Moolenaar <Bram@vim.org>
parents:
32184
diff
changeset
|
2350 au BufNewFile,BufRead *.wast setf wast |
14432 | 2351 |
32184
f1602cf7022f
patch 9.0.1423: WebAssembly Interface Type files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32182
diff
changeset
|
2352 " WebAssembly Interface Type (WIT) |
f1602cf7022f
patch 9.0.1423: WebAssembly Interface Type files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32182
diff
changeset
|
2353 au BufNewFile,BufRead *.wit setf wit |
f1602cf7022f
patch 9.0.1423: WebAssembly Interface Type files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32182
diff
changeset
|
2354 |
17528
62a6d99082f7
patch 8.1.1762: some filetype rules are in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
17526
diff
changeset
|
2355 " Webmacro |
62a6d99082f7
patch 8.1.1762: some filetype rules are in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
17526
diff
changeset
|
2356 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
|
2357 |
7 | 2358 " Wget config |
2359 au BufNewFile,BufRead .wgetrc,wgetrc setf wget | |
2360 | |
28670
239bd331e0a9
patch 8.2.4859: wget2 files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28662
diff
changeset
|
2361 " Wget2 config |
239bd331e0a9
patch 8.2.4859: wget2 files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28662
diff
changeset
|
2362 au BufNewFile,BufRead .wget2rc,wget2rc setf wget2 |
239bd331e0a9
patch 8.2.4859: wget2 files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
28662
diff
changeset
|
2363 |
7 | 2364 " Website MetaLanguage |
2365 au BufNewFile,BufRead *.wml setf wml | |
2366 | |
2367 " Winbatch | |
2368 au BufNewFile,BufRead *.wbt setf winbatch | |
2369 | |
753 | 2370 " WSML |
2371 au BufNewFile,BufRead *.wsml setf wsml | |
2372 | |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2373 " WPL |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2374 au BufNewFile,BufRead *.wpl setf xml |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2375 |
7 | 2376 " WvDial |
2377 au BufNewFile,BufRead wvdial.conf,.wvdialrc setf wvdial | |
2378 | |
2379 " CVS RC file | |
2380 au BufNewFile,BufRead .cvsrc setf cvsrc | |
2381 | |
2382 " CVS commit file | |
2383 au BufNewFile,BufRead cvs\d\+ setf cvs | |
2384 | |
2385 " WEB (*.web is also used for Winbatch: Guess, based on expecting "%" comment | |
2386 " lines in a WEB file). | |
2387 au BufNewFile,BufRead *.web | |
2388 \ if getline(1)[0].getline(2)[0].getline(3)[0].getline(4)[0].getline(5)[0] =~ "%" | | |
2389 \ setf web | | |
2390 \ else | | |
2391 \ setf winbatch | | |
2392 \ endif | |
2393 | |
2394 " Windows Scripting Host and Windows Script Component | |
2395 au BufNewFile,BufRead *.ws[fc] setf wsh | |
2396 | |
1125 | 2397 " XHTML |
2398 au BufNewFile,BufRead *.xhtml,*.xht setf xhtml | |
2399 | |
25880 | 2400 " X Pixmap (dynamically sets colors, this used to trigger on BufEnter to make |
2401 " it work better, but that breaks setting 'filetype' manually) | |
2402 au BufNewFile,BufRead *.xpm | |
7 | 2403 \ if getline(1) =~ "XPM2" | |
2404 \ setf xpm2 | | |
2405 \ else | | |
2406 \ setf xpm | | |
2407 \ endif | |
25880 | 2408 au BufNewFile,BufRead *.xpm2 setf xpm2 |
7 | 2409 |
2410 " XFree86 config | |
2411 au BufNewFile,BufRead XF86Config | |
2412 \ if getline(1) =~ '\<XConfigurator\>' | | |
2788 | 2413 \ let b:xf86conf_xfree86_version = 3 | |
7 | 2414 \ endif | |
2415 \ setf xf86conf | |
2751 | 2416 au BufNewFile,BufRead */xorg.conf.d/*.conf |
2417 \ let b:xf86conf_xfree86_version = 4 | | |
2418 \ setf xf86conf | |
7 | 2419 |
2420 " Xorg config | |
2751 | 2421 au BufNewFile,BufRead xorg.conf,xorg.conf-4 let b:xf86conf_xfree86_version = 4 | setf xf86conf |
7 | 2422 |
375 | 2423 " Xinetd conf |
2751 | 2424 au BufNewFile,BufRead */etc/xinetd.conf setf xinetd |
375 | 2425 |
7 | 2426 " XS Perl extension interface language |
2427 au BufNewFile,BufRead *.xs setf xs | |
2428 | |
2429 " X resources file | |
2430 au BufNewFile,BufRead .Xdefaults,.Xpdefaults,.Xresources,xdm-config,*.ad setf xdefaults | |
2431 | |
2432 " Xmath | |
2433 au BufNewFile,BufRead *.msc,*.msf setf xmath | |
2434 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
|
2435 \ if !dist#ft#FTnroff() | setf xmath | endif |
7 | 2436 |
1648 | 2437 " 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
|
2438 au BufNewFile,BufRead *.xml call dist#ft#FTxml() |
7 | 2439 |
2440 " XMI (holding UML models) is also XML | |
2441 au BufNewFile,BufRead *.xmi setf xml | |
2442 | |
26309
270ac1efc93b
patch 8.2.3685: Visual studio project files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26148
diff
changeset
|
2443 " CSPROJ files are Visual Studio.NET's XML-based C# project config files |
7 | 2444 au BufNewFile,BufRead *.csproj,*.csproj.user setf xml |
2445 | |
26309
270ac1efc93b
patch 8.2.3685: Visual studio project files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26148
diff
changeset
|
2446 " 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
|
2447 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
|
2448 |
270ac1efc93b
patch 8.2.3685: Visual studio project files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26148
diff
changeset
|
2449 " 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
|
2450 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
|
2451 |
7 | 2452 " Qt Linguist translation source and Qt User Interface Files are XML |
30533
4f6c0ca7530b
patch 9.0.0602: new TypeScript extensions are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30529
diff
changeset
|
2453 " However, for .ts TypeScript is more common. |
16364
db8f57e3e9f5
patch 8.1.1187: cannot recognize Pipfile
Bram Moolenaar <Bram@vim.org>
parents:
16344
diff
changeset
|
2454 au BufNewFile,BufRead *.ui setf xml |
7 | 2455 |
1125 | 2456 " TPM's are RDF-based descriptions of TeX packages (Nikolai Weibull) |
2457 au BufNewFile,BufRead *.tpm setf xml | |
2458 | |
389 | 2459 " Xdg menus |
2751 | 2460 au BufNewFile,BufRead */etc/xdg/menus/*.menu setf xml |
389 | 2461 |
1648 | 2462 " ATI graphics driver configuration |
2463 au BufNewFile,BufRead fglrxrc setf xml | |
2464 | |
14519 | 2465 " Web Services Description Language (WSDL) |
2466 au BufNewFile,BufRead *.wsdl setf xml | |
2467 | |
31217
e651c7a29c87
patch 9.0.0942: Workflow Description Language files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31200
diff
changeset
|
2468 " Workflow Description Language (WDL) |
e651c7a29c87
patch 9.0.0942: Workflow Description Language files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31200
diff
changeset
|
2469 au BufNewFile,BufRead *.wdl setf wdl |
e651c7a29c87
patch 9.0.0942: Workflow Description Language files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
31200
diff
changeset
|
2470 |
1648 | 2471 " XLIFF (XML Localisation Interchange File Format) is also XML |
2472 au BufNewFile,BufRead *.xlf setf xml | |
2473 au BufNewFile,BufRead *.xliff setf xml | |
2474 | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3356
diff
changeset
|
2475 " XML User Interface Language |
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3356
diff
changeset
|
2476 au BufNewFile,BufRead *.xul setf xml |
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3356
diff
changeset
|
2477 |
1648 | 2478 " X11 xmodmap (also see below) |
2479 au BufNewFile,BufRead *Xmodmap setf xmodmap | |
2480 | |
419 | 2481 " Xquery |
2482 au BufNewFile,BufRead *.xq,*.xql,*.xqm,*.xquery,*.xqy setf xquery | |
2483 | |
7 | 2484 " XSD |
2485 au BufNewFile,BufRead *.xsd setf xsd | |
2486 | |
2487 " Xslt | |
2488 au BufNewFile,BufRead *.xsl,*.xslt setf xslt | |
2489 | |
2490 " Yacc | |
5697 | 2491 au BufNewFile,BufRead *.yy,*.yxx,*.y++ setf yacc |
375 | 2492 |
2493 " Yacc or racc | |
12816
218102da5226
patch 8.0.1285: occasional crash when using a channel
Christian Brabandt <cb@256bit.org>
parents:
12810
diff
changeset
|
2494 au BufNewFile,BufRead *.y call dist#ft#FTy() |
7 | 2495 |
14991
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
2496 " Yaml |
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
2497 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
|
2498 |
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
2499 " Raml |
ebabd6fe3833
patch 8.1.0507: .raml files not properly detected
Bram Moolenaar <Bram@vim.org>
parents:
14974
diff
changeset
|
2500 au BufNewFile,BufRead *.raml setf raml |
7 | 2501 |
3082 | 2502 " yum conf (close enough to dosini) |
4229 | 2503 au BufNewFile,BufRead */etc/yum.conf setf dosini |
3082 | 2504 |
27336
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
2505 " YANG |
9ef98290c41a
patch 8.2.4196: various file types not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27326
diff
changeset
|
2506 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
|
2507 |
32011
b4d89bd4b517
patch 9.0.1337: yuck files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32004
diff
changeset
|
2508 " Yuck |
b4d89bd4b517
patch 9.0.1337: yuck files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32004
diff
changeset
|
2509 au BufNewFile,BufRead *.yuck setf yuck |
b4d89bd4b517
patch 9.0.1337: yuck files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
32004
diff
changeset
|
2510 |
3513 | 2511 " Zimbu |
4229 | 2512 au BufNewFile,BufRead *.zu setf zimbu |
6421 | 2513 " Zimbu Templates |
2514 au BufNewFile,BufRead *.zut setf zimbutempl | |
3513 | 2515 |
809 | 2516 " Zope |
2517 " dtml (zope dynamic template markup language), pt (zope page template), | |
2518 " 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
|
2519 au BufNewFile,BufRead *.dtml,*.pt,*.cpt call dist#ft#FThtml() |
809 | 2520 " 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
|
2521 au BufNewFile,BufRead *.zsql call dist#ft#SQL() |
809 | 2522 |
7 | 2523 " Z80 assembler asz80 |
2524 au BufNewFile,BufRead *.z8a setf z8a | |
2525 | |
2526 augroup END | |
2527 | |
2528 | |
2529 " Source the user-specified filetype file, for backwards compatibility with | |
2530 " Vim 5.x. | |
216 | 2531 if exists("myfiletypefile") && filereadable(expand(myfiletypefile)) |
7 | 2532 execute "source " . myfiletypefile |
2533 endif | |
2534 | |
2535 | |
2536 " Check for "*" after loading myfiletypefile, so that scripts.vim is only used | |
2537 " when there are no matching file name extensions. | |
2538 " Don't do this for compressed files. | |
2539 augroup filetypedetect | |
2540 au BufNewFile,BufRead * | |
2541 \ if !did_filetype() && expand("<amatch>") !~ g:ft_ignore_pat | |
2542 \ | runtime! scripts.vim | endif | |
2543 au StdinReadPost * if !did_filetype() | runtime! scripts.vim | endif | |
2544 | |
2545 | |
26390
24632928d8c5
patch 8.2.3726: README file in a config directory gets wrong filetype
Bram Moolenaar <Bram@vim.org>
parents:
26344
diff
changeset
|
2546 " 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
|
2547 " 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
|
2548 " 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
|
2549 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
|
2550 |
24632928d8c5
patch 8.2.3726: README file in a config directory gets wrong filetype
Bram Moolenaar <Bram@vim.org>
parents:
26344
diff
changeset
|
2551 |
7 | 2552 " Extra checks for when no filetype has been detected now. Mostly used for |
2553 " patterns that end in "*". E.g., "zsh*" matches "zsh.vim", but that's a Vim | |
2554 " script file. | |
216 | 2555 " Most of these should call s:StarSetf() to avoid names ending in .gz and the |
2556 " like are used. | |
7 | 2557 |
13051 | 2558 " More Apache style config files |
2559 au BufNewFile,BufRead */etc/proftpd/*.conf*,*/etc/proftpd/conf.*/* call s:StarSetf('apachestyle') | |
16208 | 2560 au BufNewFile,BufRead proftpd.conf* call s:StarSetf('apachestyle') |
13051 | 2561 |
2751 | 2562 " More Apache config files |
2563 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
|
2564 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 | 2565 |
26390
24632928d8c5
patch 8.2.3726: README file in a config directory gets wrong filetype
Bram Moolenaar <Bram@vim.org>
parents:
26344
diff
changeset
|
2566 " 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
|
2567 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
|
2568 |
531 | 2569 " Asterisk config file |
856 | 2570 au BufNewFile,BufRead *asterisk/*.conf* call s:StarSetf('asterisk') |
794 | 2571 au BufNewFile,BufRead *asterisk*/*voicemail.conf* call s:StarSetf('asteriskvm') |
531 | 2572 |
1125 | 2573 " Bazaar version control |
2574 au BufNewFile,BufRead bzr_log.* setf bzr | |
2575 | |
11358
a6b9cdcde548
patch 8.0.0564: cannot detect Bazel BUILD files on some systems
Christian Brabandt <cb@256bit.org>
parents:
11262
diff
changeset
|
2576 " 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
|
2577 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
|
2578 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
|
2579 endif |
a6b9cdcde548
patch 8.0.0564: cannot detect Bazel BUILD files on some systems
Christian Brabandt <cb@256bit.org>
parents:
11262
diff
changeset
|
2580 |
7 | 2581 " BIND zone |
805 | 2582 au BufNewFile,BufRead */named/db.*,*/bind/db.* call s:StarSetf('bindzone') |
7 | 2583 |
22971
f39f960f3ea0
patch 8.2.2032: cabalconfig and cabalproject filetypes not recognized
Bram Moolenaar <Bram@vim.org>
parents:
22918
diff
changeset
|
2584 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
|
2585 |
2788 | 2586 " Calendar |
2587 au BufNewFile,BufRead */.calendar/*, | |
2588 \*/share/calendar/*/calendar.*,*/share/calendar/calendar.* | |
2589 \ call s:StarSetf('calendar') | |
2590 | |
7 | 2591 " Changelog |
216 | 2592 au BufNewFile,BufRead [cC]hange[lL]og* |
2593 \ if getline(1) =~ '; urgency=' | |
2594 \| call s:StarSetf('debchangelog') | |
2595 \|else | |
2596 \| call s:StarSetf('changelog') | |
2597 \|endif | |
7 | 2598 |
2599 " Crontab | |
2751 | 2600 au BufNewFile,BufRead crontab,crontab.*,*/etc/cron.d/* call s:StarSetf('crontab') |
816 | 2601 |
2788 | 2602 " dnsmasq(8) configuration |
2603 au BufNewFile,BufRead */etc/dnsmasq.d/* call s:StarSetf('dnsmasq') | |
2604 | |
26753
c271b07a56f6
patch 8.2.3905: Dockerfile using prefix name not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26708
diff
changeset
|
2605 " Dockerfile |
26761
3dbb8fdcd179
patch 8.2.3909: Containerfile using prefix name not recognized
Bram Moolenaar <Bram@vim.org>
parents:
26753
diff
changeset
|
2606 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
|
2607 |
7 | 2608 " Dracula |
216 | 2609 au BufNewFile,BufRead drac.* call s:StarSetf('dracula') |
7 | 2610 |
2611 " Fvwm | |
1125 | 2612 au BufNewFile,BufRead */.fvwm/* call s:StarSetf('fvwm') |
7 | 2613 au BufNewFile,BufRead *fvwmrc*,*fvwm95*.hook |
216 | 2614 \ let b:fvwm_version = 1 | call s:StarSetf('fvwm') |
7 | 2615 au BufNewFile,BufRead *fvwm2rc* |
216 | 2616 \ if expand("<afile>:e") == "m4" |
2617 \| call s:StarSetf('fvwm2m4') | |
2618 \|else | |
2619 \| let b:fvwm_version = 2 | call s:StarSetf('fvwm') | |
2620 \|endif | |
7 | 2621 |
2034 | 2622 " Gedcom |
2788 | 2623 au BufNewFile,BufRead */tmp/lltmp* call s:StarSetf('gedcom') |
2034 | 2624 |
16208 | 2625 " Git |
29397
7f5db9decf32
patch 9.0.0041: a couple of filetype patterns do not have "*" before "/etc"
Bram Moolenaar <Bram@vim.org>
parents:
29338
diff
changeset
|
2626 au BufNewFile,BufRead */.gitconfig.d/*,*/etc/gitconfig.d/* call s:StarSetf('gitconfig') |
16208 | 2627 |
2628 " Gitolite | |
2629 au BufNewFile,BufRead */gitolite-admin/conf/* call s:StarSetf('gitolite') | |
2630 | |
7 | 2631 " GTK RC |
216 | 2632 au BufNewFile,BufRead .gtkrc*,gtkrc* call s:StarSetf('gtkrc') |
7 | 2633 |
2634 " Jam | |
216 | 2635 au BufNewFile,BufRead Prl*.*,JAM*.* call s:StarSetf('jam') |
7 | 2636 |
2637 " Jargon | |
2638 au! BufNewFile,BufRead *jarg* | |
216 | 2639 \ if getline(1).getline(2).getline(3).getline(4).getline(5) =~? 'THIS IS THE JARGON FILE' |
2640 \| call s:StarSetf('jargon') | |
2641 \|endif | |
7 | 2642 |
16208 | 2643 " Java Properties resource file (note: doesn't catch font.properties.pl) |
2644 au BufNewFile,BufRead *.properties_??_??_* call s:StarSetf('jproperties') | |
2645 | |
837 | 2646 " Kconfig |
2647 au BufNewFile,BufRead Kconfig.* call s:StarSetf('kconfig') | |
2648 | |
2788 | 2649 " Lilo: Linux loader |
2650 au BufNewFile,BufRead lilo.conf* call s:StarSetf('lilo') | |
2651 | |
27096
d539c144aeb4
patch 8.2.4077: not all Libsensors files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
27070
diff
changeset
|
2652 " Libsensors |
d539c144aeb4
patch 8.2.4077: not all Libsensors files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
27070
diff
changeset
|
2653 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
|
2654 |
2434
86532ee3ea41
Updated runtime files. Add logcheck filetype plugin. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2415
diff
changeset
|
2655 " Logcheck |
2751 | 2656 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
|
2657 |
7 | 2658 " Makefile |
216 | 2659 au BufNewFile,BufRead [mM]akefile* call s:StarSetf('make') |
7 | 2660 |
1648 | 2661 " Ruby Makefile |
2662 au BufNewFile,BufRead [rR]akefile* call s:StarSetf('ruby') | |
2663 | |
2664 " 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
|
2665 au BufNewFile,BufRead {neo,}mutt[[:alnum:]._-]\\\{6\} setf mail |
1648 | 2666 |
9555
9560a5b782ee
commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8
Christian Brabandt <cb@256bit.org>
parents:
9533
diff
changeset
|
2667 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
|
2668 |
389 | 2669 " Modconf |
2788 | 2670 au BufNewFile,BufRead */etc/modutils/* |
2671 \ if executable(expand("<afile>")) != 1 | |
2672 \| call s:StarSetf('modconf') | |
2673 \|endif | |
2751 | 2674 au BufNewFile,BufRead */etc/modprobe.* call s:StarSetf('modconf') |
389 | 2675 |
26398
34548fb19e0e
patch 8.2.3730: "/etc/Muttrc.d/README" gets filetype muttrc
Bram Moolenaar <Bram@vim.org>
parents:
26396
diff
changeset
|
2676 " 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
|
2677 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
|
2678 |
7 | 2679 " Mutt setup file |
1648 | 2680 au BufNewFile,BufRead .mutt{ng,}rc*,*/.mutt{ng,}/mutt{ng,}rc* call s:StarSetf('muttrc') |
484 | 2681 au BufNewFile,BufRead mutt{ng,}rc*,Mutt{ng,}rc* call s:StarSetf('muttrc') |
7 | 2682 |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2683 " Neomutt setup file |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2684 au BufNewFile,BufRead .neomuttrc*,*/.neomutt/neomuttrc* call s:StarSetf('neomuttrc') |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2685 au BufNewFile,BufRead neomuttrc*,Neomuttrc* call s:StarSetf('neomuttrc') |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12052
diff
changeset
|
2686 |
7 | 2687 " Nroff macros |
216 | 2688 au BufNewFile,BufRead tmac.* call s:StarSetf('nroff') |
7 | 2689 |
10348
c78513465e6e
commit https://github.com/vim/vim/commit/25de4c232d580583feadae11ab34e3cc6333c350
Christian Brabandt <cb@256bit.org>
parents:
10319
diff
changeset
|
2690 " OpenBSD hostname.if |
29397
7f5db9decf32
patch 9.0.0041: a couple of filetype patterns do not have "*" before "/etc"
Bram Moolenaar <Bram@vim.org>
parents:
29338
diff
changeset
|
2691 au BufNewFile,BufRead */etc/hostname.* call s:StarSetf('config') |
10348
c78513465e6e
commit https://github.com/vim/vim/commit/25de4c232d580583feadae11ab34e3cc6333c350
Christian Brabandt <cb@256bit.org>
parents:
10319
diff
changeset
|
2692 |
375 | 2693 " Pam conf |
2751 | 2694 au BufNewFile,BufRead */etc/pam.d/* call s:StarSetf('pamconf') |
375 | 2695 |
7 | 2696 " Printcap and Termcap |
2697 au BufNewFile,BufRead *printcap* | |
216 | 2698 \ if !did_filetype() |
2699 \| let b:ptcap_type = "print" | call s:StarSetf('ptcap') | |
2700 \|endif | |
7 | 2701 au BufNewFile,BufRead *termcap* |
216 | 2702 \ if !did_filetype() |
2703 \| let b:ptcap_type = "term" | call s:StarSetf('ptcap') | |
2704 \|endif | |
7 | 2705 |
4278 | 2706 " ReDIF |
2707 " 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
|
2708 au BufRead,BufNewFile *.rdf call dist#ft#Redif() |
4278 | 2709 |
2788 | 2710 " Remind |
2711 au BufNewFile,BufRead .reminders* call s:StarSetf('remind') | |
2712 | |
16208 | 2713 " SGML catalog file |
2714 au BufNewFile,BufRead sgml.catalog* call s:StarSetf('catalog') | |
2715 | |
24347
1df930301857
patch 8.2.2714: filetype pattern ending in star is too far up
Bram Moolenaar <Bram@vim.org>
parents:
24299
diff
changeset
|
2716 " 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
|
2717 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
|
2718 |
15527
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2719 " 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
|
2720 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
|
2721 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
|
2722 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
|
2723 |
26143
741cb243a7d2
patch 8.2.3604: not all sudoers files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
26141
diff
changeset
|
2724 " Sudoers |
741cb243a7d2
patch 8.2.3604: not all sudoers files are recognized
Bram Moolenaar <Bram@vim.org>
parents:
26141
diff
changeset
|
2725 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
|
2726 |
15527
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2727 " 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
|
2728 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
|
2729 |
963dd629d19a
patch 8.1.0771: some shell filetype patterns end in a star
Bram Moolenaar <Bram@vim.org>
parents:
14991
diff
changeset
|
2730 " 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
|
2731 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
|
2732 |
25935
c90b8e41b10e
patch 8.2.3501: tmux filetype dection is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
25880
diff
changeset
|
2733 " tmux configuration with arbitrary extension |
c90b8e41b10e
patch 8.2.3501: tmux filetype dection is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
25880
diff
changeset
|
2734 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
|
2735 |
16208 | 2736 " VHDL |
2737 au BufNewFile,BufRead *.vhdl_[0-9]* call s:StarSetf('vhdl') | |
2738 | |
7 | 2739 " Vim script |
216 | 2740 au BufNewFile,BufRead *vimrc* call s:StarSetf('vim') |
7 | 2741 |
2742 " Subversion commit file | |
45 | 2743 au BufNewFile,BufRead svn-commit*.tmp setf svn |
7 | 2744 |
2745 " X resources file | |
216 | 2746 au BufNewFile,BufRead Xresources*,*/app-defaults/*,*/Xresources/* call s:StarSetf('xdefaults') |
7 | 2747 |
2748 " XFree86 config | |
2749 au BufNewFile,BufRead XF86Config-4* | |
2751 | 2750 \ let b:xf86conf_xfree86_version = 4 | call s:StarSetf('xf86conf') |
7 | 2751 au BufNewFile,BufRead XF86Config* |
216 | 2752 \ if getline(1) =~ '\<XConfigurator\>' |
2751 | 2753 \| let b:xf86conf_xfree86_version = 3 |
216 | 2754 \|endif |
2755 \|call s:StarSetf('xf86conf') | |
7 | 2756 |
2757 " X11 xmodmap | |
216 | 2758 au BufNewFile,BufRead *xmodmap* call s:StarSetf('xmodmap') |
7 | 2759 |
375 | 2760 " Xinetd conf |
2751 | 2761 au BufNewFile,BufRead */etc/xinetd.d/* call s:StarSetf('xinetd') |
375 | 2762 |
3082 | 2763 " yum conf (close enough to dosini) |
4229 | 2764 au BufNewFile,BufRead */etc/yum.repos.d/* call s:StarSetf('dosini') |
3082 | 2765 |
15535
45a159f62dd0
patch 8.1.0775: matching too many files as zsh
Bram Moolenaar <Bram@vim.org>
parents:
15527
diff
changeset
|
2766 " 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
|
2767 au BufNewFile,BufRead .zsh*,.zlog*,.zcompdump* call s:StarSetf('zsh') |
216 | 2768 au BufNewFile,BufRead zsh*,zlog* call s:StarSetf('zsh') |
7 | 2769 |
2770 | |
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
|
2771 " 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
|
2772 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
|
2773 \ 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
|
2774 \| 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
|
2775 \| endif |
3237 | 2776 |
30215
40491de2f0a6
patch 9.0.0443: blueprint files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30202
diff
changeset
|
2777 " Blueprint markup files |
40491de2f0a6
patch 9.0.0443: blueprint files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
30202
diff
changeset
|
2778 au BufNewFile,BufRead *.blp setf blueprint |
2013 | 2779 |
2780 " Use the filetype detect plugins. They may overrule any of the previously | |
2781 " detected filetypes. | |
2782 runtime! ftdetect/*.vim | |
2783 | |
3326 | 2784 " NOTE: The above command could have ended the filetypedetect autocmd group |
3356 | 2785 " and started another one. Let's make sure it has ended to get to a consistent |
3326 | 2786 " state. |
2787 augroup END | |
2013 | 2788 |
11459
561b76ed9d12
patch 8.0.0613: the conf filetype is used before ftdetect from packages
Christian Brabandt <cb@256bit.org>
parents:
11442
diff
changeset
|
2789 " Generic configuration file. Use FALLBACK, it's just guessing! |
3326 | 2790 au filetypedetect BufNewFile,BufRead,StdinReadPost * |
7 | 2791 \ if !did_filetype() && expand("<amatch>") !~ g:ft_ignore_pat |
2792 \ && (getline(1) =~ '^#' || getline(2) =~ '^#' || getline(3) =~ '^#' | |
2793 \ || 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
|
2794 \ setf FALLBACK conf | |
7 | 2795 \ endif |
2796 | |
2797 | |
2798 " If the GUI is already running, may still need to install the Syntax menu. | |
2799 " Don't do it when the 'M' flag is included in 'guioptions'. | |
2800 if has("menu") && has("gui_running") | |
2801 \ && !exists("did_install_syntax_menu") && &guioptions !~# "M" | |
2802 source <sfile>:p:h/menu.vim | |
2803 endif | |
2804 | |
1219 | 2805 " Function called for testing all functions defined here. These are |
2806 " script-local, thus need to be executed here. | |
2807 " Returns a string with error messages (hopefully empty). | |
27770
219471ed2fec
patch 8.2.4411: bicep files are not recognized
Bram Moolenaar <Bram@vim.org>
parents:
27653
diff
changeset
|
2808 func TestFiletypeFuncs(testlist) |
1219 | 2809 let output = '' |
2810 for f in a:testlist | |
2811 try | |
2812 exe f | |
2813 catch | |
2814 let output = output . "\n" . f . ": " . v:exception | |
2815 endtry | |
2816 endfor | |
2817 return output | |
2818 endfunc | |
2819 | |
7 | 2820 " Restore 'cpoptions' |
2821 let &cpo = s:cpo_save | |
2822 unlet s:cpo_save |