Variable: gnus-auto-select-on-ephemeral-exit

gnus-auto-select-on-ephemeral-exit is a customizable variable defined in gnus-sum.el.gz.

Value

next-noselect

Documentation

What article should be selected after exiting an ephemeral group.

Valid values include:

next
  Select the next article.
next-unread
  Select the next unread article.
next-noselect
  Move the cursor to the next article. This is the default.
next-unread-noselect
  Move the cursor to the next unread article.

If it has any other value or there is no next (unread) article, the article selected before entering to the ephemeral group will appear.

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

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defcustom gnus-auto-select-on-ephemeral-exit 'next-noselect
  "What article should be selected after exiting an ephemeral group.
Valid values include:

`next'
  Select the next article.
`next-unread'
  Select the next unread article.
`next-noselect'
  Move the cursor to the next article.  This is the default.
`next-unread-noselect'
  Move the cursor to the next unread article.

If it has any other value or there is no next (unread) article, the
article selected before entering to the ephemeral group will appear."
  :version "23.1" ;; No Gnus
  :group 'gnus-summary-maneuvering
  :type '(choice :format "%{%t%}:\n %[Value Menu%] %v"
		 (const next) (const next-unread)
		 (const next-noselect) (const next-unread-noselect)
		 (sexp :tag "other" :value nil)))