Function: rcirc-cmd-dim

rcirc-cmd-dim is an interactive and byte-compiled function defined in rcirc.el.gz.

Signature

(rcirc-cmd-dim ARGLIST &optional PROCESS TARGET)

Documentation

Manage the dim nick list.

Note: If PROCESS or TARGET are nil, the values given by rcirc-buffer-process and rcirc-target will be used.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(rcirc-define-command dim (nick)
  "Manage the dim nick list."
  (interactive "sToggle deemphasis of nick: ")
  (setq rcirc-dim-nicks
	(apply #'rcirc-add-or-remove rcirc-dim-nicks
	       (split-string nick nil t)))
  (rcirc-print process nil "DIM" target
	       (mapconcat 'identity rcirc-dim-nicks " ")))