diff options
Diffstat (limited to 'commands/terminal/close.go')
-rw-r--r-- | commands/terminal/close.go | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/commands/terminal/close.go b/commands/terminal/close.go deleted file mode 100644 index 610a8463..00000000 --- a/commands/terminal/close.go +++ /dev/null @@ -1,21 +0,0 @@ -package terminal - -import ( - "git.sr.ht/~rjarry/aerc/app" -) - -type Close struct{} - -func init() { - register(Close{}) -} - -func (Close) Aliases() []string { - return []string{"close"} -} - -func (Close) Execute(args []string) error { - term, _ := app.SelectedTabContent().(*app.Terminal) - term.Close() - return nil -} |