Function: kotl-mode:cell-attributes

kotl-mode:cell-attributes is an interactive and byte-compiled function defined in kotl-mode.el.

Signature

(kotl-mode:cell-attributes ALL-FLAG)

Documentation

Print attributes of the current kcell to standard-output.

With prefix arg ALL-FLAG non-nil, print the attributes of all visible kcells from the current buffer to standard-output.

See also the documentation for kotl-mode:cell-help.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:cell-attributes (all-flag)
  "Print attributes of the current kcell to `standard-output'.
With prefix arg ALL-FLAG non-nil, print the attributes of all visible
kcells from the current buffer to `standard-output'.

See also the documentation for `kotl-mode:cell-help'."
  (interactive "P")
  (save-excursion
    (if (not all-flag)
	(kotl-mode:print-attributes kotl-kview)
      (let ((lbl-sep-len (kview:label-separator-length kotl-kview)))
	(kotl-mode:beginning-of-buffer)
	(while (progn (kotl-mode:print-attributes kotl-kview)
		      (kcell-view:next t lbl-sep-len)))))))