aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler/php.vim
blob: e2bd0b59a7590f243468cb90a4c79c2d501cde02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
if exists('current_compiler') || &compatible
  finish
endif
let current_compiler = 'php'

if exists(':CompilerSet') != 2
  command -nargs=* CompilerSet setlocal <args>
endif

" 7.4.191 is the earliest version with the :S file name modifier, which we
" really should use if we can
if v:version >= 704 || v:version == 704 && has('patch191')
  CompilerSet makeprg=php\ -lq\ -f\ %:S
else
  CompilerSet makeprg=php\ -lq\ -f\ %
endif

" Here be copy-pasted dragons
CompilerSet errorformat=
      \%E<b>%.%#Parse\ error</b>:
        \\ %m\ in\ <b>%f</b>\ on\ line\ <b>%l</b><br\ />,
      \%W<b>%.%#Notice</b>:
        \\ %m\ in\ <b>%f</b>\ on\ line\ <b>%l</b><br\ />,
      \%E%.%#Parse\ error:
        \\ %m\ in\ %f\ on\ line\ %l,
      \%W%.%#Notice:
        \\ %m\ in\ %f\ on\ line\ %l,
      \%-G%.%#