Mercurial > vim
view runtime/compiler/perlcritic.vim @ 33043:ee683d311c05 v9.0.1812
patch 9.0.1812: CI still fails with sodium_mlock error()
Commit: https://github.com/vim/vim/commit/93ebb5e75e564403624314c84c97293427d001d6
Author: Christian Brabandt <cb@256bit.org>
Date: Mon Aug 28 21:17:36 2023 +0200
patch 9.0.1812: CI still fails with sodium_mlock error()
Problem: CI still fails with sodium_mlock error()
Solution: Catch and ignore E1230 error in test_crypt
closes: #12939
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 28 Aug 2023 21:30:05 +0200 |
parents | d1fe80fb35e6 |
children | e1df51f68736 |
line wrap: on
line source
" 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 if exists("current_compiler") finish endif let current_compiler = "perlcritic" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif 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