home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-09-25 | 2.1 KB | 66 lines | [TEXT/VIM!] |
- " Vim syntax file
- " Language: Perl POD format
- " Maintainer: Scott Bigham <dsb@cs.duke.edu>
- " Last change: 1999 Jul 03
-
- " To add embedded POD documentation highlighting to your syntax file, add
- " the commands:
- "
- " syn include @Pod <sfile>:p:h/pod.vim
- " syn region myPOD start="^=pod" start="^=head" end="^=cut" keepend contained contains=@Pod
- "
- " and add myPod to the contains= list of some existing region, probably a
- " comment. The "keepend" flag is needed because "=cut" is matched as a
- " pattern in its own right.
-
-
- " Remove any old syntax stuff hanging around (this is suppressed
- " automatically by ":syn include" if necessary).
- syn clear
-
- " POD commands
- syn match podCommand "^=head[12]" nextgroup=podCmdText
- syn match podCommand "^=item" nextgroup=podCmdText
- syn match podCommand "^=over" nextgroup=podOverIndent skipwhite
- syn match podCommand "^=back"
- syn match podCommand "^=cut"
- syn match podCommand "^=pod"
- syn match podCommand "^=for" nextgroup=podForKeywd skipwhite
- syn match podCommand "^=begin" nextgroup=podForKeywd skipwhite
- syn match podCommand "^=end" nextgroup=podForKeywd skipwhite
-
- " Text of a =head1, =head2 or =item command
- syn match podCmdText ".*$" contained contains=podFormat
-
- " Indent amount of =over command
- syn match podOverIndent "\d\+" contained
-
- " Formatter identifier keyword for =for, =begin and =end commands
- syn match podForKeywd "\S\+" contained
-
- " An indented line, to be displayed verbatim
- syn match podVerbatimLine "^\s.*$"
-
- " Inline textual items handled specially by POD
- syn match podSpecial "\(\<\|&\)\I\i*\(::\I\i*\)*([^)]*)"
- syn match podSpecial "[$@%]\I\i*\(::\I\i*\)*\>"
-
- " Special formatting sequences
- syn region podFormat start="[IBSCLFXEZ]<" end=">" oneline contains=podFormat
-
- if !exists("did_pod_syntax_inits")
- let did_pod_syntax_inits = 1
- " The default methods for highlighting. Can be overridden later.
- hi link podCommand Statement
- hi link podCmdText String
- hi link podOverIndent Number
- hi link podForKeywd Identifier
- hi link podFormat Identifier
- hi link podVerbatimLine PreProc
- hi link podSpecial Identifier
- endif
-
- let b:current_syntax = "pod"
-
- " vim: ts=8
-