Function: kotl-mode:transpose-words
kotl-mode:transpose-words is an interactive and byte-compiled function
defined in kotl-mode.el.
Signature
(kotl-mode:transpose-words ARG)
Documentation
Interchange words around point, leaving point after both words.
With prefix ARG, take word before or around point and drag it forward past ARG other words (backward if ARG negative). If ARG is zero, the words around or after point and around or after mark are interchanged.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:transpose-words (arg)
"Interchange words around point, leaving point after both words.
With prefix ARG, take word before or around point and drag it forward past
ARG other words (backward if ARG negative). If ARG is zero, the words around
or after point and around or after mark are interchanged."
(interactive "*p")
(transpose-subr 'kotl-mode:forward-word (prefix-numeric-value arg)))