Function: subword-left

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

Signature

(subword-left &optional ARG)

Documentation

Do the same as left-word but on subwords.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/subword.el.gz
(defun subword-left (&optional arg)
  "Do the same as `left-word' but on subwords."
  (interactive "^p")
  (if (eq (current-bidi-paragraph-direction) 'left-to-right)
      (subword-backward arg)
    (subword-forward arg)))