Variable: xterm--auto-xt-mouse-allowed-types
xterm--auto-xt-mouse-allowed-types is a variable defined in
xterm.el.gz.
Value
"\\`\\(?:alacritty\\|contour\\)\\'"
Documentation
Like xterm--auto-xt-mouse-allowed-names, but for the terminal's type.
This will get matched against the environment variable "TERM".
Source Code
;; Defined in /usr/src/emacs/lisp/term/xterm.el.gz
(defconst xterm--auto-xt-mouse-allowed-types
(rx string-start
(or "alacritty"
"contour")
string-end)
"Like `xterm--auto-xt-mouse-allowed-names', but for the terminal's type.
This will get matched against the environment variable \"TERM\".")