From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Bob Proulx Newsgroups: gmane.emacs.help Subject: Re: switch to previous buffer Date: Sat, 30 Mar 2013 00:51:18 -0600 Message-ID: <20130330065118.GA21113@hysteria.proulx.com> References: <382a2375-aed1-4deb-ad29-21952926c809@googlegroups.com> <0746b716-e454-402f-a46d-dafa483bdb03@googlegroups.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1364626307 25247 80.91.229.3 (30 Mar 2013 06:51:47 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 30 Mar 2013 06:51:47 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Mar 30 07:52:15 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ULpe2-0006FH-SX for geh-help-gnu-emacs@m.gmane.org; Sat, 30 Mar 2013 07:52:06 +0100 Original-Received: from localhost ([::1]:37140 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ULpde-0000qz-E4 for geh-help-gnu-emacs@m.gmane.org; Sat, 30 Mar 2013 02:51:42 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:53175) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ULpdT-0000ps-Vy for help-gnu-emacs@gnu.org; Sat, 30 Mar 2013 02:51:32 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ULpdT-0004OF-0A for help-gnu-emacs@gnu.org; Sat, 30 Mar 2013 02:51:31 -0400 Original-Received: from joseki.proulx.com ([216.17.153.58]:38384) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ULpdS-0004Nr-0o for help-gnu-emacs@gnu.org; Sat, 30 Mar 2013 02:51:30 -0400 Original-Received: from hysteria.proulx.com (hysteria.proulx.com [192.168.230.119]) by joseki.proulx.com (Postfix) with ESMTP id 9B17F211D5 for ; Sat, 30 Mar 2013 00:51:18 -0600 (MDT) Original-Received: by hysteria.proulx.com (Postfix, from userid 1000) id 764D22DCDF; Sat, 30 Mar 2013 00:51:18 -0600 (MDT) Mail-Followup-To: help-gnu-emacs@gnu.org Content-Disposition: inline In-Reply-To: <0746b716-e454-402f-a46d-dafa483bdb03@googlegroups.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 216.17.153.58 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:89811 Archived-At: Rami A wrote: > When doing Control backspace I still go through the buffer list. I > want to skip that menu and directly go to the buffer that was > accessed before the list. I use C-x b for that action. That is bound to switch-to-buffer. Additionally I always bind C-x C-b to electric-buffer-list instead of the original list-buffers. It just seems so much more natural. (global-set-key "\C-x\C-b" 'electric-buffer-list) ; originally list-buffers Bob