Function: eshell-hist-mode

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

Signature

(eshell-hist-mode &optional ARG)

Documentation

Minor mode for the eshell-hist module.

This is a minor mode. If called interactively, toggle the Eshell-Hist mode mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode.

If called from Lisp, toggle the mode if ARG is toggle. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number.

To check whether the minor mode is enabled in the current buffer, evaluate eshell-hist-mode(var)/eshell-hist-mode(fun).

The mode's hook is called both when the mode is enabled and when it is disabled.

<down> eshell-next-matching-input-from-input
<up> eshell-previous-matching-input-from-input
C-<down> eshell-next-input
C-<up> eshell-previous-input
C-c C-l eshell-list-history
C-c C-x eshell-get-next-from-history
C-c M-n eshell-next-input
C-c M-p eshell-previous-input
C-c M-r eshell-previous-matching-input-from-input
C-c M-s eshell-next-matching-input-from-input
M-n eshell-next-matching-input-from-input
M-p eshell-previous-matching-input-from-input
M-r eshell-previous-matching-input
M-s eshell-next-matching-input

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/em-hist.el.gz
(define-minor-mode eshell-hist-mode
  "Minor mode for the eshell-hist module.

\\{eshell-hist-mode-map}"
  :keymap eshell-hist-mode-map)