aboutsummaryrefslogtreecommitdiff
path: root/commands/compose/edit.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/compose/edit.go')
-rw-r--r--commands/compose/edit.go14
1 files changed, 12 insertions, 2 deletions
diff --git a/commands/compose/edit.go b/commands/compose/edit.go
index 18ba481..e888350 100644
--- a/commands/compose/edit.go
+++ b/commands/compose/edit.go
@@ -6,11 +6,21 @@ import (
"git.sr.ht/~sircmpwn/aerc/widgets"
)
+type Edit struct{}
+
func init() {
- register("edit", CommandEdit)
+ register(Edit{})
+}
+
+func (_ Edit) Aliases() []string {
+ return []string{"edit"}
+}
+
+func (_ Edit) Complete(aerc *widgets.Aerc, args []string) []string {
+ return nil
}
-func CommandEdit(aerc *widgets.Aerc, args []string) error {
+func (_ Edit) Execute(aerc *widgets.Aerc, args []string) error {
if len(args) != 1 {
return errors.New("Usage: edit")
}