about summary refs log blame commit diff stats
path: root/commands/terminal/close.go
blob: aee7f3e4f1d32561d061ba98fe4d28991bb5ce33 (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, _ := aerc.SelectedTab().(*widgets.Terminal)
	term.Close(nil)
	aerc.RemoveTab(term)
	return nil
}