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.go24
1 files changed, 0 insertions, 24 deletions
diff --git a/commands/term-close.go b/commands/term-close.go
deleted file mode 100644
index 7da4f42..0000000
--- a/commands/term-close.go
+++ /dev/null
@@ -1,24 +0,0 @@
-package commands
-
-import (
- "errors"
-
- "git.sr.ht/~sircmpwn/aerc2/widgets"
-)
-
-func init() {
- // TODO: Move this command into a terminal-specific command set
- register("close", TermClose)
-}
-
-func TermClose(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
-}