Function: gnus-group-list-limit

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

Signature

(gnus-group-list-limit &optional ARGS)

Documentation

List groups limited within the current selection.

If you've limited the groups, you can further limit the selection with this command. If you've first limited to groups with dormant articles with A ?, you can then further limit with A / c, which will then limit to groups with cached articles, giving you the groups that have both dormant articles and cached articles.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-list-limit (&optional args)
  "List groups limited within the current selection.
If you've limited the groups, you can further limit the selection
with this command.  If you've first limited to groups with
dormant articles with `A ?', you can then further limit with
`A / c', which will then limit to groups with cached articles, giving
you the groups that have both dormant articles and cached articles."
  (interactive "P" gnus-group-mode)
  (let ((gnus-group-list-option 'limit))
    (gnus-group-list-plus args)))