[Bast-commits] r3783 - in trunk/Devel-REPL/lib/Devel/REPL/Plugin: .
CompletionDriver
Sartak at dev.catalyst.perl.org
Sartak at dev.catalyst.perl.org
Wed Sep 26 02:39:34 GMT 2007
Author: Sartak
Date: 2007-09-26 02:39:33 +0100 (Wed, 26 Sep 2007)
New Revision: 3783
Added:
trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm
Modified:
trunk/Devel-REPL/lib/Devel/REPL/Plugin/Completion.pm
Log:
Add LexEnv completion plugin. I still owe mst a refactor of the completion subsystem :)
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/Completion.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/Completion.pm 2007-09-25 15:39:52 UTC (rev 3782)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/Completion.pm 2007-09-26 01:39:33 UTC (rev 3783)
@@ -5,17 +5,17 @@
use namespace::clean -except => [ 'meta' ];
has current_matches => (
- is => 'rw',
- isa => 'ArrayRef',
- lazy => 1,
- default => sub { [] },
+ is => 'rw',
+ isa => 'ArrayRef',
+ lazy => 1,
+ default => sub { [] },
);
has match_index => (
- is => 'rw',
- isa => 'Int',
- lazy => 1,
- default => sub { 0 },
+ is => 'rw',
+ isa => 'Int',
+ lazy => 1,
+ default => sub { 0 },
);
sub BEFORE_PLUGIN {
@@ -33,11 +33,15 @@
my ($self, $text, $line, $start, $end) = @_;
# we're discarding everything after the cursor for completion purposes
+ # we can't just use $text because we want all the code before the cursor to
+ # matter, not just the current word
substr($line, $end) = '';
my $document = PPI::Document->new(\$line);
return unless defined($document);
+ $document->prune('PPI::Token::Whitespace');
+
my @matches = $self->complete($text, $document);
# iterate through the completions
Added: trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm (rev 0)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm 2007-09-26 01:39:33 UTC (rev 3783)
@@ -0,0 +1,38 @@
+package Devel::REPL::Plugin::CompletionDriver::LexEnv;
+use Devel::REPL::Plugin;
+use namespace::clean -except => [ 'meta' ];
+
+sub AFTER_PLUGIN {
+ my ($_REPL) = @_;
+
+ if (!$_REPL->can('lexical_environment')) {
+ warn "Devel::REPL::Plugin::CompletionDriver::LexEnv requires Devel::REPL::Plugin::LexEnv.";
+ }
+}
+
+around complete => sub {
+ my $orig = shift;
+ my ($self, $text, $document) = @_;
+
+ # recursively find the last element
+ my $last = $document;
+ while ($last->can('last_element') && defined($last->last_element)) {
+ $last = $last->last_element;
+ }
+
+ return $orig->(@_)
+ unless $last->isa('PPI::Token::Symbol');
+
+ my $sigil = substr($last, 0, 1, '');
+ my $re = qr/^\Q$last/;
+
+ return $orig->(@_),
+ # ReadLine is weirdly inconsistent
+ map { $sigil eq '%' ? '%' . $_ : $_ }
+ grep { /$re/ }
+ map { substr($_, 1) } # drop lexical's sigil
+ keys %{$self->lexical_environment->get_context('_')};
+};
+
+1;
+
More information about the Bast-commits
mailing list