aboutsummaryrefslogtreecommitdiff
path: root/commands/terminal/close.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/terminal/close.go')
-rw-r--r--commands/terminal/close.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/commands/terminal/close.go b/commands/terminal/close.go
new file mode 100644
index 0000000..68be6ac
--- /dev/null
+++ b/commands/terminal/close.go
@@ -0,0 +1,23 @@
+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")
+ }
+ thost, ok := aerc.SelectedTab().(*widgets.TermHost)
+ if !ok {
+ return errors.New("Error: not a terminal")
+ }
+ thost.Terminal().Close(nil)
+ return nil
+}