Function: kotl-mode:backward-paragraph
kotl-mode:backward-paragraph is an interactive and byte-compiled
function defined in kotl-mode.el.
Signature
(kotl-mode:backward-paragraph &optional ARG)
Documentation
Move backward to start of paragraph.
With ARG N, do it N times; negative ARG -N means move forward N paragraphs. Return point.
A paragraph start is the beginning of a line which is a
first-line-of-paragraph or which is ordinary text and follows a
paragraph-separating line.
See forward-paragraph for more information.
Key Bindings
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:backward-paragraph (&optional arg)
"Move backward to start of paragraph.
With ARG N, do it N times; negative ARG -N means move forward N paragraphs.
Return point.
A paragraph start is the beginning of a line which is a
`first-line-of-paragraph' or which is ordinary text and follows a
paragraph-separating line.
See `forward-paragraph' for more information."
(interactive "p")
(setq arg (prefix-numeric-value arg))
(kotl-mode:forward-paragraph (- arg)))