X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FPlugin%2FCompletionDriver%2FLexEnv.pm;h=dd833bcb309bc1336c983069727bd5534851dd10;hb=f109bc790c4450543e3bd07beb3abee5c4b923e0;hp=44de708c746b75185b0e5de9ab0523f7292da5e1;hpb=06df07674a6770b9bef20bff5bebc7ce648d4f35;p=p5sagit%2FDevel-REPL.git diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm b/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm index 44de708..dd833bc 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm @@ -1,13 +1,16 @@ +use strict; +use warnings; package Devel::REPL::Plugin::CompletionDriver::LexEnv; -use Devel::REPL::Plugin; -use namespace::clean -except => [ 'meta' ]; -sub AFTER_PLUGIN { - my ($_REPL) = @_; +our $VERSION = '1.003027'; + +use Devel::REPL::Plugin; +use Devel::REPL::Plugin::Completion; # die early if cannot load +use namespace::autoclean; - if (!$_REPL->can('lexical_environment')) { - warn "Devel::REPL::Plugin::CompletionDriver::LexEnv requires Devel::REPL::Plugin::LexEnv."; - } +sub BEFORE_PLUGIN { + my $self = shift; + $self->load_plugin('Completion'); } around complete => sub { @@ -19,8 +22,8 @@ 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