Variable: shell-fontify-input-enable

shell-fontify-input-enable is a customizable variable defined in shell.el.gz.

Value

t

Documentation

Enable fontification of input in shell buffers.

This variable only has effect when the shell is started. Use the command comint-fontify-input-mode(var)/comint-fontify-input-mode(fun) to toggle fontification of input.

This variable was added, or its default value changed, in Emacs 29.1.

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/shell.el.gz
(defcustom shell-fontify-input-enable t
  "Enable fontification of input in shell buffers.
This variable only has effect when the shell is started.  Use the
command `comint-fontify-input-mode' to toggle fontification of
input."
  :type 'boolean
  :group 'shell
  :safe 'booleanp
  :version "29.1")