diff options
Diffstat (limited to 'commands/compose/send.go')
-rw-r--r-- | commands/compose/send.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/compose/send.go b/commands/compose/send.go index 202d8c6..5a12428 100644 --- a/commands/compose/send.go +++ b/commands/compose/send.go @@ -28,15 +28,15 @@ func init() { register(Send{}) } -func (_ Send) Aliases() []string { +func (Send) Aliases() []string { return []string{"send"} } -func (_ Send) Complete(aerc *widgets.Aerc, args []string) []string { +func (Send) Complete(aerc *widgets.Aerc, args []string) []string { return nil } -func (_ Send) Execute(aerc *widgets.Aerc, args []string) error { +func (Send) Execute(aerc *widgets.Aerc, args []string) error { if len(args) > 1 { return errors.New("Usage: send") } |