47 lines
940 B
Go
47 lines
940 B
Go
package compose
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"git.sr.ht/~rjarry/aerc/app"
|
|
"git.sr.ht/~rjarry/aerc/commands"
|
|
"git.sr.ht/~rjarry/aerc/config"
|
|
)
|
|
|
|
type Edit struct {
|
|
Edit bool `opt:"-e" desc:"Force [compose].edit-headers = true."`
|
|
NoEdit bool `opt:"-E" desc:"Force [compose].edit-headers = false."`
|
|
}
|
|
|
|
func init() {
|
|
commands.Register(Edit{})
|
|
}
|
|
|
|
func (Edit) Description() string {
|
|
return "(Re-)open text editor to edit the message in progress."
|
|
}
|
|
|
|
func (Edit) Context() commands.CommandContext {
|
|
return commands.COMPOSE_REVIEW
|
|
}
|
|
|
|
func (Edit) Aliases() []string {
|
|
return []string{"edit"}
|
|
}
|
|
|
|
func (e Edit) Execute(args []string) error {
|
|
composer, ok := app.SelectedTabContent().(*app.Composer)
|
|
if !ok {
|
|
return errors.New("only valid while composing")
|
|
}
|
|
|
|
editHeaders := (config.Compose.EditHeaders || e.Edit) && !e.NoEdit
|
|
|
|
err := composer.ShowTerminal(editHeaders)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
composer.FocusTerminal()
|
|
return nil
|
|
}
|