Function: vip-find-char-backward
vip-find-char-backward is an interactive and byte-compiled function
defined in vip.el.gz.
Signature
(vip-find-char-backward ARG)
Documentation
Find char ARG on line backward.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
(defun vip-find-char-backward (arg)
"Find char ARG on line backward."
(interactive "P")
(let ((val (vip-p-val arg)) (com (vip-getcom arg)))
(if (> val 0)
;; this means that the function was called interactively
(setq vip-f-char (read-char)
vip-f-forward nil
vip-f-offset nil)
(setq val (- val)))
(if com (move-marker vip-com-point (point)))
(vip-find-char
val (if (> (vip-p-val arg) 0) vip-f-char vip-F-char) nil nil)
(setq val (- val))
(if com
(progn
(setq vip-F-char vip-f-char);; set new vip-F-char
(vip-execute-com 'vip-find-char-backward val com)))))