The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Pod::Simple::Vim - Render pod for display in vim

VERSION

Version 0.02

SYNOPSIS

  # See Pod::Simple's documentation for interface details
  use Pod::Simple::Vim;
  
  my $parser = Pod::Simple::Vim->new;
  
  my $perldoc;
  $parser->output_string(\$perldoc);
  $parser->parse_file($pod_filename); 
  
  print $perldoc;

DESCRIPTION

This module translates pod into a format used by the vim PERLDOC2 plugin to display perl documentation with syntax highlighting, rather than as plain text.

USAGE

This module is not meant to be used directly, it is a backend to the vim PERLDOC2 plugin.

AUTHOR

Petar Shangov, <pshangov at yahoo.com>

SEE ALSO

Pod::Simple, the PERLDOC2 plugin at http://www.vim.org/scripts/script.php?script_id=2171

BUGS

Please report any bugs or feature requests pertaining to either this module or the PERLDOC2 plugin to bug-pod-simple-vim at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Pod-Simple-Vim. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT & LICENSE

Copyright 2008 Petar Shangov, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.