Variable: viper-allow-multiline-replace-regions
viper-allow-multiline-replace-regions is a customizable variable
defined in viper-init.el.gz.
Value
t
Documentation
If non-nil, Viper will allow multi-line replace regions.
This is an extension to standard Vi. If nil, commands that attempt to replace text spanning multiple lines first delete the text being replaced, as in standard Vi.
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/viper-init.el.gz
(defcustom viper-allow-multiline-replace-regions t
"If non-nil, Viper will allow multi-line replace regions.
This is an extension to standard Vi.
If nil, commands that attempt to replace text spanning multiple lines first
delete the text being replaced, as in standard Vi."
:type 'boolean
:group 'viper)