b0b3287bbd
This allows the user to close the compose tab without sending their current composition.
23 lines
363 B
Go
23 lines
363 B
Go
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
|
|
}
|