aerc/commands/quit.go
Gregory Mullen 2a0961701c Implement basic tab completion support
Tab completion currently only works on commands. Contextual completion
will be added in the future.
2019-06-29 14:24:19 -04:00

35 lines
510 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)
}