1

Possible Duplicate:
How to switch between visible buffers in emacs?

I'm using C-x 2 for splitting editor place to two parts. For choose one of them I use mouse now. How I can choose one of them using keyboard?

Community
  • 1
  • 1
jerboa
  • 1,371
  • 2
  • 12
  • 18
  • 2
    Note that in Emacs' terminology, the "parts of the window" are actually "windows in the frame". i.e. Each "part" is called a "window", and there may be multiple windows within a single frame. – phils Aug 09 '11 at 10:57

3 Answers3

4

Use C-x o to move the cursor to the next window in the windows list. See Steve Yegge's post Effective Emacs for info.

KnackeredCoder
  • 384
  • 2
  • 7
0

I added this line in my .emacs configuration file. Use Ctrl+TAB to navigate across the buffers.

(global-set-key [C-tab] 'other-window)
Jcs
  • 13,279
  • 5
  • 53
  • 70