Function: assist-key-error
assist-key-error is a byte-compiled function defined in hui-mouse.el.
Signature
(assist-key-error)
Documentation
If in Org mode and Hyperbole shares {M-RET}, run org-meta-return.
In any other context, signal an error.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mouse.el
(defun assist-key-error ()
"If in Org mode and Hyperbole shares {M-RET}, run `org-meta-return'.
In any other context, signal an error."
(if (and (funcall hsys-org-mode-function)
(hsys-org-meta-return-shared-p))
(hact 'hsys-org-meta-return)
(hypb:error "(Hyperbole Assist Key): No action defined for this context; try another location")))