Function: kotl-mode:overview

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

Signature

(kotl-mode:overview &optional ARG)

Documentation

Show the first line of each cell.

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:overview (&optional arg)
  "Show the first line of each cell.
With optional prefix ARG, toggle display of blank lines between cells."
  (interactive "P")
  (kotl-mode:show-all)
  (when arg
    (kvspec:toggle-blank-lines))
  (kotl-mode:collapse-tree t))