Function: hsys-org-meta-return-shared-p
hsys-org-meta-return-shared-p is an autoloaded and byte-compiled
function defined in hsys-org.el.
Signature
(hsys-org-meta-return-shared-p)
Documentation
Return non-nil if hyperbole-mode is active and shares the org-meta-return key.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
;;;###autoload
(defun hsys-org-meta-return-shared-p ()
"Return non-nil if hyperbole-mode is active and shares the org-meta-return key."
(let ((org-meta-return-keys (where-is-internal #'org-meta-return org-mode-map)))
(when (or (set:intersection org-meta-return-keys
(where-is-internal #'hkey-either hyperbole-mode-map))
(set:intersection org-meta-return-keys
(where-is-internal #'action-key hyperbole-mode-map)))
t)))