1
0
mirror of https://git.sr.ht/~sircmpwn/aerc synced 2026-01-24 08:08:02 +01:00
aerc/commands/terminal/close.go
2019-03-21 16:32:22 -04:00

24 lines
403 B
Go

package terminal
import (
"errors"
"git.sr.ht/~sircmpwn/aerc2/widgets"
)
func init() {
register("close", CommandClose)
}
func CommandClose(aerc *widgets.Aerc, args []string) error {
if len(args) != 1 {
return errors.New("Usage: close")
}
thost, ok := aerc.SelectedTab().(*widgets.TermHost)
if !ok {
return errors.New("Error: not a terminal")
}
thost.Terminal().Close(nil)
return nil
}