aerc/commands/term-close.go

25 lines
462 B
Go
Raw Normal View History

2019-03-17 22:23:53 +01:00
package commands
import (
"errors"
"git.sr.ht/~sircmpwn/aerc2/widgets"
)
func init() {
2019-03-17 22:45:44 +01:00
// TODO: Move this command into a terminal-specific command set
2019-03-21 21:30:23 +01:00
register("close", TermClose)
2019-03-17 22:23:53 +01:00
}
func TermClose(aerc *widgets.Aerc, args []string) error {
if len(args) != 1 {
2019-03-17 22:45:44 +01:00
return errors.New("Usage: close")
2019-03-17 22:23:53 +01:00
}
2019-03-17 22:39:22 +01:00
thost, ok := aerc.SelectedTab().(*widgets.TermHost)
2019-03-17 22:23:53 +01:00
if !ok {
return errors.New("Error: not a terminal")
}
2019-03-17 22:39:22 +01:00
thost.Terminal().Close(nil)
return nil
2019-03-17 22:23:53 +01:00
}