Variable: vcursor-key-bindings

vcursor-key-bindings is a customizable variable defined in vcursor.el.gz.

Value

nil

Documentation

How to bind keys when vcursor is loaded.

If t, guess; if xterm, use bindings suitable for an X terminal; if oemacs, use bindings which work on a PC with Oemacs. If nil, don't define any key bindings.

Default is nil.

This variable was added, or its default value changed, in Emacs 20.3.

Probably introduced at or before Emacs version 20.3.

Source Code

;; Defined in /usr/src/emacs/lisp/vcursor.el.gz
(defcustom vcursor-key-bindings nil
  "How to bind keys when vcursor is loaded.
If t, guess; if `xterm', use bindings suitable for an X terminal; if
`oemacs', use bindings which work on a PC with Oemacs.  If nil, don't
define any key bindings.

Default is nil."
  :type '(choice (const t) (const nil) (const xterm) (const oemacs))
  :set #'vcursor-bind-keys
  :version "20.3")