Variable: eshell-explicit-remote-commands
eshell-explicit-remote-commands is a customizable variable defined in
esh-ext.el.gz.
Value
t
Documentation
If non-nil, support explicitly-remote commands.
These are commands with a full remote file name, such as
"/ssh:host:whoami". If this is enabled, you can also explicitly run
commands on your local host by using the "/local:" prefix, like
"/local:whoami".
This variable was added, or its default value changed, in Emacs 30.1.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-ext.el.gz
(defcustom eshell-explicit-remote-commands t
"If non-nil, support explicitly-remote commands.
These are commands with a full remote file name, such as
\"/ssh:host:whoami\". If this is enabled, you can also explicitly run
commands on your local host by using the \"/local:\" prefix, like
\"/local:whoami\"."
:type 'boolean
:version "30.1"
:group 'eshell-ext)