aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/perl/lint.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/perl/lint.vim')
-rw-r--r--vim/after/ftplugin/perl/lint.vim3
1 files changed, 1 insertions, 2 deletions
diff --git a/vim/after/ftplugin/perl/lint.vim b/vim/after/ftplugin/perl/lint.vim
index 61856825..8dc4aafe 100644
--- a/vim/after/ftplugin/perl/lint.vim
+++ b/vim/after/ftplugin/perl/lint.vim
@@ -14,8 +14,7 @@ if !exists('*s:PerlLint')
function s:PerlLint()
let l:save_makeprg = &l:makeprg
let l:save_errorformat = &l:errorformat
- let &l:makeprg = 'perlcritic --quiet --verbose 1 %:S'
- let &l:errorformat = '%f:%l:%c:%m'
+ compiler perlcritic
lmake!
let &l:makeprg = l:save_makeprg
let &l:errorformat = l:save_errorformat