Function: erc-irccontrols-mode

erc-irccontrols-mode is an interactive and byte-compiled function defined in erc-goodies.el.gz.

Signature

(erc-irccontrols-mode &optional ARG)

Documentation

Toggle ERC irccontrols mode.

With a prefix argument ARG, enable irccontrols if ARG is positive, and disable it otherwise. If called from Lisp, enable the mode if ARG is omitted or nil. This mode enables the interpretation of IRC control chars.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-goodies.el.gz
(define-erc-module irccontrols nil
  "This mode enables the interpretation of IRC control chars."
  ((add-hook 'erc-insert-modify-hook #'erc-controls-highlight)
   (add-hook 'erc-send-modify-hook #'erc-controls-highlight))
  ((remove-hook 'erc-insert-modify-hook #'erc-controls-highlight)
   (remove-hook 'erc-send-modify-hook #'erc-controls-highlight)))