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%2FLexEnv.pm;h=b39d020439f709b2260eb49fceb9f3abd8eb7c42;hp=a91accaa285cee14ef5aef435dccabee91f4a133;hb=77327851f87a17466307e8fccdbf2e0d3c2e58dc;hpb=4444a83008ea2c7ab5f76f47d76766f9674c84e5 diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm b/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm index a91acca..b39d020 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm @@ -1,8 +1,18 @@ +use strict; +use warnings; package Devel::REPL::Plugin::CompletionDriver::LexEnv; +# ABSTRACT: Complete variable names in the REPL's lexical environment + +our $VERSION = '1.003030'; + use Devel::REPL::Plugin; -use namespace::clean -except => [ 'meta' ]; +use Devel::REPL::Plugin::Completion; # die early if cannot load +use namespace::autoclean; -requires 'lexical_environment'; +sub BEFORE_PLUGIN { + my $self = shift; + $self->load_plugin('Completion'); +} around complete => sub { my $orig = shift; @@ -13,16 +23,25 @@ around complete => sub { return $orig->(@_) unless $last->isa('PPI::Token::Symbol'); - my $sigil = substr($last, 0, 1, ''); - my $re = qr/^\Q$last/; + my ($sigil, $name) = split(//, $last, 2); + my $re = qr/^\Q$name/; return $orig->(@_), # ReadLine is weirdly inconsistent map { $sigil eq '%' ? '%' . $_ : $_ } grep { /$re/ } map { substr($_, 1) } # drop lexical's sigil - keys %{$self->lexical_environment->get_context('_')}; + '$_REPL', keys %{$self->lexical_environment->get_context('_')}; }; 1; +__END__ + +=pod + +=head1 AUTHOR + +Shawn M Moore, C<< >> + +=cut