diff options
Diffstat (limited to 'commands/msg/reply.go')
-rw-r--r-- | commands/msg/reply.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/msg/reply.go b/commands/msg/reply.go index bab16e1..34d03d5 100644 --- a/commands/msg/reply.go +++ b/commands/msg/reply.go @@ -23,15 +23,15 @@ func init() { register(reply{}) } -func (_ reply) Aliases() []string { +func (reply) Aliases() []string { return []string{"reply"} } -func (_ reply) Complete(aerc *widgets.Aerc, args []string) []string { +func (reply) Complete(aerc *widgets.Aerc, args []string) []string { return nil } -func (_ reply) Execute(aerc *widgets.Aerc, args []string) error { +func (reply) Execute(aerc *widgets.Aerc, args []string) error { opts, optind, err := getopt.Getopts(args, "aq") if err != nil { return err |