summaryrefslogtreecommitdiffstats
path: root/lib/Reply/Plugin/Autocomplete/Packages.pm
blob: aaf3afc25d925d508843cd82aa5680e9ad16befe (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
package main;
use strict;
use warnings;
# ABSTRACT: tab completion for package names

use mop;

use Module::Runtime '$module_name_rx';

use Reply::Util 'all_packages';

=head1 SYNOPSIS

  ; .replyrc
  [ReadLine]
  [Autocomplete::Packages]

=head1 DESCRIPTION

This plugin registers a tab key handler to autocomplete package names in Perl
code.

=cut

class Reply::Plugin::Autocomplete::Packages extends Reply::Plugin {
    method tab_handler ($line) {

        # $module_name_rx does not permit trailing ::
        my ($before, $package_fragment) = $line =~ /(.*?)(${module_name_rx}:?:?)$/;
        return unless $package_fragment;
        return if $before =~ /^#/; # command
        return if $before =~ /->\s*$/; # method call
        return if $before =~ /[\$\@\%\&\*]\s*$/;

        return sort grep { index($_, $package_fragment) == 0 } all_packages();
    }
}

1;