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 or xterm, use the default bindings; if oemacs, use
alternative key bindings. If nil, don't define any key bindings.
Default is nil.
This variable was added, or its default value changed, in Emacs 20.3.
Source Code
;; Defined in /usr/src/emacs/lisp/vcursor.el.gz
;; TODO: Get rid of references to "oemacs", which was an ancient
;; MS-DOS compatible release of Emacs 19.
(defcustom vcursor-key-bindings nil
"How to bind keys when vcursor is loaded.
If t or `xterm', use the default bindings; if `oemacs', use
alternative key bindings. 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")