Function: hmouse-set-bindings

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

Signature

(hmouse-set-bindings KEY-BINDING-LIST)

Documentation

Set mouse keys used as Smart Keys to bindings in KEY-BINDING-LIST.

KEY-BINDING-LIST is the value of either hmouse-previous-bindings
(mouse bindings prior to Smart Key setup) or hmouse-bindings (mouse
bindings after Smart Key setup.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-key.el
(defun hmouse-set-bindings (key-binding-list)
  "Set mouse keys used as Smart Keys to bindings in KEY-BINDING-LIST.
KEY-BINDING-LIST is the value of either `hmouse-previous-bindings'
\(mouse bindings prior to Smart Key setup) or `hmouse-bindings' (mouse
bindings after Smart Key setup."
  (cond
    ;; Do nothing when running in batch mode.
    (noninteractive)
    ;;
    ;; GNU Emacs or InfoDock
    (t
     (mapcar
       (lambda (key-and-binding)
	 (hkey-set-key (car key-and-binding) (cdr key-and-binding)))
       key-binding-list))))