aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler/php.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/compiler/php.vim')
-rw-r--r--vim/compiler/php.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/compiler/php.vim b/vim/compiler/php.vim
index aeb171c5..2d5f4f69 100644
--- a/vim/compiler/php.vim
+++ b/vim/compiler/php.vim
@@ -10,9 +10,9 @@ 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\ %:S
+ CompilerSet makeprg=php\ -lq\ -f\ %:S
else
- CompilerSet makeprg=php\ -lq\ %
+ CompilerSet makeprg=php\ -lq\ -f\ %
endif
" Here be copy-pasted dragons