Function: eshell-insert-envvar
eshell-insert-envvar is an interactive and byte-compiled function
defined in esh-var.el.gz.
Signature
(eshell-insert-envvar ENVVAR-NAME)
Documentation
Insert ENVVAR-NAME into the current buffer at point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-var.el.gz
(defun eshell-insert-envvar (envvar-name)
"Insert ENVVAR-NAME into the current buffer at point."
(interactive
(list (read-envvar-name "Name of environment variable: " t)))
(insert-and-inherit "$" envvar-name))