Don't tab complete invalid input
Products and users that begin with `+` are internal, as are users that begin with `-`. These should be excluded from tab completion.
This commit is contained in:
parent
382940bfc9
commit
9045eb7ff4
2 changed files with 3 additions and 2 deletions
|
@ -151,5 +151,5 @@ sub command :Tab(&tab) ($self, $cart, $command, @) {
|
|||
}
|
||||
|
||||
sub tab {
|
||||
return grep /\D/, keys %{ read_products() };
|
||||
return grep !/^\+/, grep /\D/, keys %{ read_products() };
|
||||
}
|
||||
|
|
3
revbank
3
revbank
|
@ -175,7 +175,8 @@ OUTER: for (;;) {
|
|||
}
|
||||
}
|
||||
if (delete $completions{USERS}) {
|
||||
$completions{$_}++ for RevBank::Users::names;
|
||||
$completions{$_}++ for grep !RevBank::Users::is_hidden($_),
|
||||
RevBank::Users::names;
|
||||
}
|
||||
if (delete $completions{NOABORT}) {
|
||||
delete $completions{abort};
|
||||
|
|
Loading…
Add table
Reference in a new issue