Function: kotl-mode:fill-tree

kotl-mode:fill-tree is an interactive and byte-compiled function defined in kotl-mode.el.

Signature

(kotl-mode:fill-tree &optional TOP-P)

Documentation

Refill each cell within the tree whose root is at point.

Skip cells with a non-nil no-fill attribute. With optional prefix argument TOP-P non-nil, refill all cells in the outline.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:fill-tree (&optional top-p)
  "Refill each cell within the tree whose root is at point.
Skip cells with a non-nil no-fill attribute.
With optional prefix argument TOP-P non-nil, refill all cells in the outline."
  (interactive "P")
  ;; Temporarily expand, then refill cells lacking no-fill property.
  (kview:map-expanded-tree (lambda (_kview) (kotl-mode:fill-cell)) kotl-kview top-p))