Function: erc-track-minor-mode
erc-track-minor-mode is an autoloaded, interactive and byte-compiled
function defined in erc-track.el.gz.
Signature
(erc-track-minor-mode &optional ARG)
Documentation
Toggle mode line display of ERC activity (ERC Track minor mode).
This is a minor mode. If called interactively, toggle the Erc-Track
minor mode mode. If the prefix argument is positive, enable the
mode, and if it is zero or negative, disable the mode.
If called from Lisp, toggle the mode if ARG is toggle. Enable the
mode if ARG is nil, omitted, or is a positive number. Disable the
mode if ARG is a negative number.
To check whether the minor mode is enabled in the current buffer,
evaluate (default-value \=erc-track-minor-mode)'.
The mode's hook is called both when the mode is enabled and when it is disabled.
ERC Track minor mode is a global minor mode. It exists for the sole purpose of providing the C-c C-SPC and C-c C-@ keybindings. Make sure that you have enabled the track module, otherwise the keybindings will not do anything useful.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-track.el.gz
;;;###autoload
(define-minor-mode erc-track-minor-mode
"Toggle mode line display of ERC activity (ERC Track minor mode).
ERC Track minor mode is a global minor mode. It exists for the
sole purpose of providing the C-c C-SPC and C-c C-@ keybindings.
Make sure that you have enabled the track module, otherwise the
keybindings will not do anything useful."
:global t)