Function: eshell-history-isearch-wrap
eshell-history-isearch-wrap is a byte-compiled function defined in
em-hist.el.gz.
Signature
(eshell-history-isearch-wrap)
Documentation
Wrap the input history search.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-hist.el.gz
(defun eshell-history-isearch-wrap ()
"Wrap the input history search."
(if isearch-forward
(eshell-goto-history (1- (ring-length eshell-history-ring)))
(eshell-goto-history nil))
(goto-char (if isearch-forward eshell-last-output-end (point-max))))