aerc/commands/compose/edit.go
Robin Jarry 0d645bcebd go.mod: change base git url
I'm not sure what are the implications but it seems required.

Link: https://github.com/golang/go/issues/20883
Signed-off-by: Robin Jarry <robin@jarry.cc>
2021-11-05 10:21:45 +01:00

32 lines
514 B
Go

package compose
import (
"errors"
"git.sr.ht/~rjarry/aerc/widgets"
)
type Edit struct{}
func init() {
register(Edit{})
}
func (Edit) Aliases() []string {
return []string{"edit"}
}
func (Edit) Complete(aerc *widgets.Aerc, args []string) []string {
return nil
}
func (Edit) Execute(aerc *widgets.Aerc, args []string) error {
if len(args) != 1 {
return errors.New("Usage: edit")
}
composer, _ := aerc.SelectedTab().(*widgets.Composer)
composer.ShowTerminal()
composer.FocusTerminal()
return nil
}