Emacs shortcuts in term mode

emacs

I've a question about using Emacs as editor and terminal.

I split my window into different windows with C-x 3for example. One of the generated Window is used as terminal with M-x term. Usually I switch with C-x ointo another window. Suppose I switched to the terminal buffer, from there I cannot use C-x o to switch to another buffer.

What short cut can I use to switch from the terminal buffer into another?

Best Answer

C-c CHAR This is equivalent to C-x CHAR in normal Emacs. For example, C-c o invokes the global binding of C-x o, which is normally other-window.

(Emacs info file, "Term mode")

Related Question