commit b0b3287bbdadad47757f3543a6560494af9175a8 parent 2c486cb7f52ac5dd88f7445ca79726639e4a0084 Author: Cole Helbling <cole.e.helbling@gmail.com> Date: Tue, 14 May 2019 13:20:57 -0700 Implement abort command This allows the user to close the compose tab without sending their current composition. Diffstat:
A | commands/compose/abort.go | | | 23 | +++++++++++++++++++++++ |
1 file changed, 23 insertions(+), 0 deletions(-)
diff --git a/commands/compose/abort.go b/commands/compose/abort.go @@ -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 +}