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=44de708c746b75185b0e5de9ab0523f7292da5e1;hb=77327851f87a17466307e8fccdbf2e0d3c2e58dc;hpb=06df07674a6770b9bef20bff5bebc7ce648d4f35 diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm b/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm index 44de708..b39d020 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm @@ -1,13 +1,17 @@ +use strict; +use warnings; package Devel::REPL::Plugin::CompletionDriver::LexEnv; -use Devel::REPL::Plugin; -use namespace::clean -except => [ 'meta' ]; +# ABSTRACT: Complete variable names in the REPL's lexical environment + +our $VERSION = '1.003030'; -sub AFTER_PLUGIN { - my ($_REPL) = @_; +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 +23,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 @@ -34,13 +38,10 @@ around complete => sub { __END__ -=head1 NAME - -Devel::REPL::Plugin::CompletionDriver::LexEnv - Complete variable names in the REPL's lexical environment +=pod =head1 AUTHOR Shawn M Moore, C<< >> =cut -