blob: 1c13ddf5ea111ea49e946f8ae7db1b8a54e6c0fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
package account
import (
"errors"
"git.sr.ht/~rjarry/aerc/app"
"git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~rjarry/aerc/lib/state"
)
type Clear struct {
Selected bool `opt:"-s"`
}
func init() {
commands.Register(Clear{})
}
func (Clear) Context() commands.CommandContext {
return commands.MESSAGE_LIST
}
func (Clear) Aliases() []string {
return []string{"clear"}
}
func (c Clear) Execute(args []string) error {
acct := app.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")
}
if c.Selected {
defer store.Select(0)
}
store.ApplyClear()
acct.SetStatus(state.SearchFilterClear())
return nil
}
|