Function: hmouse-set-key-list

hmouse-set-key-list is a byte-compiled function defined in hmouse-sh.el.

Signature

(hmouse-set-key-list BINDING KEY-LIST)

Documentation

Define a Hyperbole global minor mode key from KEY-LIST bound to BINDING.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-sh.el
(defun hmouse-set-key-list (binding key-list)
  "Define a Hyperbole global minor mode key from KEY-LIST bound to BINDING."
  (mapc (lambda (key) (hkey-set-key key binding)) key-list)
  nil)