in reply to Bundling commonly-used modules into a toolset
If you know that you're using a certain module, say File::Find, quite often, then you can include it with a cmt in said template:#!/usr/bin/perl use strict; use warnings; __END__
and you may create a suitable macro for inserting subs: I don't have any, but with my editor (jed]) it would be easy to create one that would ask me for a name, say foo and create this code for me:# use File::Find;
positioning the cursor on the empty line, or on $var, to allow me to switch to a more sensible var name.sub foo { my $var=shift; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Bundling commonly-used modules into a toolset
by Perl Mouse (Chaplain) on Oct 25, 2005 at 14:06 UTC |