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

Fri, 05 Aug 2016 14:24:36 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 05 Aug 2016 14:24:36 -0400
changeset 367
a9ef42db273e
parent 362
7c5b0e94b399
child 371
034b31ed5212
permissions
-rw-r--r--

adjust timeouts

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+=:

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

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

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

mercurial