Function: vcursor-isearch-backward
vcursor-isearch-backward is an interactive and byte-compiled function
defined in vcursor.el.gz.
Signature
(vcursor-isearch-backward &optional REP NORECURS)
Documentation
Perform backward incremental search in the virtual cursor window.
The virtual cursor is moved to the resulting point; the ordinary cursor stays where it was.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vcursor.el.gz
(defun vcursor-isearch-backward (&optional rep norecurs)
"Perform backward incremental search in the virtual cursor window.
The virtual cursor is moved to the resulting point; the ordinary
cursor stays where it was."
(interactive "P")
(vcursor-window-funcall #'isearch-backward rep norecurs)
)