Function: eshell-plain-command--which
eshell-plain-command--which is a byte-compiled function defined in
esh-cmd.el.gz.
Signature
(eshell-plain-command--which COMMAND)
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-cmd.el.gz
(defun eshell-plain-command--which (command)
(if-let ((sym (eshell--find-plain-lisp-command command)))
(or (with-output-to-string
(require 'help-fns)
(princ (format "%s is " sym))
(help-fns-function-description-header sym))
command)
(eshell-external-command--which command)))