Variable: gnus-thread-hide-subtree

gnus-thread-hide-subtree is a customizable variable defined in gnus-sum.el.gz.

Value

nil

Documentation

If non-nil, hide all threads initially.

This can be a predicate specifier which says which threads to hide. If threads are hidden, you have to run the command gnus-summary-show-thread by hand or select an article.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defcustom gnus-thread-hide-subtree nil
  "If non-nil, hide all threads initially.
This can be a predicate specifier which says which threads to hide.
If threads are hidden, you have to run the command
`gnus-summary-show-thread' by hand or select an article."
  :group 'gnus-thread
  :type '(radio (sexp :format "Non-nil\n"
		      :match (lambda (widget value)
			       (and value (not (functionp value))))
		      :value t)
		(const nil)
		(sexp :tag "Predicate specifier")))