aerc/commands/quit.go
Wagner Riffel 6838c23478 all: purge redundant underscores
Signed-off-by: Wagner Riffel <wgrriffel@gmail.com>
2019-09-04 16:30:57 -10:00

35 lines
504 B
Go

package commands
import (
"errors"
"git.sr.ht/~sircmpwn/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)
}