From c437b3ded1a8a0700cab205c3801a854969c77c9 Mon Sep 17 00:00:00 2001 From: Shawn M Moore Date: Thu, 27 Jun 2013 13:55:54 -0400 Subject: First cut of Autocomplete: completes Perl keywords --- lib/Reply/Plugin/Autocomplete.pm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 lib/Reply/Plugin/Autocomplete.pm (limited to 'lib') diff --git a/lib/Reply/Plugin/Autocomplete.pm b/lib/Reply/Plugin/Autocomplete.pm new file mode 100644 index 0000000..621a832 --- /dev/null +++ b/lib/Reply/Plugin/Autocomplete.pm @@ -0,0 +1,40 @@ +package Reply::Plugin::Autocomplete; +use strict; +use warnings; +# ABSTRACT: tab complete your input + +use base 'Reply::Plugin'; + +use B::Keywords qw/@Functions @Barewords/; + +=head1 SYNOPSIS + + ; .replyrc + [Autocomplete] + +=head1 DESCRIPTION + +This plugin registers a tab key handler to autocomplete Perl code. + +=cut + +sub tab_handler { + my ($self, $line) = @_; + + return ( + $self->_tab_keyword($line), + ); +} + +sub _tab_keyword { + my ($self, $line) = @_; + + my ($last_word) = $line =~ /(\w+)$/; + return unless $last_word; + + my $re = qr/^\Q$last_word/; + + return grep { $_ =~ $re } @Functions, @Barewords; +} + +1; -- cgit v1.2.3-54-g00ecf