aerc/commands/terminal/close.go

22 lines
353 B
Go
Raw Normal View History

2019-03-21 16:32:22 -04:00
package terminal
2019-03-17 17:23:53 -04:00
import (
"errors"
"git.sr.ht/~sircmpwn/aerc2/widgets"
)
func init() {
2019-03-21 16:32:22 -04:00
register("close", CommandClose)
2019-03-17 17:23:53 -04:00
}
2019-03-21 16:32:22 -04:00
func CommandClose(aerc *widgets.Aerc, args []string) error {
2019-03-17 17:23:53 -04:00
if len(args) != 1 {
2019-03-17 17:45:44 -04:00
return errors.New("Usage: close")
2019-03-17 17:23:53 -04:00
}
2019-03-30 21:45:41 -04:00
term, _ := aerc.SelectedTab().(*widgets.Terminal)
2019-03-30 14:12:04 -04:00
term.Close(nil)
aerc.RemoveTab(term)
2019-03-17 17:39:22 -04:00
return nil
2019-03-17 17:23:53 -04:00
}