summary refs log tree commit diff stats
path: root/commands/msg/archive.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/msg/archive.go')
-rw-r--r--commands/msg/archive.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/msg/archive.go b/commands/msg/archive.go
index 63d6de0..6bf231d 100644
--- a/commands/msg/archive.go
+++ b/commands/msg/archive.go
@@ -24,15 +24,15 @@ func init() {
 	register(Archive{})
 }
 
-func (_ Archive) Aliases() []string {
+func (Archive) Aliases() []string {
 	return []string{"archive"}
 }
 
-func (_ Archive) Complete(aerc *widgets.Aerc, args []string) []string {
+func (Archive) Complete(aerc *widgets.Aerc, args []string) []string {
 	return nil
 }
 
-func (_ Archive) Execute(aerc *widgets.Aerc, args []string) error {
+func (Archive) Execute(aerc *widgets.Aerc, args []string) error {
 	if len(args) != 2 {
 		return errors.New("Usage: archive <flat|year|month>")
 	}
om> 2019-06-09 19:14:56 -0400 committer Drew DeVault <sir@cmpwn.com> 2019-06-09 19:14:56 -0400 Fix :new-account getopts' href='/akspecs/aerc/commit/commands/new-account.go?h=0.6.0&id=a98824af758a14c725d2503868b64ede410883e7'>a98824a ^
0771eaf ^

6811143 ^
937b33c ^
0771eaf ^





6811143 ^


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