Function: hyrolo-to-entry-beginning
hyrolo-to-entry-beginning is an interactive and byte-compiled function
defined in hyrolo.el.
Signature
(hyrolo-to-entry-beginning &optional INCLUDE-SUB-ENTRIES)
Documentation
Move point to the beginning of the current entry.
With optional prefix arg INCLUDE-SUB-ENTRIES non-nil, move to the beginning of the highest ancestor level. Return final point.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-to-entry-beginning (&optional include-sub-entries)
"Move point to the beginning of the current entry.
With optional prefix arg INCLUDE-SUB-ENTRIES non-nil, move to the
beginning of the highest ancestor level. Return final point."
(interactive "P")
;; If in file hdr, move to the start of its first line
(hyrolo-hdr-to-first-line-p)
(if include-sub-entries
(unless (<= (hyrolo-outline-level) 1)
(hyrolo-outline-up-heading 80))
(hyrolo-outline-back-to-heading))
(point))