Function: reveal-hide-revealed
reveal-hide-revealed is an interactive and byte-compiled function
defined in reveal.el.gz.
Signature
(reveal-hide-revealed)
Documentation
Hide all revealed text.
If there is revealed text under point, this command does not hide that text.
Probably introduced at or before Emacs version 28.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/reveal.el.gz
(defun reveal-hide-revealed ()
"Hide all revealed text.
If there is revealed text under point, this command does not hide
that text."
(interactive)
(let ((reveal-auto-hide t))
(reveal-post-command)))