2019-08-13 03:55:50 +02:00
|
|
|
package terminal
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/widgets"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Close struct{}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
register(Close{})
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (Close) Aliases() []string {
|
2019-08-13 03:55:50 +02:00
|
|
|
return []string{"close"}
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (Close) Complete(aerc *widgets.Aerc, args []string) []string {
|
2019-08-13 03:55:50 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (Close) Execute(aerc *widgets.Aerc, args []string) error {
|
2019-08-13 03:55:50 +02:00
|
|
|
if len(args) != 1 {
|
|
|
|
return errors.New("Usage: close")
|
|
|
|
}
|
|
|
|
term, _ := aerc.SelectedTab().(*widgets.Terminal)
|
|
|
|
term.Close(nil)
|
|
|
|
return nil
|
|
|
|
}
|