Function: kotl-mode:goto-cell-ref
kotl-mode:goto-cell-ref is a byte-compiled function defined in
kotl-mode.el.
Signature
(kotl-mode:goto-cell-ref CELL-REF)
Documentation
With a current Koutline file buffer, display CELL-REF at window top.
See documentation for kcell:ref-to-id for valid cell-ref formats.
If CELL-REF is nil, show the first cell in the view.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:goto-cell-ref (cell-ref)
"With a current Koutline file buffer, display CELL-REF at window top.
See documentation for `kcell:ref-to-id' for valid cell-ref formats.
If CELL-REF is nil, show the first cell in the view."
(cond ((and (stringp cell-ref)
(> (length cell-ref) 0)
(eq ?| (aref cell-ref 0)))
;; Activate view spec in current window.
(kotl-mode:goto-cell cell-ref))
(cell-ref
(kotl-mode:goto-cell cell-ref)
(recenter 0))
(t
(kotl-mode:beginning-of-buffer)
(recenter 0))))