Function: bind-keys*

bind-keys* is an autoloaded macro defined in bind-key.el.gz.

Signature

(bind-keys* &rest ARGS)

Documentation

Bind multiple keys at once, in override-global-map.

Accepts the same keyword arguments as bind-keys (which see).

This binds keys in such a way that bindings are not overridden by other modes. See override-global-mode(var)/override-global-mode(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/bind-key.el.gz
;;;###autoload
(defmacro bind-keys* (&rest args)
  "Bind multiple keys at once, in `override-global-map'.
Accepts the same keyword arguments as `bind-keys' (which see).

This binds keys in such a way that bindings are not overridden by
other modes.  See `override-global-mode'."
  (macroexp-progn (bind-keys-form args 'override-global-map)))