about summary refs log blame commit diff stats
path: root/commands/term-close.go
blob: ae2b55b8c016478a757b6e5c98675fe39b919b7e (plain) (tree)
1
2
3
4
5
6
7
8
9




                



                                           

                                                                       



                                                         
                                                 
         
                                                           


                                                          

                                   
 
package commands

import (
	"errors"

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

func init() {
	// TODO: Move this command into a terminal-specific command set
	Register("close", TermClose)
}

func TermClose(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
}