Function: kview:beginning-of-actual-line

kview:beginning-of-actual-line is a byte-compiled function defined in kview.el.

Signature

(kview:beginning-of-actual-line)

Documentation

Go to the beginning of the current line whether collapsed or not.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
(defun kview:beginning-of-actual-line ()
  "Go to the beginning of the current line whether collapsed or not."
  (when (re-search-backward "[\n\r]" nil 'move)
    (forward-char 1)))