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

Fri, 03 Feb 2017 15:50:12 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 03 Feb 2017 15:50:12 -0500
changeset 498
238a0de521e6
parent 371
034b31ed5212
child 643
e23cf51aca43
permissions
-rw-r--r--

Don't mess with the cursor on commit or rebase stuff either.

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 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=15

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

mercurial