From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Paminu Newsgroups: gmane.emacs.help Subject: Re: How to change between buffers? Date: Mon, 14 Nov 2005 18:30:17 +0100 Organization: UNI-C Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Trace: sea.gmane.org 1131989586 8609 80.91.229.2 (14 Nov 2005 17:33:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 14 Nov 2005 17:33:06 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Nov 14 18:33:03 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Ebi9v-0003jV-4k for geh-help-gnu-emacs@m.gmane.org; Mon, 14 Nov 2005 18:30:23 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ebi9u-0001ZR-GU for geh-help-gnu-emacs@m.gmane.org; Mon, 14 Nov 2005 12:30:22 -0500 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!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 26 Original-NNTP-Posting-Host: 130.225.245.182 Original-X-Trace: news.net.uni-c.dk 1131989445 29380 130.225.245.182 (14 Nov 2005 17:30:45 GMT) Original-X-Complaints-To: usenet@news.net.uni-c.dk Original-NNTP-Posting-Date: Mon, 14 Nov 2005 17:30:45 +0000 (UTC) User-Agent: KNode/0.9.0 Original-Xref: shelby.stanford.edu gnu.emacs.help:135452 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:31047 Archived-At: Albert Reiner wrote: > [Paminu , Mon, 14 Nov 2005 17:53:45 +0100]: >> I have split my emacs in two buffers. Are there some kind of keyboard >> shortcut that shifts between a buffer that has been split in two? > > Is C-x o what you need? > > ,----[ C-h k C-x o ] > | C-x o runs the command other-window > | (other-window ARG &optional ALL-FRAMES) > | which is an interactive built-in function. > | > | Select the ARG'th different window on this frame. > | All windows on current frame are arranged in a cyclic order. > | This command selects the window ARG steps away in that order. > | A negative ARG moves in the opposite order. If the optional second > | argument ALL_FRAMES is non-nil, cycle through all frames. > `---- > > Regards, > > Albert. Thanks that was just what I wanted!