about summary refs log blame commit diff stats
path: root/commands/quit.go
blob: c9d83b7e559fae8d807852f730cacccb69ee5d0e (plain) (tree)
1
2
3
4
5
6
7
8
9




                
                                          


             
                                     







                                     
                                                           




                                                
package commands

import (
	"errors"

	"git.sr.ht/~sircmpwn/aerc/widgets"
)

func init() {
	register("quit", CommandQuit)
}

type ErrorExit int

func (err ErrorExit) Error() string {
	return "exit"
}

func CommandQuit(aerc *widgets.Aerc, args []string) error {
	if len(args) != 1 {
		return errors.New("Usage: quit")
	}
	return ErrorExit(1)
}