Function: vcursor-backward-word

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

Signature

(vcursor-backward-word ARG)

Documentation

Move the virtual cursor backward ARG words.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vcursor.el.gz
(defun vcursor-backward-word (arg)
  "Move the virtual cursor backward ARG words."
  (interactive "p")
  (vcursor-relative-move #'backward-word arg)
  )