summary refs log blame commit diff stats
path: root/commands/term-close.go
blob: 30f3392f48d04f05d73ac8d21a07ec9c78aefb07 (plain) (tree)
1
2
3
4
5




                










                                                         
                                                           


                                                          

                                   
 
package commands

import (
	"errors"

	"git.sr.ht/~sircmpwn/aerc2/widgets"
)

func init() {
	Register("term-close", TermClose)
}

func TermClose(aerc *widgets.Aerc, args []string) error {
	if len(args) != 1 {
		return errors.New("Usage: term-close")
	}
	thost, ok := aerc.SelectedTab().(*widgets.TermHost)
	if !ok {
		return errors.New("Error: not a terminal")
	}
	thost.Terminal().Close(nil)
	return nil
}