Function: hyperbole-toggle-messaging
hyperbole-toggle-messaging is an autoloaded, interactive and
byte-compiled function defined in hsettings.el.
Signature
(hyperbole-toggle-messaging &optional ARG)
Documentation
Toggle Hyperbole support for explicit buttons in mail and news buffers.
Toggle the boolean variable `inhibit-hyperbole-messaging’ and either add hooks (nil value) or remove them (t value).
With optional prefix ARG > 0, enable support. If ARG <= 0, disable/inhibit support.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsettings.el
;; This must be defined before the defcustom `inhbit-hyperbole-messaging'.
;;;###autoload
(defun hyperbole-toggle-messaging (&optional arg)
"Toggle Hyperbole support for explicit buttons in mail and news buffers.
Toggle the boolean variable `inhibit-hyperbole-messaging’ and either
add hooks (nil value) or remove them (t value).
With optional prefix ARG > 0, enable support. If ARG <= 0,
disable/inhibit support."
(interactive "P")
(setq inhibit-hyperbole-messaging (if (null arg)
(not inhibit-hyperbole-messaging)
(<= (prefix-numeric-value arg) 0)))
(if inhibit-hyperbole-messaging
(var:remove-all)
(var:append-all)
;; Add any hooks that were skipped when inhibit-hyperbole-messaging
;; was nil.
(cond ((boundp 'hyperbole-loading))
((not after-init-time)
(add-hook 'after-init-hook (lambda () (load "hyperbole"))))
(t (load "hyperbole"))))
(if (called-interactively-p 'interactive)
(message "Hyperbole messaging button support is %s"
(if inhibit-hyperbole-messaging "disabled" "enabled"))))