summaryrefslogtreecommitdiffstats
path: root/runtime/compiler/php.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-07-09 15:44:17 +0200
committerBram Moolenaar <Bram@vim.org>2013-07-09 15:44:17 +0200
commitdd007ed5853507f2071c3a152645088abf3c910b (patch)
tree52681c85f6f0c36a0f1e8332ea19d2fa675c967e /runtime/compiler/php.vim
parent4ca8d5fefd047aad898c7a09c619cd69314741f5 (diff)
Updated runtime files. Fix NL translations.
Diffstat (limited to 'runtime/compiler/php.vim')
-rw-r--r--runtime/compiler/php.vim18
1 files changed, 8 insertions, 10 deletions
diff --git a/runtime/compiler/php.vim b/runtime/compiler/php.vim
index 2f4f032b9b..92f93b89fc 100644
--- a/runtime/compiler/php.vim
+++ b/runtime/compiler/php.vim
@@ -1,8 +1,7 @@
" Vim compiler file
-" Compiler: PHP
-" Maintainer: Doug Kearns <djkea2@gus.gscit.monash.edu.au>
-" URL: http://gus.gscit.monash.edu.au/~djkea2/vim/compiler/php.vim
-" Last Change: 2004 Nov 27
+" Compiler: PHP CLI
+" Maintainer: Doug Kearns <dougkearns@gmail.com>
+" Last Change: 2013 Jun 25
if exists("current_compiler")
finish
@@ -17,12 +16,11 @@ let s:cpo_save = &cpo
set cpo-=C
CompilerSet makeprg=php\ -lq
-
-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\ />,
- \%EParse\ error:\ %m\ in\ %f\ on\ line\ %l,
- \%WNotice:\ %m\ in\ %f</b>\ on\ line\ %l,
- \%-G%.%#
+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%.%#
let &cpo = s:cpo_save
unlet s:cpo_save