Variable: eshell-command-aliases-list

eshell-command-aliases-list is a variable defined in em-alias.el.gz.

Value

nil

Documentation

A list of command aliases currently defined by the user.

Each element of this alias is a list of the form:

  (NAME DEFINITION)

Where NAME is the textual name of the alias, and DEFINITION is the command string to replace that command with.

Note: this list should not be modified in your init file. Rather, any desired alias definitions should be declared using the alias command, which will automatically write them to the file named by eshell-aliases-file.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/em-alias.el.gz
(defvar eshell-command-aliases-list nil
  "A list of command aliases currently defined by the user.
Each element of this alias is a list of the form:

  (NAME DEFINITION)

Where NAME is the textual name of the alias, and DEFINITION is the
command string to replace that command with.

Note: this list should not be modified in your init file.
Rather, any desired alias definitions should be declared using
the `alias' command, which will automatically write them to the
file named by `eshell-aliases-file'.")