Sort command completions

Previously the completions weren't sorted which led to a difficult to
navigate list, especially for the command names as it would randomly
jump through the alphabet.
This commit is contained in:
Jeffas 2020-06-10 22:08:28 +01:00 committed by Reto Brunner
parent d841c8c251
commit 24c9509619
1 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@ import (
"io/ioutil" "io/ioutil"
"log" "log"
"os" "os"
"sort"
"time" "time"
"git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/getopt"
@ -79,6 +80,7 @@ func getCompletions(aerc *widgets.Aerc, cmd string) []string {
for _, set := range getCommands((*aerc).SelectedTab()) { for _, set := range getCommands((*aerc).SelectedTab()) {
completions = append(completions, set.GetCompletions(aerc, cmd)...) completions = append(completions, set.GetCompletions(aerc, cmd)...)
} }
sort.Strings(completions)
return completions return completions
} }