Variable: inhibit-hyperbole-messaging

inhibit-hyperbole-messaging is a customizable variable defined in hsettings.el.

Value

t

Documentation

Determine whether Hyperbole supports explicit buttons in mail and news buffers.

The default of t means disable such support (work remains to modernize these features). When t, Hyperbole will not alter messaging mode hooks nor overload functions from these packages, preventing potential incompatibilities.

If you want to use Hyperbole buttons in mail and news buffers, set this variable to nil by adding (hyperbole-toggle-messaging 1) to your personal Emacs initialization file, prior to loading Hyperbole, and then restart Emacs.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsettings.el
(defcustom inhibit-hyperbole-messaging t
  "Determine whether Hyperbole supports explicit buttons in mail and news buffers.
The default of t means disable such support (work remains to
modernize these features).  When t, Hyperbole will not alter
messaging mode hooks nor overload functions from these packages,
preventing potential incompatibilities.

If you want to use Hyperbole buttons in mail and news buffers, set
this variable to nil by adding (hyperbole-toggle-messaging 1)
to your personal Emacs initialization file, prior to loading
Hyperbole, and then restart Emacs."
  :type 'boolean
  :initialize #'custom-initialize-set
  :set (lambda (_symbol value)
	 ;; Invert value to produce ARG for hyperbole-toggle-messaging.
	 (hyperbole-toggle-messaging (if value 0 1)))
  :group 'hyperbole-buttons)