aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/php
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-16 13:16:28 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-16 13:16:28 +1200
commit0d8a2b3c99df6bc357378962e979b991e3d92256 (patch)
treece8cdb62fd9a7b36b89270abbd463e41a14d9579 /vim/after/ftplugin/php
parentFix comments in vim/filetype.vim (diff)
downloaddotfiles-0d8a2b3c99df6bc357378962e979b991e3d92256.tar.gz
dotfiles-0d8a2b3c99df6bc357378962e979b991e3d92256.zip
Use `function!` consistently in ftplugins
Diffstat (limited to 'vim/after/ftplugin/php')
-rw-r--r--vim/after/ftplugin/php/check.vim34
1 files changed, 16 insertions, 18 deletions
diff --git a/vim/after/ftplugin/php/check.vim b/vim/after/ftplugin/php/check.vim
index 33077a72..58b41c21 100644
--- a/vim/after/ftplugin/php/check.vim
+++ b/vim/after/ftplugin/php/check.vim
@@ -10,26 +10,24 @@ if exists('b:undo_ftplugin')
endif
" Build function for checker
-if !exists('*s:PhpCheck')
- function s:PhpCheck()
- let l:save_makeprg = &l:makeprg
- let l:save_errorformat = &l:errorformat
- unlet! g:current_compiler
- compiler php
+function! s:PhpCheck()
+ let l:save_makeprg = &l:makeprg
+ let l:save_errorformat = &l:errorformat
+ unlet! g:current_compiler
+ compiler php
- " 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')
- make! %:S
- else
- make! %
- 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')
+ make! %:S
+ else
+ make! %
+ endif
- let &l:makeprg = l:save_makeprg
- let &l:errorformat = l:save_errorformat
- cwindow
- endfunction
-endif
+ let &l:makeprg = l:save_makeprg
+ let &l:errorformat = l:save_errorformat
+ cwindow
+endfunction
" Set up a mapping for the checker, if we're allowed
if !exists('g:no_plugin_maps') && !exists('g:no_php_maps')