2019-03-21 21:32:22 +01:00
|
|
|
package terminal
|
2019-03-17 22:23:53 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
2019-05-18 02:57:10 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/widgets"
|
2019-03-17 22:23:53 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-03-21 21:32:22 +01:00
|
|
|
register("close", CommandClose)
|
2019-03-17 22:23:53 +01:00
|
|
|
}
|
|
|
|
|
2019-03-21 21:32:22 +01:00
|
|
|
func CommandClose(aerc *widgets.Aerc, args []string) error {
|
2019-03-17 22:23:53 +01:00
|
|
|
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-31 03:45:41 +02:00
|
|
|
term, _ := aerc.SelectedTab().(*widgets.Terminal)
|
2019-03-30 19:12:04 +01:00
|
|
|
term.Close(nil)
|
|
|
|
aerc.RemoveTab(term)
|
2019-03-17 22:39:22 +01:00
|
|
|
return nil
|
2019-03-17 22:23:53 +01:00
|
|
|
}
|