Variable: eshell-ls-highlight-alist
eshell-ls-highlight-alist is a customizable variable defined in
em-ls.el.gz.
Value
nil
Documentation
This alist correlates test functions to color.
The format of the members of this alist is
(TEST-SEXP . FACE)
If TEST-SEXP evals to non-nil, that face will be used to highlight the
name of the file. The first match wins. file and attrs are in
scope during the evaluation of TEST-SEXP.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-ls.el.gz
(defcustom eshell-ls-highlight-alist nil
"This alist correlates test functions to color.
The format of the members of this alist is
(TEST-SEXP . FACE)
If TEST-SEXP evals to non-nil, that face will be used to highlight the
name of the file. The first match wins. `file' and `attrs' are in
scope during the evaluation of TEST-SEXP."
:type '(repeat (cons function face)))