Function: vcursor-isearch-forward
vcursor-isearch-forward is an interactive and byte-compiled function
defined in vcursor.el.gz.
Signature
(vcursor-isearch-forward &optional REP NORECURS)
Documentation
Perform forward 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-forward (&optional rep norecurs)
"Perform forward 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-forward rep norecurs)
)