Function: kotl-mode:back-to-indentation
kotl-mode:back-to-indentation is an interactive and byte-compiled
function defined in kotl-mode.el.
Signature
(kotl-mode:back-to-indentation)
Documentation
Move point to the first non-read-only non-whitespace character on this line.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:back-to-indentation ()
"Move point to the first non-read-only non-whitespace character on this line."
(interactive)
(kotl-mode:maintain-region-highlight)
(back-to-indentation)
(kotl-mode:to-valid-position))