From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Shug Boabby" Newsgroups: gmane.emacs.help Subject: Re: How can I kill these buffers automatically (Woman-log Completions) Date: 23 Oct 2005 19:40:00 -0700 Organization: http://groups.google.com Message-ID: <1130121600.700861.311310@z14g2000cwz.googlegroups.com> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: sea.gmane.org 1130121623 7530 80.91.229.2 (24 Oct 2005 02:40:23 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 24 Oct 2005 02:40:23 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Oct 24 04:40:15 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1ETsFz-0007YE-0g for geh-help-gnu-emacs@m.gmane.org; Mon, 24 Oct 2005 04:40:15 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ETsFy-0000yH-EP for geh-help-gnu-emacs@m.gmane.org; Sun, 23 Oct 2005 22:40:14 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!z14g2000cwz.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 16 Original-NNTP-Posting-Host: 82.41.24.222 Original-X-Trace: posting.google.com 1130121606 971 127.0.0.1 (24 Oct 2005 02:40:06 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Mon, 24 Oct 2005 02:40:06 +0000 (UTC) In-Reply-To: User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/412.7 (KHTML, like Gecko) Safari/412.5,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: z14g2000cwz.googlegroups.com; posting-host=82.41.24.222; posting-account=jQz-EQ0AAABiniXWq8YyRVQ60t_LIYwt Original-Xref: shelby.stanford.edu gnu.emacs.help:134921 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:30508 Archived-At: > I would like to nuke this buffer as soon as Ive made a completion don't know about the woman stuff... but try this for auto nuking most of the buffers that just build up and clog the buffer list (you'll need to download tempbuf.el): ;; Automatically remove internal buffers after use ;; http://www.emacswiki.org/cgi-bin/wiki/download/tempbuf.el (require 'tempbuf nil t) (add-hook 'message-mode-hook 'turn-on-tempbuf-mode) (add-hook 'completion-list-mode-hook 'turn-on-tempbuf-mode) (add-hook 'dired-mode-hook 'turn-on-tempbuf-mode) (add-hook 'custom-mode-hook 'turn-on-tempbuf-mode) (add-hook 'Man-mode-hook 'turn-on-tempbuf-mode) (add-hook 'view-mode-hook 'turn-on-tempbuf-mode)