diff options
Diffstat (limited to 'commands/compose/abort.go')
-rw-r--r-- | commands/compose/abort.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/compose/abort.go b/commands/compose/abort.go index 4c121d7..74d0395 100644 --- a/commands/compose/abort.go +++ b/commands/compose/abort.go @@ -12,15 +12,15 @@ func init() { register(Abort{}) } -func (_ Abort) Aliases() []string { +func (Abort) Aliases() []string { return []string{"abort"} } -func (_ Abort) Complete(aerc *widgets.Aerc, args []string) []string { +func (Abort) Complete(aerc *widgets.Aerc, args []string) []string { return nil } -func (_ Abort) Execute(aerc *widgets.Aerc, args []string) error { +func (Abort) Execute(aerc *widgets.Aerc, args []string) error { if len(args) != 1 { return errors.New("Usage: abort") } |