.vim/after/syntax/perl/custom.vim

Sun, 01 Oct 2017 17:01:29 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 01 Oct 2017 17:01:29 -0400
changeset 652
2d0fad481fa5
parent 651
4a0d4c07b49e
child 656
a74ea5b0fc73
permissions
-rw-r--r--

maybe this will be satisfactory

compiler perl
" even with g:perl_compiler_force_warnings = 0, perl -w is used and
" that's just noisy with intentional no-warnings blocks out there

setlocal makeprg=perl\ -c\ %\ $*
setlocal iskeyword+=:

if g:perl_tidy_equalprg
  setlocal equalprg=perltidy\ -q
endif

" this keeps indents from jumping more than one level
let b:indent_use_syntax = 0

" Add match for =method and =func from Pod::Weaver
syn match podCommand "^=method" contained nextgroup=podCmdText contains=@NoSpell
syn match podCommand "^=func" contained nextgroup=podCmdText contains=@NoSpell

syn sync minlines=50

" Tweak some colors
hi! def link perlPOD      Comment
hi! def link podCommand   SpecialComment
hi! def link podCmdText   Question
hi! def link podFormat    StorageClass

mercurial