Function: gnus-group-list-all-groups

gnus-group-list-all-groups is an interactive and byte-compiled function defined in gnus-group.el.gz.

Signature

(gnus-group-list-all-groups &optional ARG)

Documentation

List all newsgroups with level ARG or lower.

Default is gnus-level-unsubscribed, which lists all subscribed and most unsubscribed groups.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-list-all-groups (&optional arg)
  "List all newsgroups with level ARG or lower.
Default is `gnus-level-unsubscribed', which lists all subscribed and most
unsubscribed groups."
  (interactive "P" gnus-group-mode)
  (gnus-group-list-groups (or arg gnus-level-unsubscribed) t))