# no 'window' size, we can scroll set height 0 set width 0 # allow pending breakpoints, we know what we're doing: # > Function "foobar" not defined. Breakpoint 9 (foobar) pending. # means that there is no "foobar" *currently loaded*, but maybe # you know it will appear later set breakpoint pending on # we're doing python development, so print the full stack trace when it crashes set python print-stack full # GDB, please don't complain, I know what I'm doing! # ... but beware, you may loose your session if you enter # `start` in the middle of your debugging set confirm off # structure easier to read set print pretty # save history, and ctrl-r can save a lot of time set history filename ~/.gdb_history set history save