aerc/commands/account/clear.go
Robin Jarry 8935c45293 search/filter: display in extra status
Add an extra attribute to the status line. When non-empty, display it
after the current status.

Set that extra status after a successful :search or :filter. Remove it
after :clear.

Signed-off-by: Robin Jarry <robin@jarry.cc>
2022-02-23 11:27:19 +01:00

36 lines
610 B
Go

package account
import (
"errors"
"git.sr.ht/~rjarry/aerc/widgets"
)
type Clear struct{}
func init() {
register(Clear{})
}
func (Clear) Aliases() []string {
return []string{"clear"}
}
func (Clear) Complete(aerc *widgets.Aerc, args []string) []string {
return nil
}
func (Clear) Execute(aerc *widgets.Aerc, args []string) error {
acct := aerc.SelectedAccount()
if acct == nil {
return errors.New("No account selected")
}
store := acct.Store()
if store == nil {
return errors.New("Cannot perform action. Messages still loading")
}
store.ApplyClear()
aerc.ClearExtraStatus()
return nil
}