summaryrefslogtreecommitdiffstats
path: root/lib/Reply/Plugin/Autocomplete.pm
blob: 621a832212cb2fdec60caef695eed27c699d794e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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;