Variable: erc-keyword-highlight-type

erc-keyword-highlight-type is a customizable variable defined in erc-match.el.gz.

Value

keyword

Documentation

Determines how to highlight messages containing keywords.

See variable erc-keywords.

The following values are allowed:

    keyword - highlight keyword only
    message - highlight the entire message containing keyword
    all - highlight the entire message (including the nick)
                containing keyword

Any other value disables keyword highlighting altogether.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-match.el.gz
(defcustom erc-keyword-highlight-type 'keyword
  "Determines how to highlight messages containing keywords.
See variable `erc-keywords'.

The following values are allowed:

    `keyword' - highlight keyword only
    `message' - highlight the entire message containing keyword
    `all'     - highlight the entire message (including the nick)
                containing keyword

Any other value disables keyword highlighting altogether."
  :type '(choice (const nil)
		 (const keyword)
                 (const message)
		 (const all)))