From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/78888 Path: news.gmane.org!not-for-mail From: David Engster Newsgroups: gmane.emacs.gnus.general Subject: Re: keeping killed groups out of gnus-group-jump-to-group Date: Tue, 24 May 2011 15:51:00 +0200 Message-ID: References: <87ipt189e9.fsf@ericabrahamsen.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1306245159 13623 80.91.229.12 (24 May 2011 13:52:39 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 24 May 2011 13:52:39 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M27188@lists.math.uh.edu Tue May 24 15:52:35 2011 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.69) (envelope-from ) id 1QOs2E-0007BB-Md for ding-account@gmane.org; Tue, 24 May 2011 15:52:35 +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 1QOs0v-00022o-PB; Tue, 24 May 2011 08:51:13 -0500 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 1QOs0s-00022a-V6 for ding@lists.math.uh.edu; Tue, 24 May 2011 08:51:10 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1QOs0r-00018Z-Jr for ding@lists.math.uh.edu; Tue, 24 May 2011 08:51:10 -0500 Original-Received: from v3-1008.vxen.de ([79.140.41.8]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1QOs0p-0005eR-E4 for ding@gnus.org; Tue, 24 May 2011 15:51:07 +0200 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=randomsample.de; s=a; h=Content-Type:MIME-Version:Message-ID:Date:References:In-Reply-To:Subject:To:From; bh=b5QWK6e+lnTQgz6H7Abkdvo+7PCk8UI3wVj/ujIX14M=; b=sliWBQY67/W2UNq6XxRvMt7YBW2zEH5EJmoExQqq1VX3zKR236jJu+GLRoAjmbVElEq5mcloKmtYgAvEsTrOhfrdxSXNVMYoPDyWny+xeGTNGEVR9qrUNhXPNhz6XVmY; Original-Received: from ibookg4-c2.pc.gwdg.de ([134.76.4.219]) by v3-1008.vxen.de with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1QOs0o-0002lF-Kh for ding@gnus.org; Tue, 24 May 2011 15:51:06 +0200 In-Reply-To: <87ipt189e9.fsf@ericabrahamsen.net> (Eric Abrahamsen's message of "Mon, 23 May 2011 16:11:26 -0400") User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (darwin) Mail-Copies-To: never Mail-Followup-To: ding@gnus.org X-Spam-Score: -2.0 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:78888 Archived-At: Eric Abrahamsen writes: > Very simply: I'm using a mairix server, and ido for all autocompletion. > The mairix server includes a complete list of all my nnmail groups, > killed, and they all show up when I hit 'j' to jump to a group, usually > *before* the real nnmail group, which makes it hard to use. I don't know > where the list of groups is created -- is there a way I can have it > filter out killed groups? I don't know either. You could use an advice to at least filter the nnmairix groups: (defadvice gnus-group-completing-read (before remove-nnmairix-groups activate) (unless collection (mapatoms (lambda (g) (unless (string-match nnmairix-group-prefix (symbol-name g)) (push g collection))) gnus-active-hashtb))) It's not nice, but it should work... -David