diff options
author | Robin Jarry <robin@jarry.cc> | 2023-10-30 21:05:56 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-11-02 11:59:39 +0100 |
commit | 2dfeb7130a8fb97d927a55efa738f110f46cb688 (patch) | |
tree | cca6a06999d2be32f01e4ac6ae2998c5f24c2895 /commands/compose/switch.go | |
parent | faa879f9a84d44f9b251410fc923a827a44df1a7 (diff) | |
download | aerc-2dfeb7130a8fb97d927a55efa738f110f46cb688.tar.gz |
completion: refactor filter list api
Remove CompletionFromList which is a trivial wrapper around FilterList.
Remove the prefix, suffix and isFuzzy arguments from FilterList.
Replace prefix, suffix by an optional callback to allow post processing
of completion results before presenting them to the user.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Tested-by: Inwit <inwit@sindominio.net>
Diffstat (limited to 'commands/compose/switch.go')
-rw-r--r-- | commands/compose/switch.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/compose/switch.go b/commands/compose/switch.go index 637099b5..c71716e0 100644 --- a/commands/compose/switch.go +++ b/commands/compose/switch.go @@ -26,7 +26,7 @@ func (SwitchAccount) Aliases() []string { } func (*SwitchAccount) CompleteAccount(arg string) []string { - return commands.CompletionFromList(app.AccountNames(), arg) + return commands.FilterList(app.AccountNames(), arg, nil) } func (s SwitchAccount) Execute(args []string) error { |