From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/85309 Path: news.gmane.org!not-for-mail From: =?utf-8?Q?Peter_M=C3=BCnster?= Newsgroups: gmane.emacs.gnus.general Subject: Re: Mutt/Gnus hybrid for mail? Date: Tue, 09 Dec 2014 00:25:59 +0100 Message-ID: <87r3w93erc.fsf@micropit.roche-blanche.homenet.org> References: <87egs952jy.fsf@micropit.roche-blanche.homenet.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1418081206 22066 80.91.229.3 (8 Dec 2014 23:26:46 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 8 Dec 2014 23:26:46 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M33553@lists.math.uh.edu Tue Dec 09 00:26:39 2014 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Xy7hN-0002fQ-FD for ding-account@gmane.org; Tue, 09 Dec 2014 00:26:39 +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 1Xy7h2-0000Ef-7Q; Mon, 08 Dec 2014 17:26:16 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1Xy7h0-0000ET-H8 for ding@lists.math.uh.edu; Mon, 08 Dec 2014 17:26:14 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES128-SHA:128) (Exim 4.76) (envelope-from ) id 1Xy7gy-00061d-TX for ding@lists.math.uh.edu; Mon, 08 Dec 2014 17:26:14 -0600 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1Xy7gw-0008Bj-U6 for ding@gnus.org; Tue, 09 Dec 2014 00:26:10 +0100 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Xy7gw-0002TB-Qd for ding@gnus.org; Tue, 09 Dec 2014 00:26:10 +0100 Original-Received: from arennes-651-1-133-120.w2-2.abo.wanadoo.fr ([2.2.140.120]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 09 Dec 2014 00:26:10 +0100 Original-Received: from pmlists by arennes-651-1-133-120.w2-2.abo.wanadoo.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 09 Dec 2014 00:26:10 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 52 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: arennes-651-1-133-120.w2-2.abo.wanadoo.fr User-Agent: Gnus/5.130012 (=?utf-8?Q?=E7=9C=9F?= Gnus v0.12) Emacs/25.0.50 (gnu/linux) Cancel-Lock: sha1:RgfCL84el9OhNxGZX3GFQCO+2ok= X-Spam-Score: -2.9 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:85309 Archived-At: On Mon, Dec 08 2014, Peter Davis wrote: > Also, when I delete/expire a message, mutt automatically displays the > next unread message in the folder. Gnus requires another keystroke. (Not > a big deal, but annoying.) This sets the expire mark with the "d" key and goes to next message: --8<---------------cut here---------------start------------->8--- (defun pm/alter-summary-map () (local-set-key "d" [?M ?M ?e ?e down])) (defun pm/alter-article-map () (local-set-key "d" "MMeen")) (add-hook 'gnus-summary-mode-hook 'pm/alter-summary-map) (add-hook 'gnus-article-mode-hook 'pm/alter-article-map) --8<---------------cut here---------------end--------------->8--- > I have not managed to get gnus to display previously read messages in a > thread automatically, You mean, display all messages of a thread, when it has at least one new message? I'm sure, that this is possible and you would get a solution here... If you want it with a key-press: it's "A T". > I realize I could customize gnus to behave exactly the way I want, but > I'm not a much of a lisper, so it would take me a fair bit of > effort. Elisp is very useful, not only in Gnus. And you can get help here. > Anyway, customatizations are unlikely to improve performance. Mutt > seems faster at downloading messages, etc. Perhaps. But the Mutt-macros are *very* limited and when you want to display something else than plain text, Mutt needs external programs, where the key-bindings are completely different and you can't control Mutt anymore... After having switched from Mutt to Gnus, I've just thought: "Why haven't I done that earlier...?!" I'm sure, that you'll spend more time integrating Mutt into Emacs the way you like, than reading the Gnus manual. -- Peter