1 package Term
::Complete
;
6 @EXPORT = qw(Complete);
8 # @(#)complete.pl,v1.2 (me@anywhere.EBay.Sun.COM) 09/23/91
12 Term::Complete - Perl word completion module
16 $input = Complete('prompt_string', \@completion_list);
17 $input = Complete('prompt_string', @completion_list);
21 This routine provides word completion on the list of words in
22 the array (or array ref).
24 The tty driver is put into raw mode using the system command
25 C<stty raw -echo> and restored using C<stty -raw echo>.
27 The following command characters are defined:
33 Attempts word completion.
38 Prints completion list.
39 Defined by I<$Term::Complete::complete>.
43 Erases the current input.
44 Defined by I<$Term::Complete::kill>.
46 =item E<lt>delE<gt>, E<lt>bsE<gt>
49 Defined by I<$Term::Complete::erase1> and I<$Term::Complete::erase2>.
55 Bell sounds when word completion fails.
59 The completion character E<lt>tabE<gt> cannot be changed.
75 my($prompt, @cmp_list, $cmp, $test, $l, @match);
76 my ($return, $r) = ("", 0);
82 if (ref $_[0] || $_[0] =~ /^\*/) {
83 @cmp_lst = sort @
{$_[0]};
89 system('stty raw -echo');
91 print($prompt, $return);
92 while (($_ = getc(STDIN
)) ne "\r") {
94 # (TAB) attempt completion
96 @match = grep(/^$return/, @cmp_lst);
97 unless ($#match < 0) {
98 $l = length($test = shift(@match));
99 foreach $cmp (@match) {
100 until (substr($cmp, 0, $l) eq substr($test, 0, $l)) {
105 print($test = substr($test, $r, $l - $r));
106 $r = length($return .= $test);
111 # (^D) completion list
112 $_ eq $complete && do {
113 print(join("\r\n", '', grep(/^$return/, @cmp_lst)), "\r\n");
128 # (DEL) || (BS) erase
129 ($_ eq $erase1 || $_ eq $erase2) && do {
148 system('stty -raw echo');