neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

podchecker.vim (834B)


      1 " Vim compiler file
      2 " Compiler:      podchecker
      3 " Maintainer:    vim-perl <vim-perl@googlegroups.com> (need to be subscribed to post)
      4 " Author:        Doug Kearns <dougkearns@gmail.com>
      5 " Homepage:      https://github.com/vim-perl/vim-perl
      6 " Bugs/requests: https://github.com/vim-perl/vim-perl/issues
      7 " License:       Vim License (see :help license)
      8 " Last Change:   2021 Oct 20
      9 "                2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
     10 
     11 if exists("current_compiler")
     12  finish
     13 endif
     14 let current_compiler = "podchecker"
     15 
     16 let s:cpo_save = &cpo
     17 set cpo&vim
     18 
     19 CompilerSet makeprg=podchecker\ -w
     20 CompilerSet errorformat=\*\*\*\ %tRROR:\ %m\ at\ line\ %l\ in\ file\ %f,
     21                       \\*\*\*\ %tARNING:\ %m\ at\ line\ %l\ in\ file\ %f,
     22                       \%-G%.%#
     23 
     24 let &cpo = s:cpo_save
     25 unlet s:cpo_save