From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.help Subject: Re: Buffer Navigation Date: Thu, 20 Oct 2005 00:54:34 +0200 Organization: sometimes Message-ID: <7each5nmmt.fsf@ada2.unipv.it> References: <1129688325.343746.200730@g49g2000cwa.googlegroups.com> <1129690887.411887.235150@g43g2000cwa.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1129763002 1996 80.91.229.2 (19 Oct 2005 23:03:22 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 19 Oct 2005 23:03:22 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Oct 20 01:03:21 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1ESMvM-0004b0-Rd for geh-help-gnu-emacs@m.gmane.org; Thu, 20 Oct 2005 01:00:45 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ESMvM-0002sS-AH for geh-help-gnu-emacs@m.gmane.org; Wed, 19 Oct 2005 19:00:44 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!uio.no!quimby.gnus.org!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 17 Original-NNTP-Posting-Host: ada2.unipv.it Original-X-Trace: quimby.gnus.org 1129762280 24481 193.204.44.145 (19 Oct 2005 22:51:20 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: Wed, 19 Oct 2005 22:51:20 +0000 (UTC) User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:ZCQI53UiDYcKkS79VfCXApS5BIo= Original-Xref: shelby.stanford.edu gnu.emacs.help:134803 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:30386 Archived-At: "Shug Boabby" writes: > is writing a wrapper for open/close the only solution... write a function that sets a buffer-local variable (for example, you could name it `shug-boabby-interesting-buffer-p') to a recognizable value. arrange for `find-file-hook' to call this function, but only if `this-command' is `find-file'. use your buffer-selection/management package of choice to test for this value during its filtering pass. when you kill the buffer, the buffer-local variable will be deleted along w/ the buffer, so that side of things is worry free. of course, you can write a wrapper anyway for the exercise. there's nothing wrong w/ finding and following many paths. thi