Implement abort command

This allows the user to close the compose tab without sending their
current composition.
This commit is contained in:
Cole Helbling 2019-05-14 13:20:57 -07:00 committed by Drew DeVault
parent 2c486cb7f5
commit b0b3287bbd
1 changed files with 23 additions and 0 deletions

23
commands/compose/abort.go Normal file
View File

@ -0,0 +1,23 @@
package compose
import (
"errors"
"git.sr.ht/~sircmpwn/aerc2/widgets"
)
func init() {
register("abort", CommandAbort)
}
func CommandAbort(aerc *widgets.Aerc, args []string) error {
if len(args) != 1 {
return errors.New("Usage: abort")
}
composer, _ := aerc.SelectedTab().(*widgets.Composer)
aerc.RemoveTab(composer)
composer.Close()
return nil
}