2019-03-16 00:32:09 +00:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
2019-05-18 00:57:10 +00:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/widgets"
|
2019-03-16 00:32:09 +00:00
|
|
|
)
|
|
|
|
|
2019-06-27 17:33:11 +00:00
|
|
|
type Quit struct{}
|
|
|
|
|
2019-03-16 00:32:09 +00:00
|
|
|
func init() {
|
2019-06-27 17:33:11 +00:00
|
|
|
register(Quit{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (_ Quit) Aliases() []string {
|
|
|
|
return []string{"quit", "exit"}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (_ Quit) Complete(aerc *widgets.Aerc, args []string) []string {
|
|
|
|
return nil
|
2019-03-16 00:32:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ErrorExit int
|
|
|
|
|
|
|
|
func (err ErrorExit) Error() string {
|
|
|
|
return "exit"
|
|
|
|
}
|
|
|
|
|
2019-06-27 17:33:11 +00:00
|
|
|
func (_ Quit) Execute(aerc *widgets.Aerc, args []string) error {
|
2019-03-16 00:32:09 +00:00
|
|
|
if len(args) != 1 {
|
|
|
|
return errors.New("Usage: quit")
|
|
|
|
}
|
|
|
|
return ErrorExit(1)
|
|
|
|
}
|