aboutsummaryrefslogtreecommitdiff
path: root/commands/msg/read.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/msg/read.go')
-rw-r--r--commands/msg/read.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/msg/read.go b/commands/msg/read.go
index 3497ef1..0da664b 100644
--- a/commands/msg/read.go
+++ b/commands/msg/read.go
@@ -19,15 +19,15 @@ func init() {
register(Read{})
}
-func (_ Read) Aliases() []string {
+func (Read) Aliases() []string {
return []string{"read", "unread"}
}
-func (_ Read) Complete(aerc *widgets.Aerc, args []string) []string {
+func (Read) Complete(aerc *widgets.Aerc, args []string) []string {
return nil
}
-func (_ Read) Execute(aerc *widgets.Aerc, args []string) error {
+func (Read) Execute(aerc *widgets.Aerc, args []string) error {
opts, optind, err := getopt.Getopts(args, "t")
if err != nil {
return err