2022-03-14 04:03:34 +01:00
|
|
|
package msgview
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
2022-03-18 22:35:33 +01:00
|
|
|
"git.sr.ht/~rjarry/aerc/lib/statusline"
|
2022-03-14 04:03:34 +01:00
|
|
|
"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")
|
|
|
|
}
|
2022-07-18 12:54:55 +02:00
|
|
|
mv, _ := aerc.SelectedTabContent().(*widgets.MessageViewer)
|
2022-03-14 04:03:34 +01:00
|
|
|
keyPassthroughEnabled := mv.ToggleKeyPassthrough()
|
2022-03-18 22:35:33 +01:00
|
|
|
if acct := mv.SelectedAccount(); acct != nil {
|
|
|
|
acct.SetStatus(statusline.Passthrough(keyPassthroughEnabled))
|
2022-03-14 04:03:34 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|