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


                

                 
                                     

                                          

 

                  
             


                        
                                


                                           
                                                                  
                  

 

                                                                               





                                                




                                                                            
                                         

                                           
                                       



                                        
                                        
                                    
                               
                                                       

                 

                  
 
                                                              

                                   
package commands

import (
	"os/exec"

	"github.com/riywo/loginshell"

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

type Term struct{}

func init() {
	register(Term{})
}

func (Term) Aliases() []string {
	return []string{"terminal", "term"}
}

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

// The help command is an alias for `term man` thus Term requires a simple func
func TermCore(aerc *widgets.Aerc, args []string) error {
	if len(args) == 1 {
		shell, err := loginshell.Shell()
		if err != nil {
			return err
		}
		args = append(args, shell)
	}
	term, err := widgets.NewTerminal(exec.Command(args[1], args[2:]...))
	if err != nil {
		return err
	}
	tab := aerc.NewTab(term, args[1])
	term.OnTitle = func(title string) {
		if title == "" {
			title = args[1]
		}
		tab.Name = title
		tab.Content.Invalidate()
	}
	term.OnClose = func(err error) {
		aerc.RemoveTab(term)
		if err != nil {
			aerc.PushError(" "+err.Error())
		}
	}
	return nil
}

func (Term) Execute(aerc *widgets.Aerc, args []string) error {
	return TermCore(aerc, args)
}