aerc/commands/quit.go

25 lines
343 B
Go
Raw Normal View History

2019-03-16 01:32:09 +01:00
package commands
import (
"errors"
2019-05-18 02:57:10 +02:00
"git.sr.ht/~sircmpwn/aerc/widgets"
2019-03-16 01:32:09 +01:00
)
func init() {
2019-03-21 21:30:23 +01:00
register("quit", CommandQuit)
2019-03-16 01:32:09 +01:00
}
type ErrorExit int
func (err ErrorExit) Error() string {
return "exit"
}
2019-03-21 21:30:23 +01:00
func CommandQuit(aerc *widgets.Aerc, args []string) error {
2019-03-16 01:32:09 +01:00
if len(args) != 1 {
return errors.New("Usage: quit")
}
return ErrorExit(1)
}