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

Fri, 16 Aug 2019 15:12:09 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 16 Aug 2019 15:12:09 -0400
changeset 783
22ea15db4e3d
parent 745
dd23da749523
child 910
272ba799a19e
permissions
-rw-r--r--

alias fixup

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

syn sync minlines=50

" 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

" Add matches for contrib/function-parameters.vim, but don't apply to fat-arrow cases
syn match perlFunction +\<method\>\(\_s*=>\)\@!\_s*+ nextgroup=perlSubName
syn match perlFunction +\<fun\>\(\_s*=>\)\@!\_s*+ nextgroup=perlSubName

" Tweak some colors, making POD stand out less
hi! def link perlPOD      Comment
hi! def link podCommand   SpecialComment
hi! def link podCmdText   Question
hi! def link podFormat    StorageClass

mercurial