aboutsummaryrefslogblamecommitdiffstats
path: root/commands/compose/attach-key.go
blob: 208e9fd8e7b49d8724ceb600b1950e16153151df (plain) (tree)


























                                                                       
                                                                    
 
                                                           
 
package compose

import (
	"errors"

	"git.sr.ht/~rjarry/aerc/widgets"
)

type AttachKey struct{}

func init() {
	register(AttachKey{})
}

func (AttachKey) Aliases() []string {
	return []string{"attach-key"}
}

func (AttachKey) Complete(aerc *widgets.Aerc, args []string) []string {
	return nil
}

func (AttachKey) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) != 1 {
		return errors.New("Usage: attach-key")
	}

	composer, _ := aerc.SelectedTabContent().(*widgets.Composer)

	return composer.SetAttachKey(!composer.AttachKey())
}