Have you seen this plugin already?
"POD Folder : Creates folds in POD files based on =head[123] sections"
http://www.vim.org/scripts/script.php?script_id=691
On 4/3/07, Bill Moseley <[EMAIL PROTECTED]> wrote:
I don't use folding often, but I'm not figuring out if/how to fold
POD documentation in a Perl module.
I have a module that includes:
=head1 METHODS
=over 4
=item wazbat
This method returns the wazbat of the current object.
=cut
sub wazbat {
my $self = shift;
return $self->{wazbat}
=item fromp
This methods implements the fromp operation.
=cut
sub fromp {
return "fromp";
}
=back
=head1 WARNINGS
[...]
Is it possible to fold the =head1 or =item sections within a given
=head1 section?
--
Bill Moseley
[EMAIL PROTECTED]
--
Ian Tegebo