Implement abort command
This allows the user to close the compose tab without sending their current composition.
This commit is contained in:
parent
2c486cb7f5
commit
b0b3287bbd
1 changed files with 23 additions and 0 deletions
23
commands/compose/abort.go
Normal file
23
commands/compose/abort.go
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
package compose
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
|
||||||
|
"git.sr.ht/~sircmpwn/aerc2/widgets"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
register("abort", CommandAbort)
|
||||||
|
}
|
||||||
|
|
||||||
|
func CommandAbort(aerc *widgets.Aerc, args []string) error {
|
||||||
|
if len(args) != 1 {
|
||||||
|
return errors.New("Usage: abort")
|
||||||
|
}
|
||||||
|
composer, _ := aerc.SelectedTab().(*widgets.Composer)
|
||||||
|
|
||||||
|
aerc.RemoveTab(composer)
|
||||||
|
composer.Close()
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
Loading…
Reference in a new issue