Function: kotl-mode:print-attributes
kotl-mode:print-attributes is a byte-compiled function defined in
kotl-mode.el.
Signature
(kotl-mode:print-attributes KVIEW)
Documentation
Print to standard-output the attributes of the current visible kcell.
Takes argument _KVIEW (so it can be used with kview:map-tree) but always operates upon the current view.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:print-attributes (_kview)
"Print to `standard-output' the attributes of the current visible kcell.
Takes argument _KVIEW (so it can be used with `kview:map-tree')
but always operates upon the current view."
;; Move to start of visible cell to avoid printing attributes for an
;; invisible kcell which point may be over.
;; Print first line of cell for reference.
(save-excursion
(princ
(buffer-substring (progn (beginning-of-line) (point))
(progn (kview:end-of-actual-line)
(point)))))
(terpri)
(hattr:report
(append (list 'idstamp (kcell-view:idstamp-integer))
(kcell:plist (kcell-view:cell))))
(terpri))