Fix indent

This commit is contained in:
Juerd Waalboer 2019-06-07 01:25:29 +02:00
parent ab724a03f9
commit cac85bc6bf

View file

@ -51,7 +51,7 @@ sub prompt {
my @matches;
$readline->Attribs->{completion_entry_function} = sub {
my ($word, $state) = @_;
my ($word, $state) = @_;
@matches = grep /^\Q$word\E/i, @completions if $state == 0;
return shift @matches;
};