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.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/after/ftplugin/perl/lint.vim b/vim/after/ftplugin/perl/lint.vim
index 8dc4aafe..0f2f0cd7 100644
--- a/vim/after/ftplugin/perl/lint.vim
+++ b/vim/after/ftplugin/perl/lint.vim
@@ -15,10 +15,10 @@ if !exists('*s:PerlLint')
let l:save_makeprg = &l:makeprg
let l:save_errorformat = &l:errorformat
compiler perlcritic
- lmake!
+ make!
let &l:makeprg = l:save_makeprg
let &l:errorformat = l:save_errorformat
- lwindow
+ cwindow
endfunction
endif