From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Colin S. Miller" Newsgroups: gmane.emacs.help Subject: Re: Easier buffer navigtion (alt-tabbing?) Date: Sun, 10 Sep 2006 10:37:52 +0100 Organization: SunSITE.dk - Supporting Open source Message-ID: <4503dcf8$0$75030$14726298@news.sunsite.dk> References: <87y7ss6ps0.fsf@kip.sateh.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1157881258 8402 80.91.229.2 (10 Sep 2006 09:40:58 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 10 Sep 2006 09:40:58 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Sep 10 11:40:57 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GMLo7-0002sa-BU for geh-help-gnu-emacs@m.gmane.org; Sun, 10 Sep 2006 11:40:55 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GMLo6-000723-T4 for geh-help-gnu-emacs@m.gmane.org; Sun, 10 Sep 2006 05:40:54 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!uninett.no!news.net.uni-c.dk!dotsrc.org!filter.dotsrc.org!news.dotsrc.org!not-for-mail User-Agent: Thunderbird 1.5.0.4 (X11/20060713) Original-Newsgroups: gnu.emacs.help In-Reply-To: <87y7ss6ps0.fsf@kip.sateh.com> Original-Lines: 37 Original-NNTP-Posting-Host: 62.56.73.25 Original-X-Trace: news.sunsite.dk DXC=cCMHi7dhiX0@@_Mk5OIoD3YSB=nbEKnk; E@:l4WI55F3G1[Bg<0aH50\VT\m5_SIb6U_42Df:PaK8TcL2h5ahoT?kF_>m>CYcV?05M 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:37268 Archived-At: Stefan Arentz wrote: > Is there a way that makes it easier to navigate through buffers? What I > would really like is something like alt-tab to popup a list of recent > buffer to quickly switch back and forth between them. Does such an > extension exist? > > S. Stefan, C-x b creates a list of open buffers. The following code, in your init.el uses Ibuffer instead of buffer for this, and makes it open in a new frame. The frame is left open after you switch buffers, but that shouldn't be a problem. HTH, Colin S. Miller (require 'ibuffer) (global-set-key [(control x) (control b)] 'ibuffer-list-buffers) (define-key ibuffer-mode-map [return] 'ibuffer-visit-buffer-other-window) (setq special-display-buffer-names '( ("*Ibuffer*" (modeline . nil) (unsplittable . nil) (top-toolbar-visible-p . nil) (menubar-visible-p . nil) (height . 10) (width . 70) (top . 0) (left . 444) (auto-raise-mode . t)) )) -- Replace the obvious in my email address with the first three letters of the hostname to reply.