e200cd56bf
Add a mode that prevents aerc from quitting normally when an important task is performed, i.e. when sending a message. The no-quit mode will be ignored when quit is used with the -f option to force an exit. Suggested-by: ph14nix[m] Signed-off-by: Koni Marti <koni.marti@gmail.com> Acked-by: Robin Jarry <robin@jarry.cc>
51 lines
880 B
Go
51 lines
880 B
Go
package commands
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"git.sr.ht/~rjarry/aerc/commands/mode"
|
|
"git.sr.ht/~rjarry/aerc/widgets"
|
|
"git.sr.ht/~sircmpwn/getopt"
|
|
)
|
|
|
|
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 {
|
|
force := false
|
|
opts, optind, err := getopt.Getopts(args, "f")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, opt := range opts {
|
|
switch opt.Option {
|
|
case 'f':
|
|
force = true
|
|
}
|
|
}
|
|
if len(args) != optind {
|
|
return errors.New("Usage: quit [-f]")
|
|
}
|
|
if force || mode.QuitAllowed() {
|
|
return ErrorExit(1)
|
|
}
|
|
return fmt.Errorf("A task is not done yet. Use -f to force an exit.")
|
|
}
|