Function: kotl-mode:mark-paragraph

kotl-mode:mark-paragraph is an interactive and byte-compiled function defined in kotl-mode.el.

Signature

(kotl-mode:mark-paragraph)

Documentation

Put point at beginning of this paragraph, mark at end.

The paragraph marked is the one that contains point or follows point.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:mark-paragraph ()
  "Put point at beginning of this paragraph, mark at end.
The paragraph marked is the one that contains point or follows point."
  (interactive)
  (forward-paragraph 1)
  (kotl-mode:to-valid-position t)
  (push-mark nil t t)
  (backward-paragraph 1)
  (kotl-mode:to-valid-position))