diff -r f5f3abf44414 -r 7ce40ff50871 .vim/compiler/perlcritic.vim --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.vim/compiler/perlcritic.vim Sun Sep 01 12:59:13 2013 +0200 @@ -0,0 +1,22 @@ +" Vim Compiler File +" Compiler: perlcritic +" Maintainer: Scott Peshak +" Last Change: 2006 Dec 19 + +if exists("current_compiler") + finish +endif +let current_compiler = "perlcritic" + +if exists(":CompilerSet") != 2 + command -nargs=* CompilerSet setlocal +endif + +let s:cpo_save = &cpo +set cpo-=C + +CompilerSet makeprg=perlcritic\ -verbose\ 1\ -2\ % +CompilerSet errorformat=%f:%l:%c:%m + +let &cpo = s:cpo_save +unlet s:cpo_save