Variable: erc-pal-highlight-type
erc-pal-highlight-type is a customizable variable defined in
erc-match.el.gz.
Value
nick
Documentation
Determines how to highlight messages by pals.
See erc-pals.
The following values are allowed:
nil - do not highlight the message at all
nick - highlight pal's nickname only
message - highlight the entire message from pal
all - highlight the entire message (including the nick)
from pal
Any other value disables pal highlighting altogether.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-match.el.gz
(defcustom erc-pal-highlight-type 'nick
"Determines how to highlight messages by pals.
See `erc-pals'.
The following values are allowed:
nil - do not highlight the message at all
`nick' - highlight pal's nickname only
`message' - highlight the entire message from pal
`all' - highlight the entire message (including the nick)
from pal
Any other value disables pal highlighting altogether."
:type '(choice (const nil)
(const nick)
(const message)
(const all)))