aboutsummaryrefslogblamecommitdiffstats
path: root/commands/msgview/toggle-key-passthrough.go
blob: 6cd575bfe49c2e46a7801a821922a5a6440c4045 (plain) (tree)


































                                                                                  
package msgview

import (
	"errors"

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

type ToggleKeyPassthrough struct{}

func init() {
	register(ToggleKeyPassthrough{})
}

func (ToggleKeyPassthrough) Aliases() []string {
	return []string{"toggle-key-passthrough"}
}

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

func (ToggleKeyPassthrough) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) != 1 {
		return errors.New("Usage: toggle-key-passthrough")
	}
	mv, _ := aerc.SelectedTab().(*widgets.MessageViewer)
	keyPassthroughEnabled := mv.ToggleKeyPassthrough()
	if keyPassthroughEnabled {
		aerc.SetExtraStatus("[passthrough]")
	} else {
		aerc.ClearExtraStatus()
	}
	return nil
}