ee5b537d53
Executing :close on a terminal would panic due to it already having been removed. This is also related to the fact that removing a tab doesn't check for whether it actually found a tab to remove or not.
30 lines
492 B
Go
30 lines
492 B
Go
package terminal
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/widgets"
|
|
)
|
|
|
|
type Close struct{}
|
|
|
|
func init() {
|
|
register(Close{})
|
|
}
|
|
|
|
func (_ Close) Aliases() []string {
|
|
return []string{"close"}
|
|
}
|
|
|
|
func (_ Close) Complete(aerc *widgets.Aerc, args []string) []string {
|
|
return nil
|
|
}
|
|
|
|
func (_ Close) Execute(aerc *widgets.Aerc, args []string) error {
|
|
if len(args) != 1 {
|
|
return errors.New("Usage: close")
|
|
}
|
|
term, _ := aerc.SelectedTab().(*widgets.Terminal)
|
|
term.Close(nil)
|
|
return nil
|
|
}
|