Function: vcursor-copy-word

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

Signature

(vcursor-copy-word ARG)

Documentation

Copy ARG words from the virtual cursor position to point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vcursor.el.gz
(defun vcursor-copy-word (arg)
  "Copy ARG words from the virtual cursor position to point."
  (interactive "p")
  (vcursor-copy (vcursor-get-char-count #'forward-word arg))
  )