add POD highlighting for shell

Wed, 03 Aug 2016 21:36:35 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 03 Aug 2016 21:36:35 -0400
changeset 363
394bcf0d5bac
parent 362
7c5b0e94b399
child 364
dc8ef0de424d

add POD highlighting for shell

.vim/after/syntax/sh/custom.vim file | annotate | diff | comparison | revisions
new file mode 100644
--- /dev/null
+++ b/.vim/after/syntax/sh/custom.vim
@@ -0,0 +1,15 @@
+
+let s:current_syntax = b:current_syntax
+unlet b:current_syntax
+syn include @Pod syntax/pod.vim
+syn region shPOD        start="^=pod" start="^=head" end="^=cut" keepend contained contains=@Pod
+let b:current_syntax = s:current_syntax
+
+syn region shPODHeredoc start="^:<<=cut" end="^=cut" keepend contains=shPOD
+
+hi! def link shPOD        Comment
+hi! def link podCommand   SpecialComment
+hi! def link podCmdText   Question
+hi! def link podFormat    StorageClass
+
+map <F10> :echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<' . synIDattr(synID(line("."),col("."),0),"name") . "> lo<" . synIDattr(synIDtrans(synID(line("."),col("."),1)),"name") . ">"<CR>

mercurial