Variable: gnus-auto-select-subject

gnus-auto-select-subject is a customizable variable defined in gnus-sum.el.gz.

Value

unseen-or-unread

Documentation

Says what subject to place under point when entering a group.

This variable can either be the symbols first (place point on the first subject), unread (place point on the subject line of the first unread article), best (place point on the subject line of the highest-scored article), unseen (place point on the subject line of the first unseen article), unseen-or-unread (place point on the subject line of the first unseen article or, if all articles have been seen, on the subject line of the first unread article), or a function to be called to place point on some subject line.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defcustom gnus-auto-select-subject 'unseen-or-unread
  "Says what subject to place under point when entering a group.

This variable can either be the symbols `first' (place point on the
first subject), `unread' (place point on the subject line of the first
unread article), `best' (place point on the subject line of the
highest-scored article), `unseen' (place point on the subject line of
the first unseen article), `unseen-or-unread' (place point on the subject
line of the first unseen article or, if all articles have been seen, on the
subject line of the first unread article), or a function to be called to
place point on some subject line."
  :version "24.1"
  :group 'gnus-group-select
  :type '(choice (const best)
		 (const unread)
		 (const first)
		 (const unseen)
                 (const unseen-or-unread)
		 (function :tag "Function to call")))