Function: eshell-repeat-argument

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

Signature

(eshell-repeat-argument &optional ARG)

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defun eshell-repeat-argument (&optional arg)
  (interactive "p")
  (let ((begin (save-excursion
		 (eshell-backward-argument arg)
		 (point))))
    (kill-ring-save begin (point))
    (yank)))