How to turn off GDB TUI

gdb

I have this GDB TUI/layout on. How do I return to the default GDB view?

I can't just restart GDB, because I have important backtrace on my hand and as long as I have these extra windows I can't scroll well on the basic view.

Best Answer

You can enter / leave the TUI mode with one of this combinations:

  • C-x C-a
  • C-x a
  • C-x A

This is typically (no need to lift the Ctrl key):

  • Ctrl + X + A
Related Question