From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/82154 Path: news.gmane.org!not-for-mail From: "John Wiegley" Newsgroups: gmane.emacs.gnus.general Subject: Re: gnus-warp-to-article, nndoc, and virtual groups? Date: Thu, 23 Aug 2012 00:38:53 -0500 Organization: New Artisans LLC Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1345744474 5933 80.91.229.3 (23 Aug 2012 17:54:34 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 23 Aug 2012 17:54:34 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M30422@lists.math.uh.edu Thu Aug 23 19:54:35 2012 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 1T4bbz-00057V-Gq for ding-account@gmane.org; Thu, 23 Aug 2012 19:54:31 +0200 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 1T4bam-00087T-Fs; Thu, 23 Aug 2012 12:53:16 -0500 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 1T4bak-00087H-LX for ding@lists.math.uh.edu; Thu, 23 Aug 2012 12:53:14 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1T4baf-0005GU-Af for ding@lists.math.uh.edu; Thu, 23 Aug 2012 12:53:14 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1T4bad-0001JJ-B6 for ding@gnus.org; Thu, 23 Aug 2012 19:53:07 +0200 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1T4bae-0003Dz-35 for ding@gnus.org; Thu, 23 Aug 2012 19:53:08 +0200 Original-Received: from c-98-215-105-167.hsd1.il.comcast.net ([98.215.105.167]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 23 Aug 2012 19:53:08 +0200 Original-Received: from johnw by c-98-215-105-167.hsd1.il.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 23 Aug 2012 19:53:08 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 14 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: c-98-215-105-167.hsd1.il.comcast.net User-Agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.1 (darwin) Cancel-Lock: sha1:73rO/Rlp5RyhOepZaxEV6ZoDTMQ= X-Spam-Score: -1.1 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:82154 Archived-At: >> Dave Abrahams writes: > I have a very handy little function called "gnus-goto-article" that will > bring up an article by message-id in an otherwise-empty group: If you don't mind opening your INBOX (mine always has a low article count, so it's the fastest group to open), this does the same thing but I haven't encountered any weirdnesses when warping or pulling in full threads: (defun gnus-goto-article (message-id) (gnus-summary-read-group "INBOX" 15 t) (gnus-summary-refer-article message-id)) John