Function: subword-transpose
subword-transpose is an interactive and byte-compiled function defined
in subword.el.gz.
Signature
(subword-transpose ARG)
Documentation
Do the same as transpose-words but on subwords.
See the command subword-mode(var)/subword-mode(fun) for a description of subwords.
Optional argument ARG is the same as for transpose-words.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/subword.el.gz
(defun subword-transpose (arg)
"Do the same as `transpose-words' but on subwords.
See the command `subword-mode' for a description of subwords.
Optional argument ARG is the same as for `transpose-words'."
(interactive "*p")
(transpose-subr 'subword-forward arg))