1 " Vim support file to detect file types in scripts
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last change: 2008 Sep 05
6 " This file is called by an autocommand for every file that has just been
7 " loaded into a buffer. It checks if the type of file can be recognized by
8 " the file contents. The autocommand is in $VIMRUNTIME/filetype.vim.
11 " Only do the rest when the FileType autocommand has not been triggered yet.
16 " Load the user defined scripts file first
17 " Only do this when the FileType autocommand has not been triggered yet
18 if exists("myscriptsfile") && filereadable(expand(myscriptsfile))
19 execute "source " . myscriptsfile
25 " Line continuation is used here, remove 'C' from 'cpoptions'
29 let s:line1 = getline(1)
32 " A script that starts with "#!".
34 " Check for a line like "#!/usr/bin/env VAR=val bash". Turn it into
35 " "#!/usr/bin/bash" to make matching easier.
36 if s:line1 =~ '^#!\s*\S*\<env\s'
37 let s:line1 = substitute(s:line1, '\S\+=\S\+', '', 'g')
38 let s:line1 = substitute(s:line1, '\<env\s\+', '', '')
41 " Get the program name.
42 " Only accept spaces in PC style paths: "#!c:/program files/perl [args]".
43 " If the word env is used, use the first word after the space:
44 " "#!/usr/bin/env perl [path/args]"
45 " If there is no path use the first word: "#!perl [path/args]".
46 " Otherwise get the last word after a slash: "#!/usr/bin/perl [path/args]".
47 if s:line1 =~ '^#!\s*\a:[/\\]'
48 let s:name = substitute(s:line1, '^#!.*[/\\]\(\i\+\).*', '\1', '')
49 elseif s:line1 =~ '^#!.*\<env\>'
50 let s:name = substitute(s:line1, '^#!.*\<env\>\s\+\(\i\+\).*', '\1', '')
51 elseif s:line1 =~ '^#!\s*[^/\\ ]*\>\([^/\\]\|$\)'
52 let s:name = substitute(s:line1, '^#!\s*\([^/\\ ]*\>\).*', '\1', '')
54 let s:name = substitute(s:line1, '^#!\s*\S*[/\\]\(\i\+\).*', '\1', '')
57 " tcl scripts may have #!/bin/sh in the first line and "exec wish" in the
58 " third line. Suggested by Steven Atkinson.
59 if getline(3) =~ '^exec wish'
63 " Bourne-like shell scripts: bash bash2 ksh ksh93 sh
64 if s:name =~ '^\(bash\d*\|\|ksh\d*\|sh\)\>'
65 call SetFileTypeSH(s:line1) " defined in filetype.vim
68 elseif s:name =~ '^csh\>'
69 if exists("g:filetype_csh")
70 call SetFileTypeShell(g:filetype_csh)
72 call SetFileTypeShell("csh")
76 elseif s:name =~ '^tcsh\>'
77 call SetFileTypeShell("tcsh")
80 elseif s:name =~ '^zsh\>'
84 elseif s:name =~ '^\(tclsh\|wish\|expectk\|itclsh\|itkwish\)\>'
88 elseif s:name =~ '^expect\>'
92 elseif s:name =~ '^gnuplot\>'
96 elseif s:name =~ 'make\>'
100 elseif s:name =~ 'lua'
104 elseif s:name =~ 'perl'
108 elseif s:name =~ 'php'
112 elseif s:name =~ 'python'
116 elseif s:name =~ '^groovy\>'
120 elseif s:name =~ 'ruby'
124 elseif s:name =~ '^bc\>'
128 elseif s:name =~ 'sed\>'
132 elseif s:name =~ 'ocaml'
136 elseif s:name =~ 'awk\>'
139 " Website MetaLanguage
140 elseif s:name =~ 'wml'
144 elseif s:name =~ 'scheme'
148 elseif s:name =~ 'cfengine'
155 " File does not start with "#!".
157 let s:line2 = getline(2)
158 let s:line3 = getline(3)
159 let s:line4 = getline(4)
160 let s:line5 = getline(5)
162 " Bourne-like shell scripts: sh ksh bash bash2
164 call SetFileTypeSH(s:line1) " defined in filetype.vim
167 elseif s:line1 =~ '^#compdef\>' || s:line1 =~ '^#autoload\>'
171 elseif s:line1 =~ '^From \([a-zA-Z][a-zA-Z_0-9\.=-]*\(@[^ ]*\)\=\|-\) .* \(19\|20\)\d\d$'
175 elseif s:line1 =~ '^<[%&].*>'
178 " Vim scripts (must have '" vim' as the first line to trigger this)
179 elseif s:line1 =~ '^" *[vV]im$'
183 elseif s:line1 =~ '^\*\* LambdaMOO Database, Format Version \%([1-3]\>\)\@!\d\+ \*\*$'
187 " - "diff" in first line (context diff)
188 " - "Only in " in first line
189 " - "--- " in first line and "+++ " in second line (unified diff).
190 " - "*** " in first line and "--- " in second line (context diff).
191 " - "# It was generated by makepatch " in the second line (makepatch diff).
192 " - "Index: <filename>" in the first line (CVS file)
193 " - "=== ", line of "=", "---", "+++ " (SVK diff)
194 " - "=== ", "--- ", "+++ " (bzr diff, common case)
195 " - "=== (removed|added|renamed|modified)" (bzr diff, alternative)
196 elseif s:line1 =~ '^\(diff\>\|Only in \|\d\+\(,\d\+\)\=[cda]\d\+\>\|# It was generated by makepatch \|Index:\s\+\f\+\r\=$\|===== \f\+ \d\+\.\d\+ vs edited\|==== //\f\+#\d\+\)'
197 \ || (s:line1 =~ '^--- ' && s:line2 =~ '^+++ ')
198 \ || (s:line1 =~ '^\* looking for ' && s:line2 =~ '^\* comparing to ')
199 \ || (s:line1 =~ '^\*\*\* ' && s:line2 =~ '^--- ')
200 \ || (s:line1 =~ '^=== ' && ((s:line2 =~ '^=\{66\}' && s:line3 =~ '^--- ' && s:line4 =~ '^+++') || (s:line2 =~ '^--- ' && s:line3 =~ '^+++ ')))
201 \ || (s:line1 =~ '^=== \(removed\|added\|renamed\|modified\)')
204 " PostScript Files (must have %!PS as the first line, like a2ps output)
205 elseif s:line1 =~ '^%![ \t]*PS'
208 " M4 scripts: Guess there is a line that starts with "dnl".
209 elseif s:line1 =~ '^\s*dnl\>'
210 \ || s:line2 =~ '^\s*dnl\>'
211 \ || s:line3 =~ '^\s*dnl\>'
212 \ || s:line4 =~ '^\s*dnl\>'
213 \ || s:line5 =~ '^\s*dnl\>'
217 elseif $TERM == "amiga"
218 \ && (s:line1 =~ "^;" || s:line1 =~ '^\.[bB][rR][aA]')
221 " SiCAD scripts (must have procn or procd as the first line to trigger this)
222 elseif s:line1 =~? '^ *proc[nd] *$'
225 " Purify log files start with "**** Purify"
226 elseif s:line1 =~ '^\*\*\*\* Purify'
230 elseif s:line1 =~ '<?\s*xml.*?>'
233 " XHTML (e.g.: PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN")
234 elseif s:line1 =~ '\<DTD\s\+XHTML\s'
237 " HTML (e.g.: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN")
238 elseif s:line1 =~? '\<DOCTYPE\s\+html\>'
242 elseif s:line1 =~ '^%PDF-'
246 elseif s:line1 =~ '^\x\{7}: \x\{2} \=\x\{2} \=\x\{2} \=\x\{2} '
250 elseif s:line1 =~ '^RCS file:' || s:line2 =~ '^RCS file:'
254 elseif s:line2 =~ '^CVS:' || getline("$") =~ '^CVS: '
258 elseif s:line1 =~ '^!R!'
262 elseif s:line1 =~ '^SEND-PR:'
266 elseif s:line1 =~ '^SNNS network definition file'
268 elseif s:line1 =~ '^SNNS pattern definition file'
270 elseif s:line1 =~ '^SNNS result file'
274 elseif s:line1 =~ '^%.\{-}[Vv]irata'
275 \ || s:line2 =~ '^%.\{-}[Vv]irata'
276 \ || s:line3 =~ '^%.\{-}[Vv]irata'
277 \ || s:line4 =~ '^%.\{-}[Vv]irata'
278 \ || s:line5 =~ '^%.\{-}[Vv]irata'
282 elseif s:line1 =~ '^\(\[pid \d\+\] \)\=[0-9:.]* *execve(' || s:line1 =~ '^__libc_start_main'
286 elseif s:line1 =~ '^\* $$ JOB\>' || s:line1 =~ '^// *JOB\>'
290 elseif s:line4 =~ 'K & K Associates' || s:line2 =~ 'TAK 2000'
292 elseif s:line3 =~ 'S Y S T E M S I M P R O V E D '
294 elseif getline(6) =~ 'Run Date: '
296 elseif getline(9) =~ 'Node File 1'
300 elseif s:line1.s:line2.s:line3.s:line4 =~ '^; <<>> DiG [0-9.]\+ <<>>\|BIND.*named\|$ORIGIN\|$TTL\|IN\s\+SOA'
304 elseif s:line1 =~ '|\*\{1,80}' && s:line2 =~ 'VRC '
305 \ || s:line2 =~ '|\*\{1,80}' && s:line3 =~ 'VRC '
309 elseif s:line1 =~ '^==\d\+== valgrind' || s:line3 =~ '^==\d\+== Using valgrind'
312 " Renderman Interface Bytestream
313 elseif s:line1 =~ '^##RenderMan'
317 elseif s:line1 =~ 'exec\s\+\S*scheme' || s:line2 =~ 'exec\s\+\S*scheme'
321 elseif s:line1 =~ '^\(commit\|tree\|object\) \x\{40\}$\|^tag \S\+$'
327 while getline(s:lnum) =~ "^? " && s:lnum < line("$")
330 if getline(s:lnum) =~ '^Index:\s\+\f\+$'
333 " locale input files: Formal Definitions of Cultural Conventions
334 " filename must be like en_US, fr_FR@euro or en_US.UTF-8
335 elseif expand("%") =~ '\a\a_\a\a\($\|[.@]\)\|i18n$\|POSIX$\|translit_'
337 while s:lnum < 100 && s:lnum < line("$")
338 if getline(s:lnum) =~ '^LC_\(IDENTIFICATION\|CTYPE\|COLLATE\|MONETARY\|NUMERIC\|TIME\|MESSAGES\|PAPER\|TELEPHONE\|MEASUREMENT\|NAME\|ADDRESS\)$'
349 unlet s:line2 s:line3 s:line4 s:line5
353 " Restore 'cpoptions'
354 let &cpo = s:cpo_save
356 unlet s:cpo_save s:line1