Function: eshell-isearch-backward

eshell-isearch-backward is an interactive and byte-compiled function defined in em-hist.el.gz.

Signature

(eshell-isearch-backward &optional INVERT)

Documentation

Do incremental search backward through past commands.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/em-hist.el.gz
(defun eshell-isearch-backward (&optional invert)
  "Do incremental search backward through past commands."
  (interactive nil eshell-mode)
  (setq eshell--force-history-isearch t)
  (if invert
      (isearch-forward nil t)
    (isearch-backward nil t)))