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=4f45a17d9799585defe76fe5baceb297d8378c05;hp=cd3ba0be8f5d42fd2c07e719255365404edb9520;hb=5ac988901b5ccbf3b31cdf980534d0c9631d9e4a;hpb=6631e15ccd2313ff350fd9bfa44c1ccdbac77100 diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm b/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm index cd3ba0b..4f45a17 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm @@ -1,11 +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.003028'; + use Devel::REPL::Plugin; -use namespace::clean -except => [ 'meta' ]; +use Devel::REPL::Plugin::Completion; # die early if cannot load +use namespace::autoclean; -with qw( - Devel::REPL::Plugin::Completion - Devel::REPL::Plugin::LexEnv -); +sub BEFORE_PLUGIN { + my $self = shift; + $self->load_plugin('Completion'); +} around complete => sub { my $orig = shift; @@ -16,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 @@ -31,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 -