Function: subword-right
subword-right is an interactive and byte-compiled function defined in
subword.el.gz.
Signature
(subword-right &optional ARG)
Documentation
Do the same as right-word but on subwords.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/subword.el.gz
(defun subword-right (&optional arg)
"Do the same as `right-word' but on subwords."
(interactive "^p")
(if (eq (current-bidi-paragraph-direction) 'left-to-right)
(subword-forward arg)
(subword-backward arg)))