Mercurial > hg > RemoteEditor > vim7
diff runtime/syntax/pod.vim @ 39:c16898406ff2
synchorinize version 7.3.081
author | one@zeus.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Fri, 17 Dec 2010 17:43:06 +0900 |
parents | 76efa0be13f1 |
children |
line wrap: on
line diff
--- a/runtime/syntax/pod.vim Wed Nov 26 18:20:31 2008 +0900 +++ b/runtime/syntax/pod.vim Fri Dec 17 17:43:06 2010 +0900 @@ -1,7 +1,9 @@ " 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> +" Previously: Scott Bigham <dsb@killerbunnies.org> +" 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 +27,15 @@ 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