about summary refs log tree commit diff stats
path: root/janet/fedi-playground/project.janet
Commit message (Expand)AuthorAgeFilesLines
* *elioat2023-07-131-1/+11
* *elioat2023-07-101-0/+6
tle='author Drew DeVault <sir@cmpwn.com> 2019-03-17 17:23:53 -0400 committer Drew DeVault <sir@cmpwn.com> 2019-03-17 17:23:53 -0400 Add :term-close' href='/akspecs/aerc/commit/commands/term.go?h=0.4.0&id=dee0f8938b62d668ed9105c96313fbd8b8bbd098'>dee0f89 ^
589db74 ^
98da4c9 ^
16c3f0a ^
dee0f89 ^
16c3f0a ^
589db74 ^


8126d82 ^
589db74 ^


16c3f0a ^





589db74 ^




fa04a1e ^
16c3f0a ^

dee0f89 ^
16c3f0a ^



dee0f89 ^
fa04a1e ^
dee0f89 ^

2958579 ^
dee0f89 ^

589db74 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45


                
                 
              
 
                                          
 
                                  
                                     


             
                              


                                                    





                                                




                                                                            
                                         

                                           
                                       



                                        
                                        
                                    

                                                                         
                                                                         

                 

                  
package commands

import (
	"os/exec"
	"time"

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

	"github.com/gdamore/tcell"
	"github.com/riywo/loginshell"
)

func init() {
	register("term", Term)
}

func Term(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.PushStatus(" "+err.Error(), 10*time.Second).
				Color(tcell.ColorDefault, tcell.ColorRed)
		}
	}
	return nil
}