" 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