Function: eshell-forward-argument
eshell-forward-argument is an interactive and byte-compiled function
defined in esh-mode.el.gz.
Signature
(eshell-forward-argument &optional ARG)
Documentation
Move forward ARG arguments.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defun eshell-forward-argument (&optional arg)
"Move forward ARG arguments."
(interactive "p")
(eshell-move-argument (point-max) 'forward-char 'arg-end arg))