X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FPlugin%2FCompletionDriver%2FINC.pm;h=8478d1b88ca152c115b6a32d5bac8d0cc15fd2d0;hp=a29ff8ae7cb96254c2a1cae5a0b4c5724075aa8c;hb=0e0d2539048eade7dfa30fff6f1ad5b7e90bbf70;hpb=1716b20061af51ca82cc543f618f19c1e20f2efa diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm b/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm index a29ff8a..8478d1b 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm @@ -2,6 +2,7 @@ use strict; use warnings; package Devel::REPL::Plugin::CompletionDriver::INC; use Devel::REPL::Plugin; +use Devel::REPL::Plugin::Completion; # die early if cannot load use File::Next; use File::Spec; use namespace::autoclean; @@ -65,7 +66,7 @@ around complete => sub { my @found; # most VCSes don't litter every single fucking directory with garbage. if you - # know of any other, just stick them in here. noone wants to complete + # know of any other, just stick them in here. No one wants to complete # Devel::REPL::Plugin::.svn my %ignored = ( @@ -101,7 +102,7 @@ around complete => sub { } }; - # look through all of + # look through all of INC: for (@INC) { my $path = $_;