aboutsummaryrefslogtreecommitdiff
path: root/commands/terminal/close.go
blob: 0a9d100d2969208b1c02c12650ba5a50f5039565 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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, ok := aerc.SelectedTab().(*widgets.Terminal)
	if !ok {
		return errors.New("Error: not a terminal")
	}
	term.Close(nil)
	aerc.RemoveTab(term)
	return nil
}