aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/perl
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/perl')
-rw-r--r--vim/after/ftplugin/perl/check.vim4
-rw-r--r--vim/after/ftplugin/perl/lint.vim4
2 files changed, 4 insertions, 4 deletions
diff --git a/vim/after/ftplugin/perl/check.vim b/vim/after/ftplugin/perl/check.vim
index 1a3a6dc8..92f4b7a6 100644
--- a/vim/after/ftplugin/perl/check.vim
+++ b/vim/after/ftplugin/perl/check.vim
@@ -15,10 +15,10 @@ if !exists('*s:PerlCheck')
let l:save_makeprg = &l:makeprg
let l:save_errorformat = &l:errorformat
compiler perl
- lmake!
+ make!
let &l:makeprg = l:save_makeprg
let &l:errorformat = l:save_errorformat
- lwindow
+ cwindow
endfunction
endif
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