blob: 0f72292e7e1ede0849ac3d0eb7e7fa543777ec0b (
plain) (
blame)
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
|
package terminal
import (
"errors"
"git.sr.ht/~rjarry/aerc/app"
)
type Close struct{}
func init() {
register(Close{})
}
func (Close) Aliases() []string {
return []string{"close"}
}
func (Close) Complete(aerc *app.Aerc, args []string) []string {
return nil
}
func (Close) Execute(aerc *app.Aerc, args []string) error {
if len(args) != 1 {
return errors.New("Usage: close")
}
term, _ := aerc.SelectedTabContent().(*app.Terminal)
term.Close()
return nil
}
|