aboutsummaryrefslogtreecommitdiff
path: root/commands/term-close.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/term-close.go')
-rw-r--r--commands/term-close.go29
1 files changed, 29 insertions, 0 deletions
diff --git a/commands/term-close.go b/commands/term-close.go
new file mode 100644
index 0000000..38fcc27
--- /dev/null
+++ b/commands/term-close.go
@@ -0,0 +1,29 @@
+package commands
+
+import (
+ "errors"
+
+ "git.sr.ht/~sircmpwn/aerc2/lib/ui"
+ "git.sr.ht/~sircmpwn/aerc2/widgets"
+)
+
+func init() {
+ Register("term-close", TermClose)
+}
+
+func TermClose(aerc *widgets.Aerc, args []string) error {
+ if len(args) != 1 {
+ return errors.New("Usage: term-close")
+ }
+ grid, ok := aerc.SelectedTab().(*ui.Grid)
+ if !ok {
+ return errors.New("Error: not a terminal")
+ }
+ for _, child := range grid.Children() {
+ if term, ok := child.(*widgets.Terminal); ok {
+ term.Close(nil)
+ return nil
+ }
+ }
+ return errors.New("Error: not a terminal")
+}