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