Function: eshell-isearch-backward-regexp

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

Signature

(eshell-isearch-backward-regexp &optional INVERT)

Documentation

Do incremental regexp search backward through past commands.

Probably introduced at or before Emacs version 31.1.

Key Bindings

Source Code

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