How to automatically refresh gdb in tui mode?
Had the exact same problem. Have you tried GDB user-defined hooks or commands ? In your ~/.gdbinit or in your session, you can do: define hook-next refresh end This will call the refresh command each time you enter the next command or one of its aliases. Or you can define: define mynext next refresh end … Read more