diff options
Diffstat (limited to 'gdbinit')
-rw-r--r-- | gdbinit | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -1,5 +1,19 @@ # dotfiles -- gdbinit # author: johannst -set history filename ~/.gdb_history +set history filename ~/.gdb/gdb_history set history save on + +set prompt bla> + +define bs + save breakpoints ~/.gdb/breakpoint.$arg0.save +end + +define br + source ~/.gdb/breakpoint.$arg0.save +end + +define hook-quit + bs q +end |