blob: 16a75b1edaa07ad90b18061fe2be3a273cf85a46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
" Vim Compiler File
" Compiler: perlcritic
" Maintainer: Scott Peshak <speshak@gmail.com>
" Last Change: 2006 Dec 19
if exists("current_compiler")
finish
endif
let current_compiler = "perlcritic"
if exists(":CompilerSet") != 2
command -nargs=* CompilerSet setlocal <args>
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
|