Variable: eshell-command-repeat-map
eshell-command-repeat-map is a variable defined in esh-mode.el.gz.
Value
C-b eshell-backward-argument
C-f eshell-forward-argument
Documentation
Keymap to repeat eshell-command key sequences. Used in repeat-mode(var)/repeat-mode(fun).
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defvar-keymap eshell-command-repeat-map
:doc "Keymap to repeat eshell-command key sequences. Used in `repeat-mode'."
:repeat t
"C-f" #'eshell-forward-argument
"C-b" #'eshell-backward-argument)