2022-06-15 00:20:32 -07:00
|
|
|
" Vim compiler file
|
|
|
|
" Compiler: perlcritic
|
|
|
|
" Maintainer: vim-perl <vim-perl@googlegroups.com>
|
|
|
|
" Author: Doug Kearns <dougkearns@gmail.com>
|
|
|
|
" Homepage: https://github.com/vim-perl/vim-perl
|
|
|
|
" Bugs/requests: https://github.com/vim-perl/vim-perl/issues
|
|
|
|
" License: Vim License (see :help license)
|
|
|
|
" Last Change: 2021 Oct 20
|
2024-04-04 14:49:21 -07:00
|
|
|
" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
|
2022-06-15 00:20:32 -07:00
|
|
|
|
|
|
|
if exists("current_compiler")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let current_compiler = "perlcritic"
|
|
|
|
|
|
|
|
let s:cpo_save = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
|
|
|
CompilerSet makeprg=perlcritic\ --nocolor\ --quiet\ --verbose\ \"\\%f:\\%l:\\%c:\\%s:\\%m\\n\"
|
|
|
|
CompilerSet errorformat=%f:%l:%c:%n:%m,
|
|
|
|
\%-G%.%#
|
|
|
|
|
|
|
|
let &cpo = s:cpo_save
|
|
|
|
unlet s:cpo_save
|