Function: hkey-either
hkey-either is an interactive and byte-compiled function defined in
hmouse-drv.el.
Signature
(hkey-either &optional ARG)
Documentation
Execute action-key or with non-nil ARG execute assist-key.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-drv.el
(defun hkey-either (&optional arg)
"Execute `action-key' or with non-nil ARG execute `assist-key'."
(interactive "P")
(when (and (featurep 'hycontrol)
(or hycontrol-windows-mode hycontrol-frames-mode))
;; Ignore any prefix arg set by HyControl and use prefix arg
;; only if it was given by a user as any number of C-u presses
;; and is therefore a list.
(unless (listp arg) (setq arg nil)))
(if arg (assist-key) (action-key)))