aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/perl/check.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-19 23:33:08 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-19 23:33:08 +1300
commit2f0521a6a2452ea496708df1a138d78e77571df3 (patch)
tree7cad631d27a3497f0a0849f0a76267e9d5e15efc /vim/after/ftplugin/perl/check.vim
parentUse quickfix window for check/lint (diff)
downloaddotfiles-2f0521a6a2452ea496708df1a138d78e77571df3.tar.gz
dotfiles-2f0521a6a2452ea496708df1a138d78e77571df3.zip
Force g:current_compiler removal before check/lint
This seems to be necessary for Vim 6.
Diffstat (limited to 'vim/after/ftplugin/perl/check.vim')
-rw-r--r--vim/after/ftplugin/perl/check.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/vim/after/ftplugin/perl/check.vim b/vim/after/ftplugin/perl/check.vim
index 92f4b7a6..df90784f 100644
--- a/vim/after/ftplugin/perl/check.vim
+++ b/vim/after/ftplugin/perl/check.vim
@@ -14,6 +14,7 @@ if !exists('*s:PerlCheck')
function s:PerlCheck()
let l:save_makeprg = &l:makeprg
let l:save_errorformat = &l:errorformat
+ unlet! g:current_compiler
compiler perl
make!
let &l:makeprg = l:save_makeprg