Function: vi-forward-upto-char
vi-forward-upto-char is an interactive and byte-compiled function
defined in vi.el.gz.
Signature
(vi-forward-upto-char COUNT CHAR)
Documentation
Find upto the COUNT'th CHAR forward on current line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-forward-upto-char (count char)
"Find upto the COUNT'th CHAR forward on current line."
(interactive "p\nc")
(setq vi-last-find-char (cons 1 (cons char t)))
(vi-repeat-last-find-char count))