Function: hyrolo-reveal-mode

hyrolo-reveal-mode is an interactive and byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-reveal-mode &optional ARG)

Documentation

Toggle uncloaking of invisible text near point (Reveal mode).

Reveal mode is a buffer-local minor mode. When enabled, it reveals invisible text around point.

Also see the reveal-auto-hide variable.

This is a minor mode. If called interactively, toggle the Hyrolo-Reveal mode mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode.

If called from Lisp, toggle the mode if ARG is toggle. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number.

To check whether the minor mode is enabled in the current buffer, evaluate hyrolo-reveal-mode(var)/hyrolo-reveal-mode(fun).

The mode's hook is called both when the mode is enabled and when it is disabled.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
;;; ************************************************************************
;;; hyrolo-reveal - Extend reveal-mode to support Org mode org-fold
;;; ************************************************************************

(define-minor-mode hyrolo-reveal-mode
  "Toggle uncloaking of invisible text near point (Reveal mode).

Reveal mode is a buffer-local minor mode.  When enabled, it
reveals invisible text around point.

Also see the `reveal-auto-hide' variable."
  :init-value nil
  :keymap nil
  nil) ;; Make this a no-op until can debug `reveal-mode' in *HyRolo* buffer