0

I'm JUST starting out emacs. On the right half of the screen I have the interpreter and on the left half of the screen I have my code. I want to switch between these 2 using keyboard only (shortcuts). There is Ctrl-x Left/Right but that one changes the buffer(?) in the current window, what I want is to switch the active window. For example if I'm writing code and is done I can click the shortcut and start writing in the interpreter.

Drew
  • 77,472
  • 10
  • 114
  • 243
Rodolf
  • 3
  • 1

1 Answers1

1

With default Emacs keybindings, you can do this with C-x o. If you're using evil-mode, you can also use C-w C-w.

Pkkm
  • 263
  • 1
  • 7