Function: vcursor-execute-command

vcursor-execute-command is an interactive and byte-compiled function defined in vcursor.el.gz.

Signature

(vcursor-execute-command CMD)

Documentation

Execute COMMAND for the virtual cursor.

COMMAND is called interactively. Not all commands (in fact, only a small subset) are useful.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vcursor.el.gz
(defun vcursor-execute-command (cmd)
  "Execute COMMAND for the virtual cursor.
COMMAND is called interactively.  Not all commands (in fact, only a
small subset) are useful."
  (interactive "CCommand: ")
  (vcursor-window-funcall (list cmd))
  )