aboutsummaryrefslogblamecommitdiffstats
path: root/commands/terminal/close.go
blob: 68be6ac5f2c3644720bf6ec03ec44d8d997df10c (plain) (tree)
1
2
3
4
5
6
7
8
9
                



                



                                           
                                       

 
                                                            
                           
                                                 
         
                                                           


                                                          

                                   
 
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
}