diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-08-11 23:37:32 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-08-11 23:37:32 +0200 |
commit | ede981a27f3762f785e59f53c77b4f27d042f315 (patch) | |
tree | 56a3c7526288b0b02d157d11adf5cdc4ec2cdb82 /runtime/syntax/pod.vim | |
parent | fae6c1a02de62bf09f2472bcd35969b8f2b786c8 (diff) | |
download | vim-git-ede981a27f3762f785e59f53c77b4f27d042f315.tar.gz |
Runtime file updates.
Diffstat (limited to 'runtime/syntax/pod.vim')
-rw-r--r-- | runtime/syntax/pod.vim | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/runtime/syntax/pod.vim b/runtime/syntax/pod.vim index 9809d00b5..f21e72a70 100644 --- a/runtime/syntax/pod.vim +++ b/runtime/syntax/pod.vim @@ -1,7 +1,8 @@ " Vim syntax file -" Language: Perl POD format -" Maintainer: Scott Bigham <dsb@killerbunnies.org> -" Last Change: 2007 Jan 21 +" Language: Perl POD format +" Maintainer: Andy Lester <andy@petdance.com> +" URL: http://github.com/petdance/vim-perl +" Last Change: 2009-08-14 " To add embedded POD documentation highlighting to your syntax file, add " the commands: @@ -25,15 +26,15 @@ elseif exists("b:current_syntax") endif " POD commands -syn match podCommand "^=head[1234]" nextgroup=podCmdText contains=@NoSpell -syn match podCommand "^=item" nextgroup=podCmdText contains=@NoSpell -syn match podCommand "^=over" nextgroup=podOverIndent skipwhite contains=@NoSpell -syn match podCommand "^=back" contains=@NoSpell -syn match podCommand "^=cut" contains=@NoSpell -syn match podCommand "^=pod" contains=@NoSpell -syn match podCommand "^=for" nextgroup=podForKeywd skipwhite contains=@NoSpell -syn match podCommand "^=begin" nextgroup=podForKeywd skipwhite contains=@NoSpell -syn match podCommand "^=end" nextgroup=podForKeywd skipwhite contains=@NoSpell +syn match podCommand "^=head[1234]" nextgroup=podCmdText contains=@NoSpell +syn match podCommand "^=item" nextgroup=podCmdText contains=@NoSpell +syn match podCommand "^=over" nextgroup=podOverIndent skipwhite contains=@NoSpell +syn match podCommand "^=back" contains=@NoSpell +syn match podCommand "^=cut" contains=@NoSpell +syn match podCommand "^=pod" contains=@NoSpell +syn match podCommand "^=for" nextgroup=podForKeywd skipwhite contains=@NoSpell +syn match podCommand "^=begin" nextgroup=podForKeywd skipwhite contains=@NoSpell +syn match podCommand "^=end" nextgroup=podForKeywd skipwhite contains=@NoSpell " Text of a =head1, =head2 or =item command syn match podCmdText ".*$" contained contains=podFormat,@NoSpell |