about summary refs log blame commit diff stats
path: root/commands/quit.go
blob: 63bc94a9ade000d5e0063dfefdb2aa30b228ca1d (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)
}