1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
package msgview
import (
"git.sr.ht/~rjarry/aerc/app"
"git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~rjarry/aerc/config"
)
type ToggleKeyPassthrough struct{}
func init() {
commands.Register(ToggleKeyPassthrough{})
}
func (ToggleKeyPassthrough) Description() string {
return "Enter or exit the passthrough key bindings context."
}
func (ToggleKeyPassthrough) Context() commands.CommandContext {
return commands.MESSAGE_VIEWER
}
func (ToggleKeyPassthrough) Aliases() []string {
return []string{"toggle-key-passthrough"}
}
func (ToggleKeyPassthrough) Execute(args []string) error {
app.SetKeyPassthrough(!config.Viewer.KeyPassthrough)
return nil
}
|