aerc/commands/terminal/close.go

24 lines
403 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"
"git.sr.ht/~sircmpwn/aerc2/widgets"
)
func init() {
2019-03-21 20:32:22 +00:00
register("close", CommandClose)
2019-03-17 21:23:53 +00:00
}
2019-03-21 20:32:22 +00:00
func CommandClose(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-17 21:39:22 +00:00
thost, ok := aerc.SelectedTab().(*widgets.TermHost)
2019-03-17 21:23:53 +00:00
if !ok {
return errors.New("Error: not a terminal")
}
2019-03-17 21:39:22 +00:00
thost.Terminal().Close(nil)
return nil
2019-03-17 21:23:53 +00:00
}