Variable: viper-mode

viper-mode is a customizable variable defined in viper.el.gz.

Value

nil

Documentation

To Viperize or not to Viperize.

If t, viperize Emacs. If nil -- don't. If ask, ask the user. This variable is used primarily when Viper is being loaded.

Must be set in your init file before Viper is loaded. DO NOT set this variable interactively, unless you are using the customization widget.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/viper.el.gz
(defcustom viper-mode (cond (noninteractive nil)
			    (t 'ask))
  "To Viperize or not to Viperize.
If t, viperize Emacs.  If nil -- don't.  If `ask', ask the user.
This variable is used primarily when Viper is being loaded.

Must be set in your init file before Viper is loaded.
DO NOT set this variable interactively, unless you are using the customization
widget."
  :type '(choice (const nil) (const t) (const ask))
  :tag "Set Viper Mode on Loading")