diff options
Diffstat (limited to 'commands/account/clear.go')
-rw-r--r-- | commands/account/clear.go | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/commands/account/clear.go b/commands/account/clear.go new file mode 100644 index 00000000..bb9c04e4 --- /dev/null +++ b/commands/account/clear.go @@ -0,0 +1,34 @@ +package account + +import ( + "errors" + "git.sr.ht/~sircmpwn/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.SetStatus("Clear complete.") + return nil +} |