Function: eshell-variables-list

eshell-variables-list is a byte-compiled function defined in esh-var.el.gz.

Signature

(eshell-variables-list)

Documentation

Generate list of applicable variables.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-var.el.gz
(defun eshell-variables-list ()
  "Generate list of applicable variables."
  (let ((argname pcomplete-stub))
    (sort
     (append (eshell-envvar-names)
             (all-completions argname obarray #'boundp))
     #'string-lessp)))