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>
38 lines
706 B
Go
38 lines
706 B
Go
package compose
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.sr.ht/~rjarry/aerc/widgets"
|
|
)
|
|
|
|
type NextPrevField struct{}
|
|
|
|
func init() {
|
|
register(NextPrevField{})
|
|
}
|
|
|
|
func (NextPrevField) Aliases() []string {
|
|
return []string{"next-field", "prev-field"}
|
|
}
|
|
|
|
func (NextPrevField) Complete(aerc *widgets.Aerc, args []string) []string {
|
|
return nil
|
|
}
|
|
|
|
func (NextPrevField) Execute(aerc *widgets.Aerc, args []string) error {
|
|
if len(args) > 2 {
|
|
return nextPrevFieldUsage(args[0])
|
|
}
|
|
composer, _ := aerc.SelectedTabContent().(*widgets.Composer)
|
|
if args[0] == "prev-field" {
|
|
composer.PrevField()
|
|
} else {
|
|
composer.NextField()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func nextPrevFieldUsage(cmd string) error {
|
|
return fmt.Errorf("Usage: %s", cmd)
|
|
}
|