Function: eshell-backward-argument

eshell-backward-argument is an interactive and byte-compiled function defined in esh-mode.el.gz.

Signature

(eshell-backward-argument &optional ARG)

Documentation

Move backward ARG arguments.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defun eshell-backward-argument (&optional arg)
  "Move backward ARG arguments."
  (interactive "p")
  (eshell-move-argument (point-min) 'backward-char 'arg-begin arg))