summary refs log tree commit diff stats
path: root/commands/account/compose.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/account/compose.go')
-rw-r--r--commands/account/compose.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/commands/account/compose.go b/commands/account/compose.go
new file mode 100644
index 0000000..15fc354
--- /dev/null
+++ b/commands/account/compose.go
@@ -0,0 +1,28 @@
+package account
+
+import (
+	"errors"
+
+	"github.com/mattn/go-runewidth"
+
+	"git.sr.ht/~sircmpwn/aerc2/widgets"
+)
+
+func init() {
+	register("compose", Compose)
+}
+
+// TODO: Accept arguments for default headers, message body
+func Compose(aerc *widgets.Aerc, args []string) error {
+	if len(args) != 1 {
+		return errors.New("Usage: compose")
+	}
+	// TODO: Pass along the sender info
+	composer := widgets.NewComposer()
+	// TODO: Change tab name when message subject changes
+	aerc.NewTab(composer, runewidth.Truncate(
+		"New email", 32, "…"))
+	return nil
+}
+
+