From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "B. T. Raven" Newsgroups: gmane.emacs.help Subject: Re: Remove all directory listings buffers Date: Fri, 04 Dec 2009 15:25:21 -0600 Message-ID: <_u6dnVhxbLi044TWnZ2dnUVZ_vti4p2d@sysmatrix.net> References: <87r5rm950a.fsf@galatea.local> <4630013b-6cc6-4870-ac23-c08fe2112bd2@j24g2000yqa.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1259962978 22250 80.91.229.12 (4 Dec 2009 21:42:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 4 Dec 2009 21:42:58 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Dec 04 22:42:51 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1NGfvO-0005SY-Dr for geh-help-gnu-emacs@m.gmane.org; Fri, 04 Dec 2009 22:42:50 +0100 Original-Received: from localhost ([127.0.0.1]:47258 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NGfvO-0001OV-6V for geh-help-gnu-emacs@m.gmane.org; Fri, 04 Dec 2009 16:42:50 -0500 Original-Path: news.stanford.edu!usenet.stanford.edu!postnews.google.com!news1.google.com!Xl.tags.giganews.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local2.nntp.dca.giganews.com!nntp.sysmatrix.net!news.sysmatrix.net.POSTED!not-for-mail Original-NNTP-Posting-Date: Fri, 04 Dec 2009 15:24:57 -0600 User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) Original-Newsgroups: gnu.emacs.help In-Reply-To: X-No-Archive: yes Original-Lines: 35 X-Usenet-Provider: http://www.giganews.com Original-NNTP-Posting-Host: 12.73.129.193 Original-X-Trace: sv3-pUaQjU9znHujiy6Ga11brx8WCl3XIuZjocE4ZDeEIHotfiumvthp7ZhXr4/6cLLBwhIKVrwQcyHkTNq!C9KRb6d/my4g9QovJvN+3zGxQ1aLLfsnlxVqBatZBaWlWHeIPGh3yp/OF2rgE9+alcjufzpo70/o!66wCf0ikmc8mTnzFCBY9PZ0FPfmbx5o= Original-X-Complaints-To: abuse@sysmatrix.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.40 Original-Xref: news.stanford.edu gnu.emacs.help:175334 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 X-Gmane-Expiry: 2009-12-18 Xref: news.gmane.org gmane.emacs.help:70406 Archived-At: Andreas Politz wrote: > aartist writes: > >> On Nov 25, 7:13 am, p...@informatimago.com (Pascal J. Bourguignon) >> wrote: >>> rotlas writes: >>>> I often end up with lots of directory buffers (those buffers with "dired by >>>> name" mode), after navigating in the filesystem in order to open files. Is >>>> there an easy way to get rid of all those buffers at once, and leaving the >>>> other? >>> You could write a little emacs command to do that, but it should also >>> be easy enough to use: >>> >>> C-x C-b (or M-x list-buffers RET) >>> >>> In the buffer list, you can mark buffers for killing with d (and move >>> down and up with n and p). When you're done, type x to execute the >>> orders. >>> >>> -- >>> __Pascal Bourguignon__ >> The whole point was to mark all the directory buffers at once. >> rather than one by one. > > M-x ibuffer RET * / D > > -ap > > > Thanks. This looks safer to me than electric-buffer-list. Is it? Ed