aerc/commands/terminal/close.go
Robin Jarry c841f36513 tabs: rename SelectedTab to SelectedTabContent
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>
2022-07-23 22:00:21 +02:00

31 lines
491 B
Go

package terminal
import (
"errors"
"git.sr.ht/~rjarry/aerc/widgets"
)
type Close struct{}
func init() {
register(Close{})
}
func (Close) Aliases() []string {
return []string{"close"}
}
func (Close) Complete(aerc *widgets.Aerc, args []string) []string {
return nil
}
func (Close) Execute(aerc *widgets.Aerc, args []string) error {
if len(args) != 1 {
return errors.New("Usage: close")
}
term, _ := aerc.SelectedTabContent().(*widgets.Terminal)
term.Close(nil)
return nil
}