aerc/commands/terminal/close.go

31 lines
492 B
Go
Raw Normal View History

2019-03-21 20:32:22 +00:00
package terminal
2019-03-17 21:23:53 +00:00
import (
"errors"
2019-05-18 00:57:10 +00:00
"git.sr.ht/~sircmpwn/aerc/widgets"
2019-03-17 21:23:53 +00:00
)
type Close struct{}
2019-03-17 21:23:53 +00:00
func init() {
register(Close{})
}
func (_ Close) Aliases() []string {
return []string{"close"}
}
func (_ Close) Complete(aerc *widgets.Aerc, args []string) []string {
return nil
2019-03-17 21:23:53 +00:00
}
func (_ Close) Execute(aerc *widgets.Aerc, args []string) error {
2019-03-17 21:23:53 +00:00
if len(args) != 1 {
2019-03-17 21:45:44 +00:00
return errors.New("Usage: close")
2019-03-17 21:23:53 +00:00
}
2019-03-31 01:45:41 +00:00
term, _ := aerc.SelectedTab().(*widgets.Terminal)
2019-03-30 18:12:04 +00:00
term.Close(nil)
2019-03-17 21:39:22 +00:00
return nil
2019-03-17 21:23:53 +00:00
}