Variable: erc-track-faces-normal-list
erc-track-faces-normal-list is a customizable variable defined in
erc-track.el.gz.
Value
((erc-button erc-default-face) erc-dangerous-host-face
erc-nick-default-face
(erc-button-nick-default-face erc-nick-default-face)
(erc-button-nick-default-face erc-default-face) erc-default-face
erc-notice-face erc-action-face)
Documentation
A list of faces considered to be part of normal conversations.
This list is used to highlight active buffer names in the mode line.
If a message contains one of the faces in this list, and the previous mode line face for this buffer is also in this list, then the buffer name will be highlighted using the face from the message. This gives a rough indication that active conversations are occurring in these channels.
Note that ERC makes a copy of this option when initializing the
module. To see your changes reflected mid-session, cycle
M-x erc-track-mode (erc-track-mode).
The effect may be disabled by setting this variable to nil.
This variable was added, or its default value changed, in ERC version
5.6.1.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-track.el.gz
(defcustom erc-track-faces-normal-list
'((erc-button erc-default-face)
erc-dangerous-host-face
erc-nick-default-face
(erc-button-nick-default-face erc-nick-default-face)
(erc-button-nick-default-face erc-default-face)
erc-default-face
erc-notice-face
erc-action-face)
"A list of faces considered to be part of normal conversations.
This list is used to highlight active buffer names in the mode line.
If a message contains one of the faces in this list, and the
previous mode line face for this buffer is also in this list, then
the buffer name will be highlighted using the face from the
message. This gives a rough indication that active conversations
are occurring in these channels.
Note that ERC makes a copy of this option when initializing the
module. To see your changes reflected mid-session, cycle
\\[erc-track-mode].
The effect may be disabled by setting this variable to nil."
:package-version '(ERC . "5.6.1")
:set #'erc-track--massage-nick-button-faces
:type (erc--with-dependent-type-match
(repeat (choice face (repeat :tag "Combination" face)))
erc-button))