Function: kotl-mode:bobp
kotl-mode:bobp is an interactive and byte-compiled function defined in
kotl-mode.el.
Signature
(kotl-mode:bobp)
Documentation
Return point if at the start of the first cell in kview, else nil.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
;;; ------------------------------------------------------------------------
;;; Predicates
;;; ------------------------------------------------------------------------
(defun kotl-mode:bobp ()
"Return point if at the start of the first cell in kview, else nil."
(interactive)
(or (bobp)
(and (not (save-excursion (re-search-backward "[\n\r]" nil t)))
(kotl-mode:bolp))))