c841f36513
This function returns an ui.Drawable. Use a more explicit name. This prepares for adding a new SelectedTab function which will return an ui.Tab. Signed-off-by: Robin Jarry <robin@jarry.cc> Acked-by: Koni Marti <koni.marti@gmail.com>
31 lines
521 B
Go
31 lines
521 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.SelectedTabContent().(*widgets.Composer)
|
|
composer.ShowTerminal()
|
|
composer.FocusTerminal()
|
|
return nil
|
|
}
|