开发者

emacs choose one of the parts of the window [duplicate]

开发者 https://www.devze.com 2023-03-26 17:50 出处:网络
This quest开发者_开发技巧ion already has answers here: Closed 11 years ago. Possible Duplicate: How to switch between visible buffers in emacs?
This quest开发者_开发技巧ion already has answers here: Closed 11 years ago.

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:

  • How to switch between visible buffers in emacs?
  • I have multiple windows in Emacs, (C-x o) will take me to the "other" window, what does other mean?
  • In Emacs, what is the opposite function of other-window (C-x o)?
  • Changing window faster in Emacs (or repeating last shortcut with a single strike)
  • Better window navigation in Emacs?


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

(global-set-key [C-tab] 'other-window)
0

精彩评论

暂无评论...
验证码 换一张
取 消