Function: eshell-insert-buffer-name
eshell-insert-buffer-name is an interactive and byte-compiled function
defined in esh-arg.el.gz.
Signature
(eshell-insert-buffer-name BUFFER-NAME)
Documentation
Insert BUFFER-NAME into the current buffer at point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-arg.el.gz
(defun eshell-insert-buffer-name (buffer-name)
"Insert BUFFER-NAME into the current buffer at point."
(interactive "BName of buffer: ")
(insert-and-inherit "#<buffer " buffer-name ">"))