aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@gmail.com>2019-05-14 13:20:57 -0700
committerDrew DeVault <sir@cmpwn.com>2019-05-14 16:21:45 -0400
commitb0b3287bbdadad47757f3543a6560494af9175a8 (patch)
tree0c1ce33fb14bf31bd80acbece44b8a5d3378d465 /commands
parent2c486cb7f52ac5dd88f7445ca79726639e4a0084 (diff)
Implement abort command
This allows the user to close the compose tab without sending their current composition.
Diffstat (limited to 'commands')
-rw-r--r--commands/compose/abort.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/commands/compose/abort.go b/commands/compose/abort.go
new file mode 100644
index 0000000..1cd297e
--- /dev/null
+++ 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
+}