I was afraid you were going to say that :)
I might as well move ALL code into Plx.pm, then, and just always use that all my scripts.
This is disappointing because I like to separate code into libraries for solely administrative reasons. When I'm working on Language Services, for instance, I think about a set of concepts common to all linguistic functions. Even if there are no global variables, it helps if all references to space available on a disk is always called SpaceAvailable rather than some being called SpaceAvailable and others called AvailableSpace.
Is there any way in Perl to segregate collections of functions this way, or must they always be lumped into a single master library?