summary refs log blame commit diff stats
path: root/commands/terminal/close.go
blob: 0a9d100d2969208b1c02c12650ba5a50f5039565 (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")
	}
	term, ok := aerc.SelectedTab().(*widgets.Terminal)
	if !ok {
		return errors.New("Error: not a terminal")
	}
	term.Close(nil)
	aerc.RemoveTab(term)
	return nil
}