Function: org-transpose-words
org-transpose-words is an interactive and byte-compiled function
defined in org.el.gz.
Signature
(org-transpose-words)
Documentation
Transpose words for Org.
This uses the org-mode-transpose-word-syntax-table syntax
table, which interprets characters in org-emphasis-alist as
word constituents.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-transpose-words ()
"Transpose words for Org.
This uses the `org-mode-transpose-word-syntax-table' syntax
table, which interprets characters in `org-emphasis-alist' as
word constituents."
(interactive)
(with-syntax-table org-mode-transpose-word-syntax-table
(call-interactively 'transpose-words)))