Function: vcursor-backward-char

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

Signature

(vcursor-backward-char ARG)

Documentation

Move the virtual cursor backward ARG characters.

Key Bindings

Source Code

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