Variable: viper-repeat-from-history-key

viper-repeat-from-history-key is a customizable variable defined in viper-macs.el.gz.

Value

f12

Documentation

Prefix key for accessing previously typed Vi commands.

The previous command is accessible, as usual, via .. The command before this can be invoked as <this key> 1, and the command before that, and the command before that one is accessible as <this key> 2. Basically, a key is a symbol, e.g., a, \1, f2, etc., or a list, e.g., (meta control f1).

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/viper-macs.el.gz
(defcustom viper-repeat-from-history-key 'f12
  "Prefix key for accessing previously typed Vi commands.

The previous command is accessible, as usual, via `.'.  The command before this
can be invoked as `<this key> 1', and the command before that, and the command
before that one is accessible as `<this key> 2'.
Basically, a key is a symbol, e.g., `a', `\\1', `f2', etc., or a
list, e.g., `(meta control f1)'."
  :type 'sexp
  :group 'viper)