From c37f1eaaeaa1067365cff841e5c8298206db78ef Mon Sep 17 00:00:00 2001 From: inwit Date: Sat, 19 Feb 2022 17:26:10 +0100 Subject: [PATCH] filter/search: display current search/filter arguments Make the statusbar message after search and filter completion more informative by showing the full call that was used. Signed-off-by: inwit --- commands/account/search.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/account/search.go b/commands/account/search.go index 9a9244d..be4df9d 100644 --- a/commands/account/search.go +++ b/commands/account/search.go @@ -2,6 +2,7 @@ package account import ( "errors" + "fmt" "git.sr.ht/~rjarry/aerc/widgets" ) @@ -34,14 +35,14 @@ func (SearchFilter) Execute(aerc *widgets.Aerc, args []string) error { if args[0] == "filter" { aerc.SetStatus("Filtering...") cb = func(uids []uint32) { - aerc.SetStatus("Filter complete.") + aerc.SetStatus(fmt.Sprintf("Filter complete %s", args)) acct.Logger().Printf("Filter results: %v", uids) store.ApplyFilter(uids) } } else { aerc.SetStatus("Searching...") cb = func(uids []uint32) { - aerc.SetStatus("Search complete.") + aerc.SetStatus(fmt.Sprintf("Search complete %s", args)) acct.Logger().Printf("Search results: %v", uids) store.ApplySearch(uids) // TODO: Remove when stores have multiple OnUpdate handlers