Function: kotl-mode:transpose-sentences

kotl-mode:transpose-sentences is an interactive and byte-compiled function defined in kotl-mode.el.

Signature

(kotl-mode:transpose-sentences ARG)

Documentation

Interchange this (next) and previous sentence.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:transpose-sentences (arg)
  "Interchange this (next) and previous sentence."
  (interactive "*p")
  (transpose-subr 'kotl-mode:forward-sentence (prefix-numeric-value arg)))