split: remove irrelevant tab completions

`split` was refactored out from `take`, and this was apparently left over
from the copy/paste.
This commit is contained in:
Juerd Waalboer 2023-11-02 03:52:32 +01:00
parent 8956d8a483
commit 63b4144799

View file

@ -8,7 +8,7 @@ sub _select_split($cart) {
grep $_->{amount} < 0, $cart->entries
}
sub command :Tab(take,steal,split) ($self, $cart, $command, @) {
sub command :Tab(split) ($self, $cart, $command, @) {
$command eq 'split' or return NEXT;
$self->{users} = [];