Function: kotl-mode:show-all

kotl-mode:show-all is an autoloaded, interactive and byte-compiled function defined in kotl-mode.el.

Signature

(kotl-mode:show-all &optional ARG)

Documentation

Show (expand) all cells in the current view.

With optional prefix ARG, toggle display of blank lines between cells.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
;;;###autoload
(defun kotl-mode:show-all (&optional arg)
  "Show (expand) all cells in the current view.
With optional prefix ARG, toggle display of blank lines between cells."
  (interactive "P")
  (when (kotl-mode:is-p)
    (kview:set-attr kotl-kview 'levels-to-show 0)
    (kview:set-attr kotl-kview 'lines-to-show 0)
    (outline-flag-region (point-min) (point-max) nil)
    (when arg
      (kvspec:toggle-blank-lines))
    (when (called-interactively-p 'interactive)
      (kvspec:update t))))