Function: hui-select-back-to-indentation
hui-select-back-to-indentation is a byte-compiled function defined in
hui-select.el.
Signature
(hui-select-back-to-indentation)
Documentation
Move point to the first non-whitespace character on this line and return point.
This respects the current syntax table definition of whitespace, whereas
back-to-indentation does not. This is relevant in literate programming and
mail and news reply modes.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-select.el
(defun hui-select-back-to-indentation ()
"Move point to the first non-whitespace character on this line and return point.
This respects the current syntax table definition of whitespace, whereas
`back-to-indentation' does not. This is relevant in literate programming and
mail and news reply modes."
(goto-char (min (line-end-position)
(progn (beginning-of-line)
(skip-syntax-forward " ")
(point)))))