0d645bcebd
I'm not sure what are the implications but it seems required. Link: https://github.com/golang/go/issues/20883 Signed-off-by: Robin Jarry <robin@jarry.cc>
34 lines
502 B
Go
34 lines
502 B
Go
package commands
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"git.sr.ht/~rjarry/aerc/widgets"
|
|
)
|
|
|
|
type Quit struct{}
|
|
|
|
func init() {
|
|
register(Quit{})
|
|
}
|
|
|
|
func (Quit) Aliases() []string {
|
|
return []string{"quit", "exit"}
|
|
}
|
|
|
|
func (Quit) Complete(aerc *widgets.Aerc, args []string) []string {
|
|
return nil
|
|
}
|
|
|
|
type ErrorExit int
|
|
|
|
func (err ErrorExit) Error() string {
|
|
return "exit"
|
|
}
|
|
|
|
func (Quit) Execute(aerc *widgets.Aerc, args []string) error {
|
|
if len(args) != 1 {
|
|
return errors.New("Usage: quit")
|
|
}
|
|
return ErrorExit(1)
|
|
}
|