Function: kview:goto-cell-id

kview:goto-cell-id is a byte-compiled function defined in kview.el.

Signature

(kview:goto-cell-id IDSTAMP-OR-STRING)

Documentation

Move point to start of cell with permanent IDSTAMP-OR-STRING.

On success, return t, else nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
(defun kview:goto-cell-id (idstamp-or-string)
  "Move point to start of cell with permanent IDSTAMP-OR-STRING.
On success, return t, else nil."
  (let* ((idstamp (if (integerp idstamp-or-string)
		      idstamp-or-string
		    (string-to-number idstamp-or-string)))
	 (pos (kproperty:position 'idstamp idstamp)))
    (when pos
      (goto-char pos)
      (forward-char (kview:label-separator-length kotl-kview))
      t)))