Variable: comint-terminfo-terminal
comint-terminfo-terminal is a customizable variable defined in
comint.el.gz.
Value
"dumb"
Documentation
Value to use for TERM when the system uses terminfo.
If the system's terminfo database contains a definition for the
"dumb-emacs-ansi" terminal (as all recent versions of terminfo do),
set this to "dumb-emacs-ansi" and then some terminfo-aware programs
will send colorized output when run under Comint.
This variable was added, or its default value changed, in Emacs 26.1.
Probably introduced at or before Emacs version 26.1.
Source Code
;; Defined in /usr/src/emacs/lisp/comint.el.gz
(defcustom comint-terminfo-terminal "dumb"
"Value to use for TERM when the system uses terminfo.
If the system's terminfo database contains a definition for the
\"dumb-emacs-ansi\" terminal (as all recent versions of terminfo do),
set this to \"dumb-emacs-ansi\" and then some terminfo-aware programs
will send colorized output when run under Comint."
:type '(choice (const "dumb")
(const "dumb-emacs-ansi")
string)
:group 'comint
:version "26.1")