diff options
author | Parasrah <dev@parasrah.com> | 2022-01-06 21:54:28 -0700 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-01-07 13:54:10 +0100 |
commit | 71eda7d37c8ef38502c360b518fcbf5960497eea (patch) | |
tree | 07b9383865f65934001378f170c942242bc0f054 /widgets/aerc.go | |
parent | b19b844a6326793f078b4a03eaf63ca96528796e (diff) | |
download | aerc-71eda7d37c8ef38502c360b518fcbf5960497eea.tar.gz |
completions: add support for completing multiple addresses
as per the discussion https://lists.sr.ht/~sircmpwn/aerc/patches/15367
this handles completions in `completer/completer.go` by enabling the
completer to return a `prefix` that will be prepended to the selected
completion candidate.
Diffstat (limited to 'widgets/aerc.go')
-rw-r--r-- | widgets/aerc.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/widgets/aerc.go b/widgets/aerc.go index 3c52f7ee..e644f827 100644 --- a/widgets/aerc.go +++ b/widgets/aerc.go @@ -448,8 +448,8 @@ func (aerc *Aerc) BeginExCommand(cmd string) { }, func() { aerc.statusbar.Pop() aerc.focus(previous) - }, func(cmd string) []string { - return aerc.complete(cmd) + }, func(cmd string) ([]string, string) { + return aerc.complete(cmd), "" }, aerc.cmdHistory) aerc.statusbar.Push(exline) aerc.focus(exline) @@ -464,8 +464,8 @@ func (aerc *Aerc) RegisterPrompt(prompt string, cmd []string) { if err != nil { aerc.PushError(err.Error()) } - }, func(cmd string) []string { - return nil // TODO: completions + }, func(cmd string) ([]string, string) { + return nil, "" // TODO: completions }) aerc.prompts.Push(p) } @@ -491,8 +491,8 @@ func (aerc *Aerc) RegisterChoices(choices []Choice) { if err != nil { aerc.PushError(err.Error()) } - }, func(cmd string) []string { - return nil // TODO: completions + }, func(cmd string) ([]string, string) { + return nil, "" // TODO: completions }) aerc.prompts.Push(p) } |