Sets an override binding for a binding command. Override bindings are temporary. The bound key will revert to its normal setting once the override is removed. Priority overrides work the same way but will revert to the previous override binding (if present) rather than the base binding for the key.

Call with a fourth argument of nil to remove the override binding for a specific key, or see ClearOverrideBindings() to remove all bindings associated with a given owner.


See also Keybind functions.

Signature:

SetOverrideBinding(owner, isPriority, "key", "command")

Arguments:

  • owner - The Frame (or other widget) object responsible for this override (table)
  • isPriority - True if this binding takes higher priority than other override bindings; false otherwise (boolean)
  • key - A key or key combination (e.g. "CTRL-2") (string, binding)
  • command - Name of a key binding command, or nil to remove the override binding (string)