Variable: viper-change-notification-threshold
viper-change-notification-threshold is a customizable variable defined
in viper-init.el.gz.
Value
1
Documentation
Notify the user when this many lines or characters have been deleted/yanked.
For line-deleting/yanking commands (like dd, yy), the value denotes the
number of lines. For character-based commands (such as x, dw, etc.), the
value refers to the number of characters affected.
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/viper-init.el.gz
(defcustom viper-change-notification-threshold 1
"Notify the user when this many lines or characters have been deleted/yanked.
For line-deleting/yanking commands (like `dd', `yy'), the value denotes the
number of lines. For character-based commands (such as `x', `dw', etc.), the
value refers to the number of characters affected."
:type 'integer
:group 'viper-misc)