Variable: viper-keep-point-on-repeat

viper-keep-point-on-repeat is a customizable variable defined in viper-init.el.gz.

Value

t

Documentation

If t, don't move point when repeating previous command.

This is useful for doing repeated changes with the . key. The user can change this to nil, if she likes when the cursor moves to a new place after repeating previous Vi command.

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/viper-init.el.gz
;; Variables for repeating destructive commands

(defcustom viper-keep-point-on-repeat t
  "If t, don't move point when repeating previous command.
This is useful for doing repeated changes with the `.' key.
The user can change this to nil, if she likes when the cursor moves
to a new place after repeating previous Vi command."
  :type 'boolean
  :group 'viper)