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



                
                                          

 

                   
             








                                                                     

 
                                                                 
                           
                                                 
         
                                                         
                       
                  
 
package terminal

import (
	"errors"

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

type Close struct{}

func init() {
	register(Close{})
}

func (_ Close) Aliases() []string {
	return []string{"close"}
}

func (_ Close) Complete(aerc *widgets.Aerc, args []string) []string {
	return nil
}

func (_ Close) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) != 1 {
		return errors.New("Usage: close")
	}
	term, _ := aerc.SelectedTab().(*widgets.Terminal)
	term.Close(nil)
	return nil
}