From 92619082773cc3b8a23e7b7b0b95ad81eae51570 Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Mon, 26 Jan 2026 16:30:03 +0100 Subject: [PATCH] sort the session names --- sesh/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sesh/main.go b/sesh/main.go index fd6a05c..71de589 100644 --- a/sesh/main.go +++ b/sesh/main.go @@ -5,6 +5,7 @@ import ( "os" "os/exec" "path/filepath" + "slices" "strings" "syscall" @@ -65,6 +66,7 @@ func main() { for seshName := range config { seshNames = append(seshNames, seshName) } + slices.Sort(seshNames) i, err := fuzzyfinder.Find( seshNames, func(i int) string {