aboutsummaryrefslogtreecommitdiff
path: root/commands/quit.go
blob: 343585957c999e8688e1cd08a8d49425f8f73407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package commands

import (
	"errors"

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

func init() {
	Register("quit", ChangeQuit)
}

type ErrorExit int

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

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