Function: vi-reverse-last-find-char
vi-reverse-last-find-char is an interactive and byte-compiled function
defined in vi.el.gz.
Signature
(vi-reverse-last-find-char COUNT &optional FIND-ARG)
Documentation
Reverse last f F t T operation COUNT times. If the optional FIND-ARG is given, it is used instead of the saved one.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-reverse-last-find-char (count &optional find-arg)
"Reverse last f F t T operation COUNT times. If the optional FIND-ARG
is given, it is used instead of the saved one."
(interactive "p")
(if (null find-arg) (setq find-arg vi-last-find-char))
(if (null find-arg)
(progn (ding) (message "No last find char to repeat."))
(vi-find-char (cons (* (car find-arg) -1) (cdr find-arg)) count))) ;6/13/86