Function: vi-repeat-last-find-char

vi-repeat-last-find-char is an interactive and byte-compiled function defined in vi.el.gz.

Signature

(vi-repeat-last-find-char COUNT &optional FIND-ARG)

Documentation

Repeat last f F t T operation COUNT times. If 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-repeat-last-find-char (count &optional find-arg)
  "Repeat last f F t T operation COUNT times.  If 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 find-arg count)))