From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/68010 Path: news.gmane.org!not-for-mail From: jidanni@jidanni.org Newsgroups: gmane.emacs.gnus.general Subject: don't move cursor after exiting digest Date: Tue, 30 Dec 2008 02:47:44 +0800 Message-ID: <87k59i4y3z.fsf@jidanni.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1230576513 893 80.91.229.12 (29 Dec 2008 18:48:33 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 29 Dec 2008 18:48:33 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M16455@lists.math.uh.edu Mon Dec 29 19:49:40 2008 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.50) id 1LHNB1-0002AT-5u for ding-account@gmane.org; Mon, 29 Dec 2008 19:49:19 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1LHN9d-00013Y-GZ; Mon, 29 Dec 2008 12:47:53 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1LHN9c-000139-1I for ding@lists.math.uh.edu; Mon, 29 Dec 2008 12:47:52 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.69) (envelope-from ) id 1LHN9Z-0001Ml-5b for ding@lists.math.uh.edu; Mon, 29 Dec 2008 12:47:51 -0600 Original-Received: from sd-green-bigip-66.dreamhost.com ([208.97.132.66] helo=homiemail-a4.dreamhost.com) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1LHN9n-0000wr-00 for ; Mon, 29 Dec 2008 19:48:03 +0100 Original-Received: from jidanni.org (122-127-33-187.dynamic.hinet.net [122.127.33.187]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by homiemail-a4.dreamhost.com (Postfix) with ESMTP id C396D41521 for ; Mon, 29 Dec 2008 10:47:46 -0800 (PST) X-Spam-Score: -2.6 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:68010 Archived-At: C-d runs the command gnus-summary-enter-digest-group OK, but I always find myself having to do an extra here: C-d q E Hmmm, looking at q runs the command gnus-summary-exit which is an interactive compiled Lisp function in `gnus-sum.el'. It is bound to q, Z Z, Z Q, . (gnus-summary-exit &optional TEMPORARY LEAVE-HIDDEN) Exit reading current newsgroup, and then return to group selection mode. `gnus-exit-group-hook' is called with no arguments if that value is non-nil. OK, but 1) you're not always exiting to group selection mode, but sometimes just to the *Summary*. 2) Ah, we see these cases are covered, ;; If this group has disappeared from the summary ;; buffer, don't skip forwards. (not (string= group (gnus-group-group-name)))) (gnus-group-next-unread-group 1)) But not mine. OK, most users like doing gnus-group-next-unread-group 1 automatically, but not me... 3) document TEMPORARY LEAVE-HIDDEN