Vim Tips Wiki
(Change to TipImported template + severe manual clean)
(Move categories to tip template)
Line 9: Line 9:
 
|version=6.0
 
|version=6.0
 
|rating=21/15
 
|rating=21/15
  +
|category1=Perl
  +
|category2=
 
}}
 
}}
 
This may be of interest to Perl programmers using vim. Sometimes I want to open up the source code of a system Perl module that's installed. Here's one way to do that:
 
This may be of interest to Perl programmers using vim. Sometimes I want to open up the source code of a system Perl module that's installed. Here's one way to do that:
Line 14: Line 16:
   
 
==Comments==
 
==Comments==
[[Category:Perl]]
 

Revision as of 01:33, 25 April 2008

Tip 461 Printable Monobook Previous Next

created April 22, 2003 · complexity basic · author Mark Stosberg · version 6.0


This may be of interest to Perl programmers using vim. Sometimes I want to open up the source code of a system Perl module that's installed. Here's one way to do that:

:e `perldoc -l Module::Name`

Comments