Function: hs-show-all
hs-show-all is an interactive and byte-compiled function defined in
hideshow.el.gz.
Signature
(hs-show-all)
Documentation
Show everything then run hs-show-hook. See run-hooks.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/hideshow.el.gz
(defun hs-show-all ()
"Show everything then run `hs-show-hook'. See `run-hooks'."
(interactive)
(hs-life-goes-on
(message "Showing all blocks ...")
(let (hs-allow-nesting)
(hs-discard-overlays (point-min) (point-max)))
(message "Showing all blocks ... done")
(run-hooks 'hs-show-hook)))