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




                
                                          

 

                  
             








                                                                    







                                     
                                                                




                                                
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)
}