From bc9c5623e8151f1d6202417726375bb7319711da Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 24 May 2020 13:32:33 +0100 Subject: [PATCH] dot/gnus.el: Don't skip around wildly in the `Group' buffer. Organization: Straylight/Edgeware From: Mark Wooding I have a huge number of folders, most of which are fully caught-up, and fairly often show them all. It's very annoying when Gnus decides to move point a long way away from where I was last working. Of course, Gnus is configurable in this regard. So configure it. --- dot/gnus.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dot/gnus.el b/dot/gnus.el index be92db7..376016a 100644 --- a/dot/gnus.el +++ b/dot/gnus.el @@ -69,6 +69,10 @@ (setq gnus-save-killed-list nil gnus-check-bogus-newsgroups nil gnus-read-active-file 'ask-server) +;; Don't skip unread groups. +(setq gnus-group-goto-unread nil + gnus-summary-next-group-on-exit nil) + ;; Use one article buffer per group. (setq gnus-single-article-buffer nil) -- [mdw]