.config/nvim/after/syntax/sh/pod.vim

changeset 1029
9265f8508e4c
equal deleted inserted replaced
1028:77e65ab97892 1029:9265f8508e4c
1 let s:current_syntax = b:current_syntax
2 unlet b:current_syntax
3 syn include @Pod syntax/pod.vim
4 syn region shPOD start="^=pod" start="^=head" end="^=cut" keepend contained contains=@Pod
5 let b:current_syntax = s:current_syntax
6
7 syn region shPODHeredoc start="^:<<=cut" end="^=cut" keepend contains=shPOD
8
9 hi! def link shPOD Comment
10 hi! def link podCommand SpecialComment
11 hi! def link podCmdText Question
12 hi! def link podFormat StorageClass

mercurial