Variable: rcirc-omit-mode
rcirc-omit-mode is a buffer-local variable defined in rcirc.el.gz.
Documentation
Non-nil if Rcirc-Omit mode is enabled.
Use the command rcirc-omit-mode(var)/rcirc-omit-mode(fun) to change this variable.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(define-minor-mode rcirc-omit-mode
"Toggle the hiding of \"uninteresting\" lines.
Uninteresting lines are those whose responses are listed in
`rcirc-omit-responses'."
:lighter " Omit"
(if rcirc-omit-mode
(add-to-invisibility-spec '(rcirc-omit . nil))
(remove-from-invisibility-spec '(rcirc-omit . nil)))
(dolist (window (get-buffer-window-list (current-buffer)))
(with-selected-window window
(recenter (when (> (point) rcirc-prompt-start-marker) -1)))))