-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdzil-complete
executable file
·82 lines (63 loc) · 2.1 KB
/
dzil-complete
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/env perl
use strict;
use File::Spec::Functions qw( rel2abs catdir splitpath no_upwards );
# There is only one tricky bit here: when there is only one completion, bash
# will take that and append a space. But when completing to Foo:: we want bash
# to leave the caret right after the :: and to make it do so, we make up a fake
# 'Foo:: ' suggestion in `suggestion_from_name` to create artificial ambiguity.
# However, if we also have a plain Foo suggestion anyway, then there is already
# ambiguity and we can throw the fake suggestion away in `uniq`.
sub uniq { my %seen; grep { ++$seen{$_.':: '}; not $seen{$_}++ } @_ }
sub get_completion_word {
my $comp = substr $ENV{'COMP_LINE'}, 0, $ENV{'COMP_POINT'};
$comp =~ s/.*\h//;
return $comp;
}
sub slurp_dir {
opendir my $dir, shift or return;
no_upwards readdir $dir;
}
sub suggestion_from_name {
my ( $file_rx, $path, $name ) = @_;
return if not $name =~ /$file_rx/;
return $name.'::', $name.':: ' if -d catdir $path, $name;
return $1;
}
sub suggestions_from_path {
my ( $file_rx, $path ) = @_;
map { suggestion_from_name $file_rx, $path, $_ } slurp_dir $path;
}
die << "END_HELP" if not exists $ENV{'COMP_LINE'};
To use, issue the following command in bash:
\tcomplete -C dzil-complete dzil
You probably want to put that line in your .bashrc
END_HELP
my $pkg = get_completion_word();
if ( $ENV{COMP_LINE} =~ /dzil \s+ \S* $/x ) {
# complete a command
$pkg = 'Dist::Zilla::App::Command::'.$pkg;
}
elsif( $ENV{COMP_LINE} =~ /dzil \s+ plugins \s+ \S* $/x ) {
# complete a plugin name
$pkg = 'Dist::Zilla::Plugin::'.$pkg;
}
else {
# no suggestions
exit;
}
( my $path = $pkg ) =~ s{::}{/}g;
# if the path ended in a single colon,
# then pretend there were two of them
# and prepend a colon to all suggestions
my $pfx = ( $path =~ s{:\z}{/} ) ? ':' : '';
my ( undef, $subpath, $word ) = splitpath $path;
my $file_rx = qr/\A(${\quotemeta $word}\w*)(?:\.pm|\.pod)?\z/;
my $home = $ENV{'HOME'};
print "$pfx$_\n" for
uniq
sort
map { suggestions_from_path $file_rx, $_ }
uniq
map { catdir $_, $subpath }
grep { $home ne rel2abs $_ }
@INC;