Function: subword-backward

subword-backward is an interactive and byte-compiled function defined in subword.el.gz.

Signature

(subword-backward &optional ARG)

Documentation

Do the same as backward-word 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 backward-word.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/subword.el.gz
(defun subword-backward (&optional arg)
  "Do the same as `backward-word' but on subwords.
See the command `subword-mode' for a description of subwords.
Optional argument ARG is the same as for `backward-word'."
  (interactive "^p")
  (subword-forward (- (or arg 1))))