Variable: shell-highlight-undef-aliases
shell-highlight-undef-aliases is a customizable variable defined in
shell.el.gz.
Value
nil
Documentation
List of shell commands to highlight as a command alias.
This variable was added, or its default value changed, in Emacs 29.1.
Source Code
;; Defined in /usr/src/emacs/lisp/shell.el.gz
;;; Highlight undefined commands
;;
;; To highlight non-existent shell commands, customize
;; `shell-highlight-undef-enable' to t. To highlight some shell
;; commands as aliases, add them to `shell-highlight-undef-aliases'.
(defcustom shell-highlight-undef-aliases nil
"List of shell commands to highlight as a command alias."
:group 'shell
:type '(repeat string)
:version "29.1")