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?
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?
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.
Duplicate. See all of the following:
I added this line in my .emacs
configuration file. Use Ctrl+TAB to navigate across the buffers.
(global-set-key [C-tab] 'other-window)