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

Tue, 02 May 2023 17:34:25 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Tue, 02 May 2023 17:34:25 -0500
changeset 1108
8f5cf4eb7f66
parent 1029
9265f8508e4c
permissions
-rw-r--r--

stub reply

1029
9265f8508e4c Copy other ft and plugin settings
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
1 let s:current_syntax = b:current_syntax
9265f8508e4c Copy other ft and plugin settings
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
2 unlet b:current_syntax
9265f8508e4c Copy other ft and plugin settings
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
3 syn include @Pod syntax/pod.vim
9265f8508e4c Copy other ft and plugin settings
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
4 syn region shPOD start="^=pod" start="^=head" end="^=cut" keepend contained contains=@Pod
9265f8508e4c Copy other ft and plugin settings
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
5 let b:current_syntax = s:current_syntax
9265f8508e4c Copy other ft and plugin settings
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
6
9265f8508e4c Copy other ft and plugin settings
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
7 syn region shPODHeredoc start="^:<<=cut" end="^=cut" keepend contains=shPOD
9265f8508e4c Copy other ft and plugin settings
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
8
9265f8508e4c Copy other ft and plugin settings
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
9 hi! def link shPOD Comment
9265f8508e4c Copy other ft and plugin settings
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
10 hi! def link podCommand SpecialComment
9265f8508e4c Copy other ft and plugin settings
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
11 hi! def link podCmdText Question
9265f8508e4c Copy other ft and plugin settings
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
12 hi! def link podFormat StorageClass

mercurial