c841f36513
This function returns an ui.Drawable. Use a more explicit name. This prepares for adding a new SelectedTab function which will return an ui.Tab. Signed-off-by: Robin Jarry <robin@jarry.cc> Acked-by: Koni Marti <koni.marti@gmail.com>
34 lines
793 B
Go
34 lines
793 B
Go
package msgview
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"git.sr.ht/~rjarry/aerc/lib/statusline"
|
|
"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.SelectedTabContent().(*widgets.MessageViewer)
|
|
keyPassthroughEnabled := mv.ToggleKeyPassthrough()
|
|
if acct := mv.SelectedAccount(); acct != nil {
|
|
acct.SetStatus(statusline.Passthrough(keyPassthroughEnabled))
|
|
}
|
|
return nil
|
|
}
|