From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/65049 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: Sticky article buffers Date: Tue, 14 Aug 2007 18:02:29 +0900 Organization: Emacsen advocacy group Message-ID: References: <876448eby7.fsf@baldur.tsdh.de> <87ir888cgd.fsf@baldur.tsdh.de> <873ayprmja.fsf@baldur.tsdh.de> <87hcn3oabn.fsf@baldur.tsdh.de> <87zm0vmsxw.fsf@baldur.tsdh.de> <87ps1qbmdf.fsf@baldur.tsdh.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1187082200 32741 80.91.229.12 (14 Aug 2007 09:03:20 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 14 Aug 2007 09:03:20 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M13559=ding+2Daccount=gmane.org@lists.math.uh.edu Tue Aug 14 11:03:16 2007 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 1IKsJ1-0003XE-4w for ding-account@gmane.org; Tue, 14 Aug 2007 11:03:15 +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 1IKsJ0-0000Vq-Es for ding-account@gmane.org; Tue, 14 Aug 2007 04:03:14 -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 1IKsIz-0000Vl-Kf for ding@lists.math.uh.edu; Tue, 14 Aug 2007 04:03:13 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.67) (envelope-from ) id 1IKsIv-0005p9-DW for ding@lists.math.uh.edu; Tue, 14 Aug 2007 04:03:13 -0500 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1IKsIu-0003fl-00 for ; Tue, 14 Aug 2007 11:03:08 +0200 Original-Received: from [66.225.201.151] (port=50644 helo=mail.jpl.org) by orlando.hostforweb.net with esmtpa (Exim 4.63) (envelope-from ) id 1IKsIK-00061d-KA for ding@gnus.org; Tue, 14 Aug 2007 04:02:33 -0500 X-Hashcash: 1:20:070814:ding@gnus.org::nFfOa9GvwJN82+j6:00002ugU X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.1.50 (gnu/linux) Cancel-Lock: sha1:gcl9O+p0vXrlnluOhf0t0TLOFwA= X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -2.5 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:65049 Archived-At: >>>>> Tassilo Horn wrote: > Katsumi Yamaoka writes: >> Though I have no plan for the moment, people might want a browser >> function for many sticky articles. :) > Currently I use `ibuffer' and `s m' which sorts buffers by mode. Or `/ m gnus-sticky-article-mode RET'. `ibuffer' may be good enough. > But it might be useful to switch between sticky article buffers with > something like `switch-to-buffer' which tab-completes only sticky > articles. Or do you have another suggestion? Frames for sticky articles, an exclusive Gnus summary buffer for sticky articles, tab browsing like emacs-w3m..., but they all don't seem to be easy to achieve. > Anyway, I applied your patch and tested it. Thanks. I've installed the patch. > Is there a mechanism to set variables based on the directory a file > resides? I don't know. > If not I'll do something home-brewed and hook it into find-file-hook. It looks like this, isn't it? ;-) (add-hook 'find-file-hook (lambda nil (if (string-match "/gnus/lisp/" buffer-file-name) (set (make-local-variable 'indent-tabs-mode) t))))